Google Maps CP - Version 1.0.20

Version Description

  • Implements the integration with the latest version of the Gutenberg editor.
Download this release

Release Info

Developer codepeople
Plugin Icon 128x128 Google Maps CP
Version 1.0.20
Comparing to
See all releases

Code changes from version 1.0.14 to 1.0.20

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.14
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
@@ -10,10 +10,32 @@ Text Domain: codepeople-post-map
10
  Description: Google Maps CP Allows to associate geocode information to posts and display it on map. Google Maps CP display the post list as markers on map. The scale of map is determined by the markers, to display distant points is required to load a map with smaller scales. To get started: 1) Click the "Activate" link to the left of this description. 2) Go to your <a href="options-general.php?page=codepeople-post-map.php">Google Maps CP configuration</a> page and configure the maps settings. 3) Go to post edition page to enter the geolocation information.
11
  */
12
 
 
 
 
 
13
  define('CPM_PLUGIN_DIR', WP_PLUGIN_DIR."/".dirname(plugin_basename(__FILE__)));
14
  define('CPM_PLUGIN_URL', plugins_url()."/".dirname(plugin_basename(__FILE__)));
15
 
16
  require (CPM_PLUGIN_DIR.'/include/functions.php');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
  // Create a CPM object that contain main plugin logic
19
  add_action( 'init', 'cpm_init');
2
  /*
3
  Plugin Name: Google Maps CP
4
  Text Domain: codepeople-post-map
5
+ Version: 1.0.20
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
10
  Description: Google Maps CP Allows to associate geocode information to posts and display it on map. Google Maps CP display the post list as markers on map. The scale of map is determined by the markers, to display distant points is required to load a map with smaller scales. To get started: 1) Click the "Activate" link to the left of this description. 2) Go to your <a href="options-general.php?page=codepeople-post-map.php">Google Maps CP configuration</a> page and configure the maps settings. 3) Go to post edition page to enter the geolocation information.
11
  */
12
 
13
+ // Feedback system
14
+ require_once 'feedback/cp-feedback.php';
15
+ new CP_FEEDBACK(plugin_basename( dirname(__FILE__) ), __FILE__, 'https://wordpress.dwbooster.com/contact-us');
16
+
17
  define('CPM_PLUGIN_DIR', WP_PLUGIN_DIR."/".dirname(plugin_basename(__FILE__)));
18
  define('CPM_PLUGIN_URL', plugins_url()."/".dirname(plugin_basename(__FILE__)));
19
 
20
  require (CPM_PLUGIN_DIR.'/include/functions.php');
21
+ add_filter('option_sbp_settings', array('CPM', 'troubleshoot'));
22
+
23
+ // Redirecting the user to the settings page of the plugin
24
+ add_action( 'activated_plugin', 'cpm_redirect_to_settings', 10, 2 );
25
+ if(!function_exists('cpm_redirect_to_settings'))
26
+ {
27
+ function cpm_redirect_to_settings($plugin, $network_activation)
28
+ {
29
+ if(
30
+ $plugin == plugin_basename( __FILE__ ) &&
31
+ (!isset($_POST["action"]) || $_POST["action"] != 'activate-selected') &&
32
+ (!isset($_POST["action2"]) || $_POST["action2"] != 'activate-selected')
33
+ )
34
+ {
35
+ exit( wp_redirect( admin_url( 'options-general.php?page=codepeople-post-map.php' ) ) );
36
+ }
37
+ }
38
+ }
39
 
40
  // Create a CPM object that contain main plugin logic
41
  add_action( 'init', 'cpm_init');
feedback/cp-feedback.php ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if(!class_exists('CP_FEEDBACK'))
3
+ {
4
+ class CP_FEEDBACK
5
+ {
6
+ private $feedback_url = 'https://wordpress.dwbooster.com/licensesystem/debug-data.php';
7
+ private $plugin_slug;
8
+ private $plugin_file;
9
+ private $support_link;
10
+ private $full_support_link;
11
+
12
+ public function __construct($plugin_slug, $plugin_file, $support_link)
13
+ {
14
+ $this->plugin_slug = $plugin_slug;
15
+ $this->plugin_file = $plugin_file;
16
+ $this->support_link = $support_link;
17
+ $this->full_support_link = $support_link.((strpos($support_link, '?') === false) ? '?' : '&' ).'priority-support=yes';
18
+
19
+ // To know when the plugin was installed
20
+ if (!get_option('installed_'.$this->plugin_slug, false))
21
+ {
22
+ update_option('installed_'.$this->plugin_slug, time() );
23
+ }
24
+ // Actions and filters
25
+ add_action( 'admin_enqueue_scripts', array($this, 'enqueue_scripts'), 1);
26
+ add_action( 'wp_ajax_cp_feedback', array($this,'feedback_action'));
27
+ } // End __construct
28
+
29
+ public function enqueue_scripts($hook)
30
+ {
31
+ if( 'plugins.php' == $hook )
32
+ {
33
+ wp_enqueue_style('wp-jquery-ui-dialog');
34
+ wp_enqueue_script('jquery');
35
+ wp_enqueue_script('jquery-ui-dialog');
36
+
37
+ add_action( 'admin_footer', array($this, 'feedback_interface') );
38
+ }
39
+ } // End insert_admin_scripts
40
+
41
+ public function feedback_interface()
42
+ {
43
+ // Varibles to use into the feedback interface
44
+ $plugin_slug = $this->plugin_slug;
45
+ $support_link = $this->support_link;
46
+ $full_support_link = $this->full_support_link;
47
+
48
+ include_once dirname($this->plugin_file).'/feedback/feedback.html';
49
+ } // End feedback_interface
50
+
51
+ // This function is used only if explicitly accepted (opt-in) by the user
52
+ public function feedback_action()
53
+ {
54
+ if(isset($_POST['feedback_plugin']) && $_POST['feedback_plugin'] == $this->plugin_slug)
55
+ {
56
+ $plugin_data = get_plugin_data( $this->plugin_file );
57
+ $plugin_version = $plugin_data['Version'];
58
+ $time = time() - get_option('installed_'.$this->plugin_slug, 0);
59
+
60
+ $data = array(
61
+ 'plugin' => $plugin_data['Name'],
62
+ 'pluginv' => $plugin_version,
63
+ 'wordpress' => get_bloginfo('version'),
64
+ 'itime' => $time,
65
+ 'phpversion' => phpversion()
66
+ );
67
+
68
+ foreach($_POST as $parameter => $value)
69
+ {
70
+ $data[$parameter] = $value;
71
+ }
72
+
73
+ if(!isset($_POST["cp_feedback_anonymous"])) // send this data only if explicitly accepted
74
+ {
75
+ $current_user = wp_get_current_user();
76
+ $data['email'] = $current_user->user_email;
77
+ $data['website'] = $_SERVER['HTTP_HOST'];
78
+ $data['url'] = get_site_url();
79
+ }
80
+
81
+ // Send data
82
+ $response = wp_remote_post(
83
+ $this->feedback_url,
84
+ array(
85
+ 'body' => $data,
86
+ 'sslverify' => false
87
+ )
88
+ );
89
+
90
+ wp_die(); // this is required to terminate immediately and return a proper response
91
+ }
92
+
93
+
94
+ } // End feedback_action
95
+
96
+ } // End class
97
+ }
feedback/feedback.html ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script id="cp_feedback_html<?php print esc_attr($plugin_slug); ?>" type="text/template">
2
+ <div title="QUICK FEEDBACK">
3
+ <div style="padding:10px;">
4
+ <style type="text/css">
5
+ .cp-feedback-reason-block { margin-top:8px; }
6
+ </style>
7
+ <h3><strong>If you have a moment, please let us know why you are deactivating:</strong></h3>
8
+ <form id="cp_feedback_form{{plugin_slug}}">
9
+ <div class="cp-feedback-reason-block">
10
+ <label>
11
+ <input type="radio" name="answer" value="cpm-no-map">
12
+ It is displayed a gray square istead the map.<br />
13
+ </label>
14
+ <div id="cp_feedback_no_map" style="margin-left:25px;display:none;padding:10px;border:1px dotted gray;color:#660000">
15
+ <p>Go to the <a href="<?php print esc_attr(admin_url( 'options-general.php?page=codepeople-post-map.php' )); ?>">settings page of the plugin</a> and enter an API Key to be used with your website's domain.</p>
16
+ <p>
17
+ With the API Key you should activate the following APIs:<br>
18
+ - Maps JavaScript API<br>
19
+ - Geocoding API<br>
20
+ </p>
21
+ <p style="font-style:italic;"><a href="https://console.cloud.google.com/google/maps-apis" target="_blank">Google Maps APIs</a></p>
22
+ </div>
23
+ </div>
24
+ <div class="cp-feedback-reason-block">
25
+ <label>
26
+ <input type="radio" name="answer" value="cpm-api-key-but-no-map">
27
+ I've entered the API Key but the map is not shown.<br />
28
+ </label>
29
+ <div id="cp_feedback_api_key_but_no_map" style="margin-left:25px;display:none;padding:10px;border:1px dotted gray;color:#660000">
30
+ <p>
31
+ There are multiple possible reasons:<br>
32
+ - The map's shortcode has not been inserted in the page's content: [codepeople-post-map].<br>
33
+ - There are not points in the page. Open the page for edition and define at least one point in it.<br>
34
+ - You have defined an API Key, and entered it into the settings page of the plugin, but you have not enabled the required APIs: Maps JavaScript AP, Geocoding API.<br>
35
+ - You've reached the limit of daily or monthly access to the Google APIs for you plan.
36
+ </p>
37
+
38
+ </div>
39
+ </div>
40
+ <div class="cp-feedback-reason-block">
41
+ <label>
42
+ <input type="radio" name="answer" value="temporary-deactivation"> It's a temporary deactivation. I'm just debugging an issue.<br />
43
+ </label>
44
+ </div>
45
+ <div class="cp-feedback-reason-block">
46
+ <label>
47
+ <input type="radio" name="answer" value="better-plugin"> I found a better plugin.<br />
48
+ </label>
49
+ <div id="cp_feedback_otherplugin" style="margin-left:25px;display:none;">
50
+ <input type="text" name="otherplugin" placeholder="What's the plugin name?" style="width:100%">
51
+ </div>
52
+ </div>
53
+ <div class="cp-feedback-reason-block">
54
+ <label>
55
+ <input type="radio" name="answer" value="other"> Other.<br />
56
+ </label>
57
+ <div id="cp_feedback_other" style="margin-left:25px;display:none;font-weight:bold;">
58
+ Kindly tell us the reason so we can improve.<br />
59
+ <input type="text" name="otherinfo" style="width:100%">
60
+ </div>
61
+ </div>
62
+ <div id="cp_feedback_anonymous" style="display:none;margin-top:30px;text-align:right">
63
+ <input type="checkbox" name="cp_feedback_anonymous" value="yes"> Anonymous feedback
64
+ </div>
65
+ </form>
66
+ </div>
67
+ </div>
68
+ </script>
69
+ <script type="text/javascript">
70
+ jQuery(window).on(
71
+ 'load',
72
+ function()
73
+ {
74
+ var $ = jQuery,
75
+ plugin_slug = '<?php print esc_js($plugin_slug); ?>',
76
+ support_link = '<?php print esc_js($support_link); ?>',
77
+ full_support_link = '<?php print esc_js($full_support_link); ?>';
78
+ $('[data-slug="'+plugin_slug+'"] .deactivate a').
79
+ on(
80
+ 'click',
81
+ function(evt)
82
+ {
83
+ evt.preventDefault()
84
+ evt.stopPropagation();
85
+ // Define events
86
+ $(document).on(
87
+ 'change',
88
+ '[id="cp_feedback_form'+plugin_slug+'"] [name="answer"]',
89
+ function()
90
+ {
91
+ var field = $(this),
92
+ value = field.val(),
93
+ form = field.closest('form');
94
+ $("#cp_feedback_deactivatebtn:visible").val('Submit & Deactivate');
95
+ $("#cp_feedback_deactivatebtn:visible").html('<span class="ui-button-text">Submit &amp; Deactivate</span>');
96
+ form.find("#cp_feedback_anonymous").show();
97
+ form.find("#cp_feedback_other,#cp_feedback_otherplugin,#cp_feedback_no_map,#cp_feedback_api_key_but_no_map").hide();
98
+ switch(value)
99
+ {
100
+ case 'other':
101
+ form.find("#cp_feedback_other").show();
102
+ break;
103
+ case 'better-plugin':
104
+ form.find("#cp_feedback_otherplugin").show();
105
+ break;
106
+ case 'cpm-no-map':
107
+ form.find("#cp_feedback_no_map").show();
108
+ break;
109
+ case 'cpm-api-key-but-no-map':
110
+ form.find("#cp_feedback_api_key_but_no_map").show();
111
+ break;
112
+ }
113
+ }
114
+ );
115
+ var url_redirect = $('[data-slug="'+plugin_slug+'"] .deactivate a').attr('href'),
116
+ html = $('[id="cp_feedback_html'+plugin_slug+'"]').html();
117
+ html = html.replace(/\{\{plugin_slug\}\}/g, plugin_slug)
118
+ .replace(/\{\{support_link\}\}/g, full_support_link)
119
+ .replace(/\{\{support_link_text\}\}/g, support_link);
120
+ $(html).dialog(
121
+ {
122
+ width:'600',
123
+ dialogClass: 'wp-dialog',
124
+ modal: true,
125
+ close: function(event, ui)
126
+ {
127
+ $(this).dialog("close");
128
+ $(this).remove();
129
+ },
130
+ closeOnEscape: true,
131
+ buttons: [
132
+ {
133
+ id: 'cp_feedback_deactivatebtn',
134
+ text: "Skip & Deactivate",
135
+ click: function()
136
+ {
137
+ var form = $('[id="cp_feedback_form'+plugin_slug+'"]'),
138
+ answer = form.find("input[name='answer']:checked").val();
139
+ if (answer == undefined || answer == '')
140
+ {
141
+ window.location.href = url_redirect;
142
+ }
143
+ else
144
+ {
145
+ var data = {
146
+ 'action': 'cp_feedback',
147
+ 'feedback_plugin': plugin_slug
148
+ };
149
+ $.each(form.serializeArray(), function(i,v){data[v['name']] = v['value'];});
150
+ if(ajaxurl) // WordPress global variable with the AJAX URL
151
+ {
152
+ $.post(
153
+ ajaxurl,
154
+ data,
155
+ function(response)
156
+ {
157
+ window.location.href = url_redirect;
158
+ }
159
+ );
160
+ }
161
+ }
162
+ }
163
+ },
164
+ {
165
+ text: "We can help: Support Service",
166
+ click: function()
167
+ {
168
+ window.open(support_link);
169
+ $(this).dialog("close");
170
+ }
171
+ },
172
+ {
173
+ text: "Cancel",
174
+ "class": 'button button-primary button-close',
175
+ click: function()
176
+ {
177
+ $(this).dialog("close");
178
+ }
179
+ }
180
+ ]
181
+ }
182
+ ); // End dialog
183
+ }
184
+ ); // End onclick deactivate btn
185
+ }
186
+ ); // End onload window
187
+ </script>
include/functions.php CHANGED
@@ -297,6 +297,7 @@ class CPM {
297
  <tr valign="top">
298
  <th scope="row"><label><?php _e('I have an API key:', 'codepeople-post-map')?></label></th>
299
  <td>
 
300
  <input type="text" name="cpm_map[api_key]" id="cpm_map_api_key" value="<?php esc_attr_e( ( !empty( $options['api_key'] ) ) ? $options['api_key'] : '' ); ?>" /><br>
301
  <?php
302
  _e( 'Please, visit the following link to get the API Key for your website:', 'codepeople-post-map');
@@ -482,17 +483,17 @@ class CPM {
482
  <span style="color:#FF0000;"><?php _e( 'The feature is available only for the commercial version of plugin. <a href="http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download">Click Here</a>', 'codepeople-post-map' ); ?></span>
483
  </td>
484
  </tr>
485
-
486
- <tr valign="top">
487
- <th scope="row"><label for="cpm_search_box" style="color:#CCCCCC;"><?php _e('Display a search box for places:', 'codepeople-post-map');?></th>
488
- <td>
489
- <input type="checkbox" disabled><span> <?php _e( "Includes an input box on the map for searching places", 'codepeople-post-map' ); ?></span><br />
490
- <?php _e( 'The feature is available only for the commercial version of plugin. <a href="http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download">Click Here</a>', 'codepeople-post-map' ); ?></span>
491
- </td>
492
- </tr>
493
  <?php
494
  }
495
  ?>
 
 
 
 
 
 
 
 
496
  <tr valign="top">
497
  <th scope="row"><label for="cpm_map_route" style="color:#CCCCCC;"><?php _e('Display route:', 'codepeople-post-map');?></th>
498
  <td>
@@ -624,7 +625,7 @@ class CPM {
624
  <ol>
625
  <li><?php _e( 'Enter the point\'s information (the latitude and longitude are required, but are obtained pressing the "verify" button after type the address', 'codepeople-post-map' );?></li>
626
  <li><?php _e('Insert the shortcode in the post\'s content pressing the "insert the map tag" button', 'codepeople-post-map');?></li>
627
- <li><?php _e('If you want to use specific settings just for this map, press the "Show/Hide Map\'s Options" button, and modifies the settings for this map', 'codepeople-post-map'); ?></li>
628
  <li><?php _e( 'Don\'t forget to press the "Update" button for save the post and map data', 'codepeople-post-map');?></li>
629
  </ol>
630
  <div style="border:1px solid #CCC;margin-bottom:10px;min-height:60px; padding:5px;">
@@ -815,7 +816,7 @@ class CPM {
815
  * Loads the scripts required to integrate the plugin with the Gutenberg Editor.
816
  */
817
  function load_gutenberg_code(){
818
- wp_enqueue_script('corner-ad-gutenberg-editor', CPM_PLUGIN_URL.'/js/gutenberg.js', array('wp-blocks', 'wp-element'));
819
  } // End load_gutenberg_code
820
 
821
  /**
@@ -830,7 +831,7 @@ class CPM {
830
  if(get_option('cpm_load_resources_in_footer', false))
831
  {
832
  wp_enqueue_script('jquery');
833
- wp_enqueue_style('cpm_style_css', CPM_PLUGIN_URL.'/styles/cpm-admin-styles.css');
834
  wp_enqueue_script('cpm_public_js', CPM_PLUGIN_URL.'/js/cpm.js', array('jquery'), 'pro', true);
835
  }
836
  else
@@ -1074,6 +1075,7 @@ class CPM {
1074
  * Replace each [codepeople-post-map] shortcode by the map
1075
  */
1076
  function replace_shortcode($atts){
 
1077
  global $post, $id, $cpm_objs, $cpm_in_loop;
1078
 
1079
  // Load the plugin resources
@@ -1172,7 +1174,15 @@ class CPM {
1172
  function _set_map_tag($atts){
1173
  $atts = array_merge($atts, $this->extended);
1174
  extract($atts);
1175
- $output ='<div id="'.$this->map_id.'" class="cpm-map" style="display:none; width:'.esc_attr($width).(( strpos($width, '%') !== false ) ? '' : 'px').'; height:'.esc_attr($height).(( strpos($height, '%') !== false ) ? '' : 'px').'; ';
 
 
 
 
 
 
 
 
1176
  switch ($align) {
1177
  case "left" :
1178
  $output .= 'float:left; margin:'.esc_attr($margin).'px;"';
@@ -1350,5 +1360,15 @@ class CPM {
1350
  array_unshift($links, $settings_link);
1351
  return $links;
1352
  } // End customizationLink
 
 
 
 
 
 
 
 
 
 
1353
  } // End CPM class
1354
  ?>
297
  <tr valign="top">
298
  <th scope="row"><label><?php _e('I have an API key:', 'codepeople-post-map')?></label></th>
299
  <td>
300
+ <p class="cpm_blink_me" style="color:red;"><span style="font-size:2em;">&#11024;</span> <?php _e('Enter your API Key', 'codepeople-post-map');?></p>
301
  <input type="text" name="cpm_map[api_key]" id="cpm_map_api_key" value="<?php esc_attr_e( ( !empty( $options['api_key'] ) ) ? $options['api_key'] : '' ); ?>" /><br>
302
  <?php
303
  _e( 'Please, visit the following link to get the API Key for your website:', 'codepeople-post-map');
483
  <span style="color:#FF0000;"><?php _e( 'The feature is available only for the commercial version of plugin. <a href="http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download">Click Here</a>', 'codepeople-post-map' ); ?></span>
484
  </td>
485
  </tr>
 
 
 
 
 
 
 
 
486
  <?php
487
  }
488
  ?>
489
+ <tr valign="top">
490
+ <th scope="row"><label for="cpm_search_box" style="color:#CCCCCC;"><?php _e('Display a search box for places:', 'codepeople-post-map');?></th>
491
+ <td>
492
+ <input type="checkbox" disabled><span> <?php _e( "Includes an input box on the map for searching places", 'codepeople-post-map' ); ?></span><br />
493
+ <?php _e( 'The feature is available only for the commercial version of plugin. <a href="http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download">Click Here</a>', 'codepeople-post-map' ); ?></span>
494
+ </td>
495
+ </tr>
496
+
497
  <tr valign="top">
498
  <th scope="row"><label for="cpm_map_route" style="color:#CCCCCC;"><?php _e('Display route:', 'codepeople-post-map');?></th>
499
  <td>
625
  <ol>
626
  <li><?php _e( 'Enter the point\'s information (the latitude and longitude are required, but are obtained pressing the "verify" button after type the address', 'codepeople-post-map' );?></li>
627
  <li><?php _e('Insert the shortcode in the post\'s content pressing the "insert the map tag" button', 'codepeople-post-map');?></li>
628
+ <li><?php _e('If you want to use specific settings just for this map, tick the checkbox "Use particular settings for this map", and then, modify the map\'s attributes', 'codepeople-post-map'); ?></li>
629
  <li><?php _e( 'Don\'t forget to press the "Update" button for save the post and map data', 'codepeople-post-map');?></li>
630
  </ol>
631
  <div style="border:1px solid #CCC;margin-bottom:10px;min-height:60px; padding:5px;">
816
  * Loads the scripts required to integrate the plugin with the Gutenberg Editor.
817
  */
818
  function load_gutenberg_code(){
819
+ wp_enqueue_script('corner-ad-gutenberg-editor', CPM_PLUGIN_URL.'/js/gutenberg.js');
820
  } // End load_gutenberg_code
821
 
822
  /**
831
  if(get_option('cpm_load_resources_in_footer', false))
832
  {
833
  wp_enqueue_script('jquery');
834
+ wp_enqueue_style('cpm_style_css', CPM_PLUGIN_URL.'/styles/cpm-styles.css');
835
  wp_enqueue_script('cpm_public_js', CPM_PLUGIN_URL.'/js/cpm.js', array('jquery'), 'pro', true);
836
  }
837
  else
1075
  * Replace each [codepeople-post-map] shortcode by the map
1076
  */
1077
  function replace_shortcode($atts){
1078
+ if(defined( 'REST_REQUEST' )) return;
1079
  global $post, $id, $cpm_objs, $cpm_in_loop;
1080
 
1081
  // Load the plugin resources
1174
  function _set_map_tag($atts){
1175
  $atts = array_merge($atts, $this->extended);
1176
  extract($atts);
1177
+
1178
+ $width = trim($width);
1179
+ if(is_numeric($width)) $width .= 'px';
1180
+
1181
+ $height = trim($height);
1182
+ if(is_numeric($height)) $height .= 'px';
1183
+
1184
+ $output ='<div id="'.$this->map_id.'" class="cpm-map" style="display:none; width:'.esc_attr($width).'; height:'.esc_attr($height).'; ';
1185
+
1186
  switch ($align) {
1187
  case "left" :
1188
  $output .= 'float:left; margin:'.esc_attr($margin).'px;"';
1360
  array_unshift($links, $settings_link);
1361
  return $links;
1362
  } // End customizationLink
1363
+
1364
+ public static function troubleshoot($option)
1365
+ {
1366
+ if(!is_admin())
1367
+ {
1368
+ // Solves a conflict caused by the "Speed Booster Pack" plugin
1369
+ if(is_array($option) && isset($option['jquery_to_footer'])) unset($option['jquery_to_footer']);
1370
+ }
1371
+ return $option;
1372
+ }
1373
  } // End CPM class
1374
  ?>
js/gutenberg.js CHANGED
@@ -1,63 +1,62 @@
1
- ( function( blocks, element ) {
2
- var el = element.createElement,
3
- source = blocks.source;
4
-
5
- /* Hide the button required by the classic editor */
6
- jQuery(function(){
7
- jQuery('#cpm_map_shortcode').hide();
8
- });
9
-
10
- /* Plugin Category */
11
- blocks.getCategories().push({slug: 'cpgm', title: 'CP Google Maps'});
12
-
13
- /* ICONS */
14
- const iconCPGM = el('img', { width: 20, height: 20, src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAiCAYAAABfqvm9AAAABGdBTUEAAK/INwWK6QAAAxFJREFUSMetlktME2EQx5dHBaE8rAgULFBoQRA1QQVBCopQg0ahajSlB0EoEWhpiw8UH0g8kAgioCcvmBhPHo0XD3jwrIlRYmLiRUAjFIOPSEzIjv8pLdIXj5ZJfkmz3+6vOzvfzK4g+I900AiGwSMnD0AzyBLWEFGgB0xFSyRUKE+ikzlZdArsS0km6QYJYW0G9IKYlWRK8Foujaa+gyU00XpWpKtmkW5YyQF+f2mrF4cOaUgRI2Xxe7DNn0wFxrUZCrJbGkXq7iDqaifqbHOny0y8NmtrphqVkqXfQL6nbCN4c1ipoL+dJqJrPkSe4Jx5yHXqTJZ+ALFLhd2pSHPKahRXJVu823aavXBezIyPZWmfSyYHnwcqSx2prFrmAtc8rK5g4ZSzBoI+ShJOE6YGfuhuJ0+21VP3/r2UlyBzwL/5mJsQ19iR2abICJY2sbB/d3KizwKwAOtu8DGvu7xuoTJFCq8PsnDkuFqJbWHzOpHvylPIx7yEN21Ul5fN6yMOYQ0qxQeDERq25ywKB/bIg03ZSuVpqbw+xMI6brFJ87kAi2KiGdtiUYwsTAWT97XlgW0bpDtytJJldme3OeLWVmxsu61Z9Nlufje2mX5ebBFV8XEs7F/aKVIwVotqz/Mw8EjdJ0gVfy46q/sJyDz7OYdT1+eq0acWoium5YUohHFXHsumwU5/E6cA/OgpLcKz6Vi23Yarylg2BzQrzcQzIdgeLw0nFmag15Sx0DujQYwKD2dh62qn9uP8LZtp7nKr6JU6hEcy01k2upbXQAaYvVepce8gPLfnp4+5NnmJsMa4o8Sc+3Op5f9dYgholWkseyYEEArw66mueuFZYn+OGQ0UGhLCQq0QYDxxDA4WIvUeTRHL3gpBhE4WGUnfrUZHuoUpSSy8HYwwgYszqq+laUsTRYSFsbBYCDJe3a0opVG9jmVfQXSwwsGGHbnUe6CYhS+EdQijBu8L/hzxnCiBhjY9LoayZfHk/HgKOgo2hIW6ClK1HkI1EJ3tVrQewkTw2ylUrYcwAnwE4yBupZP/ASesGLIiyjDFAAAAAElFTkSuQmCC" } );
15
-
16
- /* CP Google Maps Code */
17
- blocks.registerBlockType( 'cpgm/map', {
18
- title: 'CP Google Maps',
19
- icon: iconCPGM,
20
- category: 'cpgm',
21
- supports: {
22
- customClassName: false,
23
- className: false
24
- },
25
-
26
- attributes: {
27
- shortcode : {
28
- type : 'text'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  }
30
- },
31
-
32
- edit: function( props ) {
33
- var focus = props.focus;
34
-
35
- function onChangeMap(evt)
36
- {
37
- props.setAttributes({shortcode: evt.target.value});
38
- };
39
-
40
- if(typeof props.attributes.shortcode == 'undefined')
41
- {
42
- props.setAttributes({shortcode:cpm_generate_shortcode()});
43
- }
44
-
45
- return el(
46
- 'textarea',
47
- {
48
- key : 'cpgm-shortcode',
49
- onChange: onChangeMap,
50
- value : props.attributes.shortcode,
51
- style : {width:"100%", resize: "vertical"}
52
- }
53
- );
54
- },
55
-
56
- save: function( props ) {
57
- return props.attributes.shortcode || '[codepeople-post-map]';
58
- }
59
- });
60
- } )(
61
- window.wp.blocks,
62
- window.wp.element
63
- );
1
+ jQuery(function(){
2
+ (function( blocks, element ) {
3
+ var el = element.createElement;
4
+
5
+ /* Hide the button required by the classic editor */
6
+ jQuery(function(){
7
+ jQuery('#cpm_map_shortcode').hide();
8
+ });
9
+
10
+ /* Plugin Category */
11
+ blocks.getCategories().push({slug: 'cpgm', title: 'CP Google Maps'});
12
+
13
+ /* ICONS */
14
+ const iconCPGM = el('img', { width: 20, height: 20, src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAiCAYAAABfqvm9AAAABGdBTUEAAK/INwWK6QAAAxFJREFUSMetlktME2EQx5dHBaE8rAgULFBoQRA1QQVBCopQg0ahajSlB0EoEWhpiw8UH0g8kAgioCcvmBhPHo0XD3jwrIlRYmLiRUAjFIOPSEzIjv8pLdIXj5ZJfkmz3+6vOzvfzK4g+I900AiGwSMnD0AzyBLWEFGgB0xFSyRUKE+ikzlZdArsS0km6QYJYW0G9IKYlWRK8Foujaa+gyU00XpWpKtmkW5YyQF+f2mrF4cOaUgRI2Xxe7DNn0wFxrUZCrJbGkXq7iDqaifqbHOny0y8NmtrphqVkqXfQL6nbCN4c1ipoL+dJqJrPkSe4Jx5yHXqTJZ+ALFLhd2pSHPKahRXJVu823aavXBezIyPZWmfSyYHnwcqSx2prFrmAtc8rK5g4ZSzBoI+ShJOE6YGfuhuJ0+21VP3/r2UlyBzwL/5mJsQ19iR2abICJY2sbB/d3KizwKwAOtu8DGvu7xuoTJFCq8PsnDkuFqJbWHzOpHvylPIx7yEN21Ul5fN6yMOYQ0qxQeDERq25ywKB/bIg03ZSuVpqbw+xMI6brFJ87kAi2KiGdtiUYwsTAWT97XlgW0bpDtytJJldme3OeLWVmxsu61Z9Nlufje2mX5ebBFV8XEs7F/aKVIwVotqz/Mw8EjdJ0gVfy46q/sJyDz7OYdT1+eq0acWoium5YUohHFXHsumwU5/E6cA/OgpLcKz6Vi23Yarylg2BzQrzcQzIdgeLw0nFmag15Sx0DujQYwKD2dh62qn9uP8LZtp7nKr6JU6hEcy01k2upbXQAaYvVepce8gPLfnp4+5NnmJsMa4o8Sc+3Op5f9dYgholWkseyYEEArw66mueuFZYn+OGQ0UGhLCQq0QYDxxDA4WIvUeTRHL3gpBhE4WGUnfrUZHuoUpSSy8HYwwgYszqq+laUsTRYSFsbBYCDJe3a0opVG9jmVfQXSwwsGGHbnUe6CYhS+EdQijBu8L/hzxnCiBhjY9LoayZfHk/HgKOgo2hIW6ClK1HkI1EJ3tVrQewkTw2ylUrYcwAnwE4yBupZP/ASesGLIiyjDFAAAAAElFTkSuQmCC" } );
15
+
16
+ /* CP Google Maps Code */
17
+ blocks.registerBlockType( 'cpgm/map', {
18
+ title: 'CP Google Maps',
19
+ icon: iconCPGM,
20
+ category: 'cpgm',
21
+ supports: {
22
+ customClassName: false,
23
+ className: false
24
+ },
25
+
26
+ attributes: {
27
+ shortcode : {
28
+ type : 'text'
29
+ }
30
+ },
31
+
32
+ edit: function( props ) {
33
+ function onChangeMap(evt)
34
+ {
35
+ props.setAttributes({shortcode: evt.target.value});
36
+ };
37
+
38
+ if(typeof props.attributes.shortcode == 'undefined')
39
+ {
40
+ props.attributes.shortcode = cpm_generate_shortcode();
41
+ }
42
+
43
+ return el(
44
+ 'textarea',
45
+ {
46
+ key : 'cpgm-shortcode',
47
+ onChange: onChangeMap,
48
+ value : props.attributes.shortcode,
49
+ style : {width:"100%", resize: "vertical"}
50
+ }
51
+ );
52
+ },
53
+
54
+ save: function( props ) {
55
+ return props.attributes.shortcode || '[codepeople-post-map]';
56
  }
57
+ });
58
+ } )(
59
+ window.wp.blocks,
60
+ window.wp.element
61
+ );
62
+ });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/codepeople-post-map-es_ES.mo CHANGED
Binary file
languages/codepeople-post-map-es_ES.po CHANGED
@@ -1,253 +1,253 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: codepeople-post-map\n"
4
- "POT-Creation-Date: 2014-12-27 02:32+0100\n"
5
- "PO-Revision-Date: 2014-12-27 02:33+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: CodePeople\n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.7\n"
13
  "X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../codepeople-post-map.php:87
19
  msgid "Associate an address to the post for Google Maps association"
20
  msgstr "Asociar una dirección al puesto de asociación Google Maps"
21
 
22
- #: ../include/functions.php:50
23
  msgid "ARABIC"
24
  msgstr "ÁRABE"
25
 
26
- #: ../include/functions.php:51 ../include/functions.php:63
27
  msgid "BASQUE"
28
  msgstr "VASCO"
29
 
30
- #: ../include/functions.php:52
31
  msgid "BULGARIAN"
32
  msgstr "Búlgaro"
33
 
34
- #: ../include/functions.php:53
35
  msgid "BENGALI"
36
  msgstr "BENGALI"
37
 
38
- #: ../include/functions.php:54
39
  msgid "CATALAN"
40
  msgstr "CATALÁN"
41
 
42
- #: ../include/functions.php:55
43
  msgid "CZECH"
44
  msgstr "CHECA"
45
 
46
- #: ../include/functions.php:56
47
  msgid "DANISH"
48
  msgstr "Danés"
49
 
50
- #: ../include/functions.php:57
51
  msgid "GERMAN"
52
  msgstr "ALEMAN"
53
 
54
- #: ../include/functions.php:58
55
  msgid "GREEK"
56
  msgstr "Griego"
57
 
58
- #: ../include/functions.php:59
59
  msgid "ENGLISH"
60
  msgstr "Inglés"
61
 
62
- #: ../include/functions.php:60
63
  msgid "ENGLISH (AUSTRALIAN)"
64
  msgstr "ENGLISH ( AUSTRALIA )"
65
 
66
- #: ../include/functions.php:61
67
  msgid "ENGLISH (GREAT BRITAIN)"
68
  msgstr "INGLÉS ( GRAN BRETAÑA )"
69
 
70
- #: ../include/functions.php:62
71
  msgid "SPANISH"
72
  msgstr "ESPAÑOL"
73
 
74
- #: ../include/functions.php:64
75
  msgid "FARSI"
76
  msgstr "FARSI"
77
 
78
- #: ../include/functions.php:65
79
  msgid "FINNISH"
80
  msgstr "FINLANDIA"
81
 
82
- #: ../include/functions.php:66
83
  msgid "FILIPINO"
84
  msgstr "FILIPINO"
85
 
86
- #: ../include/functions.php:67
87
  msgid "FRENCH"
88
  msgstr "FRANCÉS"
89
 
90
- #: ../include/functions.php:68
91
  msgid "GALICIAN"
92
  msgstr "GALLEGO"
93
 
94
- #: ../include/functions.php:69
95
  msgid "GUJARATI"
96
  msgstr "GUJARATI"
97
 
98
- #: ../include/functions.php:70
99
  msgid "HINDI"
100
  msgstr "HINDI"
101
 
102
- #: ../include/functions.php:71
103
  msgid "CROATIAN"
104
  msgstr "Croata"
105
 
106
- #: ../include/functions.php:72
107
  msgid "HUNGARIAN"
108
  msgstr "Húngara"
109
 
110
- #: ../include/functions.php:73
111
  msgid "INDONESIAN"
112
  msgstr "Indonesia"
113
 
114
- #: ../include/functions.php:74
115
  msgid "ITALIAN"
116
  msgstr "Italiano"
117
 
118
- #: ../include/functions.php:75
119
  msgid "HEBREW"
120
  msgstr "HEBREW"
121
 
122
- #: ../include/functions.php:76
123
  msgid "JAPANESE"
124
  msgstr "JAPONÉS"
125
 
126
- #: ../include/functions.php:77
127
  msgid "KANNADA"
128
  msgstr "KANNADA"
129
 
130
- #: ../include/functions.php:78
131
  msgid "KOREAN"
132
  msgstr "Coreano"
133
 
134
- #: ../include/functions.php:79
135
  msgid "LITHUANIAN"
136
  msgstr "LITUANIA"
137
 
138
- #: ../include/functions.php:80
139
  msgid "LATVIAN"
140
  msgstr "LETONIA"
141
 
142
- #: ../include/functions.php:81
143
  msgid "MALAYALAM"
144
  msgstr "MALAYALAM"
145
 
146
- #: ../include/functions.php:82
147
  msgid "MARATHI"
148
  msgstr "MARATHI"
149
 
150
- #: ../include/functions.php:83
151
  msgid "DUTCH"
152
  msgstr "Holandesa"
153
 
154
- #: ../include/functions.php:84
155
  msgid "NORWEGIAN"
156
  msgstr "Noruego"
157
 
158
- #: ../include/functions.php:85
159
  msgid "ORIYA"
160
  msgstr "ORIYA"
161
 
162
- #: ../include/functions.php:86
163
  msgid "POLISH"
164
  msgstr "POLACO"
165
 
166
- #: ../include/functions.php:87
167
  msgid "PORTUGUESE"
168
  msgstr "PORTUGUESA"
169
 
170
- #: ../include/functions.php:88
171
  msgid "PORTUGUESE (BRAZIL)"
172
  msgstr "Portugués (Brasil )"
173
 
174
- #: ../include/functions.php:89
175
  msgid "PORTUGUESE (PORTUGAL)"
176
  msgstr "PORTUGUESA (PORTUGAL )"
177
 
178
- #: ../include/functions.php:90
179
  msgid "ROMANIAN"
180
  msgstr "RUMANO"
181
 
182
- #: ../include/functions.php:91
183
  msgid "RUSSIAN"
184
  msgstr "RUSIA"
185
 
186
- #: ../include/functions.php:92
187
  msgid "SLOVAK"
188
  msgstr "ESLOVAQUIA"
189
 
190
- #: ../include/functions.php:93
191
  msgid "SLOVENIAN"
192
  msgstr "ESLOVENA"
193
 
194
- #: ../include/functions.php:94
195
  msgid "SERBIAN"
196
  msgstr "SERBIA"
197
 
198
- #: ../include/functions.php:95
199
  msgid "SWEDISH"
200
  msgstr "SUECO"
201
 
202
- #: ../include/functions.php:96
203
  msgid "TAGALOG"
204
  msgstr "TAGALOGO"
205
 
206
- #: ../include/functions.php:97
207
  msgid "TAMIL"
208
  msgstr "TAMIL"
209
 
210
- #: ../include/functions.php:98
211
  msgid "TELUGU"
212
  msgstr "Telugu"
213
 
214
- #: ../include/functions.php:99
215
  msgid "THAI"
216
  msgstr "THAI"
217
 
218
- #: ../include/functions.php:100
219
  msgid "TURKISH"
220
  msgstr "TURCO"
221
 
222
- #: ../include/functions.php:101
223
  msgid "UKRAINIAN"
224
  msgstr "Ucrania"
225
 
226
- #: ../include/functions.php:102
227
  msgid "VIETNAMESE"
228
  msgstr "Vietnamita"
229
 
230
- #: ../include/functions.php:103
231
  msgid "CHINESE (SIMPLIFIED)"
232
  msgstr "Chino (simplificado )"
233
 
234
- #: ../include/functions.php:104
235
  msgid "CHINESE (TRADITIONAL)"
236
  msgstr "Chino (tradicional )"
237
 
238
- #: ../include/functions.php:343
239
  msgid "Select the marker by clicking on the images"
240
  msgstr "Seleccione el marcador haciendo clic en las imágenes"
241
 
242
- #: ../include/functions.php:354
243
  msgid "Powered by"
244
  msgstr "Impulsado por"
245
 
246
- #: ../include/functions.php:376
247
  msgid "Maps Configuration"
248
  msgstr "Configuración del Mapa"
249
 
250
- #: ../include/functions.php:377 ../include/functions.php:746
251
  msgid ""
252
  "For any issues with the map, go to our <a href=\"http://wordpress.dwbooster."
253
  "com/contact-us\" target=\"_blank\">contact page</a> and leave us a message."
@@ -256,7 +256,7 @@ msgstr ""
256
  "wordpress.dwbooster.com/contact - us\" contacto target=\"_blank\"> página </"
257
  "a> y nos deja un mensaje"
258
 
259
- #: ../include/functions.php:379
260
  msgid ""
261
  "If you want test the premium version of CP Google Maps go to the following "
262
  "links:<br/> <a href=\"http://demos.net-factor.com/cp-google-maps/wp-login.php"
@@ -269,219 +269,312 @@ msgstr ""
269
  "login.php\">Área de administración</a><br /><a href=\"http://demos.net-"
270
  "factor.com/cp-google-maps/\">Página pública</a>"
271
 
272
- #: ../include/functions.php:386
 
 
 
 
 
 
 
 
273
  msgid "Use particular settings for this map:"
274
  msgstr "Usar ajustes particulares para este mapa :"
275
 
276
- #: ../include/functions.php:395
277
  msgid "Map zoom:"
278
  msgstr "Zoom :"
279
 
280
- #: ../include/functions.php:401
281
  msgid "Dynamic zoom:"
282
  msgstr "Zoom dinámico:"
283
 
284
- #: ../include/functions.php:403
285
  msgid "Allows to adjust the zoom dynamically to display all points on map"
286
  msgstr ""
287
  "Permite ajustar el zoom de forma dinámica para mostrar todos los puntos en "
288
  "el mapa"
289
 
290
- #: ../include/functions.php:407
291
  msgid "Map width:"
292
  msgstr "Ancho del mapa:"
293
 
294
- #: ../include/functions.php:419
295
  msgid "Map height:"
296
  msgstr "Altura del mapa :"
297
 
298
- #: ../include/functions.php:425
299
  msgid "Map margin:"
300
  msgstr "Margen del mapa :"
301
 
302
- #: ../include/functions.php:431
303
  msgid "Map align:"
304
  msgstr "Alinear el mapa:"
305
 
306
- #: ../include/functions.php:434
307
  msgid "left"
308
  msgstr "izquierda"
309
 
310
- #: ../include/functions.php:435
311
  msgid "center"
312
  msgstr "centro"
313
 
314
- #: ../include/functions.php:436
315
  msgid "right"
316
  msgstr "derecho"
317
 
318
- #: ../include/functions.php:441
319
  msgid "Map type:"
320
  msgstr "Tipo de mapa :"
321
 
322
- #: ../include/functions.php:444
323
  msgid "ROADMAP - Displays a normal street map"
324
  msgstr "HOJA DE RUTA - Muestra un mapa normal de la calle"
325
 
326
- #: ../include/functions.php:445
327
  msgid "SATELLITE - Displays satellite images"
328
  msgstr "SATÉLITE - muestra imágenes de satélite"
329
 
330
- #: ../include/functions.php:446
331
  msgid ""
332
  "TERRAIN - Displays maps with physical features such as terrain and vegetation"
333
  msgstr ""
334
  "TERRENO - Muestra los mapas con las características físicas, tales como el "
335
  "terreno y la vegetación"
336
 
337
- #: ../include/functions.php:447
338
  msgid ""
339
  "HYBRID - Displays a transparent layer of major streets on satellite images"
340
  msgstr ""
341
  "HYBRID - Muestra una capa transparente de las principales calles en imágenes "
342
  "de satélite"
343
 
344
- #: ../include/functions.php:452
345
  msgid "Map language:"
346
  msgstr "Idioma del mapa:"
347
 
348
- #: ../include/functions.php:456
349
  msgid "Allow drag the map:"
350
  msgstr "Permitir desplazar los mapas :"
351
 
352
- #: ../include/functions.php:463
353
- msgid "Display route:"
354
- msgstr "Dibujar ruta:"
355
-
356
- #: ../include/functions.php:465
357
- msgid "Draws the route between the points in the same post"
358
- msgstr "Dibujar las rutas entre los puntos en un mismo post"
359
-
360
- #: ../include/functions.php:476
361
- msgid "Travel mode:"
362
- msgstr "Modo de viajar :"
363
-
364
- #: ../include/functions.php:488
365
  msgid "Display map in post/page:"
366
  msgstr "Visualizar mapa en post / página:"
367
 
368
- #: ../include/functions.php:491
369
  msgid "as icon"
370
  msgstr "como icono"
371
 
372
- #: ../include/functions.php:492
373
  msgid "as full map"
374
  msgstr "mapa como completo"
375
 
376
- #: ../include/functions.php:498
377
  msgid "Show info bubbles:"
378
  msgstr "Mostrar información de burbujas :"
379
 
380
- #: ../include/functions.php:500
381
  msgid "Display the bubbles associated to the points"
382
  msgstr "Mostrar las burbujas asociadas a los puntos"
383
 
384
- #: ../include/functions.php:505
385
  msgid "Display a bubble by default:"
386
  msgstr "Mostrar una burbuja por defecto:"
387
 
388
- #: ../include/functions.php:507
389
  msgid "Display a bubble opened by default"
390
  msgstr "Mostrar una burbuja abierta por defecto"
391
 
392
- #: ../include/functions.php:512
393
- msgid "Display the Panoramio layer:"
394
- msgstr "Mostrar la capa Panoramio :"
 
 
395
 
396
- #: ../include/functions.php:514
397
- msgid "Display a layer with photos published in Panoramio"
398
- msgstr "Mostrar una capa con las fotos publicadas en Panoramio"
 
 
399
 
400
- #: ../include/functions.php:519
401
- msgid "Display a bundle of points in the same area, like a cluster:"
402
  msgstr ""
403
- "Mostrar un conjunto de puntos en la misma zona , al igual que un clúster:"
404
 
405
- #: ../include/functions.php:521
406
- msgid "Displays the number of points in the cluster"
407
- msgstr "Mostrar un conjunto de puntos en la misma zona ,en forma de clúster:"
408
 
409
- #: ../include/functions.php:529
 
 
 
 
 
 
 
 
 
 
 
 
410
  msgid "Display the get directions link:"
411
  msgstr "Mostrar el enlace CÓMO LLEGAR :"
412
 
413
- #: ../include/functions.php:533
414
  msgid "Display a link at bottom of infowindow to get directions"
415
  msgstr ""
416
  "Mostar un enlace al final de la ventana de información para obtener la "
417
  "dirección"
418
 
419
- #: ../include/functions.php:538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
420
  msgid "Display a link to Google Maps:"
421
  msgstr "Mostrar un enlace a Google Maps :"
422
 
423
- #: ../include/functions.php:540
424
  msgid "Display a link at bottom of infowindow to display on Google Maps"
425
  msgstr ""
426
  "Mostar un enlace al final de la ventana de información para mostrar en "
427
  "Google Maps"
428
 
429
- #: ../include/functions.php:545
430
  msgid "Display a link to street view:"
431
  msgstr "Mostrar un enlace a la vista de la calle:"
432
 
433
- #: ../include/functions.php:547
434
  msgid ""
435
  "Display a link at bottom of infowindow to load the corresponding street view"
436
  msgstr ""
437
  "Mostar un enlace al final de la ventana de información para cargar en el "
438
  "Street View"
439
 
440
- #: ../include/functions.php:552
 
 
 
 
 
 
 
 
 
441
  msgid "Display the user's location:"
442
  msgstr "Muestra la ubicación del usuario :"
443
 
444
- #: ../include/functions.php:554
445
  msgid "Display an icon with the user's location on map"
446
  msgstr "Muestra un icono con la ubicación del usuario"
447
 
448
- #: ../include/functions.php:559
 
 
 
 
 
 
 
 
 
 
449
  msgid "Title of user's location:"
450
  msgstr "Título de la ubicación del usuario :"
451
 
452
- #: ../include/functions.php:561
453
  msgid "Title of user's location"
454
  msgstr "Título de la ubicación del usuario"
455
 
456
- #: ../include/functions.php:569
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  msgid "Options"
458
  msgstr "Opciones"
459
 
460
- #: ../include/functions.php:572
461
  msgid "Display the street view control"
462
  msgstr "Mostrar el control de vista de la calle"
463
 
464
- #: ../include/functions.php:574
465
  msgid "Enable mouse wheel zoom"
466
  msgstr "Habilitar ratón con rueda de zoom"
467
 
468
- #: ../include/functions.php:576
469
- msgid "Enable zoom/pan controls"
 
 
 
 
 
 
 
 
470
  msgstr "Activar controles de zoom / pan"
471
 
472
- #: ../include/functions.php:578
473
  msgid "Enable map type controls (Map, Satellite, or Hybrid)"
474
  msgstr "Activar los controles de tipo de mapa (Mapa , Satélite o híbridos )"
475
 
476
- #: ../include/functions.php:583
477
- msgid "Enter the number of posts to display on the map"
 
 
478
  msgstr "Entre el número de posts a visualizar en el mapa"
479
 
480
- #: ../include/functions.php:587
481
  msgid "Allow stylize the maps:"
482
  msgstr "Permitir estilizar los mapas :"
483
 
484
- #: ../include/functions.php:597
485
  msgid ""
486
  "If you want change the maps' styles, be sure to know how to create a JSON "
487
  "structure with the map's styles"
@@ -489,84 +582,27 @@ msgstr ""
489
  "Si usted quiere cambiar los estilos de los mapas , asegúrese de saber cómo "
490
  "crear una estructura JSON con estilos del mapa"
491
 
492
- #: ../include/functions.php:604
493
  msgid "Display the map's legend:"
494
  msgstr "Mostrar la leyenda del mapa:"
495
 
496
- #: ../include/functions.php:610
497
  msgid "Select the taxonomy to display on legend:"
498
  msgstr "Seleccione la taxonomía para mostrar en la leyenda :"
499
 
500
- #: ../include/functions.php:616
501
  msgid "Select a taxonomy"
502
  msgstr "Seleccionar una taxonomía"
503
 
504
- #: ../include/functions.php:627
505
  msgid "Enter a title for legend:"
506
  msgstr "Introduzca un título para la leyenda :"
507
 
508
- #: ../include/functions.php:633
509
  msgid "Enter a classname to be applied to the legend:"
510
  msgstr "Introduzca un nombre de clase que se aplicará a la leyenda :"
511
 
512
- #: ../include/functions.php:654
513
- msgid "Map point description"
514
- msgstr "Mapa Descripción del punto"
515
-
516
- #: ../include/functions.php:657
517
- msgid "Location name:"
518
- msgstr "Nombre de la ubicación :"
519
-
520
- #: ../include/functions.php:663
521
- msgid "Location description:"
522
- msgstr "Descripción de la ubicación :"
523
-
524
- #: ../include/functions.php:672
525
- msgid "Select an images to attach to the point: "
526
- msgstr "Seleccionar una imágenes para adjuntar al punto:"
527
-
528
- #: ../include/functions.php:686
529
- msgid "Address:"
530
- msgstr "Dirección:"
531
-
532
- #: ../include/functions.php:692
533
- msgid "Latitude:"
534
- msgstr "Latitud:"
535
-
536
- #: ../include/functions.php:698
537
- msgid "Longitude:"
538
- msgstr "Longitud :"
539
-
540
- #: ../include/functions.php:704
541
- msgid "Verify"
542
- msgstr "Verificar"
543
-
544
- #: ../include/functions.php:706
545
- msgid ""
546
- "Verify this latitude and longitude using Geocoding. This could overwrite the "
547
- "point address."
548
- msgstr ""
549
- "Verificar esta latitud y longitud usando geocodificación . Esto podría "
550
- "sobrescribir la dirección del punto ."
551
-
552
- #: ../include/functions.php:706
553
- msgid "Required: Press the button \"verify\" after complete the address."
554
- msgstr ""
555
- "Deseados: pulse el botón \" verifique \"después de completar la dirección."
556
-
557
- #: ../include/functions.php:714
558
- msgid ""
559
- "To correct the latitude and longitud directly on MAP, type the address and "
560
- "press the Verify button."
561
- msgstr ""
562
- "Para corregir la latitud y Longitud directamente en MAP , escriba la "
563
- "dirección y pulse el botón Verificar ."
564
-
565
- #: ../include/functions.php:728
566
- msgid "Add/Update Point"
567
- msgstr "Añadir / Actualizar Point"
568
-
569
- #: ../include/functions.php:745 ../include/functions.php:1041
570
  msgid ""
571
  "For more information go to the <a href=\"http://wordpress.dwbooster.com/"
572
  "content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
@@ -576,11 +612,11 @@ msgstr ""
576
  "wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
577
  "\"_blank\"> CodePeople Post Ubicación </a>"
578
 
579
- #: ../include/functions.php:748
580
  msgid "To insert a map in the post follow the steps below"
581
  msgstr "Para insertar un mapa en el post, siga los siguientes pasos"
582
 
583
- #: ../include/functions.php:751
584
  msgid ""
585
  "Enter the point's information (the latitude and longitude are required, but "
586
  "are obtained pressing the \"verify\" button after type the address"
@@ -589,7 +625,7 @@ msgstr ""
589
  "son obtenidos pulsando el botón \"Verificar\", después de escribir la "
590
  "dirección)"
591
 
592
- #: ../include/functions.php:752
593
  msgid ""
594
  "Insert the shortcode in the post's content pressing the \"insert the map tag"
595
  "\" button"
@@ -597,26 +633,88 @@ msgstr ""
597
  "Inserte el shortcode en el contenido del post, presionando el botón "
598
  "\"inserte la etiqueta del mapa\""
599
 
600
- #: ../include/functions.php:753
 
 
 
 
601
  msgid ""
602
- "If you want to use specific settings just for this map, press the \"Show/"
603
- "Hide Map's Options\" button, and modifies the settings for this map"
 
604
  msgstr ""
605
  "Si desea especificar una confguración para este mapa en particular, marque "
606
  "la opción \"Usar ajustes particulares para este mapa\""
607
 
608
- #: ../include/functions.php:754
609
  msgid ""
610
  "Don't forget to press the \"Update\" button for save the post and map data"
611
  msgstr ""
612
  "No olvide presionar el botón \"Actualizar\" para salvar los datos del post y "
613
  "del mapa"
614
 
615
- #: ../include/functions.php:757
616
  msgid "Map points"
617
  msgstr "Puntos de Ruta"
618
 
619
- #: ../include/functions.php:784
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
620
  msgid ""
621
  "To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
622
  "strong> button and save the post/page modifications."
@@ -625,43 +723,55 @@ msgstr ""
625
  "insertar el mapa de etiquetas \" </ strong> y guardar las modificaciones del "
626
  "post / página."
627
 
628
- #: ../include/functions.php:791
629
  msgid "Do you want display a <strong>shape</strong> on map?"
630
  msgstr "¿Quieres mostrar una <strong> forma </strong> en el mapa ?"
631
 
632
- #: ../include/functions.php:803
633
- msgid "stroke Weight: "
634
- msgstr "Grueso de la linea:"
635
-
636
- #: ../include/functions.php:813
637
- msgid "Fill Color: "
638
- msgstr "Color de relleno"
639
-
640
- #: ../include/functions.php:824
641
- msgid "Fill Opacity: "
642
- msgstr "Llenar Opacidad:"
643
-
644
- #: ../include/functions.php:832
645
- msgid "Use a number between 0 and 1, 0 is transparent. "
646
- msgstr "Usar un número entre 0 y 1 , 0 es transparente\"."
647
-
648
- #: ../include/functions.php:850
649
  msgid "If you want to display the map in page / post:"
650
  msgstr "Si usted quiere mostrar el mapa en la página / post:"
651
 
652
- #: ../include/functions.php:851
653
  msgid "Insert the map tag"
654
  msgstr "Inserte la etiqueta del mapa"
655
 
656
- #: ../include/functions.php:867
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
657
  msgid "To display the points that belong to any category"
658
  msgstr "Mostrar los puntos que pertenecen a una categoría"
659
 
660
- #: ../include/functions.php:976
 
 
 
 
661
  msgid "Settings Updated"
662
  msgstr "Configuración de Actualización"
663
 
664
- #: ../include/functions.php:987
665
  msgid ""
666
  "Generate points dynamically from geolocation information included on images, "
667
  "when images are uploaded to WordPress:"
@@ -669,7 +779,7 @@ msgstr ""
669
  "Generar puntos de forma dinámica a partir de información de geolocalización "
670
  "incluida en las imágenes, cuando las imágenes se cargan en WordPress:"
671
 
672
- #: ../include/functions.php:990
673
  msgid ""
674
  "The geolocation information is added to the images from your mobiles or "
675
  "cameras, if they have associated GPS devices"
@@ -677,14 +787,36 @@ msgstr ""
677
  "La información de geolocalización se añade a las imágenes desde sus "
678
  "teléfonos móviles o cámaras, si han asociado dispositivos GPS"
679
 
680
- #: ../include/functions.php:995
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
681
  msgid ""
682
  "Generate points dynamically from geolocation information included on posts:"
683
  msgstr ""
684
  "Generar puntos de forma dinámica a partir de información de geolocalización "
685
  "incluida en los mensajes :"
686
 
687
- #: ../include/functions.php:998
688
  msgid ""
689
  "The geolocation information is added to the post from WordPress app in your "
690
  "mobile"
@@ -692,76 +824,136 @@ msgstr ""
692
  "La información de geolocalización se añade al post de WordPress aplicación "
693
  "en tu móvil"
694
 
695
- #: ../include/functions.php:1003
696
  msgid "Use points information in search results:"
697
  msgstr "Utilizar la información puntos en los resultados de búsqueda :"
698
 
699
- #: ../include/functions.php:1009
 
 
 
 
 
 
700
  msgid "Highlight post when mouse move over related point on map:"
701
  msgstr ""
702
  "Post Resaltar cuando mueva el ratón sobre el punto relacionado en el mapa :"
703
 
704
- #: ../include/functions.php:1015
 
 
 
 
705
  msgid "Highlight class:"
706
  msgstr "Clase Highlight :"
707
 
708
- #: ../include/functions.php:1021
 
 
 
 
709
  msgid "Allow to associate a map to the post types:"
710
  msgstr "Permitir a asociar el mapa de los tipos de posts:"
711
 
712
- #: ../include/functions.php:1036
713
  msgid "Posts and Pages are selected by default"
714
  msgstr "Mensajes y páginas se seleccionan de forma predeterminada"
715
 
716
- #: ../include/functions.php:1042
717
- msgid "Update Settings"
718
- msgstr "Configuración de la actualización"
 
 
719
 
720
- #: ../include/functions.php:1585
721
- msgid "Get directions"
722
- msgstr "Cómo llegar"
723
 
724
- #: ../include/functions.php:1586
725
- msgid "Display on map"
726
- msgstr "Pantalla en el mapa"
 
 
727
 
728
- #: ../include/functions.php:1587
729
- msgid "Display street view"
730
- msgstr "Mostrar Vista de la calle"
731
 
732
- #: ../include/functions.php:1688
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
733
  msgid "Request custom changes"
734
  msgstr "Solicitar cambios de encargo"
735
 
736
- #: ../include/functions.php:1745
737
- msgid "Title:"
738
- msgstr "Título:"
739
 
740
- #: ../include/functions.php:1747
741
- msgid "Enter the map's attributes:"
742
- msgstr "Introduzca los atributos del mapa :"
743
 
744
- #: ../include/functions.php:1750
745
- msgid ""
746
- "To display the points that belong to an category, use the attribute: cat="
747
- "\"2\", where 2 is the category's ID. To display the points that belong to "
748
- "multiple categories, separate each one by the comma symbol: cat=\"2,5,8\". "
749
- "To display all points on website, use the value -1 for category's ID, cat="
750
- "\"-1\". If you want to display only the points associated with the current "
751
- "post, don't use the \"cat\" attribute."
752
- msgstr ""
753
- "Para mostrar los puntos que pertenecen a una categoría , utilice el "
754
- "atributo : cat = \" . 2 \" , donde 2 es el ID de la categoría para mostrar "
755
- "los puntos que pertenecen a varias categorías , separe cada uno con el "
756
- "símbolo coma: cat =\"2,5,8\". Para mostrar todos los puntos del sitio web, "
757
- "utilice el valor -1 para el ID de la categoría, cat=\"-1\". Para mostrar "
758
- "solo los puntos asociados al post actual, no utilice el atribute \"cat\""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
759
 
760
  #~ msgid ""
761
- #~ "Multiple points in the same Post/Page are available only in the <a href="
762
- #~ "\"http://wordpress.dwbooster.com/content-tools/codepeople-post-"
763
- #~ "map#download\" target=\"_blank\">advanced version</a>."
 
 
 
764
  #~ msgstr ""
765
- #~ "Para obtener más información, visite la página del plugin <a href="
766
- #~ "\"http://wordpress.dwbooster.com/content - tools/codepeople post - map\" "
767
- #~ "target=\"_blank\"> CodePeople Post Ubicación </a>"
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: codepeople-post-map\n"
4
+ "POT-Creation-Date: 2018-07-17 01:39+0200\n"
5
+ "PO-Revision-Date: 2018-07-17 01:40+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: CodePeople\n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.9\n"
13
  "X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../codepeople-post-map.php:35
19
  msgid "Associate an address to the post for Google Maps association"
20
  msgstr "Asociar una dirección al puesto de asociación Google Maps"
21
 
22
+ #: ../include/functions.php:26
23
  msgid "ARABIC"
24
  msgstr "ÁRABE"
25
 
26
+ #: ../include/functions.php:27 ../include/functions.php:39
27
  msgid "BASQUE"
28
  msgstr "VASCO"
29
 
30
+ #: ../include/functions.php:28
31
  msgid "BULGARIAN"
32
  msgstr "Búlgaro"
33
 
34
+ #: ../include/functions.php:29
35
  msgid "BENGALI"
36
  msgstr "BENGALI"
37
 
38
+ #: ../include/functions.php:30
39
  msgid "CATALAN"
40
  msgstr "CATALÁN"
41
 
42
+ #: ../include/functions.php:31
43
  msgid "CZECH"
44
  msgstr "CHECA"
45
 
46
+ #: ../include/functions.php:32
47
  msgid "DANISH"
48
  msgstr "Danés"
49
 
50
+ #: ../include/functions.php:33
51
  msgid "GERMAN"
52
  msgstr "ALEMAN"
53
 
54
+ #: ../include/functions.php:34
55
  msgid "GREEK"
56
  msgstr "Griego"
57
 
58
+ #: ../include/functions.php:35
59
  msgid "ENGLISH"
60
  msgstr "Inglés"
61
 
62
+ #: ../include/functions.php:36
63
  msgid "ENGLISH (AUSTRALIAN)"
64
  msgstr "ENGLISH ( AUSTRALIA )"
65
 
66
+ #: ../include/functions.php:37
67
  msgid "ENGLISH (GREAT BRITAIN)"
68
  msgstr "INGLÉS ( GRAN BRETAÑA )"
69
 
70
+ #: ../include/functions.php:38
71
  msgid "SPANISH"
72
  msgstr "ESPAÑOL"
73
 
74
+ #: ../include/functions.php:40
75
  msgid "FARSI"
76
  msgstr "FARSI"
77
 
78
+ #: ../include/functions.php:41
79
  msgid "FINNISH"
80
  msgstr "FINLANDIA"
81
 
82
+ #: ../include/functions.php:42
83
  msgid "FILIPINO"
84
  msgstr "FILIPINO"
85
 
86
+ #: ../include/functions.php:43
87
  msgid "FRENCH"
88
  msgstr "FRANCÉS"
89
 
90
+ #: ../include/functions.php:44
91
  msgid "GALICIAN"
92
  msgstr "GALLEGO"
93
 
94
+ #: ../include/functions.php:45
95
  msgid "GUJARATI"
96
  msgstr "GUJARATI"
97
 
98
+ #: ../include/functions.php:46
99
  msgid "HINDI"
100
  msgstr "HINDI"
101
 
102
+ #: ../include/functions.php:47
103
  msgid "CROATIAN"
104
  msgstr "Croata"
105
 
106
+ #: ../include/functions.php:48
107
  msgid "HUNGARIAN"
108
  msgstr "Húngara"
109
 
110
+ #: ../include/functions.php:49
111
  msgid "INDONESIAN"
112
  msgstr "Indonesia"
113
 
114
+ #: ../include/functions.php:50
115
  msgid "ITALIAN"
116
  msgstr "Italiano"
117
 
118
+ #: ../include/functions.php:51
119
  msgid "HEBREW"
120
  msgstr "HEBREW"
121
 
122
+ #: ../include/functions.php:52
123
  msgid "JAPANESE"
124
  msgstr "JAPONÉS"
125
 
126
+ #: ../include/functions.php:53
127
  msgid "KANNADA"
128
  msgstr "KANNADA"
129
 
130
+ #: ../include/functions.php:54
131
  msgid "KOREAN"
132
  msgstr "Coreano"
133
 
134
+ #: ../include/functions.php:55
135
  msgid "LITHUANIAN"
136
  msgstr "LITUANIA"
137
 
138
+ #: ../include/functions.php:56
139
  msgid "LATVIAN"
140
  msgstr "LETONIA"
141
 
142
+ #: ../include/functions.php:57
143
  msgid "MALAYALAM"
144
  msgstr "MALAYALAM"
145
 
146
+ #: ../include/functions.php:58
147
  msgid "MARATHI"
148
  msgstr "MARATHI"
149
 
150
+ #: ../include/functions.php:59
151
  msgid "DUTCH"
152
  msgstr "Holandesa"
153
 
154
+ #: ../include/functions.php:60
155
  msgid "NORWEGIAN"
156
  msgstr "Noruego"
157
 
158
+ #: ../include/functions.php:61
159
  msgid "ORIYA"
160
  msgstr "ORIYA"
161
 
162
+ #: ../include/functions.php:62
163
  msgid "POLISH"
164
  msgstr "POLACO"
165
 
166
+ #: ../include/functions.php:63
167
  msgid "PORTUGUESE"
168
  msgstr "PORTUGUESA"
169
 
170
+ #: ../include/functions.php:64
171
  msgid "PORTUGUESE (BRAZIL)"
172
  msgstr "Portugués (Brasil )"
173
 
174
+ #: ../include/functions.php:65
175
  msgid "PORTUGUESE (PORTUGAL)"
176
  msgstr "PORTUGUESA (PORTUGAL )"
177
 
178
+ #: ../include/functions.php:66
179
  msgid "ROMANIAN"
180
  msgstr "RUMANO"
181
 
182
+ #: ../include/functions.php:67
183
  msgid "RUSSIAN"
184
  msgstr "RUSIA"
185
 
186
+ #: ../include/functions.php:68
187
  msgid "SLOVAK"
188
  msgstr "ESLOVAQUIA"
189
 
190
+ #: ../include/functions.php:69
191
  msgid "SLOVENIAN"
192
  msgstr "ESLOVENA"
193
 
194
+ #: ../include/functions.php:70
195
  msgid "SERBIAN"
196
  msgstr "SERBIA"
197
 
198
+ #: ../include/functions.php:71
199
  msgid "SWEDISH"
200
  msgstr "SUECO"
201
 
202
+ #: ../include/functions.php:72
203
  msgid "TAGALOG"
204
  msgstr "TAGALOGO"
205
 
206
+ #: ../include/functions.php:73
207
  msgid "TAMIL"
208
  msgstr "TAMIL"
209
 
210
+ #: ../include/functions.php:74
211
  msgid "TELUGU"
212
  msgstr "Telugu"
213
 
214
+ #: ../include/functions.php:75
215
  msgid "THAI"
216
  msgstr "THAI"
217
 
218
+ #: ../include/functions.php:76
219
  msgid "TURKISH"
220
  msgstr "TURCO"
221
 
222
+ #: ../include/functions.php:77
223
  msgid "UKRAINIAN"
224
  msgstr "Ucrania"
225
 
226
+ #: ../include/functions.php:78
227
  msgid "VIETNAMESE"
228
  msgstr "Vietnamita"
229
 
230
+ #: ../include/functions.php:79
231
  msgid "CHINESE (SIMPLIFIED)"
232
  msgstr "Chino (simplificado )"
233
 
234
+ #: ../include/functions.php:80
235
  msgid "CHINESE (TRADITIONAL)"
236
  msgstr "Chino (tradicional )"
237
 
238
+ #: ../include/functions.php:255
239
  msgid "Select the marker by clicking on the images"
240
  msgstr "Seleccione el marcador haciendo clic en las imágenes"
241
 
242
+ #: ../include/functions.php:266
243
  msgid "Powered by"
244
  msgstr "Impulsado por"
245
 
246
+ #: ../include/functions.php:287
247
  msgid "Maps Configuration"
248
  msgstr "Configuración del Mapa"
249
 
250
+ #: ../include/functions.php:289 ../include/functions.php:620
251
  msgid ""
252
  "For any issues with the map, go to our <a href=\"http://wordpress.dwbooster."
253
  "com/contact-us\" target=\"_blank\">contact page</a> and leave us a message."
256
  "wordpress.dwbooster.com/contact - us\" contacto target=\"_blank\"> página </"
257
  "a> y nos deja un mensaje"
258
 
259
+ #: ../include/functions.php:290
260
  msgid ""
261
  "If you want test the premium version of CP Google Maps go to the following "
262
  "links:<br/> <a href=\"http://demos.net-factor.com/cp-google-maps/wp-login.php"
269
  "login.php\">Área de administración</a><br /><a href=\"http://demos.net-"
270
  "factor.com/cp-google-maps/\">Página pública</a>"
271
 
272
+ #: ../include/functions.php:298
273
+ msgid "I have an API key:"
274
+ msgstr ""
275
+
276
+ #: ../include/functions.php:302
277
+ msgid "Please, visit the following link to get the API Key for your website:"
278
+ msgstr ""
279
+
280
+ #: ../include/functions.php:312
281
  msgid "Use particular settings for this map:"
282
  msgstr "Usar ajustes particulares para este mapa :"
283
 
284
+ #: ../include/functions.php:321
285
  msgid "Map zoom:"
286
  msgstr "Zoom :"
287
 
288
+ #: ../include/functions.php:327
289
  msgid "Dynamic zoom:"
290
  msgstr "Zoom dinámico:"
291
 
292
+ #: ../include/functions.php:329
293
  msgid "Allows to adjust the zoom dynamically to display all points on map"
294
  msgstr ""
295
  "Permite ajustar el zoom de forma dinámica para mostrar todos los puntos en "
296
  "el mapa"
297
 
298
+ #: ../include/functions.php:333
299
  msgid "Map width:"
300
  msgstr "Ancho del mapa:"
301
 
302
+ #: ../include/functions.php:345
303
  msgid "Map height:"
304
  msgstr "Altura del mapa :"
305
 
306
+ #: ../include/functions.php:351
307
  msgid "Map margin:"
308
  msgstr "Margen del mapa :"
309
 
310
+ #: ../include/functions.php:357
311
  msgid "Map align:"
312
  msgstr "Alinear el mapa:"
313
 
314
+ #: ../include/functions.php:360
315
  msgid "left"
316
  msgstr "izquierda"
317
 
318
+ #: ../include/functions.php:361
319
  msgid "center"
320
  msgstr "centro"
321
 
322
+ #: ../include/functions.php:362
323
  msgid "right"
324
  msgstr "derecho"
325
 
326
+ #: ../include/functions.php:367
327
  msgid "Map type:"
328
  msgstr "Tipo de mapa :"
329
 
330
+ #: ../include/functions.php:370
331
  msgid "ROADMAP - Displays a normal street map"
332
  msgstr "HOJA DE RUTA - Muestra un mapa normal de la calle"
333
 
334
+ #: ../include/functions.php:371
335
  msgid "SATELLITE - Displays satellite images"
336
  msgstr "SATÉLITE - muestra imágenes de satélite"
337
 
338
+ #: ../include/functions.php:372
339
  msgid ""
340
  "TERRAIN - Displays maps with physical features such as terrain and vegetation"
341
  msgstr ""
342
  "TERRENO - Muestra los mapas con las características físicas, tales como el "
343
  "terreno y la vegetación"
344
 
345
+ #: ../include/functions.php:373
346
  msgid ""
347
  "HYBRID - Displays a transparent layer of major streets on satellite images"
348
  msgstr ""
349
  "HYBRID - Muestra una capa transparente de las principales calles en imágenes "
350
  "de satélite"
351
 
352
+ #: ../include/functions.php:378
353
  msgid "Map language:"
354
  msgstr "Idioma del mapa:"
355
 
356
+ #: ../include/functions.php:382
357
  msgid "Allow drag the map:"
358
  msgstr "Permitir desplazar los mapas :"
359
 
360
+ #: ../include/functions.php:388
 
 
 
 
 
 
 
 
 
 
 
 
361
  msgid "Display map in post/page:"
362
  msgstr "Visualizar mapa en post / página:"
363
 
364
+ #: ../include/functions.php:391
365
  msgid "as icon"
366
  msgstr "como icono"
367
 
368
+ #: ../include/functions.php:392
369
  msgid "as full map"
370
  msgstr "mapa como completo"
371
 
372
+ #: ../include/functions.php:398
373
  msgid "Show info bubbles:"
374
  msgstr "Mostrar información de burbujas :"
375
 
376
+ #: ../include/functions.php:400
377
  msgid "Display the bubbles associated to the points"
378
  msgstr "Mostrar las burbujas asociadas a los puntos"
379
 
380
+ #: ../include/functions.php:405
381
  msgid "Display a bubble by default:"
382
  msgstr "Mostrar una burbuja por defecto:"
383
 
384
+ #: ../include/functions.php:407
385
  msgid "Display a bubble opened by default"
386
  msgstr "Mostrar una burbuja abierta por defecto"
387
 
388
+ #: ../include/functions.php:415
389
+ #, fuzzy
390
+ #| msgid "Display a link to Google Maps:"
391
+ msgid "Display as marker tooltip:"
392
+ msgstr "Mostrar un enlace a Google Maps :"
393
 
394
+ #: ../include/functions.php:417
395
+ #, fuzzy
396
+ #| msgid "Location name:"
397
+ msgid "Point location name"
398
+ msgstr "Nombre de la ubicación :"
399
 
400
+ #: ../include/functions.php:418
401
+ msgid "Point address"
402
  msgstr ""
 
403
 
404
+ #: ../include/functions.php:419
405
+ msgid "None"
406
+ msgstr ""
407
 
408
+ #: ../include/functions.php:424
409
+ #, fuzzy
410
+ #| msgid "Display a bubble by default:"
411
+ msgid "Display Featured Image by default:"
412
+ msgstr "Mostrar una burbuja por defecto:"
413
+
414
+ #: ../include/functions.php:426
415
+ msgid ""
416
+ "Displays the Featured Image in posts and pages in the infowindows, if the "
417
+ "points don't have associated an image"
418
+ msgstr ""
419
+
420
+ #: ../include/functions.php:431
421
  msgid "Display the get directions link:"
422
  msgstr "Mostrar el enlace CÓMO LLEGAR :"
423
 
424
+ #: ../include/functions.php:433
425
  msgid "Display a link at bottom of infowindow to get directions"
426
  msgstr ""
427
  "Mostar un enlace al final de la ventana de información para obtener la "
428
  "dirección"
429
 
430
+ #: ../include/functions.php:434 ../include/functions.php:442
431
+ #: ../include/functions.php:450 ../include/functions.php:458
432
+ #: ../include/functions.php:466 ../include/functions.php:474
433
+ #: ../include/functions.php:482 ../include/functions.php:490
434
+ #: ../include/functions.php:722 ../include/functions.php:757
435
+ #, fuzzy
436
+ #| msgid ""
437
+ #| "Multiple points in the same Post/Page are available only in the <a href="
438
+ #| "\"http://wordpress.dwbooster.com/content-tools/codepeople-post-"
439
+ #| "map#download\" target=\"_blank\">advanced version</a>."
440
+ msgid ""
441
+ "The feature is available only for the commercial version of plugin. <a href="
442
+ "\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
443
+ "\">Click Here</a>"
444
+ msgstr ""
445
+ "Para obtener más información, visite la página del plugin <a href=\"http://"
446
+ "wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
447
+ "\"_blank\"> CodePeople Post Ubicación </a>"
448
+
449
+ #: ../include/functions.php:439
450
  msgid "Display a link to Google Maps:"
451
  msgstr "Mostrar un enlace a Google Maps :"
452
 
453
+ #: ../include/functions.php:441
454
  msgid "Display a link at bottom of infowindow to display on Google Maps"
455
  msgstr ""
456
  "Mostar un enlace al final de la ventana de información para mostrar en "
457
  "Google Maps"
458
 
459
+ #: ../include/functions.php:447
460
  msgid "Display a link to street view:"
461
  msgstr "Mostrar un enlace a la vista de la calle:"
462
 
463
+ #: ../include/functions.php:449
464
  msgid ""
465
  "Display a link at bottom of infowindow to load the corresponding street view"
466
  msgstr ""
467
  "Mostar un enlace al final de la ventana de información para cargar en el "
468
  "Street View"
469
 
470
+ #: ../include/functions.php:455
471
+ msgid "Display a bundle of points in the same area, like a cluster:"
472
+ msgstr ""
473
+ "Mostrar un conjunto de puntos en la misma zona , al igual que un clúster:"
474
+
475
+ #: ../include/functions.php:457
476
+ msgid "Displays the number of points in the cluster"
477
+ msgstr "Mostrar un conjunto de puntos en la misma zona ,en forma de clúster:"
478
+
479
+ #: ../include/functions.php:463
480
  msgid "Display the user's location:"
481
  msgstr "Muestra la ubicación del usuario :"
482
 
483
+ #: ../include/functions.php:465
484
  msgid "Display an icon with the user's location on map"
485
  msgstr "Muestra un icono con la ubicación del usuario"
486
 
487
+ #: ../include/functions.php:471
488
+ #, fuzzy
489
+ #| msgid "Display the user's location:"
490
+ msgid "Refresh the user's location every:"
491
+ msgstr "Muestra la ubicación del usuario :"
492
+
493
+ #: ../include/functions.php:473
494
+ msgid "milliseconds"
495
+ msgstr ""
496
+
497
+ #: ../include/functions.php:479
498
  msgid "Title of user's location:"
499
  msgstr "Título de la ubicación del usuario :"
500
 
501
+ #: ../include/functions.php:481
502
  msgid "Title of user's location"
503
  msgstr "Título de la ubicación del usuario"
504
 
505
+ #: ../include/functions.php:487
506
+ msgid "Display a search box for places:"
507
+ msgstr ""
508
+
509
+ #: ../include/functions.php:489
510
+ msgid "Includes an input box on the map for searching places"
511
+ msgstr ""
512
+
513
+ #: ../include/functions.php:497
514
+ msgid "Display route:"
515
+ msgstr "Dibujar ruta:"
516
+
517
+ #: ../include/functions.php:499
518
+ msgid "Draws the route between the points in the same post"
519
+ msgstr "Dibujar las rutas entre los puntos en un mismo post"
520
+
521
+ #: ../include/functions.php:500
522
+ msgid ""
523
+ "Connect the points with polylines, even if there is not a route between "
524
+ "points"
525
+ msgstr ""
526
+
527
+ #: ../include/functions.php:506
528
+ msgid "Travel mode:"
529
+ msgstr "Modo de viajar :"
530
+
531
+ #: ../include/functions.php:515
532
+ msgid "Include traffic layer:"
533
+ msgstr ""
534
+
535
+ #: ../include/functions.php:517
536
+ msgid "Displays a layer over the map for traffic"
537
+ msgstr ""
538
+
539
+ #: ../include/functions.php:522
540
  msgid "Options"
541
  msgstr "Opciones"
542
 
543
+ #: ../include/functions.php:525
544
  msgid "Display the street view control"
545
  msgstr "Mostrar el control de vista de la calle"
546
 
547
+ #: ../include/functions.php:527
548
  msgid "Enable mouse wheel zoom"
549
  msgstr "Habilitar ratón con rueda de zoom"
550
 
551
+ #: ../include/functions.php:529
552
+ #, fuzzy
553
+ #| msgid "Enable zoom/pan controls"
554
+ msgid "Enable zoom controls"
555
+ msgstr "Activar controles de zoom / pan"
556
+
557
+ #: ../include/functions.php:531
558
+ #, fuzzy
559
+ #| msgid "Enable zoom/pan controls"
560
+ msgid "Enable fullscreen control"
561
  msgstr "Activar controles de zoom / pan"
562
 
563
+ #: ../include/functions.php:533
564
  msgid "Enable map type controls (Map, Satellite, or Hybrid)"
565
  msgstr "Activar los controles de tipo de mapa (Mapa , Satélite o híbridos )"
566
 
567
+ #: ../include/functions.php:537
568
+ #, fuzzy
569
+ #| msgid "Enter the number of posts to display on the map"
570
+ msgid "Enter the number of posts to display on the post/page map"
571
  msgstr "Entre el número de posts a visualizar en el mapa"
572
 
573
+ #: ../include/functions.php:541
574
  msgid "Allow stylize the maps:"
575
  msgstr "Permitir estilizar los mapas :"
576
 
577
+ #: ../include/functions.php:551
578
  msgid ""
579
  "If you want change the maps' styles, be sure to know how to create a JSON "
580
  "structure with the map's styles"
582
  "Si usted quiere cambiar los estilos de los mapas , asegúrese de saber cómo "
583
  "crear una estructura JSON con estilos del mapa"
584
 
585
+ #: ../include/functions.php:559
586
  msgid "Display the map's legend:"
587
  msgstr "Mostrar la leyenda del mapa:"
588
 
589
+ #: ../include/functions.php:565
590
  msgid "Select the taxonomy to display on legend:"
591
  msgstr "Seleccione la taxonomía para mostrar en la leyenda :"
592
 
593
+ #: ../include/functions.php:568
594
  msgid "Select a taxonomy"
595
  msgstr "Seleccionar una taxonomía"
596
 
597
+ #: ../include/functions.php:573
598
  msgid "Enter a title for legend:"
599
  msgstr "Introduzca un título para la leyenda :"
600
 
601
+ #: ../include/functions.php:579
602
  msgid "Enter a classname to be applied to the legend:"
603
  msgstr "Introduzca un nombre de clase que se aplicará a la leyenda :"
604
 
605
+ #: ../include/functions.php:619 ../include/functions.php:996
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
606
  msgid ""
607
  "For more information go to the <a href=\"http://wordpress.dwbooster.com/"
608
  "content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
612
  "wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
613
  "\"_blank\"> CodePeople Post Ubicación </a>"
614
 
615
+ #: ../include/functions.php:622
616
  msgid "To insert a map in the post follow the steps below"
617
  msgstr "Para insertar un mapa en el post, siga los siguientes pasos"
618
 
619
+ #: ../include/functions.php:625
620
  msgid ""
621
  "Enter the point's information (the latitude and longitude are required, but "
622
  "are obtained pressing the \"verify\" button after type the address"
625
  "son obtenidos pulsando el botón \"Verificar\", después de escribir la "
626
  "dirección)"
627
 
628
+ #: ../include/functions.php:626
629
  msgid ""
630
  "Insert the shortcode in the post's content pressing the \"insert the map tag"
631
  "\" button"
633
  "Inserte el shortcode en el contenido del post, presionando el botón "
634
  "\"inserte la etiqueta del mapa\""
635
 
636
+ #: ../include/functions.php:627
637
+ #, fuzzy
638
+ #| msgid ""
639
+ #| "If you want to use specific settings just for this map, press the \"Show/"
640
+ #| "Hide Map's Options\" button, and modifies the settings for this map"
641
  msgid ""
642
+ "If you want to use specific settings just for this map, tick the checkbox "
643
+ "\"Use particular settings for this map\", and then, modify the map's "
644
+ "attributes"
645
  msgstr ""
646
  "Si desea especificar una confguración para este mapa en particular, marque "
647
  "la opción \"Usar ajustes particulares para este mapa\""
648
 
649
+ #: ../include/functions.php:628
650
  msgid ""
651
  "Don't forget to press the \"Update\" button for save the post and map data"
652
  msgstr ""
653
  "No olvide presionar el botón \"Actualizar\" para salvar los datos del post y "
654
  "del mapa"
655
 
656
+ #: ../include/functions.php:631
657
  msgid "Map points"
658
  msgstr "Puntos de Ruta"
659
 
660
+ #: ../include/functions.php:633
661
+ msgid ""
662
+ "Multiple points in the same Post/Page are available only in the <a href="
663
+ "\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
664
+ "\" target=\"_blank\">advanced version</a>."
665
+ msgstr ""
666
+ "Para obtener más información, visite la página del plugin <a href=\"http://"
667
+ "wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
668
+ "\"_blank\"> CodePeople Post Ubicación </a>"
669
+
670
+ #: ../include/functions.php:637
671
+ msgid "Map point description"
672
+ msgstr "Mapa Descripción del punto"
673
+
674
+ #: ../include/functions.php:640
675
+ msgid "Location name:"
676
+ msgstr "Nombre de la ubicación :"
677
+
678
+ #: ../include/functions.php:646
679
+ msgid "Location description:"
680
+ msgstr "Descripción de la ubicación :"
681
+
682
+ #: ../include/functions.php:655
683
+ #, fuzzy
684
+ #| msgid "Select an images to attach to the point: "
685
+ msgid "Select an image to attach to the point: "
686
+ msgstr "Seleccionar una imágenes para adjuntar al punto:"
687
+
688
+ #: ../include/functions.php:670
689
+ msgid "Address:"
690
+ msgstr "Dirección:"
691
+
692
+ #: ../include/functions.php:676
693
+ msgid "Latitude:"
694
+ msgstr "Latitud:"
695
+
696
+ #: ../include/functions.php:682
697
+ msgid "Longitude:"
698
+ msgstr "Longitud :"
699
+
700
+ #: ../include/functions.php:688
701
+ msgid "Verify"
702
+ msgstr "Verificar"
703
+
704
+ #: ../include/functions.php:690
705
+ msgid ""
706
+ "Verify this latitude and longitude using Geocoding. This could overwrite the "
707
+ "point address."
708
+ msgstr ""
709
+ "Verificar esta latitud y longitud usando geocodificación . Esto podría "
710
+ "sobrescribir la dirección del punto ."
711
+
712
+ #: ../include/functions.php:690
713
+ msgid "Required: Press the button \"verify\" after complete the address."
714
+ msgstr ""
715
+ "Deseados: pulse el botón \" verifique \"después de completar la dirección."
716
+
717
+ #: ../include/functions.php:713
718
  msgid ""
719
  "To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
720
  "strong> button and save the post/page modifications."
723
  "insertar el mapa de etiquetas \" </ strong> y guardar las modificaciones del "
724
  "post / página."
725
 
726
+ #: ../include/functions.php:720
727
  msgid "Do you want display a <strong>shape</strong> on map?"
728
  msgstr "¿Quieres mostrar una <strong> forma </strong> en el mapa ?"
729
 
730
+ #: ../include/functions.php:728
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
731
  msgid "If you want to display the map in page / post:"
732
  msgstr "Si usted quiere mostrar el mapa en la página / post:"
733
 
734
+ #: ../include/functions.php:729
735
  msgid "Insert the map tag"
736
  msgstr "Inserte la etiqueta del mapa"
737
 
738
+ #: ../include/functions.php:732
739
+ msgid ""
740
+ "<p>It is possible to use attributes in the shortcode, like: width, height, "
741
+ "zoom and the other maps attributes:</p>\n"
742
+ "\t\t\t\t\t\t\t<p><strong>[codepeople-post-map width=\"450\" height=\"500\"]</"
743
+ "strong></p>\n"
744
+ "\t\t\t\t\t\t\t<p>The premium version of plugin allows to use a special "
745
+ "attribute \"cat\" (referent to category), to display all points created in a "
746
+ "category:</p>\n"
747
+ "\t\t\t\t\t\t\t<p><strong>[codepeople-post-map cat=\"35\"]</strong><br/>Note: "
748
+ "the number 35 correspond to the ID of category.</p>\n"
749
+ "\t\t\t\t\t\t\t<p>or all points on website, using as category ID the value "
750
+ "\"-1\"</p>\n"
751
+ "\t\t\t\t\t\t\t<p><strong>[codepeople-post-map cat=\"-1\"]</strong></p>\n"
752
+ "\t\t\t\t\t\t\t<p>The special attribute \"tag\", allow to display all points "
753
+ "that belong to the posts with a specific tag assigned, for example \"mytag\":"
754
+ "</p>\n"
755
+ "\t\t\t\t\t\t\t<p><strong>[codepeople-post-map tag=\"mytag\"]</strong></p>"
756
+ msgstr ""
757
+
758
+ #: ../include/functions.php:741
759
+ msgid "[ + less information]"
760
+ msgstr ""
761
+
762
+ #: ../include/functions.php:745
763
  msgid "To display the points that belong to any category"
764
  msgstr "Mostrar los puntos que pertenecen a una categoría"
765
 
766
+ #: ../include/functions.php:747
767
+ msgid "All points on website"
768
+ msgstr ""
769
+
770
+ #: ../include/functions.php:884
771
  msgid "Settings Updated"
772
  msgstr "Configuración de Actualización"
773
 
774
+ #: ../include/functions.php:897
775
  msgid ""
776
  "Generate points dynamically from geolocation information included on images, "
777
  "when images are uploaded to WordPress:"
779
  "Generar puntos de forma dinámica a partir de información de geolocalización "
780
  "incluida en las imágenes, cuando las imágenes se cargan en WordPress:"
781
 
782
+ #: ../include/functions.php:900
783
  msgid ""
784
  "The geolocation information is added to the images from your mobiles or "
785
  "cameras, if they have associated GPS devices"
787
  "La información de geolocalización se añade a las imágenes desde sus "
788
  "teléfonos móviles o cámaras, si han asociado dispositivos GPS"
789
 
790
+ #: ../include/functions.php:902
791
+ msgid "Process All Previous Images"
792
+ msgstr ""
793
+
794
+ #: ../include/functions.php:903
795
+ msgid ""
796
+ "Process all images in the library, and generates new points in the parents "
797
+ "pages, with the geocode information in the images metadata. A post/page is "
798
+ "the parent of an image, if the image was uploaded to the library from the "
799
+ "post/page."
800
+ msgstr ""
801
+
802
+ #: ../include/functions.php:904 ../include/functions.php:914
803
+ msgid "The free version of CodePeople Post Map allows only one map by webpage."
804
+ msgstr ""
805
+
806
+ #: ../include/functions.php:904 ../include/functions.php:914
807
+ #: ../include/functions.php:921 ../include/functions.php:927
808
+ #: ../include/functions.php:933 ../include/functions.php:953
809
+ msgid "Click Here"
810
+ msgstr ""
811
+
812
+ #: ../include/functions.php:909
813
  msgid ""
814
  "Generate points dynamically from geolocation information included on posts:"
815
  msgstr ""
816
  "Generar puntos de forma dinámica a partir de información de geolocalización "
817
  "incluida en los mensajes :"
818
 
819
+ #: ../include/functions.php:912
820
  msgid ""
821
  "The geolocation information is added to the post from WordPress app in your "
822
  "mobile"
824
  "La información de geolocalización se añade al post de WordPress aplicación "
825
  "en tu móvil"
826
 
827
+ #: ../include/functions.php:919
828
  msgid "Use points information in search results:"
829
  msgstr "Utilizar la información puntos en los resultados de búsqueda :"
830
 
831
+ #: ../include/functions.php:921
832
+ msgid ""
833
+ "The search in the maps data is available only in commercial version of "
834
+ "plugin."
835
+ msgstr ""
836
+
837
+ #: ../include/functions.php:925
838
  msgid "Highlight post when mouse move over related point on map:"
839
  msgstr ""
840
  "Post Resaltar cuando mueva el ratón sobre el punto relacionado en el mapa :"
841
 
842
+ #: ../include/functions.php:927
843
+ msgid "The post highlight is available only in commercial version of plugin."
844
+ msgstr ""
845
+
846
+ #: ../include/functions.php:931
847
  msgid "Highlight class:"
848
  msgstr "Clase Highlight :"
849
 
850
+ #: ../include/functions.php:933
851
+ msgid "The highlight class is available only in commercial version of plugin."
852
+ msgstr ""
853
+
854
+ #: ../include/functions.php:937
855
  msgid "Allow to associate a map to the post types:"
856
  msgstr "Permitir a asociar el mapa de los tipos de posts:"
857
 
858
+ #: ../include/functions.php:950
859
  msgid "Posts and Pages are selected by default"
860
  msgstr "Mensajes y páginas se seleccionan de forma predeterminada"
861
 
862
+ #: ../include/functions.php:953
863
+ msgid ""
864
+ "Associate the maps to custom post types is available only in commercial "
865
+ "version of plugin."
866
+ msgstr ""
867
 
868
+ #: ../include/functions.php:963
869
+ msgid "Draws Routes"
870
+ msgstr ""
871
 
872
+ #: ../include/functions.php:969
873
+ #, fuzzy
874
+ #| msgid "Allow to associate a map to the post types:"
875
+ msgid "Associate maps to custom post types"
876
+ msgstr "Permitir a asociar el mapa de los tipos de posts:"
877
 
878
+ #: ../include/functions.php:975
879
+ msgid "Display a map for each post in pages with multiple posts"
880
+ msgstr ""
881
 
882
+ #: ../include/functions.php:980
883
+ msgid "Troubleshoot Section"
884
+ msgstr ""
885
+
886
+ #: ../include/functions.php:985
887
+ msgid "Load required resources (javascript files) in footer"
888
+ msgstr ""
889
+
890
+ #: ../include/functions.php:997
891
+ msgid "Update Settings"
892
+ msgstr "Configuración de la actualización"
893
+
894
+ #: ../include/functions.php:1347
895
+ msgid "Help"
896
+ msgstr ""
897
+
898
+ #: ../include/functions.php:1349
899
  msgid "Request custom changes"
900
  msgstr "Solicitar cambios de encargo"
901
 
902
+ #~ msgid "Display the Panoramio layer:"
903
+ #~ msgstr "Mostrar la capa Panoramio :"
 
904
 
905
+ #~ msgid "Display a layer with photos published in Panoramio"
906
+ #~ msgstr "Mostrar una capa con las fotos publicadas en Panoramio"
 
907
 
908
+ #~ msgid ""
909
+ #~ "To correct the latitude and longitud directly on MAP, type the address "
910
+ #~ "and press the Verify button."
911
+ #~ msgstr ""
912
+ #~ "Para corregir la latitud y Longitud directamente en MAP , escriba la "
913
+ #~ "dirección y pulse el botón Verificar ."
914
+
915
+ #~ msgid "Add/Update Point"
916
+ #~ msgstr "Añadir / Actualizar Point"
917
+
918
+ #~ msgid "stroke Weight: "
919
+ #~ msgstr "Grueso de la linea:"
920
+
921
+ #~ msgid "Fill Color: "
922
+ #~ msgstr "Color de relleno"
923
+
924
+ #~ msgid "Fill Opacity: "
925
+ #~ msgstr "Llenar Opacidad:"
926
+
927
+ #~ msgid "Use a number between 0 and 1, 0 is transparent. "
928
+ #~ msgstr "Usar un número entre 0 y 1 , 0 es transparente\"."
929
+
930
+ #~ msgid "Get directions"
931
+ #~ msgstr "Cómo llegar"
932
+
933
+ #~ msgid "Display on map"
934
+ #~ msgstr "Pantalla en el mapa"
935
+
936
+ #~ msgid "Display street view"
937
+ #~ msgstr "Mostrar Vista de la calle"
938
+
939
+ #~ msgid "Title:"
940
+ #~ msgstr "Título:"
941
+
942
+ #~ msgid "Enter the map's attributes:"
943
+ #~ msgstr "Introduzca los atributos del mapa :"
944
 
945
  #~ msgid ""
946
+ #~ "To display the points that belong to an category, use the attribute: cat="
947
+ #~ "\"2\", where 2 is the category's ID. To display the points that belong to "
948
+ #~ "multiple categories, separate each one by the comma symbol: cat="
949
+ #~ "\"2,5,8\". To display all points on website, use the value -1 for "
950
+ #~ "category's ID, cat=\"-1\". If you want to display only the points "
951
+ #~ "associated with the current post, don't use the \"cat\" attribute."
952
  #~ msgstr ""
953
+ #~ "Para mostrar los puntos que pertenecen a una categoría , utilice el "
954
+ #~ "atributo : cat = \" . 2 \" , donde 2 es el ID de la categoría para "
955
+ #~ "mostrar los puntos que pertenecen a varias categorías , separe cada uno "
956
+ #~ "con el símbolo coma: cat =\"2,5,8\". Para mostrar todos los puntos del "
957
+ #~ "sitio web, utilice el valor -1 para el ID de la categoría, cat=\"-1\". "
958
+ #~ "Para mostrar solo los puntos asociados al post actual, no utilice el "
959
+ #~ "atribute \"cat\""
languages/codepeople-post-map-fr_FR.mo CHANGED
Binary file
languages/codepeople-post-map-fr_FR.po CHANGED
@@ -1,253 +1,253 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: codepeople-post-map\n"
4
- "POT-Creation-Date: 2014-12-27 02:33+0100\n"
5
- "PO-Revision-Date: 2014-12-27 02:38+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: CodePeople\n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.7\n"
13
  "X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../codepeople-post-map.php:87
19
  msgid "Associate an address to the post for Google Maps association"
20
  msgstr "Associer une adresse à l'article pour l'afficher sur Google Maps"
21
 
22
- #: ../include/functions.php:50
23
  msgid "ARABIC"
24
  msgstr "ARABE"
25
 
26
- #: ../include/functions.php:51 ../include/functions.php:63
27
  msgid "BASQUE"
28
  msgstr "Basque"
29
 
30
- #: ../include/functions.php:52
31
  msgid "BULGARIAN"
32
  msgstr "BULGARE"
33
 
34
- #: ../include/functions.php:53
35
  msgid "BENGALI"
36
  msgstr "BENGALI"
37
 
38
- #: ../include/functions.php:54
39
  msgid "CATALAN"
40
  msgstr "CATALAN"
41
 
42
- #: ../include/functions.php:55
43
  msgid "CZECH"
44
  msgstr "TCHÈQUE"
45
 
46
- #: ../include/functions.php:56
47
  msgid "DANISH"
48
  msgstr "DANOIS"
49
 
50
- #: ../include/functions.php:57
51
  msgid "GERMAN"
52
  msgstr "ALLEMAND"
53
 
54
- #: ../include/functions.php:58
55
  msgid "GREEK"
56
  msgstr "GREC"
57
 
58
- #: ../include/functions.php:59
59
  msgid "ENGLISH"
60
  msgstr "ANGLAIS"
61
 
62
- #: ../include/functions.php:60
63
  msgid "ENGLISH (AUSTRALIAN)"
64
  msgstr "Anglais (australien)"
65
 
66
- #: ../include/functions.php:61
67
  msgid "ENGLISH (GREAT BRITAIN)"
68
  msgstr "ANGLAIS (GRANDE-BRETAGNE)"
69
 
70
- #: ../include/functions.php:62
71
  msgid "SPANISH"
72
  msgstr "ESPAGNOL"
73
 
74
- #: ../include/functions.php:64
75
  msgid "FARSI"
76
  msgstr "FARSI"
77
 
78
- #: ../include/functions.php:65
79
  msgid "FINNISH"
80
  msgstr "Finlandais"
81
 
82
- #: ../include/functions.php:66
83
  msgid "FILIPINO"
84
  msgstr "Philippin"
85
 
86
- #: ../include/functions.php:67
87
  msgid "FRENCH"
88
  msgstr "FRANÇAIS"
89
 
90
- #: ../include/functions.php:68
91
  msgid "GALICIAN"
92
  msgstr "GALICIEN"
93
 
94
- #: ../include/functions.php:69
95
  msgid "GUJARATI"
96
  msgstr "GUJARATI"
97
 
98
- #: ../include/functions.php:70
99
  msgid "HINDI"
100
  msgstr "HINDI"
101
 
102
- #: ../include/functions.php:71
103
  msgid "CROATIAN"
104
  msgstr "CROATE"
105
 
106
- #: ../include/functions.php:72
107
  msgid "HUNGARIAN"
108
  msgstr "HONGROIS"
109
 
110
- #: ../include/functions.php:73
111
  msgid "INDONESIAN"
112
  msgstr "INDONÉSIEN"
113
 
114
- #: ../include/functions.php:74
115
  msgid "ITALIAN"
116
  msgstr "ITALIEN"
117
 
118
- #: ../include/functions.php:75
119
  msgid "HEBREW"
120
  msgstr "HÉBREU"
121
 
122
- #: ../include/functions.php:76
123
  msgid "JAPANESE"
124
  msgstr "JAPONAIS"
125
 
126
- #: ../include/functions.php:77
127
  msgid "KANNADA"
128
  msgstr "KANNADA"
129
 
130
- #: ../include/functions.php:78
131
  msgid "KOREAN"
132
  msgstr "CORÉEN"
133
 
134
- #: ../include/functions.php:79
135
  msgid "LITHUANIAN"
136
  msgstr "LITUANIEN"
137
 
138
- #: ../include/functions.php:80
139
  msgid "LATVIAN"
140
  msgstr "LETTON"
141
 
142
- #: ../include/functions.php:81
143
  msgid "MALAYALAM"
144
  msgstr "MALAYALAM"
145
 
146
- #: ../include/functions.php:82
147
  msgid "MARATHI"
148
  msgstr "MARATHI"
149
 
150
- #: ../include/functions.php:83
151
  msgid "DUTCH"
152
  msgstr "HOLLANDAIS"
153
 
154
- #: ../include/functions.php:84
155
  msgid "NORWEGIAN"
156
  msgstr "NORVÉGIEN"
157
 
158
- #: ../include/functions.php:85
159
  msgid "ORIYA"
160
  msgstr "ORIYA"
161
 
162
- #: ../include/functions.php:86
163
  msgid "POLISH"
164
  msgstr "POLONAIS"
165
 
166
- #: ../include/functions.php:87
167
  msgid "PORTUGUESE"
168
  msgstr "Portugais"
169
 
170
- #: ../include/functions.php:88
171
  msgid "PORTUGUESE (BRAZIL)"
172
  msgstr "Portugais (Brésil)"
173
 
174
- #: ../include/functions.php:89
175
  msgid "PORTUGUESE (PORTUGAL)"
176
  msgstr "Portugais (Portugal)"
177
 
178
- #: ../include/functions.php:90
179
  msgid "ROMANIAN"
180
  msgstr "ROUMAIN"
181
 
182
- #: ../include/functions.php:91
183
  msgid "RUSSIAN"
184
  msgstr "Russe"
185
 
186
- #: ../include/functions.php:92
187
  msgid "SLOVAK"
188
  msgstr "Slovaque"
189
 
190
- #: ../include/functions.php:93
191
  msgid "SLOVENIAN"
192
  msgstr "SLOVÈNE"
193
 
194
- #: ../include/functions.php:94
195
  msgid "SERBIAN"
196
  msgstr "Serbe"
197
 
198
- #: ../include/functions.php:95
199
  msgid "SWEDISH"
200
  msgstr "Suédois"
201
 
202
- #: ../include/functions.php:96
203
  msgid "TAGALOG"
204
  msgstr "TAGALOG"
205
 
206
- #: ../include/functions.php:97
207
  msgid "TAMIL"
208
  msgstr "TAMIL"
209
 
210
- #: ../include/functions.php:98
211
  msgid "TELUGU"
212
  msgstr "TELUGU"
213
 
214
- #: ../include/functions.php:99
215
  msgid "THAI"
216
  msgstr "THAILANDAIS"
217
 
218
- #: ../include/functions.php:100
219
  msgid "TURKISH"
220
  msgstr "TURC"
221
 
222
- #: ../include/functions.php:101
223
  msgid "UKRAINIAN"
224
  msgstr "UKRAINIEN"
225
 
226
- #: ../include/functions.php:102
227
  msgid "VIETNAMESE"
228
  msgstr "VIETNAMIENNE"
229
 
230
- #: ../include/functions.php:103
231
  msgid "CHINESE (SIMPLIFIED)"
232
  msgstr "CHINOIS (SIMPLIFIÉ)"
233
 
234
- #: ../include/functions.php:104
235
  msgid "CHINESE (TRADITIONAL)"
236
  msgstr "CHINOIS (TRADITIONNEL)"
237
 
238
- #: ../include/functions.php:343
239
  msgid "Select the marker by clicking on the images"
240
  msgstr "Sélectionnez le marqueur en cliquant sur une image"
241
 
242
- #: ../include/functions.php:354
243
  msgid "Powered by"
244
  msgstr "Alimenté par"
245
 
246
- #: ../include/functions.php:376
247
  msgid "Maps Configuration"
248
  msgstr "Configuration des cartes"
249
 
250
- #: ../include/functions.php:377 ../include/functions.php:746
251
  msgid ""
252
  "For any issues with the map, go to our <a href=\"http://wordpress.dwbooster."
253
  "com/contact-us\" target=\"_blank\">contact page</a> and leave us a message."
@@ -256,7 +256,7 @@ msgstr ""
256
  "wordpress.dwbooster.com/contact-us\" target=\"_blank\">page-contact</a> et "
257
  "laissez nous un message"
258
 
259
- #: ../include/functions.php:379
260
  msgid ""
261
  "If you want test the premium version of CP Google Maps go to the following "
262
  "links:<br/> <a href=\"http://demos.net-factor.com/cp-google-maps/wp-login.php"
@@ -271,214 +271,302 @@ msgstr ""
271
  "com/cp-google-maps/\" target=\"_blank\">Page publique: Cliquez pour accéder "
272
  "au CP Google Maps</a>"
273
 
274
- #: ../include/functions.php:386
 
 
 
 
 
 
 
 
275
  msgid "Use particular settings for this map:"
276
  msgstr "Utiliser des paramètres particuliers pour cette carte:"
277
 
278
- #: ../include/functions.php:395
279
  msgid "Map zoom:"
280
  msgstr "Zoom"
281
 
282
- #: ../include/functions.php:401
283
  msgid "Dynamic zoom:"
284
  msgstr "Zoom dynamique:"
285
 
286
- #: ../include/functions.php:403
287
  msgid "Allows to adjust the zoom dynamically to display all points on map"
288
  msgstr ""
289
  "Permet de régler le zoom dynamique pour afficher tous les points sur la carte"
290
 
291
- #: ../include/functions.php:407
292
  msgid "Map width:"
293
  msgstr "Largeur de la carte:"
294
 
295
- #: ../include/functions.php:419
296
  msgid "Map height:"
297
  msgstr "Hauteur de la carte:"
298
 
299
- #: ../include/functions.php:425
300
  msgid "Map margin:"
301
  msgstr "Marge de la carte:"
302
 
303
- #: ../include/functions.php:431
304
  msgid "Map align:"
305
  msgstr "Alignement de la Carte:"
306
 
307
- #: ../include/functions.php:434
308
  msgid "left"
309
  msgstr "gauche"
310
 
311
- #: ../include/functions.php:435
312
  msgid "center"
313
  msgstr "centre"
314
 
315
- #: ../include/functions.php:436
316
  msgid "right"
317
  msgstr "droit"
318
 
319
- #: ../include/functions.php:441
320
  msgid "Map type:"
321
  msgstr "Type de Carte:"
322
 
323
- #: ../include/functions.php:444
324
  msgid "ROADMAP - Displays a normal street map"
325
  msgstr "FEUILLE DE ROUTE - Affiche un plan normal"
326
 
327
- #: ../include/functions.php:445
328
  msgid "SATELLITE - Displays satellite images"
329
  msgstr "SATELLITE - affiche des images satellite"
330
 
331
- #: ../include/functions.php:446
332
  msgid ""
333
  "TERRAIN - Displays maps with physical features such as terrain and vegetation"
334
  msgstr ""
335
  "TERRAIN - d'afficher les cartes avec des caractéristiques physiques comme le "
336
  "terrain et la végétation"
337
 
338
- #: ../include/functions.php:447
339
  msgid ""
340
  "HYBRID - Displays a transparent layer of major streets on satellite images"
341
  msgstr ""
342
  "HYBRIDE - Affiche une couche transparente de rues principales sur les images "
343
  "satellites"
344
 
345
- #: ../include/functions.php:452
346
  msgid "Map language:"
347
  msgstr "Langue de la carte:"
348
 
349
- #: ../include/functions.php:456
350
  msgid "Allow drag the map:"
351
  msgstr "Autoriser traînée la carte"
352
 
353
- #: ../include/functions.php:463
354
- msgid "Display route:"
355
- msgstr "Afficher l'itinéraire:"
356
-
357
- #: ../include/functions.php:465
358
- msgid "Draws the route between the points in the same post"
359
- msgstr "Dessine le trajet entre les points dans le même article"
360
-
361
- #: ../include/functions.php:476
362
- msgid "Travel mode:"
363
- msgstr "Mode de transport:"
364
-
365
- #: ../include/functions.php:488
366
  msgid "Display map in post/page:"
367
  msgstr "Afficher la carte sur l'article/la page:"
368
 
369
- #: ../include/functions.php:491
370
  msgid "as icon"
371
  msgstr "en icône"
372
 
373
- #: ../include/functions.php:492
374
  msgid "as full map"
375
  msgstr "en carte"
376
 
377
- #: ../include/functions.php:498
378
  msgid "Show info bubbles:"
379
  msgstr "Afficher les infos bulles:"
380
 
381
- #: ../include/functions.php:500
382
  msgid "Display the bubbles associated to the points"
383
  msgstr "Afficher les bulles associées aux points"
384
 
385
- #: ../include/functions.php:505
386
  msgid "Display a bubble by default:"
387
  msgstr "Afficher une bulle par défaut:"
388
 
389
- #: ../include/functions.php:507
390
  msgid "Display a bubble opened by default"
391
  msgstr "Afficher une bulle ouverte par défaut"
392
 
393
- #: ../include/functions.php:512
394
- msgid "Display the Panoramio layer:"
395
- msgstr "Afficher le calque Panoramio:"
 
 
396
 
397
- #: ../include/functions.php:514
398
- msgid "Display a layer with photos published in Panoramio"
399
- msgstr "Afficher le calque avec des photos publiées dans Panoramio"
 
 
400
 
401
- #: ../include/functions.php:519
402
- msgid "Display a bundle of points in the same area, like a cluster:"
403
- msgstr "Afficher un faisceau de points dans la même zone, en groupe:"
404
 
405
- #: ../include/functions.php:521
406
- msgid "Displays the number of points in the cluster"
407
- msgstr "Affiche le nombre de points dans le regroupement"
408
 
409
- #: ../include/functions.php:529
 
 
 
 
 
 
 
 
 
 
 
 
410
  msgid "Display the get directions link:"
411
  msgstr "Afficher le lien de directions:"
412
 
413
- #: ../include/functions.php:533
414
  msgid "Display a link at bottom of infowindow to get directions"
415
  msgstr "Afficher un lien en bas de la fenêtre d'infos pour l'adresse"
416
 
417
- #: ../include/functions.php:538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  msgid "Display a link to Google Maps:"
419
  msgstr "Afficher un lien vers Google Maps:"
420
 
421
- #: ../include/functions.php:540
422
  msgid "Display a link at bottom of infowindow to display on Google Maps"
423
  msgstr ""
424
  "Afficher un lien en bas de la fenêtre d'infos à afficher sur Google Maps"
425
 
426
- #: ../include/functions.php:545
427
  msgid "Display a link to street view:"
428
  msgstr "Afficher un lien vers Vue de la rue (Street View):"
429
 
430
- #: ../include/functions.php:547
431
  msgid ""
432
  "Display a link at bottom of infowindow to load the corresponding street view"
433
  msgstr ""
434
  "Afficher un lien en bas de la fenêtre d'infos pour charger la vue sur la rue "
435
  "correspondante"
436
 
437
- #: ../include/functions.php:552
 
 
 
 
 
 
 
 
438
  msgid "Display the user's location:"
439
  msgstr "Afficher l'emplacement de l'utilisateur:"
440
 
441
- #: ../include/functions.php:554
442
  msgid "Display an icon with the user's location on map"
443
  msgstr "Afficher une icône avec l'emplacement de l'utilisateur sur la carte"
444
 
445
- #: ../include/functions.php:559
 
 
 
 
 
 
 
 
 
 
446
  msgid "Title of user's location:"
447
  msgstr "Titre de l'emplacement de l'utilisateur:"
448
 
449
- #: ../include/functions.php:561
450
  msgid "Title of user's location"
451
  msgstr "Titre de l'emplacement de l'utilisateur"
452
 
453
- #: ../include/functions.php:569
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
454
  msgid "Options"
455
  msgstr "Options"
456
 
457
- #: ../include/functions.php:572
458
  msgid "Display the street view control"
459
  msgstr "Afficher le moyen de contrôle de la vue de la rue"
460
 
461
- #: ../include/functions.php:574
462
  msgid "Enable mouse wheel zoom"
463
  msgstr "Activer zoom molette de la souris"
464
 
465
- #: ../include/functions.php:576
466
- msgid "Enable zoom/pan controls"
 
 
 
 
 
 
 
 
467
  msgstr "Activer le contrôle zoom/panoramique"
468
 
469
- #: ../include/functions.php:578
470
  msgid "Enable map type controls (Map, Satellite, or Hybrid)"
471
  msgstr "Activer le contrôle de type de carte (carte, satellite ou hybride)"
472
 
473
- #: ../include/functions.php:583
474
- msgid "Enter the number of posts to display on the map"
 
 
475
  msgstr "Entrez le nombre d'articles à afficher sur la carte"
476
 
477
- #: ../include/functions.php:587
478
  msgid "Allow stylize the maps:"
479
  msgstr "Autoriser de modifier le style des cartes:"
480
 
481
- #: ../include/functions.php:597
482
  msgid ""
483
  "If you want change the maps' styles, be sure to know how to create a JSON "
484
  "structure with the map's styles"
@@ -486,84 +574,27 @@ msgstr ""
486
  "Si vous voulez changer les styles des cartes , assurez-vous de savoir "
487
  "comment créer une structure JSON avec les styles de la carte"
488
 
489
- #: ../include/functions.php:604
490
  msgid "Display the map's legend:"
491
  msgstr "Afficher la légende de la carte:"
492
 
493
- #: ../include/functions.php:610
494
  msgid "Select the taxonomy to display on legend:"
495
  msgstr "Sélectionnez la taxonomie pour afficher sur la légende:"
496
 
497
- #: ../include/functions.php:616
498
  msgid "Select a taxonomy"
499
  msgstr "Sélectionnez une taxonomie"
500
 
501
- #: ../include/functions.php:627
502
  msgid "Enter a title for legend:"
503
  msgstr "Entrez un titre pour la légende:"
504
 
505
- #: ../include/functions.php:633
506
  msgid "Enter a classname to be applied to the legend:"
507
  msgstr "Entrez un nom de classe à appliquer à la légende:"
508
 
509
- #: ../include/functions.php:654
510
- msgid "Map point description"
511
- msgstr "Description d'un point sur la carte"
512
-
513
- #: ../include/functions.php:657
514
- msgid "Location name:"
515
- msgstr "Nom du lieu:"
516
-
517
- #: ../include/functions.php:663
518
- msgid "Location description:"
519
- msgstr "Description du lieu:"
520
-
521
- #: ../include/functions.php:672
522
- msgid "Select an images to attach to the point: "
523
- msgstr "Sélectionnez une image à associer au point:"
524
-
525
- #: ../include/functions.php:686
526
- msgid "Address:"
527
- msgstr "Adresse (inclure le pays):"
528
-
529
- #: ../include/functions.php:692
530
- msgid "Latitude:"
531
- msgstr "Latitude:"
532
-
533
- #: ../include/functions.php:698
534
- msgid "Longitude:"
535
- msgstr "Longitude:"
536
-
537
- #: ../include/functions.php:704
538
- msgid "Verify"
539
- msgstr "Vérifier"
540
-
541
- #: ../include/functions.php:706
542
- msgid ""
543
- "Verify this latitude and longitude using Geocoding. This could overwrite the "
544
- "point address."
545
- msgstr ""
546
- "Vérifiez cette latitude et la longitude en utilisant le Géocodage . Cela "
547
- "pourrait écraser l'adresse de point."
548
-
549
- #: ../include/functions.php:706
550
- msgid "Required: Press the button \"verify\" after complete the address."
551
- msgstr ""
552
- "Obligatoire: Appuyez sur le bouton \"Vérifier\" après l'adresse complète."
553
-
554
- #: ../include/functions.php:714
555
- msgid ""
556
- "To correct the latitude and longitud directly on MAP, type the address and "
557
- "press the Verify button."
558
- msgstr ""
559
- "Pour corriger la latitude et LONGITUD directement sur MAP, tapez l'adresse "
560
- "et appuyez sur le bouton Vérifier."
561
-
562
- #: ../include/functions.php:728
563
- msgid "Add/Update Point"
564
- msgstr "Ajouter/Mettre à jour Point"
565
-
566
- #: ../include/functions.php:745 ../include/functions.php:1041
567
  msgid ""
568
  "For more information go to the <a href=\"http://wordpress.dwbooster.com/"
569
  "content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
@@ -573,11 +604,11 @@ msgstr ""
573
  "dwbooster.com/content-tools/codepeople post-map\" target=\"_blank\"> "
574
  "CodePeople Post Map"
575
 
576
- #: ../include/functions.php:748
577
  msgid "To insert a map in the post follow the steps below"
578
  msgstr "Pour insérer une carte dans l'article, suivez les étapes ci-dessous"
579
 
580
- #: ../include/functions.php:751
581
  msgid ""
582
  "Enter the point's information (the latitude and longitude are required, but "
583
  "are obtained pressing the \"verify\" button after type the address"
@@ -586,7 +617,7 @@ msgstr ""
586
  "obligatoires , mais on les obtient en appuyant sur le bouton \"vérifier\" "
587
  "après avoir entré l'adresse)"
588
 
589
- #: ../include/functions.php:752
590
  msgid ""
591
  "Insert the shortcode in the post's content pressing the \"insert the map tag"
592
  "\" button"
@@ -594,27 +625,89 @@ msgstr ""
594
  "Insérer le code dans le contenu du message en appuyant sur le \"insérer le "
595
  "Shortcode de la carte\""
596
 
597
- #: ../include/functions.php:753
 
 
 
 
598
  msgid ""
599
- "If you want to use specific settings just for this map, press the \"Show/"
600
- "Hide Map's Options\" button, and modifies the settings for this map"
 
601
  msgstr ""
602
  "Si vous voulez utiliser les paramètres spécifiques juste pour cette carte , "
603
  "cochez la case \"Utiliser les paramètres particuliers pour cette carte:\" , "
604
  "et modifiez les paramètres de cette carte"
605
 
606
- #: ../include/functions.php:754
607
  msgid ""
608
  "Don't forget to press the \"Update\" button for save the post and map data"
609
  msgstr ""
610
  "N'oubliez pas d'appuyer sur le bouton \"mise à jour\" pour enregistrer les "
611
  "données de l'article et la carte."
612
 
613
- #: ../include/functions.php:757
614
  msgid "Map points"
615
  msgstr "Points de la carte"
616
 
617
- #: ../include/functions.php:784
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
618
  msgid ""
619
  "To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
620
  "strong> button and save the post/page modifications."
@@ -623,43 +716,57 @@ msgstr ""
623
  ">\" insérer le Shortcode de la carte\" </strong> et enregistrer la "
624
  "publication/page modifications."
625
 
626
- #: ../include/functions.php:791
627
  msgid "Do you want display a <strong>shape</strong> on map?"
628
  msgstr "Vous voulez afficher une <strong>forme</strong> sur la carte?"
629
 
630
- #: ../include/functions.php:803
631
- msgid "stroke Weight: "
632
- msgstr "course Poids:"
633
-
634
- #: ../include/functions.php:813
635
- msgid "Fill Color: "
636
- msgstr "Couleur de remplissage:"
637
-
638
- #: ../include/functions.php:824
639
- msgid "Fill Opacity: "
640
- msgstr "Remplissez Opacité:"
641
-
642
- #: ../include/functions.php:832
643
- msgid "Use a number between 0 and 1, 0 is transparent. "
644
- msgstr "Utilisez un nombre entre 0 et 1 , 0 est transparent."
645
-
646
- #: ../include/functions.php:850
647
  msgid "If you want to display the map in page / post:"
648
  msgstr "Si vous voulez afficher la carte dans la page ou l'article:"
649
 
650
- #: ../include/functions.php:851
651
  msgid "Insert the map tag"
652
  msgstr "Insérer le Shortcode de la carte"
653
 
654
- #: ../include/functions.php:867
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
655
  msgid "To display the points that belong to any category"
656
  msgstr "Pour afficher les points qui appartiennent à une catégorie"
657
 
658
- #: ../include/functions.php:976
 
 
 
 
659
  msgid "Settings Updated"
660
  msgstr "Paramètres Mise à jour"
661
 
662
- #: ../include/functions.php:987
663
  msgid ""
664
  "Generate points dynamically from geolocation information included on images, "
665
  "when images are uploaded to WordPress:"
@@ -668,7 +775,7 @@ msgstr ""
668
  "géolocalisation inclus sur les images , lorsque les images sont téléchargées "
669
  "sur WordPress:"
670
 
671
- #: ../include/functions.php:990
672
  msgid ""
673
  "The geolocation information is added to the images from your mobiles or "
674
  "cameras, if they have associated GPS devices"
@@ -676,14 +783,36 @@ msgstr ""
676
  "Les informations de géolocalisation est ajouté aux images de vos mobiles ou "
677
  "de caméras , se ils ont associé les appareils GPS"
678
 
679
- #: ../include/functions.php:995
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
680
  msgid ""
681
  "Generate points dynamically from geolocation information included on posts:"
682
  msgstr ""
683
  "Générer des points dynamiquement à partir des informations de "
684
  "géolocalisation inclus dans les messages:"
685
 
686
- #: ../include/functions.php:998
687
  msgid ""
688
  "The geolocation information is added to the post from WordPress app in your "
689
  "mobile"
@@ -691,91 +820,137 @@ msgstr ""
691
  "Les informations de géolocalisation est ajouté au article de WordPress dans "
692
  "votre application mobile"
693
 
694
- #: ../include/functions.php:1003
695
  msgid "Use points information in search results:"
696
  msgstr "Utilisez des points d'information dans les résultats de recherche:"
697
 
698
- #: ../include/functions.php:1009
 
 
 
 
 
 
699
  msgid "Highlight post when mouse move over related point on map:"
700
  msgstr ""
701
  "Mettre en évidence l'article lorsque la souris survole le point concerné sur "
702
  "la carte:"
703
 
704
- #: ../include/functions.php:1015
 
 
 
 
705
  msgid "Highlight class:"
706
  msgstr "Classe pour surligner et mettre en évidence"
707
 
708
- #: ../include/functions.php:1021
 
 
 
 
709
  msgid "Allow to associate a map to the post types:"
710
  msgstr "Permettre d'associer une carte pour les types d'article:"
711
 
712
- #: ../include/functions.php:1036
713
  msgid "Posts and Pages are selected by default"
714
  msgstr "Articles et Pages sont sélectionnés par défaut"
715
 
716
- #: ../include/functions.php:1042
717
- msgid "Update Settings"
718
- msgstr "Mise à Jour"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
719
 
720
- #: ../include/functions.php:1585
721
- msgid "Get directions"
722
- msgstr "Itinéraire"
723
 
724
- #: ../include/functions.php:1586
725
- msgid "Display on map"
726
- msgstr "Afficher sur la carte"
727
 
728
- #: ../include/functions.php:1587
729
- msgid "Display street view"
730
- msgstr "Affichage vue sur la rue"
731
 
732
- #: ../include/functions.php:1688
733
  msgid "Request custom changes"
734
  msgstr "Demande de Modifications personnalisées"
735
 
736
- #: ../include/functions.php:1745
737
- msgid "Title:"
738
- msgstr "Titre:"
739
 
740
- #: ../include/functions.php:1747
741
- msgid "Enter the map's attributes:"
742
- msgstr "Entrez les attributs de la carte:"
743
-
744
- #: ../include/functions.php:1750
745
- msgid ""
746
- "To display the points that belong to an category, use the attribute: cat="
747
- "\"2\", where 2 is the category's ID. To display the points that belong to "
748
- "multiple categories, separate each one by the comma symbol: cat=\"2,5,8\". "
749
- "To display all points on website, use the value -1 for category's ID, cat="
750
- "\"-1\". If you want to display only the points associated with the current "
751
- "post, don't use the \"cat\" attribute."
752
- msgstr ""
753
- "Pour afficher les points qui appartiennent à une catégorie , utiliser "
754
- "l'attribut: cat = \"2\", où 2 est l'ID de la catégorie. Pour afficher les "
755
- "points qui appartiennent à plusieurs catégories, separer par les catégories "
756
- "par des virgules: cat =\"2,5,8\". Pour afficher tous les points sur le "
757
- "site, utilisez la valeur -1 pour l'ID de la catégorie, cat = \"- 1\". Si "
758
- "vous souhaitez afficher uniquement les points associés par le article "
759
- "actuel, ne pas utiliser le \"chat\" attribut."
760
 
761
  #~ msgid ""
762
- #~ "The feature is available only for the commercial version of plugin. <a "
763
- #~ "href=\"http://wordpress.dwbooster.com/content-tools/codepeople-post-"
764
- #~ "map#download\">Click Here</a>"
765
  #~ msgstr ""
766
- #~ "cette option est fournie par la version commerciale de ce plugin. <a href "
767
- #~ "= \"http://wordpress.dwbooster.com/content-tools/codepeople-post-"
768
- #~ "map#download\" target = \"_blank\">Cliquez ici</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
769
 
770
  #~ msgid ""
771
- #~ "Multiple points in the same Post/Page are available only in the <a href="
772
- #~ "\"http://wordpress.dwbooster.com/content-tools/codepeople-post-"
773
- #~ "map#download\" target=\"_blank\">advanced version</a>."
 
 
 
774
  #~ msgstr ""
775
- #~ "Insérer plusieurs points dans le même article/page n'est disponible que "
776
- #~ "dans la <a href = \"http://wordpress.dwbooster.com/content-tools/"
777
- #~ "codepeople-post-map#download\" target = \"_blank\">version commerciale</"
778
- #~ "a>."
779
-
780
- #~ msgid "[ + more information]"
781
- #~ msgstr "[en savoir plus]"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: codepeople-post-map\n"
4
+ "POT-Creation-Date: 2018-07-17 01:40+0200\n"
5
+ "PO-Revision-Date: 2018-07-17 01:40+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: CodePeople\n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.9\n"
13
  "X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../codepeople-post-map.php:35
19
  msgid "Associate an address to the post for Google Maps association"
20
  msgstr "Associer une adresse à l'article pour l'afficher sur Google Maps"
21
 
22
+ #: ../include/functions.php:26
23
  msgid "ARABIC"
24
  msgstr "ARABE"
25
 
26
+ #: ../include/functions.php:27 ../include/functions.php:39
27
  msgid "BASQUE"
28
  msgstr "Basque"
29
 
30
+ #: ../include/functions.php:28
31
  msgid "BULGARIAN"
32
  msgstr "BULGARE"
33
 
34
+ #: ../include/functions.php:29
35
  msgid "BENGALI"
36
  msgstr "BENGALI"
37
 
38
+ #: ../include/functions.php:30
39
  msgid "CATALAN"
40
  msgstr "CATALAN"
41
 
42
+ #: ../include/functions.php:31
43
  msgid "CZECH"
44
  msgstr "TCHÈQUE"
45
 
46
+ #: ../include/functions.php:32
47
  msgid "DANISH"
48
  msgstr "DANOIS"
49
 
50
+ #: ../include/functions.php:33
51
  msgid "GERMAN"
52
  msgstr "ALLEMAND"
53
 
54
+ #: ../include/functions.php:34
55
  msgid "GREEK"
56
  msgstr "GREC"
57
 
58
+ #: ../include/functions.php:35
59
  msgid "ENGLISH"
60
  msgstr "ANGLAIS"
61
 
62
+ #: ../include/functions.php:36
63
  msgid "ENGLISH (AUSTRALIAN)"
64
  msgstr "Anglais (australien)"
65
 
66
+ #: ../include/functions.php:37
67
  msgid "ENGLISH (GREAT BRITAIN)"
68
  msgstr "ANGLAIS (GRANDE-BRETAGNE)"
69
 
70
+ #: ../include/functions.php:38
71
  msgid "SPANISH"
72
  msgstr "ESPAGNOL"
73
 
74
+ #: ../include/functions.php:40
75
  msgid "FARSI"
76
  msgstr "FARSI"
77
 
78
+ #: ../include/functions.php:41
79
  msgid "FINNISH"
80
  msgstr "Finlandais"
81
 
82
+ #: ../include/functions.php:42
83
  msgid "FILIPINO"
84
  msgstr "Philippin"
85
 
86
+ #: ../include/functions.php:43
87
  msgid "FRENCH"
88
  msgstr "FRANÇAIS"
89
 
90
+ #: ../include/functions.php:44
91
  msgid "GALICIAN"
92
  msgstr "GALICIEN"
93
 
94
+ #: ../include/functions.php:45
95
  msgid "GUJARATI"
96
  msgstr "GUJARATI"
97
 
98
+ #: ../include/functions.php:46
99
  msgid "HINDI"
100
  msgstr "HINDI"
101
 
102
+ #: ../include/functions.php:47
103
  msgid "CROATIAN"
104
  msgstr "CROATE"
105
 
106
+ #: ../include/functions.php:48
107
  msgid "HUNGARIAN"
108
  msgstr "HONGROIS"
109
 
110
+ #: ../include/functions.php:49
111
  msgid "INDONESIAN"
112
  msgstr "INDONÉSIEN"
113
 
114
+ #: ../include/functions.php:50
115
  msgid "ITALIAN"
116
  msgstr "ITALIEN"
117
 
118
+ #: ../include/functions.php:51
119
  msgid "HEBREW"
120
  msgstr "HÉBREU"
121
 
122
+ #: ../include/functions.php:52
123
  msgid "JAPANESE"
124
  msgstr "JAPONAIS"
125
 
126
+ #: ../include/functions.php:53
127
  msgid "KANNADA"
128
  msgstr "KANNADA"
129
 
130
+ #: ../include/functions.php:54
131
  msgid "KOREAN"
132
  msgstr "CORÉEN"
133
 
134
+ #: ../include/functions.php:55
135
  msgid "LITHUANIAN"
136
  msgstr "LITUANIEN"
137
 
138
+ #: ../include/functions.php:56
139
  msgid "LATVIAN"
140
  msgstr "LETTON"
141
 
142
+ #: ../include/functions.php:57
143
  msgid "MALAYALAM"
144
  msgstr "MALAYALAM"
145
 
146
+ #: ../include/functions.php:58
147
  msgid "MARATHI"
148
  msgstr "MARATHI"
149
 
150
+ #: ../include/functions.php:59
151
  msgid "DUTCH"
152
  msgstr "HOLLANDAIS"
153
 
154
+ #: ../include/functions.php:60
155
  msgid "NORWEGIAN"
156
  msgstr "NORVÉGIEN"
157
 
158
+ #: ../include/functions.php:61
159
  msgid "ORIYA"
160
  msgstr "ORIYA"
161
 
162
+ #: ../include/functions.php:62
163
  msgid "POLISH"
164
  msgstr "POLONAIS"
165
 
166
+ #: ../include/functions.php:63
167
  msgid "PORTUGUESE"
168
  msgstr "Portugais"
169
 
170
+ #: ../include/functions.php:64
171
  msgid "PORTUGUESE (BRAZIL)"
172
  msgstr "Portugais (Brésil)"
173
 
174
+ #: ../include/functions.php:65
175
  msgid "PORTUGUESE (PORTUGAL)"
176
  msgstr "Portugais (Portugal)"
177
 
178
+ #: ../include/functions.php:66
179
  msgid "ROMANIAN"
180
  msgstr "ROUMAIN"
181
 
182
+ #: ../include/functions.php:67
183
  msgid "RUSSIAN"
184
  msgstr "Russe"
185
 
186
+ #: ../include/functions.php:68
187
  msgid "SLOVAK"
188
  msgstr "Slovaque"
189
 
190
+ #: ../include/functions.php:69
191
  msgid "SLOVENIAN"
192
  msgstr "SLOVÈNE"
193
 
194
+ #: ../include/functions.php:70
195
  msgid "SERBIAN"
196
  msgstr "Serbe"
197
 
198
+ #: ../include/functions.php:71
199
  msgid "SWEDISH"
200
  msgstr "Suédois"
201
 
202
+ #: ../include/functions.php:72
203
  msgid "TAGALOG"
204
  msgstr "TAGALOG"
205
 
206
+ #: ../include/functions.php:73
207
  msgid "TAMIL"
208
  msgstr "TAMIL"
209
 
210
+ #: ../include/functions.php:74
211
  msgid "TELUGU"
212
  msgstr "TELUGU"
213
 
214
+ #: ../include/functions.php:75
215
  msgid "THAI"
216
  msgstr "THAILANDAIS"
217
 
218
+ #: ../include/functions.php:76
219
  msgid "TURKISH"
220
  msgstr "TURC"
221
 
222
+ #: ../include/functions.php:77
223
  msgid "UKRAINIAN"
224
  msgstr "UKRAINIEN"
225
 
226
+ #: ../include/functions.php:78
227
  msgid "VIETNAMESE"
228
  msgstr "VIETNAMIENNE"
229
 
230
+ #: ../include/functions.php:79
231
  msgid "CHINESE (SIMPLIFIED)"
232
  msgstr "CHINOIS (SIMPLIFIÉ)"
233
 
234
+ #: ../include/functions.php:80
235
  msgid "CHINESE (TRADITIONAL)"
236
  msgstr "CHINOIS (TRADITIONNEL)"
237
 
238
+ #: ../include/functions.php:255
239
  msgid "Select the marker by clicking on the images"
240
  msgstr "Sélectionnez le marqueur en cliquant sur une image"
241
 
242
+ #: ../include/functions.php:266
243
  msgid "Powered by"
244
  msgstr "Alimenté par"
245
 
246
+ #: ../include/functions.php:287
247
  msgid "Maps Configuration"
248
  msgstr "Configuration des cartes"
249
 
250
+ #: ../include/functions.php:289 ../include/functions.php:620
251
  msgid ""
252
  "For any issues with the map, go to our <a href=\"http://wordpress.dwbooster."
253
  "com/contact-us\" target=\"_blank\">contact page</a> and leave us a message."
256
  "wordpress.dwbooster.com/contact-us\" target=\"_blank\">page-contact</a> et "
257
  "laissez nous un message"
258
 
259
+ #: ../include/functions.php:290
260
  msgid ""
261
  "If you want test the premium version of CP Google Maps go to the following "
262
  "links:<br/> <a href=\"http://demos.net-factor.com/cp-google-maps/wp-login.php"
271
  "com/cp-google-maps/\" target=\"_blank\">Page publique: Cliquez pour accéder "
272
  "au CP Google Maps</a>"
273
 
274
+ #: ../include/functions.php:298
275
+ msgid "I have an API key:"
276
+ msgstr ""
277
+
278
+ #: ../include/functions.php:302
279
+ msgid "Please, visit the following link to get the API Key for your website:"
280
+ msgstr ""
281
+
282
+ #: ../include/functions.php:312
283
  msgid "Use particular settings for this map:"
284
  msgstr "Utiliser des paramètres particuliers pour cette carte:"
285
 
286
+ #: ../include/functions.php:321
287
  msgid "Map zoom:"
288
  msgstr "Zoom"
289
 
290
+ #: ../include/functions.php:327
291
  msgid "Dynamic zoom:"
292
  msgstr "Zoom dynamique:"
293
 
294
+ #: ../include/functions.php:329
295
  msgid "Allows to adjust the zoom dynamically to display all points on map"
296
  msgstr ""
297
  "Permet de régler le zoom dynamique pour afficher tous les points sur la carte"
298
 
299
+ #: ../include/functions.php:333
300
  msgid "Map width:"
301
  msgstr "Largeur de la carte:"
302
 
303
+ #: ../include/functions.php:345
304
  msgid "Map height:"
305
  msgstr "Hauteur de la carte:"
306
 
307
+ #: ../include/functions.php:351
308
  msgid "Map margin:"
309
  msgstr "Marge de la carte:"
310
 
311
+ #: ../include/functions.php:357
312
  msgid "Map align:"
313
  msgstr "Alignement de la Carte:"
314
 
315
+ #: ../include/functions.php:360
316
  msgid "left"
317
  msgstr "gauche"
318
 
319
+ #: ../include/functions.php:361
320
  msgid "center"
321
  msgstr "centre"
322
 
323
+ #: ../include/functions.php:362
324
  msgid "right"
325
  msgstr "droit"
326
 
327
+ #: ../include/functions.php:367
328
  msgid "Map type:"
329
  msgstr "Type de Carte:"
330
 
331
+ #: ../include/functions.php:370
332
  msgid "ROADMAP - Displays a normal street map"
333
  msgstr "FEUILLE DE ROUTE - Affiche un plan normal"
334
 
335
+ #: ../include/functions.php:371
336
  msgid "SATELLITE - Displays satellite images"
337
  msgstr "SATELLITE - affiche des images satellite"
338
 
339
+ #: ../include/functions.php:372
340
  msgid ""
341
  "TERRAIN - Displays maps with physical features such as terrain and vegetation"
342
  msgstr ""
343
  "TERRAIN - d'afficher les cartes avec des caractéristiques physiques comme le "
344
  "terrain et la végétation"
345
 
346
+ #: ../include/functions.php:373
347
  msgid ""
348
  "HYBRID - Displays a transparent layer of major streets on satellite images"
349
  msgstr ""
350
  "HYBRIDE - Affiche une couche transparente de rues principales sur les images "
351
  "satellites"
352
 
353
+ #: ../include/functions.php:378
354
  msgid "Map language:"
355
  msgstr "Langue de la carte:"
356
 
357
+ #: ../include/functions.php:382
358
  msgid "Allow drag the map:"
359
  msgstr "Autoriser traînée la carte"
360
 
361
+ #: ../include/functions.php:388
 
 
 
 
 
 
 
 
 
 
 
 
362
  msgid "Display map in post/page:"
363
  msgstr "Afficher la carte sur l'article/la page:"
364
 
365
+ #: ../include/functions.php:391
366
  msgid "as icon"
367
  msgstr "en icône"
368
 
369
+ #: ../include/functions.php:392
370
  msgid "as full map"
371
  msgstr "en carte"
372
 
373
+ #: ../include/functions.php:398
374
  msgid "Show info bubbles:"
375
  msgstr "Afficher les infos bulles:"
376
 
377
+ #: ../include/functions.php:400
378
  msgid "Display the bubbles associated to the points"
379
  msgstr "Afficher les bulles associées aux points"
380
 
381
+ #: ../include/functions.php:405
382
  msgid "Display a bubble by default:"
383
  msgstr "Afficher une bulle par défaut:"
384
 
385
+ #: ../include/functions.php:407
386
  msgid "Display a bubble opened by default"
387
  msgstr "Afficher une bulle ouverte par défaut"
388
 
389
+ #: ../include/functions.php:415
390
+ #, fuzzy
391
+ #| msgid "Display a link to Google Maps:"
392
+ msgid "Display as marker tooltip:"
393
+ msgstr "Afficher un lien vers Google Maps:"
394
 
395
+ #: ../include/functions.php:417
396
+ #, fuzzy
397
+ #| msgid "Location name:"
398
+ msgid "Point location name"
399
+ msgstr "Nom du lieu:"
400
 
401
+ #: ../include/functions.php:418
402
+ msgid "Point address"
403
+ msgstr ""
404
 
405
+ #: ../include/functions.php:419
406
+ msgid "None"
407
+ msgstr ""
408
 
409
+ #: ../include/functions.php:424
410
+ #, fuzzy
411
+ #| msgid "Display a bubble by default:"
412
+ msgid "Display Featured Image by default:"
413
+ msgstr "Afficher une bulle par défaut:"
414
+
415
+ #: ../include/functions.php:426
416
+ msgid ""
417
+ "Displays the Featured Image in posts and pages in the infowindows, if the "
418
+ "points don't have associated an image"
419
+ msgstr ""
420
+
421
+ #: ../include/functions.php:431
422
  msgid "Display the get directions link:"
423
  msgstr "Afficher le lien de directions:"
424
 
425
+ #: ../include/functions.php:433
426
  msgid "Display a link at bottom of infowindow to get directions"
427
  msgstr "Afficher un lien en bas de la fenêtre d'infos pour l'adresse"
428
 
429
+ #: ../include/functions.php:434 ../include/functions.php:442
430
+ #: ../include/functions.php:450 ../include/functions.php:458
431
+ #: ../include/functions.php:466 ../include/functions.php:474
432
+ #: ../include/functions.php:482 ../include/functions.php:490
433
+ #: ../include/functions.php:722 ../include/functions.php:757
434
+ msgid ""
435
+ "The feature is available only for the commercial version of plugin. <a href="
436
+ "\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
437
+ "\">Click Here</a>"
438
+ msgstr ""
439
+ "cette option est fournie par la version commerciale de ce plugin. <a href = "
440
+ "\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
441
+ "\" target = \"_blank\">Cliquez ici</a>."
442
+
443
+ #: ../include/functions.php:439
444
  msgid "Display a link to Google Maps:"
445
  msgstr "Afficher un lien vers Google Maps:"
446
 
447
+ #: ../include/functions.php:441
448
  msgid "Display a link at bottom of infowindow to display on Google Maps"
449
  msgstr ""
450
  "Afficher un lien en bas de la fenêtre d'infos à afficher sur Google Maps"
451
 
452
+ #: ../include/functions.php:447
453
  msgid "Display a link to street view:"
454
  msgstr "Afficher un lien vers Vue de la rue (Street View):"
455
 
456
+ #: ../include/functions.php:449
457
  msgid ""
458
  "Display a link at bottom of infowindow to load the corresponding street view"
459
  msgstr ""
460
  "Afficher un lien en bas de la fenêtre d'infos pour charger la vue sur la rue "
461
  "correspondante"
462
 
463
+ #: ../include/functions.php:455
464
+ msgid "Display a bundle of points in the same area, like a cluster:"
465
+ msgstr "Afficher un faisceau de points dans la même zone, en groupe:"
466
+
467
+ #: ../include/functions.php:457
468
+ msgid "Displays the number of points in the cluster"
469
+ msgstr "Affiche le nombre de points dans le regroupement"
470
+
471
+ #: ../include/functions.php:463
472
  msgid "Display the user's location:"
473
  msgstr "Afficher l'emplacement de l'utilisateur:"
474
 
475
+ #: ../include/functions.php:465
476
  msgid "Display an icon with the user's location on map"
477
  msgstr "Afficher une icône avec l'emplacement de l'utilisateur sur la carte"
478
 
479
+ #: ../include/functions.php:471
480
+ #, fuzzy
481
+ #| msgid "Display the user's location:"
482
+ msgid "Refresh the user's location every:"
483
+ msgstr "Afficher l'emplacement de l'utilisateur:"
484
+
485
+ #: ../include/functions.php:473
486
+ msgid "milliseconds"
487
+ msgstr ""
488
+
489
+ #: ../include/functions.php:479
490
  msgid "Title of user's location:"
491
  msgstr "Titre de l'emplacement de l'utilisateur:"
492
 
493
+ #: ../include/functions.php:481
494
  msgid "Title of user's location"
495
  msgstr "Titre de l'emplacement de l'utilisateur"
496
 
497
+ #: ../include/functions.php:487
498
+ msgid "Display a search box for places:"
499
+ msgstr ""
500
+
501
+ #: ../include/functions.php:489
502
+ msgid "Includes an input box on the map for searching places"
503
+ msgstr ""
504
+
505
+ #: ../include/functions.php:497
506
+ msgid "Display route:"
507
+ msgstr "Afficher l'itinéraire:"
508
+
509
+ #: ../include/functions.php:499
510
+ msgid "Draws the route between the points in the same post"
511
+ msgstr "Dessine le trajet entre les points dans le même article"
512
+
513
+ #: ../include/functions.php:500
514
+ msgid ""
515
+ "Connect the points with polylines, even if there is not a route between "
516
+ "points"
517
+ msgstr ""
518
+
519
+ #: ../include/functions.php:506
520
+ msgid "Travel mode:"
521
+ msgstr "Mode de transport:"
522
+
523
+ #: ../include/functions.php:515
524
+ msgid "Include traffic layer:"
525
+ msgstr ""
526
+
527
+ #: ../include/functions.php:517
528
+ msgid "Displays a layer over the map for traffic"
529
+ msgstr ""
530
+
531
+ #: ../include/functions.php:522
532
  msgid "Options"
533
  msgstr "Options"
534
 
535
+ #: ../include/functions.php:525
536
  msgid "Display the street view control"
537
  msgstr "Afficher le moyen de contrôle de la vue de la rue"
538
 
539
+ #: ../include/functions.php:527
540
  msgid "Enable mouse wheel zoom"
541
  msgstr "Activer zoom molette de la souris"
542
 
543
+ #: ../include/functions.php:529
544
+ #, fuzzy
545
+ #| msgid "Enable zoom/pan controls"
546
+ msgid "Enable zoom controls"
547
+ msgstr "Activer le contrôle zoom/panoramique"
548
+
549
+ #: ../include/functions.php:531
550
+ #, fuzzy
551
+ #| msgid "Enable zoom/pan controls"
552
+ msgid "Enable fullscreen control"
553
  msgstr "Activer le contrôle zoom/panoramique"
554
 
555
+ #: ../include/functions.php:533
556
  msgid "Enable map type controls (Map, Satellite, or Hybrid)"
557
  msgstr "Activer le contrôle de type de carte (carte, satellite ou hybride)"
558
 
559
+ #: ../include/functions.php:537
560
+ #, fuzzy
561
+ #| msgid "Enter the number of posts to display on the map"
562
+ msgid "Enter the number of posts to display on the post/page map"
563
  msgstr "Entrez le nombre d'articles à afficher sur la carte"
564
 
565
+ #: ../include/functions.php:541
566
  msgid "Allow stylize the maps:"
567
  msgstr "Autoriser de modifier le style des cartes:"
568
 
569
+ #: ../include/functions.php:551
570
  msgid ""
571
  "If you want change the maps' styles, be sure to know how to create a JSON "
572
  "structure with the map's styles"
574
  "Si vous voulez changer les styles des cartes , assurez-vous de savoir "
575
  "comment créer une structure JSON avec les styles de la carte"
576
 
577
+ #: ../include/functions.php:559
578
  msgid "Display the map's legend:"
579
  msgstr "Afficher la légende de la carte:"
580
 
581
+ #: ../include/functions.php:565
582
  msgid "Select the taxonomy to display on legend:"
583
  msgstr "Sélectionnez la taxonomie pour afficher sur la légende:"
584
 
585
+ #: ../include/functions.php:568
586
  msgid "Select a taxonomy"
587
  msgstr "Sélectionnez une taxonomie"
588
 
589
+ #: ../include/functions.php:573
590
  msgid "Enter a title for legend:"
591
  msgstr "Entrez un titre pour la légende:"
592
 
593
+ #: ../include/functions.php:579
594
  msgid "Enter a classname to be applied to the legend:"
595
  msgstr "Entrez un nom de classe à appliquer à la légende:"
596
 
597
+ #: ../include/functions.php:619 ../include/functions.php:996
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
598
  msgid ""
599
  "For more information go to the <a href=\"http://wordpress.dwbooster.com/"
600
  "content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
604
  "dwbooster.com/content-tools/codepeople post-map\" target=\"_blank\"> "
605
  "CodePeople Post Map"
606
 
607
+ #: ../include/functions.php:622
608
  msgid "To insert a map in the post follow the steps below"
609
  msgstr "Pour insérer une carte dans l'article, suivez les étapes ci-dessous"
610
 
611
+ #: ../include/functions.php:625
612
  msgid ""
613
  "Enter the point's information (the latitude and longitude are required, but "
614
  "are obtained pressing the \"verify\" button after type the address"
617
  "obligatoires , mais on les obtient en appuyant sur le bouton \"vérifier\" "
618
  "après avoir entré l'adresse)"
619
 
620
+ #: ../include/functions.php:626
621
  msgid ""
622
  "Insert the shortcode in the post's content pressing the \"insert the map tag"
623
  "\" button"
625
  "Insérer le code dans le contenu du message en appuyant sur le \"insérer le "
626
  "Shortcode de la carte\""
627
 
628
+ #: ../include/functions.php:627
629
+ #, fuzzy
630
+ #| msgid ""
631
+ #| "If you want to use specific settings just for this map, press the \"Show/"
632
+ #| "Hide Map's Options\" button, and modifies the settings for this map"
633
  msgid ""
634
+ "If you want to use specific settings just for this map, tick the checkbox "
635
+ "\"Use particular settings for this map\", and then, modify the map's "
636
+ "attributes"
637
  msgstr ""
638
  "Si vous voulez utiliser les paramètres spécifiques juste pour cette carte , "
639
  "cochez la case \"Utiliser les paramètres particuliers pour cette carte:\" , "
640
  "et modifiez les paramètres de cette carte"
641
 
642
+ #: ../include/functions.php:628
643
  msgid ""
644
  "Don't forget to press the \"Update\" button for save the post and map data"
645
  msgstr ""
646
  "N'oubliez pas d'appuyer sur le bouton \"mise à jour\" pour enregistrer les "
647
  "données de l'article et la carte."
648
 
649
+ #: ../include/functions.php:631
650
  msgid "Map points"
651
  msgstr "Points de la carte"
652
 
653
+ #: ../include/functions.php:633
654
+ msgid ""
655
+ "Multiple points in the same Post/Page are available only in the <a href="
656
+ "\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
657
+ "\" target=\"_blank\">advanced version</a>."
658
+ msgstr ""
659
+ "Insérer plusieurs points dans le même article/page n'est disponible que dans "
660
+ "la <a href = \"http://wordpress.dwbooster.com/content-tools/codepeople-post-"
661
+ "map#download\" target = \"_blank\">version commerciale</a>."
662
+
663
+ #: ../include/functions.php:637
664
+ msgid "Map point description"
665
+ msgstr "Description d'un point sur la carte"
666
+
667
+ #: ../include/functions.php:640
668
+ msgid "Location name:"
669
+ msgstr "Nom du lieu:"
670
+
671
+ #: ../include/functions.php:646
672
+ msgid "Location description:"
673
+ msgstr "Description du lieu:"
674
+
675
+ #: ../include/functions.php:655
676
+ #, fuzzy
677
+ #| msgid "Select an images to attach to the point: "
678
+ msgid "Select an image to attach to the point: "
679
+ msgstr "Sélectionnez une image à associer au point:"
680
+
681
+ #: ../include/functions.php:670
682
+ msgid "Address:"
683
+ msgstr "Adresse (inclure le pays):"
684
+
685
+ #: ../include/functions.php:676
686
+ msgid "Latitude:"
687
+ msgstr "Latitude:"
688
+
689
+ #: ../include/functions.php:682
690
+ msgid "Longitude:"
691
+ msgstr "Longitude:"
692
+
693
+ #: ../include/functions.php:688
694
+ msgid "Verify"
695
+ msgstr "Vérifier"
696
+
697
+ #: ../include/functions.php:690
698
+ msgid ""
699
+ "Verify this latitude and longitude using Geocoding. This could overwrite the "
700
+ "point address."
701
+ msgstr ""
702
+ "Vérifiez cette latitude et la longitude en utilisant le Géocodage . Cela "
703
+ "pourrait écraser l'adresse de point."
704
+
705
+ #: ../include/functions.php:690
706
+ msgid "Required: Press the button \"verify\" after complete the address."
707
+ msgstr ""
708
+ "Obligatoire: Appuyez sur le bouton \"Vérifier\" après l'adresse complète."
709
+
710
+ #: ../include/functions.php:713
711
  msgid ""
712
  "To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
713
  "strong> button and save the post/page modifications."
716
  ">\" insérer le Shortcode de la carte\" </strong> et enregistrer la "
717
  "publication/page modifications."
718
 
719
+ #: ../include/functions.php:720
720
  msgid "Do you want display a <strong>shape</strong> on map?"
721
  msgstr "Vous voulez afficher une <strong>forme</strong> sur la carte?"
722
 
723
+ #: ../include/functions.php:728
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
724
  msgid "If you want to display the map in page / post:"
725
  msgstr "Si vous voulez afficher la carte dans la page ou l'article:"
726
 
727
+ #: ../include/functions.php:729
728
  msgid "Insert the map tag"
729
  msgstr "Insérer le Shortcode de la carte"
730
 
731
+ #: ../include/functions.php:732
732
+ msgid ""
733
+ "<p>It is possible to use attributes in the shortcode, like: width, height, "
734
+ "zoom and the other maps attributes:</p>\n"
735
+ "\t\t\t\t\t\t\t<p><strong>[codepeople-post-map width=\"450\" height=\"500\"]</"
736
+ "strong></p>\n"
737
+ "\t\t\t\t\t\t\t<p>The premium version of plugin allows to use a special "
738
+ "attribute \"cat\" (referent to category), to display all points created in a "
739
+ "category:</p>\n"
740
+ "\t\t\t\t\t\t\t<p><strong>[codepeople-post-map cat=\"35\"]</strong><br/>Note: "
741
+ "the number 35 correspond to the ID of category.</p>\n"
742
+ "\t\t\t\t\t\t\t<p>or all points on website, using as category ID the value "
743
+ "\"-1\"</p>\n"
744
+ "\t\t\t\t\t\t\t<p><strong>[codepeople-post-map cat=\"-1\"]</strong></p>\n"
745
+ "\t\t\t\t\t\t\t<p>The special attribute \"tag\", allow to display all points "
746
+ "that belong to the posts with a specific tag assigned, for example \"mytag\":"
747
+ "</p>\n"
748
+ "\t\t\t\t\t\t\t<p><strong>[codepeople-post-map tag=\"mytag\"]</strong></p>"
749
+ msgstr ""
750
+
751
+ #: ../include/functions.php:741
752
+ #, fuzzy
753
+ #| msgid "[ + more information]"
754
+ msgid "[ + less information]"
755
+ msgstr "[en savoir plus]"
756
+
757
+ #: ../include/functions.php:745
758
  msgid "To display the points that belong to any category"
759
  msgstr "Pour afficher les points qui appartiennent à une catégorie"
760
 
761
+ #: ../include/functions.php:747
762
+ msgid "All points on website"
763
+ msgstr ""
764
+
765
+ #: ../include/functions.php:884
766
  msgid "Settings Updated"
767
  msgstr "Paramètres Mise à jour"
768
 
769
+ #: ../include/functions.php:897
770
  msgid ""
771
  "Generate points dynamically from geolocation information included on images, "
772
  "when images are uploaded to WordPress:"
775
  "géolocalisation inclus sur les images , lorsque les images sont téléchargées "
776
  "sur WordPress:"
777
 
778
+ #: ../include/functions.php:900
779
  msgid ""
780
  "The geolocation information is added to the images from your mobiles or "
781
  "cameras, if they have associated GPS devices"
783
  "Les informations de géolocalisation est ajouté aux images de vos mobiles ou "
784
  "de caméras , se ils ont associé les appareils GPS"
785
 
786
+ #: ../include/functions.php:902
787
+ msgid "Process All Previous Images"
788
+ msgstr ""
789
+
790
+ #: ../include/functions.php:903
791
+ msgid ""
792
+ "Process all images in the library, and generates new points in the parents "
793
+ "pages, with the geocode information in the images metadata. A post/page is "
794
+ "the parent of an image, if the image was uploaded to the library from the "
795
+ "post/page."
796
+ msgstr ""
797
+
798
+ #: ../include/functions.php:904 ../include/functions.php:914
799
+ msgid "The free version of CodePeople Post Map allows only one map by webpage."
800
+ msgstr ""
801
+
802
+ #: ../include/functions.php:904 ../include/functions.php:914
803
+ #: ../include/functions.php:921 ../include/functions.php:927
804
+ #: ../include/functions.php:933 ../include/functions.php:953
805
+ msgid "Click Here"
806
+ msgstr ""
807
+
808
+ #: ../include/functions.php:909
809
  msgid ""
810
  "Generate points dynamically from geolocation information included on posts:"
811
  msgstr ""
812
  "Générer des points dynamiquement à partir des informations de "
813
  "géolocalisation inclus dans les messages:"
814
 
815
+ #: ../include/functions.php:912
816
  msgid ""
817
  "The geolocation information is added to the post from WordPress app in your "
818
  "mobile"
820
  "Les informations de géolocalisation est ajouté au article de WordPress dans "
821
  "votre application mobile"
822
 
823
+ #: ../include/functions.php:919
824
  msgid "Use points information in search results:"
825
  msgstr "Utilisez des points d'information dans les résultats de recherche:"
826
 
827
+ #: ../include/functions.php:921
828
+ msgid ""
829
+ "The search in the maps data is available only in commercial version of "
830
+ "plugin."
831
+ msgstr ""
832
+
833
+ #: ../include/functions.php:925
834
  msgid "Highlight post when mouse move over related point on map:"
835
  msgstr ""
836
  "Mettre en évidence l'article lorsque la souris survole le point concerné sur "
837
  "la carte:"
838
 
839
+ #: ../include/functions.php:927
840
+ msgid "The post highlight is available only in commercial version of plugin."
841
+ msgstr ""
842
+
843
+ #: ../include/functions.php:931
844
  msgid "Highlight class:"
845
  msgstr "Classe pour surligner et mettre en évidence"
846
 
847
+ #: ../include/functions.php:933
848
+ msgid "The highlight class is available only in commercial version of plugin."
849
+ msgstr ""
850
+
851
+ #: ../include/functions.php:937
852
  msgid "Allow to associate a map to the post types:"
853
  msgstr "Permettre d'associer une carte pour les types d'article:"
854
 
855
+ #: ../include/functions.php:950
856
  msgid "Posts and Pages are selected by default"
857
  msgstr "Articles et Pages sont sélectionnés par défaut"
858
 
859
+ #: ../include/functions.php:953
860
+ msgid ""
861
+ "Associate the maps to custom post types is available only in commercial "
862
+ "version of plugin."
863
+ msgstr ""
864
+
865
+ #: ../include/functions.php:963
866
+ msgid "Draws Routes"
867
+ msgstr ""
868
+
869
+ #: ../include/functions.php:969
870
+ #, fuzzy
871
+ #| msgid "Allow to associate a map to the post types:"
872
+ msgid "Associate maps to custom post types"
873
+ msgstr "Permettre d'associer une carte pour les types d'article:"
874
+
875
+ #: ../include/functions.php:975
876
+ msgid "Display a map for each post in pages with multiple posts"
877
+ msgstr ""
878
+
879
+ #: ../include/functions.php:980
880
+ msgid "Troubleshoot Section"
881
+ msgstr ""
882
 
883
+ #: ../include/functions.php:985
884
+ msgid "Load required resources (javascript files) in footer"
885
+ msgstr ""
886
 
887
+ #: ../include/functions.php:997
888
+ msgid "Update Settings"
889
+ msgstr "Mise à Jour"
890
 
891
+ #: ../include/functions.php:1347
892
+ msgid "Help"
893
+ msgstr ""
894
 
895
+ #: ../include/functions.php:1349
896
  msgid "Request custom changes"
897
  msgstr "Demande de Modifications personnalisées"
898
 
899
+ #~ msgid "Display the Panoramio layer:"
900
+ #~ msgstr "Afficher le calque Panoramio:"
 
901
 
902
+ #~ msgid "Display a layer with photos published in Panoramio"
903
+ #~ msgstr "Afficher le calque avec des photos publiées dans Panoramio"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
904
 
905
  #~ msgid ""
906
+ #~ "To correct the latitude and longitud directly on MAP, type the address "
907
+ #~ "and press the Verify button."
 
908
  #~ msgstr ""
909
+ #~ "Pour corriger la latitude et LONGITUD directement sur MAP, tapez "
910
+ #~ "l'adresse et appuyez sur le bouton Vérifier."
911
+
912
+ #~ msgid "Add/Update Point"
913
+ #~ msgstr "Ajouter/Mettre à jour Point"
914
+
915
+ #~ msgid "stroke Weight: "
916
+ #~ msgstr "course Poids:"
917
+
918
+ #~ msgid "Fill Color: "
919
+ #~ msgstr "Couleur de remplissage:"
920
+
921
+ #~ msgid "Fill Opacity: "
922
+ #~ msgstr "Remplissez Opacité:"
923
+
924
+ #~ msgid "Use a number between 0 and 1, 0 is transparent. "
925
+ #~ msgstr "Utilisez un nombre entre 0 et 1 , 0 est transparent."
926
+
927
+ #~ msgid "Get directions"
928
+ #~ msgstr "Itinéraire"
929
+
930
+ #~ msgid "Display on map"
931
+ #~ msgstr "Afficher sur la carte"
932
+
933
+ #~ msgid "Display street view"
934
+ #~ msgstr "Affichage vue sur la rue"
935
+
936
+ #~ msgid "Title:"
937
+ #~ msgstr "Titre:"
938
+
939
+ #~ msgid "Enter the map's attributes:"
940
+ #~ msgstr "Entrez les attributs de la carte:"
941
 
942
  #~ msgid ""
943
+ #~ "To display the points that belong to an category, use the attribute: cat="
944
+ #~ "\"2\", where 2 is the category's ID. To display the points that belong to "
945
+ #~ "multiple categories, separate each one by the comma symbol: cat="
946
+ #~ "\"2,5,8\". To display all points on website, use the value -1 for "
947
+ #~ "category's ID, cat=\"-1\". If you want to display only the points "
948
+ #~ "associated with the current post, don't use the \"cat\" attribute."
949
  #~ msgstr ""
950
+ #~ "Pour afficher les points qui appartiennent à une catégorie , utiliser "
951
+ #~ "l'attribut: cat = \"2\", où 2 est l'ID de la catégorie. Pour afficher les "
952
+ #~ "points qui appartiennent à plusieurs catégories, separer par les "
953
+ #~ "catégories par des virgules: cat =\"2,5,8\". Pour afficher tous les "
954
+ #~ "points sur le site, utilisez la valeur -1 pour l'ID de la catégorie, cat "
955
+ #~ "= \"- 1\". Si vous souhaitez afficher uniquement les points associés par "
956
+ #~ "le article actuel, ne pas utiliser le \"chat\" attribut."
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: 4.9
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -517,6 +517,31 @@ Now the most important part create the shape's area. To create the shape's area
517
 
518
  == Changelog ==
519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
520
  = 1.0.14 =
521
 
522
  * Fixes a javascript parser error when the user leave in blank the zoom attribute in the map's settings.
3
  Donate link: http://wordpress.dwbooster.com/content-tools/codepeople-post-map
4
  Tags:google maps,maps,marker,gmap,places,shortcode,map,categories,post map,point,location,address,images,geocoder,google,shape,list,grouping,cluster,infowindow,route,pin,streetview,post,posts,pages,widget,image,exif tag,plugin,sidebar,stylize,admin
5
  Requires at least: 3.0.5
6
+ Tested up to: 5.0
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
517
 
518
  == Changelog ==
519
 
520
+ = 1.0.20 =
521
+
522
+ * Implements the integration with the latest version of the Gutenberg editor.
523
+
524
+ = 1.0.19 =
525
+
526
+ * Solves a conflict with the "Speed Booster Pack" plugin.
527
+
528
+ = 1.0.18 =
529
+
530
+ * Modifies the integration with the Gutenberg editor to includes the new features of Gutenberg.
531
+
532
+ = 1.0.17 =
533
+
534
+ * Modifies the activation/deactivation process.
535
+ * Solves an issue with the maps' sizes (width and height)
536
+
537
+ = 1.0.16 =
538
+
539
+ * Solves a conflict with the new styles of Google Maps.
540
+
541
+ = 1.0.15 =
542
+
543
+ * Modifies the instructions in the interface of the plugin.
544
+
545
  = 1.0.14 =
546
 
547
  * Fixes a javascript parser error when the user leave in blank the zoom attribute in the map's settings.
styles/cpm-styles.css CHANGED
@@ -1,11 +1,11 @@
1
  /**
2
- * CodePeople Post Map
3
  * Version: 1.0.1
4
  * Author: CodePeople
5
  * Plugin URI: http://wordpress.dwbooster.com
6
  */
7
 
8
- body .content .cpm-map img, .cpm-map img{ max-width: none !important; height: auto !important; background: none !important;border:0 !important;margin:0 !important;padding:0 !important;}
9
  .cpm-map *{box-sizing:content-box;-moz-box-sizing:content-box;}
10
  .cpm-mapicon { width:20px; height:34px; cursor:pointer;background:url(../images/icons/marker.png) no-repeat 0 0; }
11
  .cpm-infowindow {margin:0; padding:0px; min-height:80px; font-size:11px; clear:both;}
1
  /**
2
+ * CodePeople Post Map
3
  * Version: 1.0.1
4
  * Author: CodePeople
5
  * Plugin URI: http://wordpress.dwbooster.com
6
  */
7
 
8
+ body .content .cpm-map img, .cpm-map img{ max-width: none !important; height: auto !important; background: none !important;border:0 !important;margin:0;padding:0;}
9
  .cpm-map *{box-sizing:content-box;-moz-box-sizing:content-box;}
10
  .cpm-mapicon { width:20px; height:34px; cursor:pointer;background:url(../images/icons/marker.png) no-repeat 0 0; }
11
  .cpm-infowindow {margin:0; padding:0px; min-height:80px; font-size:11px; clear:both;}