SEOPress - Version 3.3.12

Version Description

  • NEW Support Redirects with parameters (PRO)
  • NEW Add Argentina Peso currency (PRO)
  • NEW White label settings + Multisite (PRO)
  • INFO Improve Content Analysis UX/UI if no target keywords
  • INFO Improve UI in Permalink settings page
  • FIX Test redirection link and Test your URL button (PRO)
  • FIX Notice Trying to get property 'ID' of non-object in wp-content/plugins/wp-seopress/inc/functions/options-titles-metas.php:439
  • FIX Notice Trying to get property 'ID' of non-object in wp-content/plugins/wp-seopress/inc/functions/options-titles-metas.php:807
Download this release

Release Info

Developer rainbowgeek
Plugin Icon 128x128 SEOPress
Version 3.3.12
Comparing to
See all releases

Code changes from version 3.3.11.2 to 3.3.12

assets/js/seopress-block-editor.js CHANGED
@@ -41,6 +41,11 @@ let hasSaved = false;
41
  jQuery( '#seopress-analysis-tabs-2' ).load(' #seopress-analysis-tabs-2');
42
  jQuery( '#seopress-analysis-tabs-3' ).load(' #seopress-analysis-tabs-3');
43
  jQuery( '#seopress-analysis-tabs-4' ).load(' #seopress-analysis-tabs-4');
 
 
 
 
 
44
  },
45
  });
46
  }
41
  jQuery( '#seopress-analysis-tabs-2' ).load(' #seopress-analysis-tabs-2');
42
  jQuery( '#seopress-analysis-tabs-3' ).load(' #seopress-analysis-tabs-3');
43
  jQuery( '#seopress-analysis-tabs-4' ).load(' #seopress-analysis-tabs-4');
44
+ if (data.data.target_kws) {
45
+ jQuery('#seopress-analysis-tabs').show();
46
+ } else {
47
+ jQuery('#seopress-analysis-tabs').hide();
48
+ }
49
  },
50
  });
51
  }
assets/js/seopress-counters.js CHANGED
@@ -127,6 +127,11 @@ jQuery(document).ready(function(){
127
  jQuery( '#seopress-analysis-tabs-2' ).load(' #seopress-analysis-tabs-2');
128
  jQuery( '#seopress-analysis-tabs-3' ).load(' #seopress-analysis-tabs-3');
129
  jQuery( '#seopress-analysis-tabs-4' ).load(' #seopress-analysis-tabs-4');
 
 
 
 
 
130
  jQuery(' #seopress_titles_title_counters_val' ).remove();
131
  jQuery(' #seopress_titles_desc_counters_val' ).remove();
132
  sp_titles_counters();
127
  jQuery( '#seopress-analysis-tabs-2' ).load(' #seopress-analysis-tabs-2');
128
  jQuery( '#seopress-analysis-tabs-3' ).load(' #seopress-analysis-tabs-3');
129
  jQuery( '#seopress-analysis-tabs-4' ).load(' #seopress-analysis-tabs-4');
130
+ if (data.data.target_kws) {
131
+ jQuery('#seopress-analysis-tabs').show();
132
+ } else {
133
+ jQuery('#seopress-analysis-tabs').hide();
134
+ }
135
  jQuery(' #seopress_titles_title_counters_val' ).remove();
136
  jQuery(' #seopress_titles_desc_counters_val' ).remove();
137
  sp_titles_counters();
assets/js/seopress-dashboard.js CHANGED
@@ -500,4 +500,25 @@ jQuery(document).ready(function(){
500
  },
501
  });
502
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
503
  });
500
  },
501
  });
502
  });
503
+ //White Label
504
+ jQuery('#toggle-white-label').on('click', function() {
505
+ jQuery('#toggle-white-label').attr('data-toggle', jQuery('#toggle-white-label').attr('data-toggle') == '1' ? '0' : '1');
506
+ jQuery.ajax({
507
+ method : 'POST',
508
+ url : seopressAjaxToggleFeatures.seopress_toggle_features,
509
+ data : {
510
+ action: 'seopress_toggle_features',
511
+ feature: 'toggle-white-label',
512
+ feature_value: jQuery('#toggle-white-label').attr('data-toggle'),
513
+ _ajax_nonce: seopressAjaxToggleFeatures.seopress_nonce,
514
+ },
515
+ success : function( data ) {
516
+ jQuery( '#seopress-notice-save' ).css('display', 'block');
517
+ jQuery( '#seopress-notice-save .html' ).html('White Label has been successfully updated!');
518
+ jQuery( '#white-label-state' ).toggleClass('feature-state-on');
519
+ jQuery( '#white-label-state-default' ).toggleClass('feature-state-off');
520
+ jQuery( '#seopress-notice-save' ).delay(3500).fadeOut();
521
+ },
522
+ });
523
+ });
524
  });
assets/js/seopress-network-tabs.js CHANGED
@@ -12,6 +12,9 @@ jQuery(document).ready(function($) {
12
  } else if (clean_hash[1] =='2') { //htaccess Tab
13
  jQuery('#tab_seopress_htaccess-tab').addClass("nav-tab-active");
14
  jQuery('#tab_seopress_htaccess').addClass("active");
 
 
 
15
  } else if (seopress_tab_session_storage) {
16
  jQuery('#seopress-tabs').find('.nav-tab.nav-tab-active').removeClass("nav-tab-active");
17
  jQuery('#seopress-tabs').find('.seopress-tab.active').removeClass("active");
@@ -34,7 +37,9 @@ jQuery(document).ready(function($) {
34
  if (clean_hash[1]==1) {
35
  sessionStorage.setItem("seopress_robots_tab", 'tab_seopress_robots');
36
  } else if (clean_hash[1]==2) {
37
- sessionStorage.setItem("seopress_robots_tab", 'tab_seopress_htaccess');
 
 
38
  } else {
39
  sessionStorage.setItem("seopress_robots_tab", hash);
40
  }
12
  } else if (clean_hash[1] =='2') { //htaccess Tab
13
  jQuery('#tab_seopress_htaccess-tab').addClass("nav-tab-active");
14
  jQuery('#tab_seopress_htaccess').addClass("active");
15
+ } else if (clean_hash[1] =='3') { //White Label Tab
16
+ jQuery('#tab_seopress_white_label-tab').addClass("nav-tab-active");
17
+ jQuery('#tab_seopress_white_label').addClass("active");
18
  } else if (seopress_tab_session_storage) {
19
  jQuery('#seopress-tabs').find('.nav-tab.nav-tab-active').removeClass("nav-tab-active");
20
  jQuery('#seopress-tabs').find('.seopress-tab.active').removeClass("active");
37
  if (clean_hash[1]==1) {
38
  sessionStorage.setItem("seopress_robots_tab", 'tab_seopress_robots');
39
  } else if (clean_hash[1]==2) {
40
+ sessionStorage.setItem("seopress_robots_tab", 'tab_seopress_htaccess');
41
+ } else if (clean_hash[1]==3) {
42
+ sessionStorage.setItem("seopress_white_label", 'tab_seopress_white_label');
43
  } else {
44
  sessionStorage.setItem("seopress_robots_tab", hash);
45
  }
inc/admin/admin-header.php CHANGED
@@ -143,6 +143,12 @@ function seopress_admin_header() { ?>
143
  </a>
144
  </li>
145
  <?php if (!is_multisite()) { ?>
 
 
 
 
 
 
146
  <li>
147
  <a href="<?php echo admin_url( 'admin.php?page=seopress-pro-page#tab=tab_seopress_htaccess$7' ); ?>">
148
  <span class="dashicons dashicons-media-text"></span>
143
  </a>
144
  </li>
145
  <?php if (!is_multisite()) { ?>
146
+ <li>
147
+ <a href="<?php echo admin_url( 'admin.php?page=seopress-pro-page#tab=tab_seopress_white_label$15' ); ?>">
148
+ <span class="dashicons dashicons-tag"></span>
149
+ <?php _e( 'White Label', 'wp-seopress' ); ?>
150
+ </a>
151
+ </li>
152
  <li>
153
  <a href="<?php echo admin_url( 'admin.php?page=seopress-pro-page#tab=tab_seopress_htaccess$7' ); ?>">
154
  <span class="dashicons dashicons-media-text"></span>
inc/admin/admin-metaboxes-content-analysis-form.php CHANGED
@@ -65,9 +65,8 @@ if ( is_plugin_active( 'wp-seopress-pro/seopress-pro.php' ) ) {
65
  </script>
66
  </div>";
67
  }
68
- echo '<div id="seopress-analysis-tabs">';
69
- //if (!empty($seopress_analysis_data)) {
70
-
71
  echo '<ul class="wrap-analysis-results">
72
  <li><a href="#seopress-analysis-tabs-1"><span class="dashicons dashicons-admin-settings"></span>'. __( 'Optimizations', 'wp-seopress' ) .'</a></li>
73
  <li><a href="#seopress-analysis-tabs-2"><span class="dashicons dashicons-admin-generic"></span>'. __( 'Configuration', 'wp-seopress' ) .'</a></li>
@@ -303,7 +302,6 @@ if ( is_plugin_active( 'wp-seopress-pro/seopress-pro.php' ) ) {
303
  } else {
304
  echo '<p><span class="dashicons dashicons-yes"></span>'.__('This page doesn\'t have any nofollow links.','wp-seopress').'</p>';
305
  }
306
- echo '</div>';
307
- //}
308
  echo '</div>
309
  </div>';
65
  </script>
66
  </div>";
67
  }
68
+
69
+ echo '<div id="seopress-analysis-tabs" style="display:none;">';
 
70
  echo '<ul class="wrap-analysis-results">
71
  <li><a href="#seopress-analysis-tabs-1"><span class="dashicons dashicons-admin-settings"></span>'. __( 'Optimizations', 'wp-seopress' ) .'</a></li>
72
  <li><a href="#seopress-analysis-tabs-2"><span class="dashicons dashicons-admin-generic"></span>'. __( 'Configuration', 'wp-seopress' ) .'</a></li>
302
  } else {
303
  echo '<p><span class="dashicons dashicons-yes"></span>'.__('This page doesn\'t have any nofollow links.','wp-seopress').'</p>';
304
  }
305
+ echo '</div>';
 
306
  echo '</div>
307
  </div>';
inc/admin/admin-metaboxes-form.php CHANGED
@@ -274,7 +274,7 @@ echo '<div class="snippet-description">...</div>
274
  if ($seopress_redirections_value !='' || in_array($seopress_redirections_type, $status_code)) {
275
  if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
276
  if ( 'seopress_404' == $typenow ) {
277
- echo '<a href="'.get_home_url().'/'.get_the_title().'/" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
278
  } else {
279
  echo '<a href="'.get_permalink().'" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
280
  }
274
  if ($seopress_redirections_value !='' || in_array($seopress_redirections_type, $status_code)) {
275
  if ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) {
276
  if ( 'seopress_404' == $typenow ) {
277
+ echo '<a href="'.get_home_url().'/'.get_the_title().'" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
278
  } else {
279
  echo '<a href="'.get_permalink().'" id="seopress_redirections_value_default" class="button" target="_blank">'.__('Test your URL','wp-seopress').'</a>';
280
  }
inc/admin/admin.php CHANGED
@@ -736,7 +736,7 @@ class seopress_options
736
  <li><?php _e('Canonical URL','wp-seopress'); ?></li>
737
  <li><?php _e('Focus keywords','wp-seopress'); ?></li>
738
  </ul>
739
- <p style="color:red"><span class="dashicons dashicons-warning"></span> <?php _e( '<strong>WARNING:</strong> Migration will delete all SEOPress posts and terms metadata. Some dynamic variables will not be interpreted.', 'wp-seopress' ); ?></p>
740
  <button id="seopress-yoast-migrate" class="button"><?php _e('Migrate now','wp-seopress'); ?></button>
741
  <span class="spinner"></span>
742
  <div class="log"></div>
@@ -755,7 +755,7 @@ class seopress_options
755
  <li><?php _e('Twitter image thumbnail','wp-seopress'); ?></li>
756
  <li><?php _e('Meta Robots (noindex, nofollow)','wp-seopress'); ?></li>
757
  </ul>
758
- <p style="color:red"><span class="dashicons dashicons-warning"></span> <?php _e( '<strong>WARNING:</strong> Migration will delete all SEOPress posts and terms metadata. Some dynamic variables will not be interpreted.', 'wp-seopress' ); ?></p>
759
  <button id="seopress-aio-migrate" class="button"><?php _e('Migrate now','wp-seopress'); ?></button>
760
  <span class="spinner"></span>
761
  <div class="log"></div>
@@ -776,7 +776,7 @@ class seopress_options
776
  <li><?php _e('Canonical URL','wp-seopress'); ?></li>
777
  <li><?php _e('Redirect URL','wp-seopress'); ?></li>
778
  </ul>
779
- <p style="color:red"><span class="dashicons dashicons-warning"></span> <?php _e( '<strong>WARNING:</strong> Migration will delete all SEOPress posts and terms metadata. Some dynamic variables will not be interpreted.', 'wp-seopress' ); ?></p>
780
  <button id="seopress-seo-framework-migrate" class="button"><?php _e('Migrate now','wp-seopress'); ?></button>
781
  <span class="spinner"></span>
782
  <div class="log"></div>
736
  <li><?php _e('Canonical URL','wp-seopress'); ?></li>
737
  <li><?php _e('Focus keywords','wp-seopress'); ?></li>
738
  </ul>
739
+ <p style="color:red"><span class="dashicons dashicons-warning"></span> <?php _e( '<strong>WARNING:</strong> Migration will delete / update all SEOPress posts and terms metadata. Some dynamic variables will not be interpreted. We do NOT delete any Yoast datas.', 'wp-seopress' ); ?></p>
740
  <button id="seopress-yoast-migrate" class="button"><?php _e('Migrate now','wp-seopress'); ?></button>
741
  <span class="spinner"></span>
742
  <div class="log"></div>
755
  <li><?php _e('Twitter image thumbnail','wp-seopress'); ?></li>
756
  <li><?php _e('Meta Robots (noindex, nofollow)','wp-seopress'); ?></li>
757
  </ul>
758
+ <p style="color:red"><span class="dashicons dashicons-warning"></span> <?php _e( '<strong>WARNING:</strong> Migration will update / delete all SEOPress posts and terms metadata. Some dynamic variables will not be interpreted. We do NOT delete any AIO datas.', 'wp-seopress' ); ?></p>
759
  <button id="seopress-aio-migrate" class="button"><?php _e('Migrate now','wp-seopress'); ?></button>
760
  <span class="spinner"></span>
761
  <div class="log"></div>
776
  <li><?php _e('Canonical URL','wp-seopress'); ?></li>
777
  <li><?php _e('Redirect URL','wp-seopress'); ?></li>
778
  </ul>
779
+ <p style="color:red"><span class="dashicons dashicons-warning"></span> <?php _e( '<strong>WARNING:</strong> Migration will update / delete all SEOPress posts and terms metadata. Some dynamic variables will not be interpreted. We do NOT delete any SEO Framework datas.', 'wp-seopress' ); ?></p>
780
  <button id="seopress-seo-framework-migrate" class="button"><?php _e('Migrate now','wp-seopress'); ?></button>
781
  <span class="spinner"></span>
782
  <div class="log"></div>
inc/admin/ajax.php CHANGED
@@ -50,7 +50,7 @@ function seopress_do_real_preview() {
50
  $data = array();
51
 
52
  //Save Target KWs
53
- if(isset($_GET['seopress_analysis_target_kw']) && !empty($_GET['seopress_analysis_target_kw'])) {
54
  delete_post_meta($seopress_get_the_id, '_seopress_analysis_target_kw');
55
  update_post_meta($seopress_get_the_id, '_seopress_analysis_target_kw', esc_html($_GET['seopress_analysis_target_kw']));
56
  }
@@ -88,6 +88,7 @@ function seopress_do_real_preview() {
88
 
89
  if($dom->loadHTML('<?xml encoding="utf-8" ?>' .$response)) {
90
  //Get Target Keywords
 
91
  $seopress_analysis_target_kw = explode(',', get_post_meta($seopress_get_the_id,'_seopress_analysis_target_kw',true));
92
 
93
  $xpath = new DOMXPath($dom);
50
  $data = array();
51
 
52
  //Save Target KWs
53
+ if(isset($_GET['seopress_analysis_target_kw'])) {
54
  delete_post_meta($seopress_get_the_id, '_seopress_analysis_target_kw');
55
  update_post_meta($seopress_get_the_id, '_seopress_analysis_target_kw', esc_html($_GET['seopress_analysis_target_kw']));
56
  }
88
 
89
  if($dom->loadHTML('<?xml encoding="utf-8" ?>' .$response)) {
90
  //Get Target Keywords
91
+ $data['target_kws'] = $_GET['seopress_analysis_target_kw'];
92
  $seopress_analysis_target_kw = explode(',', get_post_meta($seopress_get_the_id,'_seopress_analysis_target_kw',true));
93
 
94
  $xpath = new DOMXPath($dom);
inc/functions/options-advanced-admin.php CHANGED
@@ -25,6 +25,29 @@ if (get_option( 'seopress_pro_license_status' ) !='valid' && is_plugin_active('w
25
  add_action( 'admin_notices', 'seopress_notice_license' );
26
  }
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  //Advanced
30
  //=================================================================================================
25
  add_action( 'admin_notices', 'seopress_notice_license' );
26
  }
27
 
28
+ //Permalinks notice
29
+ global $pagenow;
30
+ if (isset($pagenow) && $pagenow == 'options-permalink.php') {
31
+ function seopress_notice_permalinks() {
32
+ $class = 'notice notice-warning';
33
+ $message = '<strong>'.__( 'WARNING', 'wp-seopress' ).'</strong>';
34
+ $message .= '<p>'.__( 'Do NOT change your permalink structure on a production site. Changing URLs can severely damage your SEO.', 'wp-seopress' ).'</p>';
35
+
36
+ printf( '<div class="%1$s"><p>%2$s</p></div>', esc_attr( $class ), $message );
37
+ }
38
+ add_action( 'admin_notices', 'seopress_notice_permalinks' );
39
+
40
+ if (get_option('permalink_structure') =='') { //If default permalink
41
+ function seopress_notice_no_rewrite_url() {
42
+ $class = 'notice notice-warning';
43
+ $message = '<strong>'.__( 'WARNING', 'wp-seopress' ).'</strong>';
44
+ $message .= '<p>'.__( 'URL rewriting is NOT enabled on your site. Select a permalink structure optimized for SEO (NOT Plain).', 'wp-seopress' ).'</p>';
45
+
46
+ printf( '<div class="%1$s"><p>%2$s</p></div>', esc_attr( $class ), $message );
47
+ }
48
+ add_action( 'admin_notices', 'seopress_notice_no_rewrite_url' );
49
+ }
50
+ }
51
 
52
  //Advanced
53
  //=================================================================================================
inc/functions/options-titles-metas.php CHANGED
@@ -436,13 +436,13 @@ function seopress_titles_the_title() {
436
  current_time(get_option( 'time_format' )),
437
  );
438
 
439
- if ( is_front_page() && is_home() && get_post_meta($post->ID,'_seopress_titles_title',true) =='') { //HOMEPAGE
440
  if (seopress_titles_home_site_title_option() !='') {
441
  $seopress_titles_the_title = esc_attr(seopress_titles_home_site_title_option());
442
 
443
  $seopress_titles_title_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_title);
444
  }
445
- } elseif ( is_front_page() && get_post_meta($post->ID,'_seopress_titles_title',true) ==''){ //STATIC HOMEPAGE
446
  if (seopress_titles_home_site_title_option() !='') {
447
  $seopress_titles_the_title = esc_attr(seopress_titles_home_site_title_option());
448
 
@@ -804,13 +804,13 @@ function seopress_titles_the_description_content() {
804
  $author_bio,
805
  );
806
 
807
- if ( is_front_page() && is_home() && get_post_meta($post->ID,'_seopress_titles_desc',true) =='' ) { //HOMEPAGE
808
  if (seopress_titles_home_site_desc_option() !='') { //IS GLOBAL
809
  $seopress_titles_the_description = esc_attr(seopress_titles_home_site_desc_option());
810
 
811
  $seopress_titles_description_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_description);
812
  }
813
- } elseif ( is_front_page() && get_post_meta($post->ID,'_seopress_titles_desc',true) ==''){ //STATIC HOMEPAGE
814
  if (seopress_titles_home_site_desc_option() !='' && get_post_meta($post->ID,'_seopress_titles_desc',true) =='') { //IS GLOBAL
815
  $seopress_titles_the_description = esc_attr(seopress_titles_home_site_desc_option());
816
 
436
  current_time(get_option( 'time_format' )),
437
  );
438
 
439
+ if ( is_front_page() && is_home() && isset($post) && get_post_meta($post->ID,'_seopress_titles_title',true) =='') { //HOMEPAGE
440
  if (seopress_titles_home_site_title_option() !='') {
441
  $seopress_titles_the_title = esc_attr(seopress_titles_home_site_title_option());
442
 
443
  $seopress_titles_title_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_title);
444
  }
445
+ } elseif ( is_front_page() && isset($post) && get_post_meta($post->ID,'_seopress_titles_title',true) ==''){ //STATIC HOMEPAGE
446
  if (seopress_titles_home_site_title_option() !='') {
447
  $seopress_titles_the_title = esc_attr(seopress_titles_home_site_title_option());
448
 
804
  $author_bio,
805
  );
806
 
807
+ if ( is_front_page() && is_home() && isset($post) && get_post_meta($post->ID,'_seopress_titles_desc',true) =='' ) { //HOMEPAGE
808
  if (seopress_titles_home_site_desc_option() !='') { //IS GLOBAL
809
  $seopress_titles_the_description = esc_attr(seopress_titles_home_site_desc_option());
810
 
811
  $seopress_titles_description_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_description);
812
  }
813
+ } elseif ( is_front_page() && isset($post) && get_post_meta($post->ID,'_seopress_titles_desc',true) ==''){ //STATIC HOMEPAGE
814
  if (seopress_titles_home_site_desc_option() !='' && get_post_meta($post->ID,'_seopress_titles_desc',true) =='') { //IS GLOBAL
815
  $seopress_titles_the_description = esc_attr(seopress_titles_home_site_desc_option());
816
 
languages/wp-seopress-fr_FR.mo CHANGED
Binary file
languages/wp-seopress-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: SEOPress\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
5
- "POT-Creation-Date: 2019-02-24 11:58+0100\n"
6
- "PO-Revision-Date: 2019-02-24 12:01+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Benjamin DENIS <contact@seopress.org>\n"
9
  "Language: fr_FR\n"
@@ -105,65 +105,69 @@ msgstr "Backlinks"
105
  msgid "URL Rewriting"
106
  msgstr "Réécriture d'URL"
107
 
108
- #: inc/admin/admin-header.php:149 inc/admin/admin.php:1903
 
 
 
 
109
  msgid ".htaccess"
110
  msgstr ".htaccess"
111
 
112
- #: inc/admin/admin-header.php:156 inc/admin/admin.php:1915
113
  msgid "RSS"
114
  msgstr "RSS"
115
 
116
- #: inc/admin/admin-header.php:162 inc/admin/admin.php:1219
117
  #: inc/admin/admin.php:1948 inc/admin/adminbar.php:69
118
  msgid "License"
119
  msgstr "Licence"
120
 
121
- #: inc/admin/admin-header.php:169 inc/admin/admin.php:190
122
  #: inc/admin/admin.php:1927 inc/admin/adminbar.php:55
123
  msgid "Tools"
124
  msgstr "Outils"
125
 
126
- #: inc/admin/admin-header.php:191
127
  msgid "See the changelog (new window)"
128
  msgstr "Voir le journal des modifications (ouvrir dans une nouvelle fenêtre)"
129
 
130
- #: inc/admin/admin-header.php:193
131
  msgid "See the changelog"
132
  msgstr "Voir le journal des modifications"
133
 
134
- #: inc/admin/admin-header.php:195 inc/admin/admin-header.php:197
135
  msgid "Send feedback"
136
  msgstr "Envoyer un retour d'expérience"
137
 
138
- #: inc/admin/admin-header.php:199
139
  msgid "Follow us on Twitter (new window)"
140
  msgstr "Suivez-nous sur Twitter (nouvelle fenêtre)"
141
 
142
- #: inc/admin/admin-header.php:201
143
  msgid "Follow us on Twitter"
144
  msgstr "Suivez-nous sur Twitter"
145
 
146
- #: inc/admin/admin-header.php:203
147
  msgid "Follow us on YouTube (new window)"
148
  msgstr "Suivez-nous sur YouTube (nouvelle fenêtre)"
149
 
150
- #: inc/admin/admin-header.php:205
151
  msgid "Follow us on YouTube"
152
  msgstr "Suivez-nous sur YouTube"
153
 
154
- #: inc/admin/admin-header.php:207
155
  msgid "Official website (new window)"
156
  msgstr "Site officiel (nouvelle fenêtre)"
157
 
158
- #: inc/admin/admin-header.php:209
159
  msgid "Official website"
160
  msgstr "Site Officiel"
161
 
162
- #: inc/admin/admin-header.php:211
163
  msgid "Support (new window)"
164
  msgstr "Support (nouvelle fenêtre)"
165
 
166
- #: inc/admin/admin-header.php:213
167
  msgid "Support"
168
  msgstr "Support"
169
 
@@ -175,7 +179,7 @@ msgstr ""
175
 
176
  #: inc/admin/admin-metaboxes-content-analysis-form.php:9
177
  #: inc/admin/admin-metaboxes-content-analysis-form.php:10
178
- #: inc/functions/options-advanced-admin.php:651
179
  msgid "Target keywords"
180
  msgstr "Mots clés cibles"
181
 
@@ -224,35 +228,35 @@ msgstr ""
224
  msgid "Get suggestions!"
225
  msgstr "Obtenir des suggestions !"
226
 
227
- #: inc/admin/admin-metaboxes-content-analysis-form.php:72
228
  msgid "Optimizations"
229
  msgstr "Optimisations"
230
 
231
- #: inc/admin/admin-metaboxes-content-analysis-form.php:73
232
  msgid "Configuration"
233
  msgstr "Configuration"
234
 
235
- #: inc/admin/admin-metaboxes-content-analysis-form.php:74
236
  msgid "Images"
237
  msgstr "Images"
238
 
239
- #: inc/admin/admin-metaboxes-content-analysis-form.php:75
240
  msgid "Links"
241
  msgstr "Liens"
242
 
243
- #: inc/admin/admin-metaboxes-content-analysis-form.php:81
244
  msgid "Words counter"
245
  msgstr "Compteur de mots"
246
 
247
- #: inc/admin/admin-metaboxes-content-analysis-form.php:83
248
  msgid "words found."
249
  msgstr "mots trouvés."
250
 
251
- #: inc/admin/admin-metaboxes-content-analysis-form.php:84
252
  msgid "unique words found."
253
  msgstr "mots uniques trouvés."
254
 
255
- #: inc/admin/admin-metaboxes-content-analysis-form.php:87
256
  msgid ""
257
  "Your content is composed of more than 300 words, which is the minimum for a "
258
  "post."
@@ -260,33 +264,33 @@ msgstr ""
260
  "Votre contenu est composé de plus de 300 mots, ce qui est le minimum "
261
  "recommandé pour un article."
262
 
263
- #: inc/admin/admin-metaboxes-content-analysis-form.php:89
264
  msgid "Your content is too short. Add a few more paragraphs!"
265
  msgstr "Votre contenu manque de mots. Ajoutez quelques paragraphes !"
266
 
267
- #: inc/admin/admin-metaboxes-content-analysis-form.php:96
268
  msgid "H1 (Heading 1)"
269
  msgstr "H1 (Titre 1)"
270
 
271
- #: inc/admin/admin-metaboxes-content-analysis-form.php:109
272
  msgid "Target keywords were found in Heading 1 (H1)."
273
  msgstr "Les mots clés cibles ont été trouvés dans les titres H1."
274
 
275
- #: inc/admin/admin-metaboxes-content-analysis-form.php:118
276
- #: inc/admin/admin-metaboxes-content-analysis-form.php:139
277
- #: inc/admin/admin-metaboxes-content-analysis-form.php:157
278
- #: inc/admin/admin-metaboxes-content-analysis-form.php:176
279
- #: inc/admin/admin-metaboxes-content-analysis-form.php:205
280
  #, php-format
281
  msgid "%s was found %d times."
282
  msgstr "%s a été trouvé %d fois."
283
 
284
- #: inc/admin/admin-metaboxes-content-analysis-form.php:123
285
  #, php-format
286
  msgid "We found %d Heading 1 (H1) in your content."
287
  msgstr "Nous avons trouvé %d Heading 1 (H1) dans votre contenu."
288
 
289
- #: inc/admin/admin-metaboxes-content-analysis-form.php:124
290
  msgid ""
291
  "You should not use more than one H1 heading in your post content. The rule "
292
  "is simple: only one H1 for each web page. Better for SEO and accessibility."
@@ -294,88 +298,88 @@ msgstr ""
294
  "Vous ne devriez pas utiliser plus de un h1 dans votre contenu. La règle est "
295
  "simple : 1 H1 par 1 page web. C'est mieux pour le SEO et l'accessibilité."
296
 
297
- #: inc/admin/admin-metaboxes-content-analysis-form.php:129
298
  msgid "H2 (Heading 2)"
299
  msgstr "H2 (Titre 2)"
300
 
301
- #: inc/admin/admin-metaboxes-content-analysis-form.php:131
302
  msgid "Target keywords were found in Heading 2 (H2)."
303
  msgstr "Les mots clés cibles ont été trouvés dans les titres H2."
304
 
305
- #: inc/admin/admin-metaboxes-content-analysis-form.php:143
306
  msgid "None of your target keywords were found in Heading 2 (H2)."
307
  msgstr "Aucun de vos mots clés cibles ont été trouvés dans les titres H2."
308
 
309
- #: inc/admin/admin-metaboxes-content-analysis-form.php:147
310
  msgid "H3 (Heading 3)"
311
  msgstr "H2 (Titre 2)"
312
 
313
- #: inc/admin/admin-metaboxes-content-analysis-form.php:149
314
  msgid "Target keywords were found in Heading 3 (H3)."
315
  msgstr "Les mots clés cibles ont été trouvés dans les titres H3."
316
 
317
- #: inc/admin/admin-metaboxes-content-analysis-form.php:161
318
  msgid "None of your target keywords were found in Heading 3 (H3)."
319
  msgstr "Aucun de vos mots clés cibles ont été trouvés dans les titres H3."
320
 
321
- #: inc/admin/admin-metaboxes-content-analysis-form.php:165
322
  msgid "Meta title"
323
  msgstr "Balise titre"
324
 
325
- #: inc/admin/admin-metaboxes-content-analysis-form.php:168
326
  msgid "Target keywords were found in the Meta Title."
327
  msgstr "Les mots clés cibles ont été trouvés dans la balise Titre."
328
 
329
- #: inc/admin/admin-metaboxes-content-analysis-form.php:180
330
  msgid "None of your target keywords were found in the Meta Title."
331
  msgstr "Aucun de vos mots clés cibles ont été trouvés dans la balise Titre."
332
 
333
- #: inc/admin/admin-metaboxes-content-analysis-form.php:184
334
  msgid "Your custom title is too long."
335
  msgstr "Votre titre personnalisé est trop long."
336
 
337
- #: inc/admin/admin-metaboxes-content-analysis-form.php:186
338
  msgid "The length of your title is correct"
339
  msgstr "La longueur de votre titre est correct"
340
 
341
- #: inc/admin/admin-metaboxes-content-analysis-form.php:189
342
  msgid "No custom title is set for this post."
343
  msgstr "Aucune balise titre personnalisée définie pour cet article."
344
 
345
- #: inc/admin/admin-metaboxes-content-analysis-form.php:193
346
  #: inc/admin/admin-metaboxes-form.php:109
347
  #: inc/admin/admin-metaboxes-form.php:110 inc/admin/admin.php:732
348
  #: inc/admin/admin.php:753 inc/admin/admin.php:772 inc/admin/admin.php:2043
349
- #: inc/admin/admin.php:3399 inc/functions/options-advanced-admin.php:643
350
  msgid "Meta description"
351
  msgstr "Meta description"
352
 
353
- #: inc/admin/admin-metaboxes-content-analysis-form.php:197
354
  msgid "Target keywords were found in the Meta description."
355
  msgstr "Les mots clés cibles ont été trouvés dans votre meta description."
356
 
357
- #: inc/admin/admin-metaboxes-content-analysis-form.php:209
358
  msgid "None of your target keywords were found in the Meta description."
359
  msgstr ""
360
  "Aucun de vos mots clés cibles ont été trouvés dans votre meta description."
361
 
362
- #: inc/admin/admin-metaboxes-content-analysis-form.php:213
363
  msgid "You custom meta description is too long."
364
  msgstr "Votre meta description personnalisée est trop longue."
365
 
366
- #: inc/admin/admin-metaboxes-content-analysis-form.php:215
367
  msgid "The length of your meta description is correct"
368
  msgstr "La longueur de votre meta description est correcte"
369
 
370
- #: inc/admin/admin-metaboxes-content-analysis-form.php:218
371
  msgid "No custom meta description is set for this post."
372
  msgstr "Aucune balise meta description personnalisée définie pour cet article."
373
 
374
- #: inc/admin/admin-metaboxes-content-analysis-form.php:224
375
  msgid "Robots"
376
  msgstr "Robots"
377
 
378
- #: inc/admin/admin-metaboxes-content-analysis-form.php:234
379
  #, php-format
380
  msgid ""
381
  "We found %s meta robots in your page. There is probably something wrong with "
@@ -384,28 +388,28 @@ msgstr ""
384
  "Nous avons trouvé %s meta robots dans votre page. Il y a probablement "
385
  "quelque chose de faux dans votre thème !"
386
 
387
- #: inc/admin/admin-metaboxes-content-analysis-form.php:238
388
  msgid "noindex is on! Search engines can't index this page."
389
  msgstr ""
390
  "noindex est actif ! Les moteurs de recherche ne peuvent activer cette page."
391
 
392
- #: inc/admin/admin-metaboxes-content-analysis-form.php:240
393
  msgid "noindex is off. Search engines will index this page."
394
  msgstr "noindex est inactif. Les moteurs de recherche indexeront cette page."
395
 
396
- #: inc/admin/admin-metaboxes-content-analysis-form.php:244
397
  msgid "nofollow is on! Search engines can't follow your links on this page."
398
  msgstr ""
399
  "nofollow est actif ! Les moteurs de recherche ne peuvent suivre vos liens "
400
  "dans cette page."
401
 
402
- #: inc/admin/admin-metaboxes-content-analysis-form.php:246
403
  msgid "nofollow is off. Search engines will follow links on this page."
404
  msgstr ""
405
  "nofollow est inactif. Les moteurs de recherche suivront ces liens dans votre "
406
  "page."
407
 
408
- #: inc/admin/admin-metaboxes-content-analysis-form.php:250
409
  msgid ""
410
  "noimageindex is on! Google will not index your images on this page (but if "
411
  "someone makes a direct link to one of your image in this page, it will be "
@@ -415,23 +419,23 @@ msgstr ""
415
  "(mais si quelqu'un effectue un lien direct vers l'une de vos images sur "
416
  "cette page, celle ci sera indexée)."
417
 
418
- #: inc/admin/admin-metaboxes-content-analysis-form.php:252
419
  msgid "noimageindex is off. Google will index the images on this page."
420
  msgstr "noimageindex est inactif. Google indexera vos images dans cette page."
421
 
422
- #: inc/admin/admin-metaboxes-content-analysis-form.php:256
423
  msgid "noarchive is on! Search engines will not cache your page."
424
  msgstr ""
425
  "noarchive est actif ! Les moteurs de recherche ne mettront pas en cache "
426
  "cette page."
427
 
428
- #: inc/admin/admin-metaboxes-content-analysis-form.php:258
429
  msgid "noarchive is off. Search engines will probably cache your page."
430
  msgstr ""
431
  "noarchive est inactif. Les moteurs de recherche mettront probablement en "
432
  "cache votre page."
433
 
434
- #: inc/admin/admin-metaboxes-content-analysis-form.php:262
435
  msgid ""
436
  "nosnippet is on! Search engines will not display a snippet of this page in "
437
  "search results."
@@ -439,7 +443,7 @@ msgstr ""
439
  "nosnippet est actif ! Les moteurs de recherche n'afficheront pas d'extrait "
440
  "de cette page dans les résultats."
441
 
442
- #: inc/admin/admin-metaboxes-content-analysis-form.php:264
443
  msgid ""
444
  "nosnippet is off. Search engines will display a snippet of this page in "
445
  "search results."
@@ -447,7 +451,7 @@ msgstr ""
447
  "nosnippet est inactif. Les moteurs de recherche afficheront un extrait de "
448
  "cette page dans les résultats."
449
 
450
- #: inc/admin/admin-metaboxes-content-analysis-form.php:267
451
  msgid ""
452
  "We found no meta robots on this page. It means, your page is index,follow. "
453
  "Search engines will index it, and follow links. "
@@ -456,7 +460,7 @@ msgstr ""
456
  "page est en index,follow. Les moteurs de recherche vont l'indexer et suivre "
457
  "les liens. "
458
 
459
- #: inc/admin/admin-metaboxes-content-analysis-form.php:276
460
  msgid ""
461
  "No alternative text found for these images. Alt tags are important for both "
462
  "SEO and accessibility."
@@ -464,11 +468,11 @@ msgstr ""
464
  "Aucun texte alternatif trouvé pour ces images. La balise Alt est importante "
465
  "à la fois pour le référencement et pour l'accessibilité."
466
 
467
- #: inc/admin/admin-metaboxes-content-analysis-form.php:287
468
  msgid "All alternative tags are filled in. Good work!"
469
  msgstr "Toutes les balises alternatives sont renseignées. Bon travail !"
470
 
471
- #: inc/admin/admin-metaboxes-content-analysis-form.php:290
472
  msgid ""
473
  "We could not find any image in your content. Content with media is a plus "
474
  "for your SEO."
@@ -476,11 +480,11 @@ msgstr ""
476
  "Nous n'avons pu trouver aucune image dans votre contenu. Du contenu avec des "
477
  "medias est un plus pour le référencement."
478
 
479
- #: inc/admin/admin-metaboxes-content-analysis-form.php:296
480
  msgid "NoFollow Links"
481
  msgstr "Liens NoFollow"
482
 
483
- #: inc/admin/admin-metaboxes-content-analysis-form.php:301
484
  #, php-format
485
  msgid ""
486
  "We found %d links with nofollow attribute in your page. Do not overuse "
@@ -489,13 +493,13 @@ msgstr ""
489
  "Nous avons trouvé %d liens avec l'attribut nofollow dans cette page. Ne "
490
  "surutilisez pas l'attribut nofollow sur les liens. Ci-dessous, la liste :"
491
 
492
- #: inc/admin/admin-metaboxes-content-analysis-form.php:311
493
  msgid "This page doesn't have any nofollow links."
494
  msgstr "Cette page n'a aucun lien avec l'attribut nofollow."
495
 
496
  #: inc/admin/admin-metaboxes-form.php:48 inc/admin/admin-metaboxes.php:163
497
  #: inc/admin/admin-metaboxes.php:166 inc/admin/admin.php:183
498
- #: inc/admin/adminbar.php:12 inc/functions/options-advanced-admin.php:633
499
  msgid "SEO"
500
  msgstr "SEO"
501
 
@@ -1563,13 +1567,16 @@ msgstr "Meta Robots (noindex, nofollow...)"
1563
  msgid "Focus keywords"
1564
  msgstr "Mots clés cibles"
1565
 
1566
- #: inc/admin/admin.php:739 inc/admin/admin.php:758 inc/admin/admin.php:779
1567
  msgid ""
1568
- "<strong>WARNING:</strong> Migration will delete all SEOPress posts and terms "
1569
- "metadata. Some dynamic variables will not be interpreted."
 
1570
  msgstr ""
1571
- "<strong>ATTENTION :</strong> La migration supprimera toutes les méta-données "
1572
- "de SEOPress. Certaines variables dynamiques ne seront pas interprétées."
 
 
1573
 
1574
  #: inc/admin/admin.php:740 inc/admin/admin.php:759 inc/admin/admin.php:780
1575
  msgid "Migrate now"
@@ -1587,6 +1594,17 @@ msgstr "Miniature Twitter"
1587
  msgid "Meta Robots (noindex, nofollow)"
1588
  msgstr "Meta Robots (noindex, nofollow)"
1589
 
 
 
 
 
 
 
 
 
 
 
 
1590
  #: inc/admin/admin.php:767
1591
  msgid "Import posts and terms metadata from The SEO Framework"
1592
  msgstr "Importer les méta données des posts et termes depuis The SEO Framework"
@@ -1595,10 +1613,21 @@ msgstr "Importer les méta données des posts et termes depuis The SEO Framework
1595
  msgid "Meta Robots (noindex, nofollow, noarchive)"
1596
  msgstr "Meta Robots (noindex, nofollow, noarchive)"
1597
 
1598
- #: inc/admin/admin.php:777 inc/functions/options-advanced-admin.php:178
1599
  msgid "Redirect URL"
1600
  msgstr "URL de redirection"
1601
 
 
 
 
 
 
 
 
 
 
 
 
1602
  #: inc/admin/admin.php:787
1603
  msgid "Reset All Notices From Notifications Center"
1604
  msgstr "Réinitialiser toutes les notices du Centre de Notifications"
@@ -3534,7 +3563,7 @@ msgstr "BOT"
3534
  msgid "Broken Links"
3535
  msgstr "Liens cassés"
3536
 
3537
- #: inc/admin/ajax.php:76
3538
  msgid "To get your Google snippet preview, publish your post!"
3539
  msgstr "Pour obtenir votre aperçu d’extrait de Google, publiez votre article !"
3540
 
@@ -3558,85 +3587,106 @@ msgstr "Activer Licence"
3558
  msgid "Need help?"
3559
  msgstr "Besoin d'aide ?"
3560
 
3561
- #: inc/functions/options-advanced-admin.php:169
3562
- #: inc/functions/options-advanced-admin.php:635
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3563
  msgid "Title tag"
3564
  msgstr "Balise Titre"
3565
 
3566
- #: inc/functions/options-advanced-admin.php:172
3567
  msgid "Meta Desc."
3568
  msgstr "Meta Desc."
3569
 
3570
- #: inc/functions/options-advanced-admin.php:175
3571
  msgid "Redirect?"
3572
  msgstr "Redirection?"
3573
 
3574
- #: inc/functions/options-advanced-admin.php:181
3575
- #: inc/functions/options-advanced-admin.php:659
3576
  msgid "Canonical"
3577
  msgstr "Canonique"
3578
 
3579
- #: inc/functions/options-advanced-admin.php:184
3580
  msgid "Target Kw"
3581
  msgstr "Mot clé cible"
3582
 
3583
- #: inc/functions/options-advanced-admin.php:187
3584
  msgid "Noindex?"
3585
  msgstr "Noindex ?"
3586
 
3587
- #: inc/functions/options-advanced-admin.php:190
3588
  msgid "Nofollow?"
3589
  msgstr "Nofollow ?"
3590
 
3591
- #: inc/functions/options-advanced-admin.php:193
3592
  msgid "Count words?"
3593
  msgstr "Compteur de mots?"
3594
 
3595
- #: inc/functions/options-advanced-admin.php:196
3596
  msgid "W3C check"
3597
  msgstr "W3C check"
3598
 
3599
- #: inc/functions/options-advanced-admin.php:199
3600
  msgid "Page Speed"
3601
  msgstr "Page Speed"
3602
 
3603
- #: inc/functions/options-advanced-admin.php:252
3604
  msgid "Check code quality of this page"
3605
  msgstr "Analyser la qualité du code de cette page"
3606
 
3607
- #: inc/functions/options-advanced-admin.php:256
3608
  msgid "Analyze this page with Google Page Speed"
3609
  msgstr "Analyser cette page avec Google Page Speed"
3610
 
3611
- #: inc/functions/options-advanced-admin.php:339
3612
  msgid "Enable noindex"
3613
  msgstr "Définir sur noindex"
3614
 
3615
- #: inc/functions/options-advanced-admin.php:392
3616
  msgid "Enable index"
3617
  msgstr "Définir sur index"
3618
 
3619
- #: inc/functions/options-advanced-admin.php:445
3620
  msgid "Enable nofollow"
3621
  msgstr "Définir sur nofollow"
3622
 
3623
- #: inc/functions/options-advanced-admin.php:497
3624
  msgid "Enable follow"
3625
  msgstr "Définir sur follow"
3626
 
3627
- #: inc/functions/options-advanced-admin.php:544
3628
  msgid "Enable redirection"
3629
  msgstr "Activer redirection"
3630
 
3631
- #: inc/functions/options-advanced-admin.php:583
3632
  msgid "Disable redirection"
3633
  msgstr "Désactiver redirection"
3634
 
3635
- #: inc/functions/options-advanced-admin.php:757
3636
  msgid "Description"
3637
  msgstr "Description"
3638
 
3639
- #: inc/functions/options-advanced-admin.php:766
3640
  msgid ""
3641
  "The description is not prominent by default; however, some themes may show "
3642
  "it."
2
  msgstr ""
3
  "Project-Id-Version: SEOPress\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
5
+ "POT-Creation-Date: 2019-03-10 14:37+0100\n"
6
+ "PO-Revision-Date: 2019-03-10 14:39+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Benjamin DENIS <contact@seopress.org>\n"
9
  "Language: fr_FR\n"
105
  msgid "URL Rewriting"
106
  msgstr "Réécriture d'URL"
107
 
108
+ #: inc/admin/admin-header.php:149
109
+ msgid "White Label"
110
+ msgstr "Marque Blanche"
111
+
112
+ #: inc/admin/admin-header.php:155 inc/admin/admin.php:1903
113
  msgid ".htaccess"
114
  msgstr ".htaccess"
115
 
116
+ #: inc/admin/admin-header.php:162 inc/admin/admin.php:1915
117
  msgid "RSS"
118
  msgstr "RSS"
119
 
120
+ #: inc/admin/admin-header.php:168 inc/admin/admin.php:1219
121
  #: inc/admin/admin.php:1948 inc/admin/adminbar.php:69
122
  msgid "License"
123
  msgstr "Licence"
124
 
125
+ #: inc/admin/admin-header.php:175 inc/admin/admin.php:190
126
  #: inc/admin/admin.php:1927 inc/admin/adminbar.php:55
127
  msgid "Tools"
128
  msgstr "Outils"
129
 
130
+ #: inc/admin/admin-header.php:197
131
  msgid "See the changelog (new window)"
132
  msgstr "Voir le journal des modifications (ouvrir dans une nouvelle fenêtre)"
133
 
134
+ #: inc/admin/admin-header.php:199
135
  msgid "See the changelog"
136
  msgstr "Voir le journal des modifications"
137
 
138
+ #: inc/admin/admin-header.php:201 inc/admin/admin-header.php:203
139
  msgid "Send feedback"
140
  msgstr "Envoyer un retour d'expérience"
141
 
142
+ #: inc/admin/admin-header.php:205
143
  msgid "Follow us on Twitter (new window)"
144
  msgstr "Suivez-nous sur Twitter (nouvelle fenêtre)"
145
 
146
+ #: inc/admin/admin-header.php:207
147
  msgid "Follow us on Twitter"
148
  msgstr "Suivez-nous sur Twitter"
149
 
150
+ #: inc/admin/admin-header.php:209
151
  msgid "Follow us on YouTube (new window)"
152
  msgstr "Suivez-nous sur YouTube (nouvelle fenêtre)"
153
 
154
+ #: inc/admin/admin-header.php:211
155
  msgid "Follow us on YouTube"
156
  msgstr "Suivez-nous sur YouTube"
157
 
158
+ #: inc/admin/admin-header.php:213
159
  msgid "Official website (new window)"
160
  msgstr "Site officiel (nouvelle fenêtre)"
161
 
162
+ #: inc/admin/admin-header.php:215
163
  msgid "Official website"
164
  msgstr "Site Officiel"
165
 
166
+ #: inc/admin/admin-header.php:217
167
  msgid "Support (new window)"
168
  msgstr "Support (nouvelle fenêtre)"
169
 
170
+ #: inc/admin/admin-header.php:219
171
  msgid "Support"
172
  msgstr "Support"
173
 
179
 
180
  #: inc/admin/admin-metaboxes-content-analysis-form.php:9
181
  #: inc/admin/admin-metaboxes-content-analysis-form.php:10
182
+ #: inc/functions/options-advanced-admin.php:674
183
  msgid "Target keywords"
184
  msgstr "Mots clés cibles"
185
 
228
  msgid "Get suggestions!"
229
  msgstr "Obtenir des suggestions !"
230
 
231
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:71
232
  msgid "Optimizations"
233
  msgstr "Optimisations"
234
 
235
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:72
236
  msgid "Configuration"
237
  msgstr "Configuration"
238
 
239
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:73
240
  msgid "Images"
241
  msgstr "Images"
242
 
243
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:74
244
  msgid "Links"
245
  msgstr "Liens"
246
 
247
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:80
248
  msgid "Words counter"
249
  msgstr "Compteur de mots"
250
 
251
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:82
252
  msgid "words found."
253
  msgstr "mots trouvés."
254
 
255
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:83
256
  msgid "unique words found."
257
  msgstr "mots uniques trouvés."
258
 
259
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:86
260
  msgid ""
261
  "Your content is composed of more than 300 words, which is the minimum for a "
262
  "post."
264
  "Votre contenu est composé de plus de 300 mots, ce qui est le minimum "
265
  "recommandé pour un article."
266
 
267
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:88
268
  msgid "Your content is too short. Add a few more paragraphs!"
269
  msgstr "Votre contenu manque de mots. Ajoutez quelques paragraphes !"
270
 
271
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:95
272
  msgid "H1 (Heading 1)"
273
  msgstr "H1 (Titre 1)"
274
 
275
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:101
276
  msgid "Target keywords were found in Heading 1 (H1)."
277
  msgstr "Les mots clés cibles ont été trouvés dans les titres H1."
278
 
279
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:110
280
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:131
281
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:149
282
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:168
283
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:197
284
  #, php-format
285
  msgid "%s was found %d times."
286
  msgstr "%s a été trouvé %d fois."
287
 
288
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:115
289
  #, php-format
290
  msgid "We found %d Heading 1 (H1) in your content."
291
  msgstr "Nous avons trouvé %d Heading 1 (H1) dans votre contenu."
292
 
293
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:116
294
  msgid ""
295
  "You should not use more than one H1 heading in your post content. The rule "
296
  "is simple: only one H1 for each web page. Better for SEO and accessibility."
298
  "Vous ne devriez pas utiliser plus de un h1 dans votre contenu. La règle est "
299
  "simple : 1 H1 par 1 page web. C'est mieux pour le SEO et l'accessibilité."
300
 
301
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:121
302
  msgid "H2 (Heading 2)"
303
  msgstr "H2 (Titre 2)"
304
 
305
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:123
306
  msgid "Target keywords were found in Heading 2 (H2)."
307
  msgstr "Les mots clés cibles ont été trouvés dans les titres H2."
308
 
309
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:135
310
  msgid "None of your target keywords were found in Heading 2 (H2)."
311
  msgstr "Aucun de vos mots clés cibles ont été trouvés dans les titres H2."
312
 
313
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:139
314
  msgid "H3 (Heading 3)"
315
  msgstr "H2 (Titre 2)"
316
 
317
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:141
318
  msgid "Target keywords were found in Heading 3 (H3)."
319
  msgstr "Les mots clés cibles ont été trouvés dans les titres H3."
320
 
321
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:153
322
  msgid "None of your target keywords were found in Heading 3 (H3)."
323
  msgstr "Aucun de vos mots clés cibles ont été trouvés dans les titres H3."
324
 
325
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:157
326
  msgid "Meta title"
327
  msgstr "Balise titre"
328
 
329
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:160
330
  msgid "Target keywords were found in the Meta Title."
331
  msgstr "Les mots clés cibles ont été trouvés dans la balise Titre."
332
 
333
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:172
334
  msgid "None of your target keywords were found in the Meta Title."
335
  msgstr "Aucun de vos mots clés cibles ont été trouvés dans la balise Titre."
336
 
337
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:176
338
  msgid "Your custom title is too long."
339
  msgstr "Votre titre personnalisé est trop long."
340
 
341
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:178
342
  msgid "The length of your title is correct"
343
  msgstr "La longueur de votre titre est correct"
344
 
345
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:181
346
  msgid "No custom title is set for this post."
347
  msgstr "Aucune balise titre personnalisée définie pour cet article."
348
 
349
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:185
350
  #: inc/admin/admin-metaboxes-form.php:109
351
  #: inc/admin/admin-metaboxes-form.php:110 inc/admin/admin.php:732
352
  #: inc/admin/admin.php:753 inc/admin/admin.php:772 inc/admin/admin.php:2043
353
+ #: inc/admin/admin.php:3399 inc/functions/options-advanced-admin.php:666
354
  msgid "Meta description"
355
  msgstr "Meta description"
356
 
357
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:189
358
  msgid "Target keywords were found in the Meta description."
359
  msgstr "Les mots clés cibles ont été trouvés dans votre meta description."
360
 
361
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:201
362
  msgid "None of your target keywords were found in the Meta description."
363
  msgstr ""
364
  "Aucun de vos mots clés cibles ont été trouvés dans votre meta description."
365
 
366
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:205
367
  msgid "You custom meta description is too long."
368
  msgstr "Votre meta description personnalisée est trop longue."
369
 
370
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:207
371
  msgid "The length of your meta description is correct"
372
  msgstr "La longueur de votre meta description est correcte"
373
 
374
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:210
375
  msgid "No custom meta description is set for this post."
376
  msgstr "Aucune balise meta description personnalisée définie pour cet article."
377
 
378
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:216
379
  msgid "Robots"
380
  msgstr "Robots"
381
 
382
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:226
383
  #, php-format
384
  msgid ""
385
  "We found %s meta robots in your page. There is probably something wrong with "
388
  "Nous avons trouvé %s meta robots dans votre page. Il y a probablement "
389
  "quelque chose de faux dans votre thème !"
390
 
391
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:230
392
  msgid "noindex is on! Search engines can't index this page."
393
  msgstr ""
394
  "noindex est actif ! Les moteurs de recherche ne peuvent activer cette page."
395
 
396
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:232
397
  msgid "noindex is off. Search engines will index this page."
398
  msgstr "noindex est inactif. Les moteurs de recherche indexeront cette page."
399
 
400
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:236
401
  msgid "nofollow is on! Search engines can't follow your links on this page."
402
  msgstr ""
403
  "nofollow est actif ! Les moteurs de recherche ne peuvent suivre vos liens "
404
  "dans cette page."
405
 
406
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:238
407
  msgid "nofollow is off. Search engines will follow links on this page."
408
  msgstr ""
409
  "nofollow est inactif. Les moteurs de recherche suivront ces liens dans votre "
410
  "page."
411
 
412
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:242
413
  msgid ""
414
  "noimageindex is on! Google will not index your images on this page (but if "
415
  "someone makes a direct link to one of your image in this page, it will be "
419
  "(mais si quelqu'un effectue un lien direct vers l'une de vos images sur "
420
  "cette page, celle ci sera indexée)."
421
 
422
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:244
423
  msgid "noimageindex is off. Google will index the images on this page."
424
  msgstr "noimageindex est inactif. Google indexera vos images dans cette page."
425
 
426
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:248
427
  msgid "noarchive is on! Search engines will not cache your page."
428
  msgstr ""
429
  "noarchive est actif ! Les moteurs de recherche ne mettront pas en cache "
430
  "cette page."
431
 
432
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:250
433
  msgid "noarchive is off. Search engines will probably cache your page."
434
  msgstr ""
435
  "noarchive est inactif. Les moteurs de recherche mettront probablement en "
436
  "cache votre page."
437
 
438
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:254
439
  msgid ""
440
  "nosnippet is on! Search engines will not display a snippet of this page in "
441
  "search results."
443
  "nosnippet est actif ! Les moteurs de recherche n'afficheront pas d'extrait "
444
  "de cette page dans les résultats."
445
 
446
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:256
447
  msgid ""
448
  "nosnippet is off. Search engines will display a snippet of this page in "
449
  "search results."
451
  "nosnippet est inactif. Les moteurs de recherche afficheront un extrait de "
452
  "cette page dans les résultats."
453
 
454
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:259
455
  msgid ""
456
  "We found no meta robots on this page. It means, your page is index,follow. "
457
  "Search engines will index it, and follow links. "
460
  "page est en index,follow. Les moteurs de recherche vont l'indexer et suivre "
461
  "les liens. "
462
 
463
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:268
464
  msgid ""
465
  "No alternative text found for these images. Alt tags are important for both "
466
  "SEO and accessibility."
468
  "Aucun texte alternatif trouvé pour ces images. La balise Alt est importante "
469
  "à la fois pour le référencement et pour l'accessibilité."
470
 
471
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:279
472
  msgid "All alternative tags are filled in. Good work!"
473
  msgstr "Toutes les balises alternatives sont renseignées. Bon travail !"
474
 
475
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:282
476
  msgid ""
477
  "We could not find any image in your content. Content with media is a plus "
478
  "for your SEO."
480
  "Nous n'avons pu trouver aucune image dans votre contenu. Du contenu avec des "
481
  "medias est un plus pour le référencement."
482
 
483
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:288
484
  msgid "NoFollow Links"
485
  msgstr "Liens NoFollow"
486
 
487
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:293
488
  #, php-format
489
  msgid ""
490
  "We found %d links with nofollow attribute in your page. Do not overuse "
493
  "Nous avons trouvé %d liens avec l'attribut nofollow dans cette page. Ne "
494
  "surutilisez pas l'attribut nofollow sur les liens. Ci-dessous, la liste :"
495
 
496
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:303
497
  msgid "This page doesn't have any nofollow links."
498
  msgstr "Cette page n'a aucun lien avec l'attribut nofollow."
499
 
500
  #: inc/admin/admin-metaboxes-form.php:48 inc/admin/admin-metaboxes.php:163
501
  #: inc/admin/admin-metaboxes.php:166 inc/admin/admin.php:183
502
+ #: inc/admin/adminbar.php:12 inc/functions/options-advanced-admin.php:656
503
  msgid "SEO"
504
  msgstr "SEO"
505
 
1567
  msgid "Focus keywords"
1568
  msgstr "Mots clés cibles"
1569
 
1570
+ #: inc/admin/admin.php:739
1571
  msgid ""
1572
+ "<strong>WARNING:</strong> Migration will delete / update all SEOPress posts "
1573
+ "and terms metadata. Some dynamic variables will not be interpreted. We do "
1574
+ "NOT delete any Yoast datas."
1575
  msgstr ""
1576
+ "<strong>AVERTISSEMENT :</strong> la migration supprime / met à jour toutes "
1577
+ "les métadonnées de posts et de termes de SEOPress. Certaines variables "
1578
+ "dynamiques ne seront pas interprétées. Nous ne supprimons aucune donnée de "
1579
+ "Yoast."
1580
 
1581
  #: inc/admin/admin.php:740 inc/admin/admin.php:759 inc/admin/admin.php:780
1582
  msgid "Migrate now"
1594
  msgid "Meta Robots (noindex, nofollow)"
1595
  msgstr "Meta Robots (noindex, nofollow)"
1596
 
1597
+ #: inc/admin/admin.php:758
1598
+ msgid ""
1599
+ "<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
1600
+ "and terms metadata. Some dynamic variables will not be interpreted. We do "
1601
+ "NOT delete any AIO datas."
1602
+ msgstr ""
1603
+ "<strong>AVERTISSEMENT :</strong> la migration supprime / met à jour toutes "
1604
+ "les métadonnées de posts et de termes de SEOPress. Certaines variables "
1605
+ "dynamiques ne seront pas interprétées. Nous ne supprimons aucune donnée de "
1606
+ "AIO SEO."
1607
+
1608
  #: inc/admin/admin.php:767
1609
  msgid "Import posts and terms metadata from The SEO Framework"
1610
  msgstr "Importer les méta données des posts et termes depuis The SEO Framework"
1613
  msgid "Meta Robots (noindex, nofollow, noarchive)"
1614
  msgstr "Meta Robots (noindex, nofollow, noarchive)"
1615
 
1616
+ #: inc/admin/admin.php:777 inc/functions/options-advanced-admin.php:201
1617
  msgid "Redirect URL"
1618
  msgstr "URL de redirection"
1619
 
1620
+ #: inc/admin/admin.php:779
1621
+ msgid ""
1622
+ "<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
1623
+ "and terms metadata. Some dynamic variables will not be interpreted. We do "
1624
+ "NOT delete any SEO Framework datas."
1625
+ msgstr ""
1626
+ "<strong>AVERTISSEMENT :</strong> la migration supprime / met à jour toutes "
1627
+ "les métadonnées de posts et de termes de SEOPress. Certaines variables "
1628
+ "dynamiques ne seront pas interprétées. Nous ne supprimons aucune donnée de "
1629
+ "The SEO Framework."
1630
+
1631
  #: inc/admin/admin.php:787
1632
  msgid "Reset All Notices From Notifications Center"
1633
  msgstr "Réinitialiser toutes les notices du Centre de Notifications"
3563
  msgid "Broken Links"
3564
  msgstr "Liens cassés"
3565
 
3566
+ #: inc/admin/ajax.php:85
3567
  msgid "To get your Google snippet preview, publish your post!"
3568
  msgstr "Pour obtenir votre aperçu d’extrait de Google, publiez votre article !"
3569
 
3587
  msgid "Need help?"
3588
  msgstr "Besoin d'aide ?"
3589
 
3590
+ #: inc/functions/options-advanced-admin.php:33
3591
+ #: inc/functions/options-advanced-admin.php:43
3592
+ msgid "WARNING"
3593
+ msgstr "ATTENTION"
3594
+
3595
+ #: inc/functions/options-advanced-admin.php:34
3596
+ msgid ""
3597
+ "Do NOT change your permalink structure on a production site. Changing URLs "
3598
+ "can severely damage your SEO."
3599
+ msgstr ""
3600
+ "Ne changez pas votre structure de permalien sur un site en production. "
3601
+ "Changer les URLs peut sérieusement endommager votre référencement."
3602
+
3603
+ #: inc/functions/options-advanced-admin.php:44
3604
+ msgid ""
3605
+ "URL rewriting is NOT enabled on your site. Select a permalink structure "
3606
+ "optimized for SEO (NOT Plain)."
3607
+ msgstr ""
3608
+ "La réécriture d'URL n'est PAS activée sur votre site. Sélectionnez une "
3609
+ "structure de lien permanent optimisée pour le référencement (≠ \"Simple\")."
3610
+
3611
+ #: inc/functions/options-advanced-admin.php:192
3612
+ #: inc/functions/options-advanced-admin.php:658
3613
  msgid "Title tag"
3614
  msgstr "Balise Titre"
3615
 
3616
+ #: inc/functions/options-advanced-admin.php:195
3617
  msgid "Meta Desc."
3618
  msgstr "Meta Desc."
3619
 
3620
+ #: inc/functions/options-advanced-admin.php:198
3621
  msgid "Redirect?"
3622
  msgstr "Redirection?"
3623
 
3624
+ #: inc/functions/options-advanced-admin.php:204
3625
+ #: inc/functions/options-advanced-admin.php:682
3626
  msgid "Canonical"
3627
  msgstr "Canonique"
3628
 
3629
+ #: inc/functions/options-advanced-admin.php:207
3630
  msgid "Target Kw"
3631
  msgstr "Mot clé cible"
3632
 
3633
+ #: inc/functions/options-advanced-admin.php:210
3634
  msgid "Noindex?"
3635
  msgstr "Noindex ?"
3636
 
3637
+ #: inc/functions/options-advanced-admin.php:213
3638
  msgid "Nofollow?"
3639
  msgstr "Nofollow ?"
3640
 
3641
+ #: inc/functions/options-advanced-admin.php:216
3642
  msgid "Count words?"
3643
  msgstr "Compteur de mots?"
3644
 
3645
+ #: inc/functions/options-advanced-admin.php:219
3646
  msgid "W3C check"
3647
  msgstr "W3C check"
3648
 
3649
+ #: inc/functions/options-advanced-admin.php:222
3650
  msgid "Page Speed"
3651
  msgstr "Page Speed"
3652
 
3653
+ #: inc/functions/options-advanced-admin.php:275
3654
  msgid "Check code quality of this page"
3655
  msgstr "Analyser la qualité du code de cette page"
3656
 
3657
+ #: inc/functions/options-advanced-admin.php:279
3658
  msgid "Analyze this page with Google Page Speed"
3659
  msgstr "Analyser cette page avec Google Page Speed"
3660
 
3661
+ #: inc/functions/options-advanced-admin.php:362
3662
  msgid "Enable noindex"
3663
  msgstr "Définir sur noindex"
3664
 
3665
+ #: inc/functions/options-advanced-admin.php:415
3666
  msgid "Enable index"
3667
  msgstr "Définir sur index"
3668
 
3669
+ #: inc/functions/options-advanced-admin.php:468
3670
  msgid "Enable nofollow"
3671
  msgstr "Définir sur nofollow"
3672
 
3673
+ #: inc/functions/options-advanced-admin.php:520
3674
  msgid "Enable follow"
3675
  msgstr "Définir sur follow"
3676
 
3677
+ #: inc/functions/options-advanced-admin.php:567
3678
  msgid "Enable redirection"
3679
  msgstr "Activer redirection"
3680
 
3681
+ #: inc/functions/options-advanced-admin.php:606
3682
  msgid "Disable redirection"
3683
  msgstr "Désactiver redirection"
3684
 
3685
+ #: inc/functions/options-advanced-admin.php:783
3686
  msgid "Description"
3687
  msgstr "Description"
3688
 
3689
+ #: inc/functions/options-advanced-admin.php:792
3690
  msgid ""
3691
  "The description is not prominent by default; however, some themes may show "
3692
  "it."
languages/wp-seopress.mo CHANGED
Binary file
languages/wp-seopress.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: SEOPress\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
5
- "POT-Creation-Date: 2019-02-24 11:58+0100\n"
6
- "PO-Revision-Date: 2019-02-24 11:58+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Benjamin DENIS <contact@seopress.org>\n"
9
  "Language: en\n"
@@ -104,65 +104,69 @@ msgstr ""
104
  msgid "URL Rewriting"
105
  msgstr ""
106
 
107
- #: inc/admin/admin-header.php:149 inc/admin/admin.php:1903
 
 
 
 
108
  msgid ".htaccess"
109
  msgstr ""
110
 
111
- #: inc/admin/admin-header.php:156 inc/admin/admin.php:1915
112
  msgid "RSS"
113
  msgstr ""
114
 
115
- #: inc/admin/admin-header.php:162 inc/admin/admin.php:1219
116
  #: inc/admin/admin.php:1948 inc/admin/adminbar.php:69
117
  msgid "License"
118
  msgstr ""
119
 
120
- #: inc/admin/admin-header.php:169 inc/admin/admin.php:190
121
  #: inc/admin/admin.php:1927 inc/admin/adminbar.php:55
122
  msgid "Tools"
123
  msgstr ""
124
 
125
- #: inc/admin/admin-header.php:191
126
  msgid "See the changelog (new window)"
127
  msgstr ""
128
 
129
- #: inc/admin/admin-header.php:193
130
  msgid "See the changelog"
131
  msgstr ""
132
 
133
- #: inc/admin/admin-header.php:195 inc/admin/admin-header.php:197
134
  msgid "Send feedback"
135
  msgstr ""
136
 
137
- #: inc/admin/admin-header.php:199
138
  msgid "Follow us on Twitter (new window)"
139
  msgstr ""
140
 
141
- #: inc/admin/admin-header.php:201
142
  msgid "Follow us on Twitter"
143
  msgstr ""
144
 
145
- #: inc/admin/admin-header.php:203
146
  msgid "Follow us on YouTube (new window)"
147
  msgstr ""
148
 
149
- #: inc/admin/admin-header.php:205
150
  msgid "Follow us on YouTube"
151
  msgstr ""
152
 
153
- #: inc/admin/admin-header.php:207
154
  msgid "Official website (new window)"
155
  msgstr ""
156
 
157
- #: inc/admin/admin-header.php:209
158
  msgid "Official website"
159
  msgstr ""
160
 
161
- #: inc/admin/admin-header.php:211
162
  msgid "Support (new window)"
163
  msgstr ""
164
 
165
- #: inc/admin/admin-header.php:213
166
  msgid "Support"
167
  msgstr ""
168
 
@@ -172,7 +176,7 @@ msgstr ""
172
 
173
  #: inc/admin/admin-metaboxes-content-analysis-form.php:9
174
  #: inc/admin/admin-metaboxes-content-analysis-form.php:10
175
- #: inc/functions/options-advanced-admin.php:651
176
  msgid "Target keywords"
177
  msgstr ""
178
 
@@ -216,246 +220,246 @@ msgstr ""
216
  msgid "Get suggestions!"
217
  msgstr ""
218
 
219
- #: inc/admin/admin-metaboxes-content-analysis-form.php:72
220
  msgid "Optimizations"
221
  msgstr ""
222
 
223
- #: inc/admin/admin-metaboxes-content-analysis-form.php:73
224
  msgid "Configuration"
225
  msgstr ""
226
 
227
- #: inc/admin/admin-metaboxes-content-analysis-form.php:74
228
  msgid "Images"
229
  msgstr ""
230
 
231
- #: inc/admin/admin-metaboxes-content-analysis-form.php:75
232
  msgid "Links"
233
  msgstr ""
234
 
235
- #: inc/admin/admin-metaboxes-content-analysis-form.php:81
236
  msgid "Words counter"
237
  msgstr ""
238
 
239
- #: inc/admin/admin-metaboxes-content-analysis-form.php:83
240
  msgid "words found."
241
  msgstr ""
242
 
243
- #: inc/admin/admin-metaboxes-content-analysis-form.php:84
244
  msgid "unique words found."
245
  msgstr ""
246
 
247
- #: inc/admin/admin-metaboxes-content-analysis-form.php:87
248
  msgid ""
249
  "Your content is composed of more than 300 words, which is the minimum for a "
250
  "post."
251
  msgstr ""
252
 
253
- #: inc/admin/admin-metaboxes-content-analysis-form.php:89
254
  msgid "Your content is too short. Add a few more paragraphs!"
255
  msgstr ""
256
 
257
- #: inc/admin/admin-metaboxes-content-analysis-form.php:96
258
  msgid "H1 (Heading 1)"
259
  msgstr ""
260
 
261
- #: inc/admin/admin-metaboxes-content-analysis-form.php:109
262
  msgid "Target keywords were found in Heading 1 (H1)."
263
  msgstr ""
264
 
265
- #: inc/admin/admin-metaboxes-content-analysis-form.php:118
266
- #: inc/admin/admin-metaboxes-content-analysis-form.php:139
267
- #: inc/admin/admin-metaboxes-content-analysis-form.php:157
268
- #: inc/admin/admin-metaboxes-content-analysis-form.php:176
269
- #: inc/admin/admin-metaboxes-content-analysis-form.php:205
270
  #, php-format
271
  msgid "%s was found %d times."
272
  msgstr ""
273
 
274
- #: inc/admin/admin-metaboxes-content-analysis-form.php:123
275
  #, php-format
276
  msgid "We found %d Heading 1 (H1) in your content."
277
  msgstr ""
278
 
279
- #: inc/admin/admin-metaboxes-content-analysis-form.php:124
280
  msgid ""
281
  "You should not use more than one H1 heading in your post content. The rule "
282
  "is simple: only one H1 for each web page. Better for SEO and accessibility."
283
  msgstr ""
284
 
285
- #: inc/admin/admin-metaboxes-content-analysis-form.php:129
286
  msgid "H2 (Heading 2)"
287
  msgstr ""
288
 
289
- #: inc/admin/admin-metaboxes-content-analysis-form.php:131
290
  msgid "Target keywords were found in Heading 2 (H2)."
291
  msgstr ""
292
 
293
- #: inc/admin/admin-metaboxes-content-analysis-form.php:143
294
  msgid "None of your target keywords were found in Heading 2 (H2)."
295
  msgstr ""
296
 
297
- #: inc/admin/admin-metaboxes-content-analysis-form.php:147
298
  msgid "H3 (Heading 3)"
299
  msgstr ""
300
 
301
- #: inc/admin/admin-metaboxes-content-analysis-form.php:149
302
  msgid "Target keywords were found in Heading 3 (H3)."
303
  msgstr ""
304
 
305
- #: inc/admin/admin-metaboxes-content-analysis-form.php:161
306
  msgid "None of your target keywords were found in Heading 3 (H3)."
307
  msgstr ""
308
 
309
- #: inc/admin/admin-metaboxes-content-analysis-form.php:165
310
  msgid "Meta title"
311
  msgstr ""
312
 
313
- #: inc/admin/admin-metaboxes-content-analysis-form.php:168
314
  msgid "Target keywords were found in the Meta Title."
315
  msgstr ""
316
 
317
- #: inc/admin/admin-metaboxes-content-analysis-form.php:180
318
  msgid "None of your target keywords were found in the Meta Title."
319
  msgstr ""
320
 
321
- #: inc/admin/admin-metaboxes-content-analysis-form.php:184
322
  msgid "Your custom title is too long."
323
  msgstr ""
324
 
325
- #: inc/admin/admin-metaboxes-content-analysis-form.php:186
326
  msgid "The length of your title is correct"
327
  msgstr ""
328
 
329
- #: inc/admin/admin-metaboxes-content-analysis-form.php:189
330
  msgid "No custom title is set for this post."
331
  msgstr ""
332
 
333
- #: inc/admin/admin-metaboxes-content-analysis-form.php:193
334
  #: inc/admin/admin-metaboxes-form.php:109
335
  #: inc/admin/admin-metaboxes-form.php:110 inc/admin/admin.php:732
336
  #: inc/admin/admin.php:753 inc/admin/admin.php:772 inc/admin/admin.php:2043
337
- #: inc/admin/admin.php:3399 inc/functions/options-advanced-admin.php:643
338
  msgid "Meta description"
339
  msgstr ""
340
 
341
- #: inc/admin/admin-metaboxes-content-analysis-form.php:197
342
  msgid "Target keywords were found in the Meta description."
343
  msgstr ""
344
 
345
- #: inc/admin/admin-metaboxes-content-analysis-form.php:209
346
  msgid "None of your target keywords were found in the Meta description."
347
  msgstr ""
348
 
349
- #: inc/admin/admin-metaboxes-content-analysis-form.php:213
350
  msgid "You custom meta description is too long."
351
  msgstr ""
352
 
353
- #: inc/admin/admin-metaboxes-content-analysis-form.php:215
354
  msgid "The length of your meta description is correct"
355
  msgstr ""
356
 
357
- #: inc/admin/admin-metaboxes-content-analysis-form.php:218
358
  msgid "No custom meta description is set for this post."
359
  msgstr ""
360
 
361
- #: inc/admin/admin-metaboxes-content-analysis-form.php:224
362
  msgid "Robots"
363
  msgstr ""
364
 
365
- #: inc/admin/admin-metaboxes-content-analysis-form.php:234
366
  #, php-format
367
  msgid ""
368
  "We found %s meta robots in your page. There is probably something wrong with "
369
  "your theme!"
370
  msgstr ""
371
 
372
- #: inc/admin/admin-metaboxes-content-analysis-form.php:238
373
  msgid "noindex is on! Search engines can't index this page."
374
  msgstr ""
375
 
376
- #: inc/admin/admin-metaboxes-content-analysis-form.php:240
377
  msgid "noindex is off. Search engines will index this page."
378
  msgstr ""
379
 
380
- #: inc/admin/admin-metaboxes-content-analysis-form.php:244
381
  msgid "nofollow is on! Search engines can't follow your links on this page."
382
  msgstr ""
383
 
384
- #: inc/admin/admin-metaboxes-content-analysis-form.php:246
385
  msgid "nofollow is off. Search engines will follow links on this page."
386
  msgstr ""
387
 
388
- #: inc/admin/admin-metaboxes-content-analysis-form.php:250
389
  msgid ""
390
  "noimageindex is on! Google will not index your images on this page (but if "
391
  "someone makes a direct link to one of your image in this page, it will be "
392
  "indexed)."
393
  msgstr ""
394
 
395
- #: inc/admin/admin-metaboxes-content-analysis-form.php:252
396
  msgid "noimageindex is off. Google will index the images on this page."
397
  msgstr ""
398
 
399
- #: inc/admin/admin-metaboxes-content-analysis-form.php:256
400
  msgid "noarchive is on! Search engines will not cache your page."
401
  msgstr ""
402
 
403
- #: inc/admin/admin-metaboxes-content-analysis-form.php:258
404
  msgid "noarchive is off. Search engines will probably cache your page."
405
  msgstr ""
406
 
407
- #: inc/admin/admin-metaboxes-content-analysis-form.php:262
408
  msgid ""
409
  "nosnippet is on! Search engines will not display a snippet of this page in "
410
  "search results."
411
  msgstr ""
412
 
413
- #: inc/admin/admin-metaboxes-content-analysis-form.php:264
414
  msgid ""
415
  "nosnippet is off. Search engines will display a snippet of this page in "
416
  "search results."
417
  msgstr ""
418
 
419
- #: inc/admin/admin-metaboxes-content-analysis-form.php:267
420
  msgid ""
421
  "We found no meta robots on this page. It means, your page is index,follow. "
422
  "Search engines will index it, and follow links. "
423
  msgstr ""
424
 
425
- #: inc/admin/admin-metaboxes-content-analysis-form.php:276
426
  msgid ""
427
  "No alternative text found for these images. Alt tags are important for both "
428
  "SEO and accessibility."
429
  msgstr ""
430
 
431
- #: inc/admin/admin-metaboxes-content-analysis-form.php:287
432
  msgid "All alternative tags are filled in. Good work!"
433
  msgstr ""
434
 
435
- #: inc/admin/admin-metaboxes-content-analysis-form.php:290
436
  msgid ""
437
  "We could not find any image in your content. Content with media is a plus "
438
  "for your SEO."
439
  msgstr ""
440
 
441
- #: inc/admin/admin-metaboxes-content-analysis-form.php:296
442
  msgid "NoFollow Links"
443
  msgstr ""
444
 
445
- #: inc/admin/admin-metaboxes-content-analysis-form.php:301
446
  #, php-format
447
  msgid ""
448
  "We found %d links with nofollow attribute in your page. Do not overuse "
449
  "nofollow attribute in links. Below, the list:"
450
  msgstr ""
451
 
452
- #: inc/admin/admin-metaboxes-content-analysis-form.php:311
453
  msgid "This page doesn't have any nofollow links."
454
  msgstr ""
455
 
456
  #: inc/admin/admin-metaboxes-form.php:48 inc/admin/admin-metaboxes.php:163
457
  #: inc/admin/admin-metaboxes.php:166 inc/admin/admin.php:183
458
- #: inc/admin/adminbar.php:12 inc/functions/options-advanced-admin.php:633
459
  msgid "SEO"
460
  msgstr ""
461
 
@@ -1465,10 +1469,11 @@ msgstr ""
1465
  msgid "Focus keywords"
1466
  msgstr ""
1467
 
1468
- #: inc/admin/admin.php:739 inc/admin/admin.php:758 inc/admin/admin.php:779
1469
  msgid ""
1470
- "<strong>WARNING:</strong> Migration will delete all SEOPress posts and terms "
1471
- "metadata. Some dynamic variables will not be interpreted."
 
1472
  msgstr ""
1473
 
1474
  #: inc/admin/admin.php:740 inc/admin/admin.php:759 inc/admin/admin.php:780
@@ -1487,6 +1492,13 @@ msgstr ""
1487
  msgid "Meta Robots (noindex, nofollow)"
1488
  msgstr ""
1489
 
 
 
 
 
 
 
 
1490
  #: inc/admin/admin.php:767
1491
  msgid "Import posts and terms metadata from The SEO Framework"
1492
  msgstr ""
@@ -1495,10 +1507,17 @@ msgstr ""
1495
  msgid "Meta Robots (noindex, nofollow, noarchive)"
1496
  msgstr ""
1497
 
1498
- #: inc/admin/admin.php:777 inc/functions/options-advanced-admin.php:178
1499
  msgid "Redirect URL"
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
1502
  #: inc/admin/admin.php:787
1503
  msgid "Reset All Notices From Notifications Center"
1504
  msgstr ""
@@ -3285,7 +3304,7 @@ msgstr ""
3285
  msgid "Broken Links"
3286
  msgstr ""
3287
 
3288
- #: inc/admin/ajax.php:76
3289
  msgid "To get your Google snippet preview, publish your post!"
3290
  msgstr ""
3291
 
@@ -3307,85 +3326,102 @@ msgstr ""
3307
  msgid "Need help?"
3308
  msgstr ""
3309
 
3310
- #: inc/functions/options-advanced-admin.php:169
3311
- #: inc/functions/options-advanced-admin.php:635
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3312
  msgid "Title tag"
3313
  msgstr ""
3314
 
3315
- #: inc/functions/options-advanced-admin.php:172
3316
  msgid "Meta Desc."
3317
  msgstr ""
3318
 
3319
- #: inc/functions/options-advanced-admin.php:175
3320
  msgid "Redirect?"
3321
  msgstr ""
3322
 
3323
- #: inc/functions/options-advanced-admin.php:181
3324
- #: inc/functions/options-advanced-admin.php:659
3325
  msgid "Canonical"
3326
  msgstr ""
3327
 
3328
- #: inc/functions/options-advanced-admin.php:184
3329
  msgid "Target Kw"
3330
  msgstr ""
3331
 
3332
- #: inc/functions/options-advanced-admin.php:187
3333
  msgid "Noindex?"
3334
  msgstr ""
3335
 
3336
- #: inc/functions/options-advanced-admin.php:190
3337
  msgid "Nofollow?"
3338
  msgstr ""
3339
 
3340
- #: inc/functions/options-advanced-admin.php:193
3341
  msgid "Count words?"
3342
  msgstr ""
3343
 
3344
- #: inc/functions/options-advanced-admin.php:196
3345
  msgid "W3C check"
3346
  msgstr ""
3347
 
3348
- #: inc/functions/options-advanced-admin.php:199
3349
  msgid "Page Speed"
3350
  msgstr ""
3351
 
3352
- #: inc/functions/options-advanced-admin.php:252
3353
  msgid "Check code quality of this page"
3354
  msgstr ""
3355
 
3356
- #: inc/functions/options-advanced-admin.php:256
3357
  msgid "Analyze this page with Google Page Speed"
3358
  msgstr ""
3359
 
3360
- #: inc/functions/options-advanced-admin.php:339
3361
  msgid "Enable noindex"
3362
  msgstr ""
3363
 
3364
- #: inc/functions/options-advanced-admin.php:392
3365
  msgid "Enable index"
3366
  msgstr ""
3367
 
3368
- #: inc/functions/options-advanced-admin.php:445
3369
  msgid "Enable nofollow"
3370
  msgstr ""
3371
 
3372
- #: inc/functions/options-advanced-admin.php:497
3373
  msgid "Enable follow"
3374
  msgstr ""
3375
 
3376
- #: inc/functions/options-advanced-admin.php:544
3377
  msgid "Enable redirection"
3378
  msgstr ""
3379
 
3380
- #: inc/functions/options-advanced-admin.php:583
3381
  msgid "Disable redirection"
3382
  msgstr ""
3383
 
3384
- #: inc/functions/options-advanced-admin.php:757
3385
  msgid "Description"
3386
  msgstr ""
3387
 
3388
- #: inc/functions/options-advanced-admin.php:766
3389
  msgid ""
3390
  "The description is not prominent by default; however, some themes may show "
3391
  "it."
2
  msgstr ""
3
  "Project-Id-Version: SEOPress\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
5
+ "POT-Creation-Date: 2019-03-10 14:36+0100\n"
6
+ "PO-Revision-Date: 2019-03-10 14:36+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Benjamin DENIS <contact@seopress.org>\n"
9
  "Language: en\n"
104
  msgid "URL Rewriting"
105
  msgstr ""
106
 
107
+ #: inc/admin/admin-header.php:149
108
+ msgid "White Label"
109
+ msgstr ""
110
+
111
+ #: inc/admin/admin-header.php:155 inc/admin/admin.php:1903
112
  msgid ".htaccess"
113
  msgstr ""
114
 
115
+ #: inc/admin/admin-header.php:162 inc/admin/admin.php:1915
116
  msgid "RSS"
117
  msgstr ""
118
 
119
+ #: inc/admin/admin-header.php:168 inc/admin/admin.php:1219
120
  #: inc/admin/admin.php:1948 inc/admin/adminbar.php:69
121
  msgid "License"
122
  msgstr ""
123
 
124
+ #: inc/admin/admin-header.php:175 inc/admin/admin.php:190
125
  #: inc/admin/admin.php:1927 inc/admin/adminbar.php:55
126
  msgid "Tools"
127
  msgstr ""
128
 
129
+ #: inc/admin/admin-header.php:197
130
  msgid "See the changelog (new window)"
131
  msgstr ""
132
 
133
+ #: inc/admin/admin-header.php:199
134
  msgid "See the changelog"
135
  msgstr ""
136
 
137
+ #: inc/admin/admin-header.php:201 inc/admin/admin-header.php:203
138
  msgid "Send feedback"
139
  msgstr ""
140
 
141
+ #: inc/admin/admin-header.php:205
142
  msgid "Follow us on Twitter (new window)"
143
  msgstr ""
144
 
145
+ #: inc/admin/admin-header.php:207
146
  msgid "Follow us on Twitter"
147
  msgstr ""
148
 
149
+ #: inc/admin/admin-header.php:209
150
  msgid "Follow us on YouTube (new window)"
151
  msgstr ""
152
 
153
+ #: inc/admin/admin-header.php:211
154
  msgid "Follow us on YouTube"
155
  msgstr ""
156
 
157
+ #: inc/admin/admin-header.php:213
158
  msgid "Official website (new window)"
159
  msgstr ""
160
 
161
+ #: inc/admin/admin-header.php:215
162
  msgid "Official website"
163
  msgstr ""
164
 
165
+ #: inc/admin/admin-header.php:217
166
  msgid "Support (new window)"
167
  msgstr ""
168
 
169
+ #: inc/admin/admin-header.php:219
170
  msgid "Support"
171
  msgstr ""
172
 
176
 
177
  #: inc/admin/admin-metaboxes-content-analysis-form.php:9
178
  #: inc/admin/admin-metaboxes-content-analysis-form.php:10
179
+ #: inc/functions/options-advanced-admin.php:674
180
  msgid "Target keywords"
181
  msgstr ""
182
 
220
  msgid "Get suggestions!"
221
  msgstr ""
222
 
223
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:71
224
  msgid "Optimizations"
225
  msgstr ""
226
 
227
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:72
228
  msgid "Configuration"
229
  msgstr ""
230
 
231
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:73
232
  msgid "Images"
233
  msgstr ""
234
 
235
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:74
236
  msgid "Links"
237
  msgstr ""
238
 
239
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:80
240
  msgid "Words counter"
241
  msgstr ""
242
 
243
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:82
244
  msgid "words found."
245
  msgstr ""
246
 
247
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:83
248
  msgid "unique words found."
249
  msgstr ""
250
 
251
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:86
252
  msgid ""
253
  "Your content is composed of more than 300 words, which is the minimum for a "
254
  "post."
255
  msgstr ""
256
 
257
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:88
258
  msgid "Your content is too short. Add a few more paragraphs!"
259
  msgstr ""
260
 
261
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:95
262
  msgid "H1 (Heading 1)"
263
  msgstr ""
264
 
265
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:101
266
  msgid "Target keywords were found in Heading 1 (H1)."
267
  msgstr ""
268
 
269
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:110
270
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:131
271
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:149
272
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:168
273
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:197
274
  #, php-format
275
  msgid "%s was found %d times."
276
  msgstr ""
277
 
278
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:115
279
  #, php-format
280
  msgid "We found %d Heading 1 (H1) in your content."
281
  msgstr ""
282
 
283
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:116
284
  msgid ""
285
  "You should not use more than one H1 heading in your post content. The rule "
286
  "is simple: only one H1 for each web page. Better for SEO and accessibility."
287
  msgstr ""
288
 
289
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:121
290
  msgid "H2 (Heading 2)"
291
  msgstr ""
292
 
293
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:123
294
  msgid "Target keywords were found in Heading 2 (H2)."
295
  msgstr ""
296
 
297
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:135
298
  msgid "None of your target keywords were found in Heading 2 (H2)."
299
  msgstr ""
300
 
301
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:139
302
  msgid "H3 (Heading 3)"
303
  msgstr ""
304
 
305
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:141
306
  msgid "Target keywords were found in Heading 3 (H3)."
307
  msgstr ""
308
 
309
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:153
310
  msgid "None of your target keywords were found in Heading 3 (H3)."
311
  msgstr ""
312
 
313
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:157
314
  msgid "Meta title"
315
  msgstr ""
316
 
317
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:160
318
  msgid "Target keywords were found in the Meta Title."
319
  msgstr ""
320
 
321
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:172
322
  msgid "None of your target keywords were found in the Meta Title."
323
  msgstr ""
324
 
325
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:176
326
  msgid "Your custom title is too long."
327
  msgstr ""
328
 
329
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:178
330
  msgid "The length of your title is correct"
331
  msgstr ""
332
 
333
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:181
334
  msgid "No custom title is set for this post."
335
  msgstr ""
336
 
337
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:185
338
  #: inc/admin/admin-metaboxes-form.php:109
339
  #: inc/admin/admin-metaboxes-form.php:110 inc/admin/admin.php:732
340
  #: inc/admin/admin.php:753 inc/admin/admin.php:772 inc/admin/admin.php:2043
341
+ #: inc/admin/admin.php:3399 inc/functions/options-advanced-admin.php:666
342
  msgid "Meta description"
343
  msgstr ""
344
 
345
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:189
346
  msgid "Target keywords were found in the Meta description."
347
  msgstr ""
348
 
349
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:201
350
  msgid "None of your target keywords were found in the Meta description."
351
  msgstr ""
352
 
353
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:205
354
  msgid "You custom meta description is too long."
355
  msgstr ""
356
 
357
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:207
358
  msgid "The length of your meta description is correct"
359
  msgstr ""
360
 
361
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:210
362
  msgid "No custom meta description is set for this post."
363
  msgstr ""
364
 
365
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:216
366
  msgid "Robots"
367
  msgstr ""
368
 
369
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:226
370
  #, php-format
371
  msgid ""
372
  "We found %s meta robots in your page. There is probably something wrong with "
373
  "your theme!"
374
  msgstr ""
375
 
376
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:230
377
  msgid "noindex is on! Search engines can't index this page."
378
  msgstr ""
379
 
380
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:232
381
  msgid "noindex is off. Search engines will index this page."
382
  msgstr ""
383
 
384
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:236
385
  msgid "nofollow is on! Search engines can't follow your links on this page."
386
  msgstr ""
387
 
388
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:238
389
  msgid "nofollow is off. Search engines will follow links on this page."
390
  msgstr ""
391
 
392
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:242
393
  msgid ""
394
  "noimageindex is on! Google will not index your images on this page (but if "
395
  "someone makes a direct link to one of your image in this page, it will be "
396
  "indexed)."
397
  msgstr ""
398
 
399
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:244
400
  msgid "noimageindex is off. Google will index the images on this page."
401
  msgstr ""
402
 
403
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:248
404
  msgid "noarchive is on! Search engines will not cache your page."
405
  msgstr ""
406
 
407
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:250
408
  msgid "noarchive is off. Search engines will probably cache your page."
409
  msgstr ""
410
 
411
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:254
412
  msgid ""
413
  "nosnippet is on! Search engines will not display a snippet of this page in "
414
  "search results."
415
  msgstr ""
416
 
417
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:256
418
  msgid ""
419
  "nosnippet is off. Search engines will display a snippet of this page in "
420
  "search results."
421
  msgstr ""
422
 
423
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:259
424
  msgid ""
425
  "We found no meta robots on this page. It means, your page is index,follow. "
426
  "Search engines will index it, and follow links. "
427
  msgstr ""
428
 
429
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:268
430
  msgid ""
431
  "No alternative text found for these images. Alt tags are important for both "
432
  "SEO and accessibility."
433
  msgstr ""
434
 
435
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:279
436
  msgid "All alternative tags are filled in. Good work!"
437
  msgstr ""
438
 
439
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:282
440
  msgid ""
441
  "We could not find any image in your content. Content with media is a plus "
442
  "for your SEO."
443
  msgstr ""
444
 
445
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:288
446
  msgid "NoFollow Links"
447
  msgstr ""
448
 
449
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:293
450
  #, php-format
451
  msgid ""
452
  "We found %d links with nofollow attribute in your page. Do not overuse "
453
  "nofollow attribute in links. Below, the list:"
454
  msgstr ""
455
 
456
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:303
457
  msgid "This page doesn't have any nofollow links."
458
  msgstr ""
459
 
460
  #: inc/admin/admin-metaboxes-form.php:48 inc/admin/admin-metaboxes.php:163
461
  #: inc/admin/admin-metaboxes.php:166 inc/admin/admin.php:183
462
+ #: inc/admin/adminbar.php:12 inc/functions/options-advanced-admin.php:656
463
  msgid "SEO"
464
  msgstr ""
465
 
1469
  msgid "Focus keywords"
1470
  msgstr ""
1471
 
1472
+ #: inc/admin/admin.php:739
1473
  msgid ""
1474
+ "<strong>WARNING:</strong> Migration will delete / update all SEOPress posts "
1475
+ "and terms metadata. Some dynamic variables will not be interpreted. We do "
1476
+ "NOT delete any Yoast datas."
1477
  msgstr ""
1478
 
1479
  #: inc/admin/admin.php:740 inc/admin/admin.php:759 inc/admin/admin.php:780
1492
  msgid "Meta Robots (noindex, nofollow)"
1493
  msgstr ""
1494
 
1495
+ #: inc/admin/admin.php:758
1496
+ msgid ""
1497
+ "<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
1498
+ "and terms metadata. Some dynamic variables will not be interpreted. We do "
1499
+ "NOT delete any AIO datas."
1500
+ msgstr ""
1501
+
1502
  #: inc/admin/admin.php:767
1503
  msgid "Import posts and terms metadata from The SEO Framework"
1504
  msgstr ""
1507
  msgid "Meta Robots (noindex, nofollow, noarchive)"
1508
  msgstr ""
1509
 
1510
+ #: inc/admin/admin.php:777 inc/functions/options-advanced-admin.php:201
1511
  msgid "Redirect URL"
1512
  msgstr ""
1513
 
1514
+ #: inc/admin/admin.php:779
1515
+ msgid ""
1516
+ "<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
1517
+ "and terms metadata. Some dynamic variables will not be interpreted. We do "
1518
+ "NOT delete any SEO Framework datas."
1519
+ msgstr ""
1520
+
1521
  #: inc/admin/admin.php:787
1522
  msgid "Reset All Notices From Notifications Center"
1523
  msgstr ""
3304
  msgid "Broken Links"
3305
  msgstr ""
3306
 
3307
+ #: inc/admin/ajax.php:85
3308
  msgid "To get your Google snippet preview, publish your post!"
3309
  msgstr ""
3310
 
3326
  msgid "Need help?"
3327
  msgstr ""
3328
 
3329
+ #: inc/functions/options-advanced-admin.php:33
3330
+ #: inc/functions/options-advanced-admin.php:43
3331
+ msgid "WARNING"
3332
+ msgstr ""
3333
+
3334
+ #: inc/functions/options-advanced-admin.php:34
3335
+ msgid ""
3336
+ "Do NOT change your permalink structure on a production site. Changing URLs "
3337
+ "can severely damage your SEO."
3338
+ msgstr ""
3339
+
3340
+ #: inc/functions/options-advanced-admin.php:44
3341
+ msgid ""
3342
+ "URL rewriting is NOT enabled on your site. Select a permalink structure "
3343
+ "optimized for SEO (NOT Plain)."
3344
+ msgstr ""
3345
+
3346
+ #: inc/functions/options-advanced-admin.php:192
3347
+ #: inc/functions/options-advanced-admin.php:658
3348
  msgid "Title tag"
3349
  msgstr ""
3350
 
3351
+ #: inc/functions/options-advanced-admin.php:195
3352
  msgid "Meta Desc."
3353
  msgstr ""
3354
 
3355
+ #: inc/functions/options-advanced-admin.php:198
3356
  msgid "Redirect?"
3357
  msgstr ""
3358
 
3359
+ #: inc/functions/options-advanced-admin.php:204
3360
+ #: inc/functions/options-advanced-admin.php:682
3361
  msgid "Canonical"
3362
  msgstr ""
3363
 
3364
+ #: inc/functions/options-advanced-admin.php:207
3365
  msgid "Target Kw"
3366
  msgstr ""
3367
 
3368
+ #: inc/functions/options-advanced-admin.php:210
3369
  msgid "Noindex?"
3370
  msgstr ""
3371
 
3372
+ #: inc/functions/options-advanced-admin.php:213
3373
  msgid "Nofollow?"
3374
  msgstr ""
3375
 
3376
+ #: inc/functions/options-advanced-admin.php:216
3377
  msgid "Count words?"
3378
  msgstr ""
3379
 
3380
+ #: inc/functions/options-advanced-admin.php:219
3381
  msgid "W3C check"
3382
  msgstr ""
3383
 
3384
+ #: inc/functions/options-advanced-admin.php:222
3385
  msgid "Page Speed"
3386
  msgstr ""
3387
 
3388
+ #: inc/functions/options-advanced-admin.php:275
3389
  msgid "Check code quality of this page"
3390
  msgstr ""
3391
 
3392
+ #: inc/functions/options-advanced-admin.php:279
3393
  msgid "Analyze this page with Google Page Speed"
3394
  msgstr ""
3395
 
3396
+ #: inc/functions/options-advanced-admin.php:362
3397
  msgid "Enable noindex"
3398
  msgstr ""
3399
 
3400
+ #: inc/functions/options-advanced-admin.php:415
3401
  msgid "Enable index"
3402
  msgstr ""
3403
 
3404
+ #: inc/functions/options-advanced-admin.php:468
3405
  msgid "Enable nofollow"
3406
  msgstr ""
3407
 
3408
+ #: inc/functions/options-advanced-admin.php:520
3409
  msgid "Enable follow"
3410
  msgstr ""
3411
 
3412
+ #: inc/functions/options-advanced-admin.php:567
3413
  msgid "Enable redirection"
3414
  msgstr ""
3415
 
3416
+ #: inc/functions/options-advanced-admin.php:606
3417
  msgid "Disable redirection"
3418
  msgstr ""
3419
 
3420
+ #: inc/functions/options-advanced-admin.php:783
3421
  msgid "Description"
3422
  msgstr ""
3423
 
3424
+ #: inc/functions/options-advanced-admin.php:792
3425
  msgid ""
3426
  "The description is not prominent by default; however, some themes may show "
3427
  "it."
languages/wp-seopress.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: SEOPress\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
5
- "POT-Creation-Date: 2019-02-24 11:58+0100\n"
6
- "PO-Revision-Date: 2019-02-24 11:58+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Benjamin DENIS <contact@seopress.org>\n"
9
  "Language: en\n"
@@ -104,65 +104,69 @@ msgstr ""
104
  msgid "URL Rewriting"
105
  msgstr ""
106
 
107
- #: inc/admin/admin-header.php:149 inc/admin/admin.php:1903
 
 
 
 
108
  msgid ".htaccess"
109
  msgstr ""
110
 
111
- #: inc/admin/admin-header.php:156 inc/admin/admin.php:1915
112
  msgid "RSS"
113
  msgstr ""
114
 
115
- #: inc/admin/admin-header.php:162 inc/admin/admin.php:1219
116
  #: inc/admin/admin.php:1948 inc/admin/adminbar.php:69
117
  msgid "License"
118
  msgstr ""
119
 
120
- #: inc/admin/admin-header.php:169 inc/admin/admin.php:190
121
  #: inc/admin/admin.php:1927 inc/admin/adminbar.php:55
122
  msgid "Tools"
123
  msgstr ""
124
 
125
- #: inc/admin/admin-header.php:191
126
  msgid "See the changelog (new window)"
127
  msgstr ""
128
 
129
- #: inc/admin/admin-header.php:193
130
  msgid "See the changelog"
131
  msgstr ""
132
 
133
- #: inc/admin/admin-header.php:195 inc/admin/admin-header.php:197
134
  msgid "Send feedback"
135
  msgstr ""
136
 
137
- #: inc/admin/admin-header.php:199
138
  msgid "Follow us on Twitter (new window)"
139
  msgstr ""
140
 
141
- #: inc/admin/admin-header.php:201
142
  msgid "Follow us on Twitter"
143
  msgstr ""
144
 
145
- #: inc/admin/admin-header.php:203
146
  msgid "Follow us on YouTube (new window)"
147
  msgstr ""
148
 
149
- #: inc/admin/admin-header.php:205
150
  msgid "Follow us on YouTube"
151
  msgstr ""
152
 
153
- #: inc/admin/admin-header.php:207
154
  msgid "Official website (new window)"
155
  msgstr ""
156
 
157
- #: inc/admin/admin-header.php:209
158
  msgid "Official website"
159
  msgstr ""
160
 
161
- #: inc/admin/admin-header.php:211
162
  msgid "Support (new window)"
163
  msgstr ""
164
 
165
- #: inc/admin/admin-header.php:213
166
  msgid "Support"
167
  msgstr ""
168
 
@@ -172,7 +176,7 @@ msgstr ""
172
 
173
  #: inc/admin/admin-metaboxes-content-analysis-form.php:9
174
  #: inc/admin/admin-metaboxes-content-analysis-form.php:10
175
- #: inc/functions/options-advanced-admin.php:651
176
  msgid "Target keywords"
177
  msgstr ""
178
 
@@ -216,246 +220,246 @@ msgstr ""
216
  msgid "Get suggestions!"
217
  msgstr ""
218
 
219
- #: inc/admin/admin-metaboxes-content-analysis-form.php:72
220
  msgid "Optimizations"
221
  msgstr ""
222
 
223
- #: inc/admin/admin-metaboxes-content-analysis-form.php:73
224
  msgid "Configuration"
225
  msgstr ""
226
 
227
- #: inc/admin/admin-metaboxes-content-analysis-form.php:74
228
  msgid "Images"
229
  msgstr ""
230
 
231
- #: inc/admin/admin-metaboxes-content-analysis-form.php:75
232
  msgid "Links"
233
  msgstr ""
234
 
235
- #: inc/admin/admin-metaboxes-content-analysis-form.php:81
236
  msgid "Words counter"
237
  msgstr ""
238
 
239
- #: inc/admin/admin-metaboxes-content-analysis-form.php:83
240
  msgid "words found."
241
  msgstr ""
242
 
243
- #: inc/admin/admin-metaboxes-content-analysis-form.php:84
244
  msgid "unique words found."
245
  msgstr ""
246
 
247
- #: inc/admin/admin-metaboxes-content-analysis-form.php:87
248
  msgid ""
249
  "Your content is composed of more than 300 words, which is the minimum for a "
250
  "post."
251
  msgstr ""
252
 
253
- #: inc/admin/admin-metaboxes-content-analysis-form.php:89
254
  msgid "Your content is too short. Add a few more paragraphs!"
255
  msgstr ""
256
 
257
- #: inc/admin/admin-metaboxes-content-analysis-form.php:96
258
  msgid "H1 (Heading 1)"
259
  msgstr ""
260
 
261
- #: inc/admin/admin-metaboxes-content-analysis-form.php:109
262
  msgid "Target keywords were found in Heading 1 (H1)."
263
  msgstr ""
264
 
265
- #: inc/admin/admin-metaboxes-content-analysis-form.php:118
266
- #: inc/admin/admin-metaboxes-content-analysis-form.php:139
267
- #: inc/admin/admin-metaboxes-content-analysis-form.php:157
268
- #: inc/admin/admin-metaboxes-content-analysis-form.php:176
269
- #: inc/admin/admin-metaboxes-content-analysis-form.php:205
270
  #, php-format
271
  msgid "%s was found %d times."
272
  msgstr ""
273
 
274
- #: inc/admin/admin-metaboxes-content-analysis-form.php:123
275
  #, php-format
276
  msgid "We found %d Heading 1 (H1) in your content."
277
  msgstr ""
278
 
279
- #: inc/admin/admin-metaboxes-content-analysis-form.php:124
280
  msgid ""
281
  "You should not use more than one H1 heading in your post content. The rule "
282
  "is simple: only one H1 for each web page. Better for SEO and accessibility."
283
  msgstr ""
284
 
285
- #: inc/admin/admin-metaboxes-content-analysis-form.php:129
286
  msgid "H2 (Heading 2)"
287
  msgstr ""
288
 
289
- #: inc/admin/admin-metaboxes-content-analysis-form.php:131
290
  msgid "Target keywords were found in Heading 2 (H2)."
291
  msgstr ""
292
 
293
- #: inc/admin/admin-metaboxes-content-analysis-form.php:143
294
  msgid "None of your target keywords were found in Heading 2 (H2)."
295
  msgstr ""
296
 
297
- #: inc/admin/admin-metaboxes-content-analysis-form.php:147
298
  msgid "H3 (Heading 3)"
299
  msgstr ""
300
 
301
- #: inc/admin/admin-metaboxes-content-analysis-form.php:149
302
  msgid "Target keywords were found in Heading 3 (H3)."
303
  msgstr ""
304
 
305
- #: inc/admin/admin-metaboxes-content-analysis-form.php:161
306
  msgid "None of your target keywords were found in Heading 3 (H3)."
307
  msgstr ""
308
 
309
- #: inc/admin/admin-metaboxes-content-analysis-form.php:165
310
  msgid "Meta title"
311
  msgstr ""
312
 
313
- #: inc/admin/admin-metaboxes-content-analysis-form.php:168
314
  msgid "Target keywords were found in the Meta Title."
315
  msgstr ""
316
 
317
- #: inc/admin/admin-metaboxes-content-analysis-form.php:180
318
  msgid "None of your target keywords were found in the Meta Title."
319
  msgstr ""
320
 
321
- #: inc/admin/admin-metaboxes-content-analysis-form.php:184
322
  msgid "Your custom title is too long."
323
  msgstr ""
324
 
325
- #: inc/admin/admin-metaboxes-content-analysis-form.php:186
326
  msgid "The length of your title is correct"
327
  msgstr ""
328
 
329
- #: inc/admin/admin-metaboxes-content-analysis-form.php:189
330
  msgid "No custom title is set for this post."
331
  msgstr ""
332
 
333
- #: inc/admin/admin-metaboxes-content-analysis-form.php:193
334
  #: inc/admin/admin-metaboxes-form.php:109
335
  #: inc/admin/admin-metaboxes-form.php:110 inc/admin/admin.php:732
336
  #: inc/admin/admin.php:753 inc/admin/admin.php:772 inc/admin/admin.php:2043
337
- #: inc/admin/admin.php:3399 inc/functions/options-advanced-admin.php:643
338
  msgid "Meta description"
339
  msgstr ""
340
 
341
- #: inc/admin/admin-metaboxes-content-analysis-form.php:197
342
  msgid "Target keywords were found in the Meta description."
343
  msgstr ""
344
 
345
- #: inc/admin/admin-metaboxes-content-analysis-form.php:209
346
  msgid "None of your target keywords were found in the Meta description."
347
  msgstr ""
348
 
349
- #: inc/admin/admin-metaboxes-content-analysis-form.php:213
350
  msgid "You custom meta description is too long."
351
  msgstr ""
352
 
353
- #: inc/admin/admin-metaboxes-content-analysis-form.php:215
354
  msgid "The length of your meta description is correct"
355
  msgstr ""
356
 
357
- #: inc/admin/admin-metaboxes-content-analysis-form.php:218
358
  msgid "No custom meta description is set for this post."
359
  msgstr ""
360
 
361
- #: inc/admin/admin-metaboxes-content-analysis-form.php:224
362
  msgid "Robots"
363
  msgstr ""
364
 
365
- #: inc/admin/admin-metaboxes-content-analysis-form.php:234
366
  #, php-format
367
  msgid ""
368
  "We found %s meta robots in your page. There is probably something wrong with "
369
  "your theme!"
370
  msgstr ""
371
 
372
- #: inc/admin/admin-metaboxes-content-analysis-form.php:238
373
  msgid "noindex is on! Search engines can't index this page."
374
  msgstr ""
375
 
376
- #: inc/admin/admin-metaboxes-content-analysis-form.php:240
377
  msgid "noindex is off. Search engines will index this page."
378
  msgstr ""
379
 
380
- #: inc/admin/admin-metaboxes-content-analysis-form.php:244
381
  msgid "nofollow is on! Search engines can't follow your links on this page."
382
  msgstr ""
383
 
384
- #: inc/admin/admin-metaboxes-content-analysis-form.php:246
385
  msgid "nofollow is off. Search engines will follow links on this page."
386
  msgstr ""
387
 
388
- #: inc/admin/admin-metaboxes-content-analysis-form.php:250
389
  msgid ""
390
  "noimageindex is on! Google will not index your images on this page (but if "
391
  "someone makes a direct link to one of your image in this page, it will be "
392
  "indexed)."
393
  msgstr ""
394
 
395
- #: inc/admin/admin-metaboxes-content-analysis-form.php:252
396
  msgid "noimageindex is off. Google will index the images on this page."
397
  msgstr ""
398
 
399
- #: inc/admin/admin-metaboxes-content-analysis-form.php:256
400
  msgid "noarchive is on! Search engines will not cache your page."
401
  msgstr ""
402
 
403
- #: inc/admin/admin-metaboxes-content-analysis-form.php:258
404
  msgid "noarchive is off. Search engines will probably cache your page."
405
  msgstr ""
406
 
407
- #: inc/admin/admin-metaboxes-content-analysis-form.php:262
408
  msgid ""
409
  "nosnippet is on! Search engines will not display a snippet of this page in "
410
  "search results."
411
  msgstr ""
412
 
413
- #: inc/admin/admin-metaboxes-content-analysis-form.php:264
414
  msgid ""
415
  "nosnippet is off. Search engines will display a snippet of this page in "
416
  "search results."
417
  msgstr ""
418
 
419
- #: inc/admin/admin-metaboxes-content-analysis-form.php:267
420
  msgid ""
421
  "We found no meta robots on this page. It means, your page is index,follow. "
422
  "Search engines will index it, and follow links. "
423
  msgstr ""
424
 
425
- #: inc/admin/admin-metaboxes-content-analysis-form.php:276
426
  msgid ""
427
  "No alternative text found for these images. Alt tags are important for both "
428
  "SEO and accessibility."
429
  msgstr ""
430
 
431
- #: inc/admin/admin-metaboxes-content-analysis-form.php:287
432
  msgid "All alternative tags are filled in. Good work!"
433
  msgstr ""
434
 
435
- #: inc/admin/admin-metaboxes-content-analysis-form.php:290
436
  msgid ""
437
  "We could not find any image in your content. Content with media is a plus "
438
  "for your SEO."
439
  msgstr ""
440
 
441
- #: inc/admin/admin-metaboxes-content-analysis-form.php:296
442
  msgid "NoFollow Links"
443
  msgstr ""
444
 
445
- #: inc/admin/admin-metaboxes-content-analysis-form.php:301
446
  #, php-format
447
  msgid ""
448
  "We found %d links with nofollow attribute in your page. Do not overuse "
449
  "nofollow attribute in links. Below, the list:"
450
  msgstr ""
451
 
452
- #: inc/admin/admin-metaboxes-content-analysis-form.php:311
453
  msgid "This page doesn't have any nofollow links."
454
  msgstr ""
455
 
456
  #: inc/admin/admin-metaboxes-form.php:48 inc/admin/admin-metaboxes.php:163
457
  #: inc/admin/admin-metaboxes.php:166 inc/admin/admin.php:183
458
- #: inc/admin/adminbar.php:12 inc/functions/options-advanced-admin.php:633
459
  msgid "SEO"
460
  msgstr ""
461
 
@@ -1465,10 +1469,11 @@ msgstr ""
1465
  msgid "Focus keywords"
1466
  msgstr ""
1467
 
1468
- #: inc/admin/admin.php:739 inc/admin/admin.php:758 inc/admin/admin.php:779
1469
  msgid ""
1470
- "<strong>WARNING:</strong> Migration will delete all SEOPress posts and terms "
1471
- "metadata. Some dynamic variables will not be interpreted."
 
1472
  msgstr ""
1473
 
1474
  #: inc/admin/admin.php:740 inc/admin/admin.php:759 inc/admin/admin.php:780
@@ -1487,6 +1492,13 @@ msgstr ""
1487
  msgid "Meta Robots (noindex, nofollow)"
1488
  msgstr ""
1489
 
 
 
 
 
 
 
 
1490
  #: inc/admin/admin.php:767
1491
  msgid "Import posts and terms metadata from The SEO Framework"
1492
  msgstr ""
@@ -1495,10 +1507,17 @@ msgstr ""
1495
  msgid "Meta Robots (noindex, nofollow, noarchive)"
1496
  msgstr ""
1497
 
1498
- #: inc/admin/admin.php:777 inc/functions/options-advanced-admin.php:178
1499
  msgid "Redirect URL"
1500
  msgstr ""
1501
 
 
 
 
 
 
 
 
1502
  #: inc/admin/admin.php:787
1503
  msgid "Reset All Notices From Notifications Center"
1504
  msgstr ""
@@ -3285,7 +3304,7 @@ msgstr ""
3285
  msgid "Broken Links"
3286
  msgstr ""
3287
 
3288
- #: inc/admin/ajax.php:76
3289
  msgid "To get your Google snippet preview, publish your post!"
3290
  msgstr ""
3291
 
@@ -3307,85 +3326,102 @@ msgstr ""
3307
  msgid "Need help?"
3308
  msgstr ""
3309
 
3310
- #: inc/functions/options-advanced-admin.php:169
3311
- #: inc/functions/options-advanced-admin.php:635
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3312
  msgid "Title tag"
3313
  msgstr ""
3314
 
3315
- #: inc/functions/options-advanced-admin.php:172
3316
  msgid "Meta Desc."
3317
  msgstr ""
3318
 
3319
- #: inc/functions/options-advanced-admin.php:175
3320
  msgid "Redirect?"
3321
  msgstr ""
3322
 
3323
- #: inc/functions/options-advanced-admin.php:181
3324
- #: inc/functions/options-advanced-admin.php:659
3325
  msgid "Canonical"
3326
  msgstr ""
3327
 
3328
- #: inc/functions/options-advanced-admin.php:184
3329
  msgid "Target Kw"
3330
  msgstr ""
3331
 
3332
- #: inc/functions/options-advanced-admin.php:187
3333
  msgid "Noindex?"
3334
  msgstr ""
3335
 
3336
- #: inc/functions/options-advanced-admin.php:190
3337
  msgid "Nofollow?"
3338
  msgstr ""
3339
 
3340
- #: inc/functions/options-advanced-admin.php:193
3341
  msgid "Count words?"
3342
  msgstr ""
3343
 
3344
- #: inc/functions/options-advanced-admin.php:196
3345
  msgid "W3C check"
3346
  msgstr ""
3347
 
3348
- #: inc/functions/options-advanced-admin.php:199
3349
  msgid "Page Speed"
3350
  msgstr ""
3351
 
3352
- #: inc/functions/options-advanced-admin.php:252
3353
  msgid "Check code quality of this page"
3354
  msgstr ""
3355
 
3356
- #: inc/functions/options-advanced-admin.php:256
3357
  msgid "Analyze this page with Google Page Speed"
3358
  msgstr ""
3359
 
3360
- #: inc/functions/options-advanced-admin.php:339
3361
  msgid "Enable noindex"
3362
  msgstr ""
3363
 
3364
- #: inc/functions/options-advanced-admin.php:392
3365
  msgid "Enable index"
3366
  msgstr ""
3367
 
3368
- #: inc/functions/options-advanced-admin.php:445
3369
  msgid "Enable nofollow"
3370
  msgstr ""
3371
 
3372
- #: inc/functions/options-advanced-admin.php:497
3373
  msgid "Enable follow"
3374
  msgstr ""
3375
 
3376
- #: inc/functions/options-advanced-admin.php:544
3377
  msgid "Enable redirection"
3378
  msgstr ""
3379
 
3380
- #: inc/functions/options-advanced-admin.php:583
3381
  msgid "Disable redirection"
3382
  msgstr ""
3383
 
3384
- #: inc/functions/options-advanced-admin.php:757
3385
  msgid "Description"
3386
  msgstr ""
3387
 
3388
- #: inc/functions/options-advanced-admin.php:766
3389
  msgid ""
3390
  "The description is not prominent by default; however, some themes may show "
3391
  "it."
2
  msgstr ""
3
  "Project-Id-Version: SEOPress\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
5
+ "POT-Creation-Date: 2019-03-10 14:36+0100\n"
6
+ "PO-Revision-Date: 2019-03-10 14:36+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Benjamin DENIS <contact@seopress.org>\n"
9
  "Language: en\n"
104
  msgid "URL Rewriting"
105
  msgstr ""
106
 
107
+ #: inc/admin/admin-header.php:149
108
+ msgid "White Label"
109
+ msgstr ""
110
+
111
+ #: inc/admin/admin-header.php:155 inc/admin/admin.php:1903
112
  msgid ".htaccess"
113
  msgstr ""
114
 
115
+ #: inc/admin/admin-header.php:162 inc/admin/admin.php:1915
116
  msgid "RSS"
117
  msgstr ""
118
 
119
+ #: inc/admin/admin-header.php:168 inc/admin/admin.php:1219
120
  #: inc/admin/admin.php:1948 inc/admin/adminbar.php:69
121
  msgid "License"
122
  msgstr ""
123
 
124
+ #: inc/admin/admin-header.php:175 inc/admin/admin.php:190
125
  #: inc/admin/admin.php:1927 inc/admin/adminbar.php:55
126
  msgid "Tools"
127
  msgstr ""
128
 
129
+ #: inc/admin/admin-header.php:197
130
  msgid "See the changelog (new window)"
131
  msgstr ""
132
 
133
+ #: inc/admin/admin-header.php:199
134
  msgid "See the changelog"
135
  msgstr ""
136
 
137
+ #: inc/admin/admin-header.php:201 inc/admin/admin-header.php:203
138
  msgid "Send feedback"
139
  msgstr ""
140
 
141
+ #: inc/admin/admin-header.php:205
142
  msgid "Follow us on Twitter (new window)"
143
  msgstr ""
144
 
145
+ #: inc/admin/admin-header.php:207
146
  msgid "Follow us on Twitter"
147
  msgstr ""
148
 
149
+ #: inc/admin/admin-header.php:209
150
  msgid "Follow us on YouTube (new window)"
151
  msgstr ""
152
 
153
+ #: inc/admin/admin-header.php:211
154
  msgid "Follow us on YouTube"
155
  msgstr ""
156
 
157
+ #: inc/admin/admin-header.php:213
158
  msgid "Official website (new window)"
159
  msgstr ""
160
 
161
+ #: inc/admin/admin-header.php:215
162
  msgid "Official website"
163
  msgstr ""
164
 
165
+ #: inc/admin/admin-header.php:217
166
  msgid "Support (new window)"
167
  msgstr ""
168
 
169
+ #: inc/admin/admin-header.php:219
170
  msgid "Support"
171
  msgstr ""
172
 
176
 
177
  #: inc/admin/admin-metaboxes-content-analysis-form.php:9
178
  #: inc/admin/admin-metaboxes-content-analysis-form.php:10
179
+ #: inc/functions/options-advanced-admin.php:674
180
  msgid "Target keywords"
181
  msgstr ""
182
 
220
  msgid "Get suggestions!"
221
  msgstr ""
222
 
223
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:71
224
  msgid "Optimizations"
225
  msgstr ""
226
 
227
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:72
228
  msgid "Configuration"
229
  msgstr ""
230
 
231
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:73
232
  msgid "Images"
233
  msgstr ""
234
 
235
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:74
236
  msgid "Links"
237
  msgstr ""
238
 
239
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:80
240
  msgid "Words counter"
241
  msgstr ""
242
 
243
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:82
244
  msgid "words found."
245
  msgstr ""
246
 
247
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:83
248
  msgid "unique words found."
249
  msgstr ""
250
 
251
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:86
252
  msgid ""
253
  "Your content is composed of more than 300 words, which is the minimum for a "
254
  "post."
255
  msgstr ""
256
 
257
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:88
258
  msgid "Your content is too short. Add a few more paragraphs!"
259
  msgstr ""
260
 
261
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:95
262
  msgid "H1 (Heading 1)"
263
  msgstr ""
264
 
265
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:101
266
  msgid "Target keywords were found in Heading 1 (H1)."
267
  msgstr ""
268
 
269
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:110
270
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:131
271
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:149
272
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:168
273
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:197
274
  #, php-format
275
  msgid "%s was found %d times."
276
  msgstr ""
277
 
278
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:115
279
  #, php-format
280
  msgid "We found %d Heading 1 (H1) in your content."
281
  msgstr ""
282
 
283
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:116
284
  msgid ""
285
  "You should not use more than one H1 heading in your post content. The rule "
286
  "is simple: only one H1 for each web page. Better for SEO and accessibility."
287
  msgstr ""
288
 
289
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:121
290
  msgid "H2 (Heading 2)"
291
  msgstr ""
292
 
293
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:123
294
  msgid "Target keywords were found in Heading 2 (H2)."
295
  msgstr ""
296
 
297
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:135
298
  msgid "None of your target keywords were found in Heading 2 (H2)."
299
  msgstr ""
300
 
301
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:139
302
  msgid "H3 (Heading 3)"
303
  msgstr ""
304
 
305
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:141
306
  msgid "Target keywords were found in Heading 3 (H3)."
307
  msgstr ""
308
 
309
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:153
310
  msgid "None of your target keywords were found in Heading 3 (H3)."
311
  msgstr ""
312
 
313
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:157
314
  msgid "Meta title"
315
  msgstr ""
316
 
317
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:160
318
  msgid "Target keywords were found in the Meta Title."
319
  msgstr ""
320
 
321
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:172
322
  msgid "None of your target keywords were found in the Meta Title."
323
  msgstr ""
324
 
325
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:176
326
  msgid "Your custom title is too long."
327
  msgstr ""
328
 
329
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:178
330
  msgid "The length of your title is correct"
331
  msgstr ""
332
 
333
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:181
334
  msgid "No custom title is set for this post."
335
  msgstr ""
336
 
337
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:185
338
  #: inc/admin/admin-metaboxes-form.php:109
339
  #: inc/admin/admin-metaboxes-form.php:110 inc/admin/admin.php:732
340
  #: inc/admin/admin.php:753 inc/admin/admin.php:772 inc/admin/admin.php:2043
341
+ #: inc/admin/admin.php:3399 inc/functions/options-advanced-admin.php:666
342
  msgid "Meta description"
343
  msgstr ""
344
 
345
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:189
346
  msgid "Target keywords were found in the Meta description."
347
  msgstr ""
348
 
349
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:201
350
  msgid "None of your target keywords were found in the Meta description."
351
  msgstr ""
352
 
353
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:205
354
  msgid "You custom meta description is too long."
355
  msgstr ""
356
 
357
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:207
358
  msgid "The length of your meta description is correct"
359
  msgstr ""
360
 
361
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:210
362
  msgid "No custom meta description is set for this post."
363
  msgstr ""
364
 
365
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:216
366
  msgid "Robots"
367
  msgstr ""
368
 
369
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:226
370
  #, php-format
371
  msgid ""
372
  "We found %s meta robots in your page. There is probably something wrong with "
373
  "your theme!"
374
  msgstr ""
375
 
376
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:230
377
  msgid "noindex is on! Search engines can't index this page."
378
  msgstr ""
379
 
380
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:232
381
  msgid "noindex is off. Search engines will index this page."
382
  msgstr ""
383
 
384
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:236
385
  msgid "nofollow is on! Search engines can't follow your links on this page."
386
  msgstr ""
387
 
388
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:238
389
  msgid "nofollow is off. Search engines will follow links on this page."
390
  msgstr ""
391
 
392
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:242
393
  msgid ""
394
  "noimageindex is on! Google will not index your images on this page (but if "
395
  "someone makes a direct link to one of your image in this page, it will be "
396
  "indexed)."
397
  msgstr ""
398
 
399
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:244
400
  msgid "noimageindex is off. Google will index the images on this page."
401
  msgstr ""
402
 
403
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:248
404
  msgid "noarchive is on! Search engines will not cache your page."
405
  msgstr ""
406
 
407
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:250
408
  msgid "noarchive is off. Search engines will probably cache your page."
409
  msgstr ""
410
 
411
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:254
412
  msgid ""
413
  "nosnippet is on! Search engines will not display a snippet of this page in "
414
  "search results."
415
  msgstr ""
416
 
417
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:256
418
  msgid ""
419
  "nosnippet is off. Search engines will display a snippet of this page in "
420
  "search results."
421
  msgstr ""
422
 
423
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:259
424
  msgid ""
425
  "We found no meta robots on this page. It means, your page is index,follow. "
426
  "Search engines will index it, and follow links. "
427
  msgstr ""
428
 
429
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:268
430
  msgid ""
431
  "No alternative text found for these images. Alt tags are important for both "
432
  "SEO and accessibility."
433
  msgstr ""
434
 
435
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:279
436
  msgid "All alternative tags are filled in. Good work!"
437
  msgstr ""
438
 
439
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:282
440
  msgid ""
441
  "We could not find any image in your content. Content with media is a plus "
442
  "for your SEO."
443
  msgstr ""
444
 
445
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:288
446
  msgid "NoFollow Links"
447
  msgstr ""
448
 
449
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:293
450
  #, php-format
451
  msgid ""
452
  "We found %d links with nofollow attribute in your page. Do not overuse "
453
  "nofollow attribute in links. Below, the list:"
454
  msgstr ""
455
 
456
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:303
457
  msgid "This page doesn't have any nofollow links."
458
  msgstr ""
459
 
460
  #: inc/admin/admin-metaboxes-form.php:48 inc/admin/admin-metaboxes.php:163
461
  #: inc/admin/admin-metaboxes.php:166 inc/admin/admin.php:183
462
+ #: inc/admin/adminbar.php:12 inc/functions/options-advanced-admin.php:656
463
  msgid "SEO"
464
  msgstr ""
465
 
1469
  msgid "Focus keywords"
1470
  msgstr ""
1471
 
1472
+ #: inc/admin/admin.php:739
1473
  msgid ""
1474
+ "<strong>WARNING:</strong> Migration will delete / update all SEOPress posts "
1475
+ "and terms metadata. Some dynamic variables will not be interpreted. We do "
1476
+ "NOT delete any Yoast datas."
1477
  msgstr ""
1478
 
1479
  #: inc/admin/admin.php:740 inc/admin/admin.php:759 inc/admin/admin.php:780
1492
  msgid "Meta Robots (noindex, nofollow)"
1493
  msgstr ""
1494
 
1495
+ #: inc/admin/admin.php:758
1496
+ msgid ""
1497
+ "<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
1498
+ "and terms metadata. Some dynamic variables will not be interpreted. We do "
1499
+ "NOT delete any AIO datas."
1500
+ msgstr ""
1501
+
1502
  #: inc/admin/admin.php:767
1503
  msgid "Import posts and terms metadata from The SEO Framework"
1504
  msgstr ""
1507
  msgid "Meta Robots (noindex, nofollow, noarchive)"
1508
  msgstr ""
1509
 
1510
+ #: inc/admin/admin.php:777 inc/functions/options-advanced-admin.php:201
1511
  msgid "Redirect URL"
1512
  msgstr ""
1513
 
1514
+ #: inc/admin/admin.php:779
1515
+ msgid ""
1516
+ "<strong>WARNING:</strong> Migration will update / delete all SEOPress posts "
1517
+ "and terms metadata. Some dynamic variables will not be interpreted. We do "
1518
+ "NOT delete any SEO Framework datas."
1519
+ msgstr ""
1520
+
1521
  #: inc/admin/admin.php:787
1522
  msgid "Reset All Notices From Notifications Center"
1523
  msgstr ""
3304
  msgid "Broken Links"
3305
  msgstr ""
3306
 
3307
+ #: inc/admin/ajax.php:85
3308
  msgid "To get your Google snippet preview, publish your post!"
3309
  msgstr ""
3310
 
3326
  msgid "Need help?"
3327
  msgstr ""
3328
 
3329
+ #: inc/functions/options-advanced-admin.php:33
3330
+ #: inc/functions/options-advanced-admin.php:43
3331
+ msgid "WARNING"
3332
+ msgstr ""
3333
+
3334
+ #: inc/functions/options-advanced-admin.php:34
3335
+ msgid ""
3336
+ "Do NOT change your permalink structure on a production site. Changing URLs "
3337
+ "can severely damage your SEO."
3338
+ msgstr ""
3339
+
3340
+ #: inc/functions/options-advanced-admin.php:44
3341
+ msgid ""
3342
+ "URL rewriting is NOT enabled on your site. Select a permalink structure "
3343
+ "optimized for SEO (NOT Plain)."
3344
+ msgstr ""
3345
+
3346
+ #: inc/functions/options-advanced-admin.php:192
3347
+ #: inc/functions/options-advanced-admin.php:658
3348
  msgid "Title tag"
3349
  msgstr ""
3350
 
3351
+ #: inc/functions/options-advanced-admin.php:195
3352
  msgid "Meta Desc."
3353
  msgstr ""
3354
 
3355
+ #: inc/functions/options-advanced-admin.php:198
3356
  msgid "Redirect?"
3357
  msgstr ""
3358
 
3359
+ #: inc/functions/options-advanced-admin.php:204
3360
+ #: inc/functions/options-advanced-admin.php:682
3361
  msgid "Canonical"
3362
  msgstr ""
3363
 
3364
+ #: inc/functions/options-advanced-admin.php:207
3365
  msgid "Target Kw"
3366
  msgstr ""
3367
 
3368
+ #: inc/functions/options-advanced-admin.php:210
3369
  msgid "Noindex?"
3370
  msgstr ""
3371
 
3372
+ #: inc/functions/options-advanced-admin.php:213
3373
  msgid "Nofollow?"
3374
  msgstr ""
3375
 
3376
+ #: inc/functions/options-advanced-admin.php:216
3377
  msgid "Count words?"
3378
  msgstr ""
3379
 
3380
+ #: inc/functions/options-advanced-admin.php:219
3381
  msgid "W3C check"
3382
  msgstr ""
3383
 
3384
+ #: inc/functions/options-advanced-admin.php:222
3385
  msgid "Page Speed"
3386
  msgstr ""
3387
 
3388
+ #: inc/functions/options-advanced-admin.php:275
3389
  msgid "Check code quality of this page"
3390
  msgstr ""
3391
 
3392
+ #: inc/functions/options-advanced-admin.php:279
3393
  msgid "Analyze this page with Google Page Speed"
3394
  msgstr ""
3395
 
3396
+ #: inc/functions/options-advanced-admin.php:362
3397
  msgid "Enable noindex"
3398
  msgstr ""
3399
 
3400
+ #: inc/functions/options-advanced-admin.php:415
3401
  msgid "Enable index"
3402
  msgstr ""
3403
 
3404
+ #: inc/functions/options-advanced-admin.php:468
3405
  msgid "Enable nofollow"
3406
  msgstr ""
3407
 
3408
+ #: inc/functions/options-advanced-admin.php:520
3409
  msgid "Enable follow"
3410
  msgstr ""
3411
 
3412
+ #: inc/functions/options-advanced-admin.php:567
3413
  msgid "Enable redirection"
3414
  msgstr ""
3415
 
3416
+ #: inc/functions/options-advanced-admin.php:606
3417
  msgid "Disable redirection"
3418
  msgstr ""
3419
 
3420
+ #: inc/functions/options-advanced-admin.php:783
3421
  msgid "Description"
3422
  msgstr ""
3423
 
3424
+ #: inc/functions/options-advanced-admin.php:792
3425
  msgid ""
3426
  "The description is not prominent by default; however, some themes may show "
3427
  "it."
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: SEO, XML sitemap, meta title, open graph, content analysis, knowledge grap
6
  Requires at least: 4.4+
7
  Tested up to: 5.1
8
  Requires PHP: 5.4
9
- Stable tag: 3.3.11.2
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -162,6 +162,15 @@ Subscribe on <a href="https://www.seopress.org/" target="_blank">seopress.org</a
162
  44. Structured Data Types metaboxe in post, page, custom post type (PRO)
163
 
164
  == Changelog ==
 
 
 
 
 
 
 
 
 
165
  = 3.3.11.2 =
166
  * FIX Content Analysis for non UTF-8 characters
167
  * FIX H1 count for Content Analysis
6
  Requires at least: 4.4+
7
  Tested up to: 5.1
8
  Requires PHP: 5.4
9
+ Stable tag: 3.3.12
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
162
  44. Structured Data Types metaboxe in post, page, custom post type (PRO)
163
 
164
  == Changelog ==
165
+ = 3.3.12 =
166
+ * NEW Support Redirects with parameters (PRO)
167
+ * NEW Add Argentina Peso currency (PRO)
168
+ * NEW White label settings + Multisite (PRO)
169
+ * INFO Improve Content Analysis UX/UI if no target keywords
170
+ * INFO Improve UI in Permalink settings page
171
+ * FIX Test redirection link and Test your URL button (PRO)
172
+ * FIX Notice Trying to get property 'ID' of non-object in wp-content/plugins/wp-seopress/inc/functions/options-titles-metas.php:439
173
+ * FIX Notice Trying to get property 'ID' of non-object in wp-content/plugins/wp-seopress/inc/functions/options-titles-metas.php:807
174
  = 3.3.11.2 =
175
  * FIX Content Analysis for non UTF-8 characters
176
  * FIX H1 count for Content Analysis
seopress.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: The best plugin for SEO.
6
- Version: 3.3.11.2
7
  Author: Benjamin Denis
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
@@ -53,7 +53,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
53
  ///////////////////////////////////////////////////////////////////////////////////////////////////
54
  //Define
55
  ///////////////////////////////////////////////////////////////////////////////////////////////////
56
- define( 'SEOPRESS_VERSION', '3.3.11.2' );
57
  define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
58
 
59
  ///////////////////////////////////////////////////////////////////////////////////////////////////
3
  Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: The best plugin for SEO.
6
+ Version: 3.3.12
7
  Author: Benjamin Denis
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
53
  ///////////////////////////////////////////////////////////////////////////////////////////////////
54
  //Define
55
  ///////////////////////////////////////////////////////////////////////////////////////////////////
56
+ define( 'SEOPRESS_VERSION', '3.3.12' );
57
  define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
58
 
59
  ///////////////////////////////////////////////////////////////////////////////////////////////////