Really Simple SSL - Version 4.0.4

Version Description

  • Added Really Simple Plugins logo
  • Fix: enable link in task for multisite redirected to subsite
  • Fix: exclude plus one count from admin notices
Download this release

Release Info

Developer RogierLankhorst
Plugin Icon 128x128 Really Simple SSL
Version 4.0.4
Comparing to
See all releases

Code changes from version 4.0.3 to 4.0.4

assets/complianz.jpg DELETED
Binary file
assets/edd-moneybird.jpg DELETED
Binary file
assets/mail-alerts.jpg DELETED
Binary file
assets/most-visited.jpg DELETED
Binary file
assets/rsssl-pro.jpg DELETED
Binary file
assets/tagging.jpg DELETED
Binary file
assets/woocommerce-moneybird.jpg DELETED
Binary file
assets/wpsearchinsights.jpg DELETED
Binary file
assets/ziprecipes.png DELETED
Binary file
class-admin.php CHANGED
@@ -2712,7 +2712,7 @@ class rsssl_admin extends rsssl_front_end
2712
  'msg' => __("Really Simple SSL 4.0. Learn more about our newest major release.", "really-simple-ssl"),
2713
  'icon' => 'open',
2714
  'dismissible' => true,
2715
- 'plusone' => false, //set to true on 4.1
2716
  ),
2717
  ),
2718
  ),
@@ -3022,27 +3022,28 @@ class rsssl_admin extends rsssl_front_end
3022
 
3023
  $notices = $warnings + $open + $other;
3024
 
3025
- //add plus ones
3026
- foreach ($notices as $key => $notice){
3027
- if ( isset($notice['output']['url']) ) {
3028
- $url = $notice['output']['url'];
3029
- $target = '';
3030
- if ( strpos( $url, 'https://really-simple-ssl.com') !== FALSE ){
3031
- $info = __('%sMore info%s or %sdismiss%s','really-simple-ssl');
3032
- $target = 'target="_blank"';
3033
- } else {
3034
- $info = __('%sEnable%s or %sdismiss%s','really-simple-ssl');
 
 
 
 
3035
  }
3036
- $dismiss_open = "<span class='rsssl-dashboard-dismiss' data-dismiss_type='".$key."'><a href='#' class='rsssl-dismiss-text rsssl-close-warning'>";
3037
- $notices[$key]['output']['msg'] .= ' '.sprintf($info ,'<a '.$target.' href="'.$url.'">', '</a>', $dismiss_open, "</a></span>");
3038
- }
3039
-
3040
- if ( isset($notice['output']['plusone']) && $notice['output']['plusone']) {
3041
- $plusone = "<span class='rsssl-dashboard-plusone update-plugins rsssl-update-count'><span class='update-count'>1</span></span>";
3042
- $notices[$key]['output']['msg'] .= $plusone;
3043
- }
3044
- }
3045
 
 
 
 
 
 
 
3046
  //if we only want a list of premium notices
3047
  if ( $args['premium_only'] ) {
3048
  foreach ($notices as $key => $notice){
@@ -3051,9 +3052,6 @@ class rsssl_admin extends rsssl_front_end
3051
  }
3052
  }
3053
  }
3054
-
3055
-
3056
-
3057
  return $notices;
3058
  }
3059
 
@@ -3156,21 +3154,33 @@ class rsssl_admin extends rsssl_front_end
3156
  }
3157
 
3158
  /**
3159
- * @param $setting_name
3160
- *
3161
- * @return string
3162
- *
3163
  * Generate an enable link for the specific setting, redirects to settings page and highlights the setting.
3164
  *
 
 
 
 
3165
  */
3166
 
3167
- public function generate_enable_link($setting_name, $type=false)
3168
  {
3169
- if ($type == 'free') {
3170
- return add_query_arg(array("page" => "rlrsssl_really_simple_ssl", "highlight" => "$setting_name"), admin_url("options-general.php"));
3171
- } elseif ($type == 'premium') {
3172
- return add_query_arg(array("page" => "rlrsssl_really_simple_ssl", "tab" => "premium", "highlight" => "$setting_name"), admin_url("options-general.php"));
 
 
 
 
 
 
 
 
 
 
3173
  }
 
 
3174
  }
3175
 
3176
  /**
@@ -3277,7 +3287,7 @@ class rsssl_admin extends rsssl_front_end
3277
  ),
3278
  'plugins' => array(
3279
  'title' => __("Our plugins", "really-simple-ssl"),
3280
- 'header' => rsssl_template_path . 'header.php',
3281
  'content' => rsssl_template_path . 'other-plugins.php',
3282
  'class' => 'half-height no-border no-background upsell-grid-container',
3283
  'can_hide' => false,
@@ -3396,9 +3406,6 @@ class rsssl_admin extends rsssl_front_end
3396
  if (!current_user_can($this->capability)) return;
3397
  if (isset ($_GET['tab'])) $this->admin_tabs($_GET['tab']); else $this->admin_tabs('configuration');
3398
  if (isset ($_GET['tab'])) $tab = $_GET['tab']; else $tab = 'configuration';
3399
- if ( !get_option('rsssl_visited_version_4_dashboard') ) {
3400
- update_option('rsssl_visited_version_4_dashboard', true);
3401
- }
3402
  ?>
3403
  <div class="rsssl-container">
3404
  <div class="rsssl-main"><?php
@@ -3636,10 +3643,6 @@ class rsssl_admin extends rsssl_front_end
3636
 
3637
  public function create_form()
3638
  {
3639
- if ($this->is_settings_page()) {
3640
- add_action( 'admin_head', array( $this, 'highlight_js' ) );
3641
- }
3642
-
3643
  register_setting('rlrsssl_options', 'rlrsssl_options', array($this, 'options_validate'));
3644
  add_settings_section('rlrsssl_settings', __("Settings", "really-simple-ssl"), array($this, 'section_text'), 'rlrsssl');
3645
 
@@ -4237,42 +4240,6 @@ class rsssl_admin extends rsssl_front_end
4237
  return $htaccess_file;
4238
  }
4239
 
4240
- /**
4241
- *
4242
- * Insert script to highlight option after dashboard click
4243
- *
4244
- * @since 3.2
4245
- *
4246
- * @access public
4247
- *
4248
- */
4249
-
4250
- public function highlight_js(){
4251
- ?>
4252
- <script>
4253
- jQuery(document).ready(function ($) {
4254
- 'use strict';
4255
- var sPageURL = window.location.href;
4256
- var queryString = sPageURL.split('?');
4257
- if (queryString.length === 1) return false;
4258
- var setting_name = '';
4259
- var rsssl_variables = queryString[1].split('&');
4260
- for (var key in rsssl_variables) {
4261
- if (rsssl_variables.hasOwnProperty(key)) {
4262
- var output = rsssl_variables[key].split('=');
4263
- if (output[0]==='highlight') {
4264
- setting_name = output[1];
4265
- }
4266
- }
4267
- }
4268
- if(setting_name !== '' && $('#rsssl-maybe-highlight-' + setting_name).length) {
4269
- $('#rsssl-maybe-highlight-' + setting_name).closest('tr').addClass('rsssl-highlight');
4270
- }
4271
- });
4272
- </script>
4273
- <?php
4274
- }
4275
-
4276
  /**
4277
  *
4278
  * Determine whether or not to remove the &highlight= parameter from URL
2712
  'msg' => __("Really Simple SSL 4.0. Learn more about our newest major release.", "really-simple-ssl"),
2713
  'icon' => 'open',
2714
  'dismissible' => true,
2715
+ 'plusone' => true,
2716
  ),
2717
  ),
2718
  ),
3022
 
3023
  $notices = $warnings + $open + $other;
3024
 
3025
+ //add plus ones, but not when in admin notice
3026
+ if ( !$args['admin_notices'] ) {
3027
+ foreach ( $notices as $key => $notice ) {
3028
+ if ( isset( $notice['output']['url'] ) ) {
3029
+ $url = $notice['output']['url'];
3030
+ $target = '';
3031
+ if ( strpos( $url, 'https://really-simple-ssl.com' ) !== false ) {
3032
+ $info = __( '%sMore info%s or %sdismiss%s', 'really-simple-ssl' );
3033
+ $target = 'target="_blank"';
3034
+ } else {
3035
+ $info = __( '%sEnable%s or %sdismiss%s', 'really-simple-ssl' );
3036
+ }
3037
+ $dismiss_open = "<span class='rsssl-dashboard-dismiss' data-dismiss_type='" . $key . "'><a href='#' class='rsssl-dismiss-text rsssl-close-warning'>";
3038
+ $notices[ $key ]['output']['msg'] .= ' ' . sprintf( $info, '<a ' . $target . ' href="' . $url . '">', '</a>', $dismiss_open, "</a></span>" );
3039
  }
 
 
 
 
 
 
 
 
 
3040
 
3041
+ if ( isset( $notice['output']['plusone'] ) && $notice['output']['plusone'] ) {
3042
+ $plusone = "<span class='rsssl-dashboard-plusone update-plugins rsssl-update-count'><span class='update-count'>1</span></span>";
3043
+ $notices[ $key ]['output']['msg'] .= $plusone;
3044
+ }
3045
+ }
3046
+ }
3047
  //if we only want a list of premium notices
3048
  if ( $args['premium_only'] ) {
3049
  foreach ($notices as $key => $notice){
3052
  }
3053
  }
3054
  }
 
 
 
3055
  return $notices;
3056
  }
3057
 
3154
  }
3155
 
3156
  /**
 
 
 
 
3157
  * Generate an enable link for the specific setting, redirects to settings page and highlights the setting.
3158
  *
3159
+ * @param string $setting_name
3160
+ * @param string $type
3161
+ *
3162
+ * @return string
3163
  */
3164
 
3165
+ public function generate_enable_link($setting_name, $type)
3166
  {
3167
+ if ( is_network_admin() ) {
3168
+ $page = "really-simple-ssl";
3169
+ $wp_page = network_admin_url('settings.php' );
3170
+ } else {
3171
+ $page = "rlrsssl_really_simple_ssl";
3172
+ $wp_page = admin_url('options-general.php');
3173
+ }
3174
+ $args = array(
3175
+ "page" => $page,
3176
+ "highlight" => $setting_name
3177
+ );
3178
+
3179
+ if ( $type === 'premium' && !is_network_admin() ) {
3180
+ $args['tab'] = 'premium';
3181
  }
3182
+
3183
+ return add_query_arg($args, $wp_page);
3184
  }
3185
 
3186
  /**
3287
  ),
3288
  'plugins' => array(
3289
  'title' => __("Our plugins", "really-simple-ssl"),
3290
+ 'header' => rsssl_template_path . 'our-plugins-header.php',
3291
  'content' => rsssl_template_path . 'other-plugins.php',
3292
  'class' => 'half-height no-border no-background upsell-grid-container',
3293
  'can_hide' => false,
3406
  if (!current_user_can($this->capability)) return;
3407
  if (isset ($_GET['tab'])) $this->admin_tabs($_GET['tab']); else $this->admin_tabs('configuration');
3408
  if (isset ($_GET['tab'])) $tab = $_GET['tab']; else $tab = 'configuration';
 
 
 
3409
  ?>
3410
  <div class="rsssl-container">
3411
  <div class="rsssl-main"><?php
3643
 
3644
  public function create_form()
3645
  {
 
 
 
 
3646
  register_setting('rlrsssl_options', 'rlrsssl_options', array($this, 'options_validate'));
3647
  add_settings_section('rlrsssl_settings', __("Settings", "really-simple-ssl"), array($this, 'section_text'), 'rlrsssl');
3648
 
4240
  return $htaccess_file;
4241
  }
4242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4243
  /**
4244
  *
4245
  * Determine whether or not to remove the &highlight= parameter from URL
grid/css/grid.css CHANGED
@@ -8,7 +8,7 @@
8
  }
9
  .settings_page_rlrsssl_really_simple_ssl #wpcontent .nav-tab,
10
  .settings_page_really-simple-ssl #wpcontent .nav-tab {
11
- padding: 17px 20px 19px 20px;
12
  margin-bottom: 0;
13
  color: #444;
14
  font-weight: normal;
@@ -342,6 +342,7 @@
342
  color: #3c3c3c;
343
  display: flex;
344
  align-items: center;
 
345
  }
346
  .rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums .rsssl-bullet {
347
  margin: 7px 7px 7px 0;
@@ -364,7 +365,7 @@
364
  .rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell {
365
  display: flex !important;
366
  flex-direction: row;
367
- padding: 5px 0 5px 0;
368
  align-items: center;
369
  color: #3c3c3c;
370
  }
@@ -470,14 +471,12 @@
470
  text-align: right;
471
  margin-right: 10px;
472
  }
473
- .rsssl-grid #rsssl-progress-footer .rsssl-footer-item {
474
- padding-right: 5px;
475
- }
476
  .rsssl-grid #rsssl-progress-footer .rsssl-footer-item form {
477
  float: left;
478
  }
479
  .rsssl-grid #rsssl-progress-footer .rsssl-footer-item + .rsssl-footer-item {
480
- margin-right: 20px;
 
481
  }
482
  .rsssl-grid #rsssl-progress-footer .footer-left {
483
  float: left;
@@ -512,6 +511,10 @@
512
  .rsssl-grid .rsssl-dot-error {
513
  background-color: #d7263d;
514
  }
 
 
 
 
515
  .rsssl-grid {
516
  position: relative;
517
  }
8
  }
9
  .settings_page_rlrsssl_really_simple_ssl #wpcontent .nav-tab,
10
  .settings_page_really-simple-ssl #wpcontent .nav-tab {
11
+ padding: 16px 20px 17px 20px;
12
  margin-bottom: 0;
13
  color: #444;
14
  font-weight: normal;
342
  color: #3c3c3c;
343
  display: flex;
344
  align-items: center;
345
+ padding: 2px 0;
346
  }
347
  .rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums .rsssl-bullet {
348
  margin: 7px 7px 7px 0;
365
  .rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell {
366
  display: flex !important;
367
  flex-direction: row;
368
+ padding: 7px 0 7px 0;
369
  align-items: center;
370
  color: #3c3c3c;
371
  }
471
  text-align: right;
472
  margin-right: 10px;
473
  }
 
 
 
474
  .rsssl-grid #rsssl-progress-footer .rsssl-footer-item form {
475
  float: left;
476
  }
477
  .rsssl-grid #rsssl-progress-footer .rsssl-footer-item + .rsssl-footer-item {
478
+ margin-left: 20px;
479
+ padding: 4px 0;
480
  }
481
  .rsssl-grid #rsssl-progress-footer .footer-left {
482
  float: left;
511
  .rsssl-grid .rsssl-dot-error {
512
  background-color: #d7263d;
513
  }
514
+ .upsell-grid-container .rsssl-secondary-header-item img {
515
+ height: 30px;
516
+ padding-top: 5px;
517
+ }
518
  .rsssl-grid {
519
  position: relative;
520
  }
grid/css/grid.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["grid.less"],"names":[],"mappings":"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","file":"grid.css"}
1
+ {"version":3,"sources":["grid.less"],"names":[],"mappings":"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","file":"grid.css"}
grid/css/grid.less CHANGED
@@ -29,7 +29,7 @@
29
  }
30
 
31
  .nav-tab {
32
- padding: 17px 20px 19px 20px;
33
  margin-bottom:0;
34
  color: #444;
35
  font-weight: normal;
@@ -242,6 +242,7 @@
242
  .all-task-count {
243
  margin-right: 5px;
244
  }
 
245
  }
246
  }
247
  .rsssl-table-td-main-content {
@@ -379,6 +380,7 @@
379
  color: @light-text-color;
380
  display: flex;
381
  align-items: center;
 
382
  }
383
 
384
  .rsssl-bullet {
@@ -411,7 +413,7 @@
411
  .rsssl-upsell {
412
  display: flex !important; //we need important here, because the grid switch overrides it on element level
413
  flex-direction: row;
414
- padding: 5px 0 5px 0;
415
  align-items: center;
416
  color: @light-text-color;
417
 
@@ -549,13 +551,13 @@
549
  text-align: right;
550
  margin-right: @grid_margin;
551
  .rsssl-footer-item {
552
- padding-right: 5px;
553
  form {
554
  float:left;
555
  }
556
  }
557
  .rsssl-footer-item +.rsssl-footer-item {
558
- margin-right:20px;
 
559
  }
560
 
561
  .footer-left {
@@ -600,6 +602,14 @@
600
  }
601
  }
602
 
 
 
 
 
 
 
 
 
603
 
604
  // Code below should be integrated in to the code above.
605
  .rsssl-grid {
29
  }
30
 
31
  .nav-tab {
32
+ padding: 16px 20px 17px 20px;
33
  margin-bottom:0;
34
  color: #444;
35
  font-weight: normal;
242
  .all-task-count {
243
  margin-right: 5px;
244
  }
245
+
246
  }
247
  }
248
  .rsssl-table-td-main-content {
380
  color: @light-text-color;
381
  display: flex;
382
  align-items: center;
383
+ padding:2px 0;
384
  }
385
 
386
  .rsssl-bullet {
413
  .rsssl-upsell {
414
  display: flex !important; //we need important here, because the grid switch overrides it on element level
415
  flex-direction: row;
416
+ padding: 7px 0 7px 0;
417
  align-items: center;
418
  color: @light-text-color;
419
 
551
  text-align: right;
552
  margin-right: @grid_margin;
553
  .rsssl-footer-item {
 
554
  form {
555
  float:left;
556
  }
557
  }
558
  .rsssl-footer-item +.rsssl-footer-item {
559
+ margin-left:20px;
560
+ padding:4px 0;
561
  }
562
 
563
  .footer-left {
602
  }
603
  }
604
 
605
+ .upsell-grid-container {
606
+ .rsssl-secondary-header-item {
607
+ img {
608
+ height: 30px;
609
+ padding-top: 5px;
610
+ }
611
+ }
612
+ }
613
 
614
  // Code below should be integrated in to the code above.
615
  .rsssl-grid {
grid/css/grid.min.css CHANGED
@@ -1 +1 @@
1
- .settings_page_rlrsssl_really_simple_ssl #wpcontent,.settings_page_really-simple-ssl #wpcontent{padding:0}.settings_page_rlrsssl_really_simple_ssl #wpcontent .rsssl-footer-item form,.settings_page_really-simple-ssl #wpcontent .rsssl-footer-item form{float:left}.settings_page_rlrsssl_really_simple_ssl #wpcontent .nav-tab,.settings_page_really-simple-ssl #wpcontent .nav-tab{padding:17px 20px 19px 20px;margin-bottom:0;color:#444;font-weight:normal;font-size:1.2em;background:inherit;border:0}.settings_page_rlrsssl_really_simple_ssl #wpcontent .nav-tab.nav-tab-active,.settings_page_really-simple-ssl #wpcontent .nav-tab.nav-tab-active{border-bottom:2px solid #fbc43d !important;background:#fff;padding-bottom:17px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .nav-tab-wrapper,.settings_page_really-simple-ssl #wpcontent .nav-tab-wrapper{height:60px;background-color:#fff;display:flex;align-items:center;border:0}.settings_page_rlrsssl_really_simple_ssl #wpcontent .rsssl-logo-container,.settings_page_really-simple-ssl #wpcontent .rsssl-logo-container{margin-left:25px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .rsssl-logo-container #rsssl-logo,.settings_page_really-simple-ssl #wpcontent .rsssl-logo-container #rsssl-logo{height:40px;width:200px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .rsssl-logo-container #rsssl-logo img,.settings_page_really-simple-ssl #wpcontent .rsssl-logo-container #rsssl-logo img{width:200px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .header-links,.settings_page_really-simple-ssl #wpcontent .header-links{display:flex;flex:1;justify-content:flex-end;flex-direction:row;align-items:center;margin-right:20px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .header-links .documentation,.settings_page_really-simple-ssl #wpcontent .header-links .documentation{text-decoration:underline}.settings_page_rlrsssl_really_simple_ssl #wpcontent .header-links .header-upsell .documentation,.settings_page_really-simple-ssl #wpcontent .header-links .header-upsell .documentation{margin-left:25px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .header-links .header-upsell a,.settings_page_really-simple-ssl #wpcontent .header-links .header-upsell a{text-decoration:none}.settings_page_rlrsssl_really_simple_ssl #wpcontent .header-links .header-upsell .header-upsell-pro,.settings_page_really-simple-ssl #wpcontent .header-links .header-upsell .header-upsell-pro{color:black;border:3px solid black;margin:10px;width:80px;text-align:center;padding:5px;border-radius:20px;font-weight:600}.network-admin .rsssl-logo-container{height:60px}.rsssl-grid{width:calc(100% - 20px);margin:10px;position:relative;display:flex;flex-direction:row;flex-wrap:wrap}.rsssl-grid .button-rsssl-tertiary{background-color:#d7263d;color:white;border:0}.rsssl-grid .rsssl-wide-button{width:220px}.rsssl-grid .rsssl-progress .rsssl-task-list{height:257px;overflow:hidden}.rsssl-grid .rsssl-progress .rsssl-toggle-active{text-decoration:underline}.rsssl-grid .rsssl-progress #rsssl-all-tasks,.rsssl-grid .rsssl-progress #rsssl-remaining-tasks{display:none}.rsssl-grid .rsssl-progress .rsssl-tasks-container{border-bottom:1px solid lightgrey;color:lightgrey}.rsssl-grid .rsssl-progress .rsssl-tasks-container.active{text-decoration:none;border-bottom:0;color:initial}.rsssl-grid .rsssl-progress .rsssl-tasks-inactive{text-decoration:underline;color:lightgrey}.rsssl-grid .rsssl-item{width:800px;height:485px;z-index:1}.rsssl-grid .rsssl-item.small{width:400px}.rsssl-grid .rsssl-item .rsssl-close-warning-x{color:#ccc;font-size:.9em;margin-right:25px}.rsssl-grid .rsssl-item .item-container{background-color:#fff;position:relative;box-shadow:0 0 5px 5px rgba(222,222,222,0.2);width:790px;height:475px}.rsssl-grid .rsssl-item .item-container .form-table{display:flex}.rsssl-grid .rsssl-item .item-container .form-table tbody{display:flex;flex-direction:column;flex-wrap:wrap;max-height:340px;width:100% !important}.rsssl-grid .rsssl-item .item-container .form-table tbody tr{padding:0 0 0 0 !important;display:flex;align-items:center;flex-direction:row;width:50%}.rsssl-grid .rsssl-item .item-container .form-table tbody tr td{padding:0;margin:0}.rsssl-grid .rsssl-item .item-container .form-table tbody tr th{margin-left:0;width:85%;display:flex;align-items:center;font-size:13px;font-weight:normal}.rsssl-grid .rsssl-item .item-container .form-table tbody tr th .dashicons-editor-help{font-size:26px}.rsssl-grid .rsssl-item .item-container .form-table tbody tr th .rsssl-tooltip-right{padding-right:10px;margin-top:-4px}.rsssl-grid .rsssl-item .item-container .form-table tbody tr th,.rsssl-grid .rsssl-item .item-container .form-table tbody tr td{padding:10px 0 !important;font-size:13px}.rsssl-grid .rsssl-item .item-container .form-table tbody tr th p,.rsssl-grid .rsssl-item .item-container .form-table tbody tr td p{font-size:13px}.rsssl-grid .rsssl-item .item-container h2{display:none}.rsssl-grid .rsssl-item .item-container .rsssl-save-settings-feedback{margin-right:20px;color:#d7263d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header{display:flex;align-items:center;justify-content:space-between;height:60px;border-bottom:1px solid #dedede;padding:0 25px 0 25px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header .rsssl-instructions a{color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header .rsssl-secondary-header-item{display:flex;color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header .rsssl-secondary-header-item .all-task-count,.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header .rsssl-secondary-header-item .open-task-count{padding-left:3px;padding-top:3px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header .rsssl-secondary-header-item .all-task-count{margin-right:5px}.rsssl-grid .rsssl-item .item-container .rsssl-table-td-main-content{padding-left:15px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content{height:360px;margin:10px 25px 10px 25px;border-bottom:1px solid #dedede}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block{padding-top:10px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-bar-container{margin:0 0 25px 0}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress{overflow:hidden;height:20px;border-radius:5px;background-color:#f7f7f7}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress .bar{height:100%;background-color:#61ce70}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-text{display:flex;align-items:center;margin:10px 0;padding-top:10px;padding-bottom:10px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-text .rsssl-progress-percentage{font-size:32px;font-weight:700}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-text .rsssl-progress-text{display:flex;flex-direction:row;margin-left:10px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-text .rsssl-progress-text a{margin-left:3px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-text .rsssl-progress-text .rsssl-progress-count{margin-left:3px;margin-right:3px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .rsssl-progress-table td{padding:10px 10px 10px 0}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .rsssl-progress-table td+td{padding-left:15px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks{color:#3c3c3c;padding-bottom:15px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .tips-tricks-content{display:flex;flex-direction:column;margin-right:10px;height:340px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .tips-tricks-content .tips-tricks-top{flex-grow:1}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .tips-tricks-content .tips-tricks-top .rsssl-tips-tricks-element{margin-top:10px;margin-bottom:15px;display:flex;flex-direction:row;justify-content:space-between}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .tips-tricks-content .tips-tricks-top .rsssl-tips-tricks-content{padding-right:20px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .tips-tricks-content .tips-tricks-bottom{color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .rsssl-tips-tricks-read-more a{text-decoration:none;white-space:nowrap}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-bullet{height:13px;width:13px;border-radius:50%;margin-right:10px;background-color:lightgrey;text-decoration:none}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container{display:flex;flex-wrap:wrap;flex-direction:row}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums{display:flex;width:50%}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums a{text-decoration:none;color:#3c3c3c;display:flex;align-items:center}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums .rsssl-bullet{margin:7px 7px 7px 0;background-color:lightgrey;float:left}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums .rsssl-bullet:hover{background-color:#fbc43d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums .rsssl-forums-content{float:left;color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums .rsssl-forums-content:hover{text-decoration:underline}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-feedback{color:#d7263d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell{display:flex !important;flex-direction:row;padding:5px 0 5px 0;align-items:center;color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .plugin-text a{text-decoration:none;color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .plugin-text a:hover{color:#fbc43d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .rsp-image{margin-right:5px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .wpsi-red{background-color:#d7263d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .cmplz-blue{background-color:#27adea}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .zip-pink{background-color:#e366a1}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .plugin-status{margin-left:auto}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-status{display:block;min-width:60px;text-align:center;border-radius:15px;padding:4px 8px 4px 8px;font-size:.8em;font-weight:600;height:17px;line-height:17px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-premium{background-color:#29b6f6;color:white}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-success{background-color:#61ce70;color:white}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-open{background-color:#fbc43d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-warning{background-color:#d7263d;color:white}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-footer{display:flex;align-items:center;margin:14px 25px 0 25px;height:40px;bottom:0;width:95%}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-footer .rsssl-button-save{margin-right:25px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-footer #rsssl-feedback{font-weight:600;color:#61ce70;padding-left:10px}.rsssl-grid .rsssl-item .item-container .rsssl-deactivate-keep-ssl th,.rsssl-grid .rsssl-item .item-container .rsssl-deactivate-keep-ssl span{display:none}.rsssl-grid .rsssl-item.half-height{height:247.5px}.rsssl-grid .rsssl-item.half-height .item-container{height:237.5px}.rsssl-grid .rsssl-item.half-height .item-container .rsssl-grid-item-content{height:110px}.rsssl-grid .rsssl-item.half-height .item-container .rsssl-grid-item-content .form-table tbody tr,.rsssl-grid .rsssl-item.half-height .item-container .rsssl-grid-item-content .form-table tbody th{width:100%;max-width:100%}.rsssl-grid .rsssl-item.small .item-container{width:390px}.rsssl-grid .rsssl-item.small .item-container th{width:85% !important}.rsssl-grid .rsssl-item.small .item-container .form-table tbody tr{width:100%}.rsssl-grid .rsssl-item.no-border .item-container{border:0}.rsssl-grid .rsssl-item.no-background .item-container{background-color:#f2f2f2}.rsssl-grid #rsssl-progress-footer{width:100%;text-align:right;margin-right:10px}.rsssl-grid #rsssl-progress-footer .rsssl-footer-item{padding-right:5px}.rsssl-grid #rsssl-progress-footer .rsssl-footer-item form{float:left}.rsssl-grid #rsssl-progress-footer .rsssl-footer-item+.rsssl-footer-item{margin-right:20px}.rsssl-grid #rsssl-progress-footer .footer-left{float:left}.rsssl-grid #rsssl-progress-footer .footer-left .upsell{min-width:80px;text-align:center}.rsssl-grid #rsssl-progress-footer .footer-right{float:right}.rsssl-grid #rsssl-progress-footer .hidden{display:none}.rsssl-grid .rsssl-system-status-footer-info{margin-right:20px;width:100%;text-align:right}.rsssl-grid .rsssl-system-status-footer-info .system-status-info{margin-left:6px}.rsssl-grid .dot{height:10px;width:10px;border-radius:50%;display:inline-block}.rsssl-grid .rsssl-dot-success{background-color:#61ce70}.rsssl-grid .rsssl-dot-error{background-color:#d7263d}.rsssl-grid{position:relative}.rsssl-grid .rsssl-item{width:calc(100% - 20px);padding:10px;height:475px;min-height:500px;z-index:1}@media only screen and (min-width:400px){.rsssl-grid .rsssl-item{width:calc(100% - 20px)}}@media only screen and (min-width:600px){.rsssl-grid .rsssl-item{width:calc(100% - 20px)}}@media only screen and (min-width:768px){.rsssl-grid .rsssl-item{width:calc(100% - 20px)}}@media only screen and (min-width:992px){.rsssl-grid .rsssl-item{width:calc(100% - 20px)}}@media only screen and (min-width:1555px){.rsssl-grid .rsssl-item{width:calc(50% - 20px)}}.rsssl-grid .rsssl-item.small{width:calc(100% - 20px)}@media only screen and (min-width:400px){.rsssl-grid .rsssl-item.small{width:calc(100% - 20px)}}@media only screen and (min-width:600px){.rsssl-grid .rsssl-item.small{width:calc(100% - 20px)}}@media only screen and (min-width:768px){.rsssl-grid .rsssl-item.small{width:calc(50% - 20px)}}@media only screen and (min-width:992px){.rsssl-grid .rsssl-item.small{width:calc(50% - 20px)}}@media only screen and (min-width:1555px){.rsssl-grid .rsssl-item.small{width:calc(25% - 20px)}}.rsssl-grid .rsssl-item.small .item-container{width:100%;min-width:200px}.rsssl-grid .rsssl-item.half-height{min-height:250px}@media only screen and (min-width:400px){.rsssl-grid .rsssl-item.half-height{height:237.5px;min-height:250px}}@media only screen and (min-width:600px){.rsssl-grid .rsssl-item.half-height{min-height:250px;height:237.5px}}@media only screen and (min-width:768px){.rsssl-grid .rsssl-item.half-height{min-height:250px;height:237.5px}}@media only screen and (min-width:992px){.rsssl-grid .rsssl-item.half-height{min-height:250px;height:237.5px}}@media only screen and (min-width:1555px){.rsssl-grid .rsssl-item.half-height{min-height:250px;height:237.5px}}.rsssl-grid .rsssl-item.half-height .item-container{width:100%;min-width:200px;min-height:250px}.rsssl-grid .rsssl-item .settings.rsssl-item{width:100%;padding:0}.rsssl-grid .rsssl-item.muuri-item-hidden{z-index:0}.rsssl-grid .rsssl-item.muuri-item-releasing{z-index:2}.rsssl-grid .rsssl-item.muuri-item-dragging{z-index:3}.rsssl-grid .rsssl-item .rsssl-grid-header{border-bottom:1px solid lightgrey;padding:0;height:60px}.rsssl-grid .rsssl-item .rsssl-grid-header .rsssl-grid-header-container{margin:0 20px;height:100%}.rsssl-grid .rsssl-item .rsssl-grid-header .rsssl-grid-title{cursor:pointer;font-size:20px;padding:20px 0;font-weight:bold;float:left}.rsssl-grid .rsssl-item .rsssl-grid-header .rsssl-grid-controls{float:right;margin-top:20px;color:#cecece}.rsssl-grid .rsssl-item .item-container{background-color:#fff;position:relative;box-shadow:0 0 5px 5px rgba(222,222,222,0.2);height:100%;width:100%}.rsssl-grid .rsssl-item .item-container .item-content{clear:both;margin:15px;height:calc(100% - 100px);padding-top:0;padding-bottom:10px}.rsssl-grid .rsssl-item.no-border .item-container{border:0}.rsssl-grid .rsssl-item.no-background .item-container{background-color:#f1f1f1}.rsssl-grid .rsssl-item.muuri-item-placeholder .item-container{border-style:dashed;padding:0}
1
+ .settings_page_rlrsssl_really_simple_ssl #wpcontent,.settings_page_really-simple-ssl #wpcontent{padding:0}.settings_page_rlrsssl_really_simple_ssl #wpcontent .rsssl-footer-item form,.settings_page_really-simple-ssl #wpcontent .rsssl-footer-item form{float:left}.settings_page_rlrsssl_really_simple_ssl #wpcontent .nav-tab,.settings_page_really-simple-ssl #wpcontent .nav-tab{padding:16px 20px 17px 20px;margin-bottom:0;color:#444;font-weight:normal;font-size:1.2em;background:inherit;border:0}.settings_page_rlrsssl_really_simple_ssl #wpcontent .nav-tab.nav-tab-active,.settings_page_really-simple-ssl #wpcontent .nav-tab.nav-tab-active{border-bottom:2px solid #fbc43d !important;background:#fff;padding-bottom:17px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .nav-tab-wrapper,.settings_page_really-simple-ssl #wpcontent .nav-tab-wrapper{height:60px;background-color:#fff;display:flex;align-items:center;border:0}.settings_page_rlrsssl_really_simple_ssl #wpcontent .rsssl-logo-container,.settings_page_really-simple-ssl #wpcontent .rsssl-logo-container{margin-left:25px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .rsssl-logo-container #rsssl-logo,.settings_page_really-simple-ssl #wpcontent .rsssl-logo-container #rsssl-logo{height:40px;width:200px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .rsssl-logo-container #rsssl-logo img,.settings_page_really-simple-ssl #wpcontent .rsssl-logo-container #rsssl-logo img{width:200px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .header-links,.settings_page_really-simple-ssl #wpcontent .header-links{display:flex;flex:1;justify-content:flex-end;flex-direction:row;align-items:center;margin-right:20px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .header-links .documentation,.settings_page_really-simple-ssl #wpcontent .header-links .documentation{text-decoration:underline}.settings_page_rlrsssl_really_simple_ssl #wpcontent .header-links .header-upsell .documentation,.settings_page_really-simple-ssl #wpcontent .header-links .header-upsell .documentation{margin-left:25px}.settings_page_rlrsssl_really_simple_ssl #wpcontent .header-links .header-upsell a,.settings_page_really-simple-ssl #wpcontent .header-links .header-upsell a{text-decoration:none}.settings_page_rlrsssl_really_simple_ssl #wpcontent .header-links .header-upsell .header-upsell-pro,.settings_page_really-simple-ssl #wpcontent .header-links .header-upsell .header-upsell-pro{color:black;border:3px solid black;margin:10px;width:80px;text-align:center;padding:5px;border-radius:20px;font-weight:600}.network-admin .rsssl-logo-container{height:60px}.rsssl-grid{width:calc(100% - 20px);margin:10px;position:relative;display:flex;flex-direction:row;flex-wrap:wrap}.rsssl-grid .button-rsssl-tertiary{background-color:#d7263d;color:white;border:0}.rsssl-grid .rsssl-wide-button{width:220px}.rsssl-grid .rsssl-progress .rsssl-task-list{height:257px;overflow:hidden}.rsssl-grid .rsssl-progress .rsssl-toggle-active{text-decoration:underline}.rsssl-grid .rsssl-progress #rsssl-all-tasks,.rsssl-grid .rsssl-progress #rsssl-remaining-tasks{display:none}.rsssl-grid .rsssl-progress .rsssl-tasks-container{border-bottom:1px solid lightgrey;color:lightgrey}.rsssl-grid .rsssl-progress .rsssl-tasks-container.active{text-decoration:none;border-bottom:0;color:initial}.rsssl-grid .rsssl-progress .rsssl-tasks-inactive{text-decoration:underline;color:lightgrey}.rsssl-grid .rsssl-item{width:800px;height:485px;z-index:1}.rsssl-grid .rsssl-item.small{width:400px}.rsssl-grid .rsssl-item .rsssl-close-warning-x{color:#ccc;font-size:.9em;margin-right:25px}.rsssl-grid .rsssl-item .item-container{background-color:#fff;position:relative;box-shadow:0 0 5px 5px rgba(222,222,222,0.2);width:790px;height:475px}.rsssl-grid .rsssl-item .item-container .form-table{display:flex}.rsssl-grid .rsssl-item .item-container .form-table tbody{display:flex;flex-direction:column;flex-wrap:wrap;max-height:340px;width:100% !important}.rsssl-grid .rsssl-item .item-container .form-table tbody tr{padding:0 0 0 0 !important;display:flex;align-items:center;flex-direction:row;width:50%}.rsssl-grid .rsssl-item .item-container .form-table tbody tr td{padding:0;margin:0}.rsssl-grid .rsssl-item .item-container .form-table tbody tr th{margin-left:0;width:85%;display:flex;align-items:center;font-size:13px;font-weight:normal}.rsssl-grid .rsssl-item .item-container .form-table tbody tr th .dashicons-editor-help{font-size:26px}.rsssl-grid .rsssl-item .item-container .form-table tbody tr th .rsssl-tooltip-right{padding-right:10px;margin-top:-4px}.rsssl-grid .rsssl-item .item-container .form-table tbody tr th,.rsssl-grid .rsssl-item .item-container .form-table tbody tr td{padding:10px 0 !important;font-size:13px}.rsssl-grid .rsssl-item .item-container .form-table tbody tr th p,.rsssl-grid .rsssl-item .item-container .form-table tbody tr td p{font-size:13px}.rsssl-grid .rsssl-item .item-container h2{display:none}.rsssl-grid .rsssl-item .item-container .rsssl-save-settings-feedback{margin-right:20px;color:#d7263d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header{display:flex;align-items:center;justify-content:space-between;height:60px;border-bottom:1px solid #dedede;padding:0 25px 0 25px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header .rsssl-instructions a{color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header .rsssl-secondary-header-item{display:flex;color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header .rsssl-secondary-header-item .all-task-count,.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header .rsssl-secondary-header-item .open-task-count{padding-left:3px;padding-top:3px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-header .rsssl-secondary-header-item .all-task-count{margin-right:5px}.rsssl-grid .rsssl-item .item-container .rsssl-table-td-main-content{padding-left:15px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content{height:360px;margin:10px 25px 10px 25px;border-bottom:1px solid #dedede}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block{padding-top:10px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-bar-container{margin:0 0 25px 0}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress{overflow:hidden;height:20px;border-radius:5px;background-color:#f7f7f7}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress .bar{height:100%;background-color:#61ce70}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-text{display:flex;align-items:center;margin:10px 0;padding-top:10px;padding-bottom:10px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-text .rsssl-progress-percentage{font-size:32px;font-weight:700}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-text .rsssl-progress-text{display:flex;flex-direction:row;margin-left:10px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-text .rsssl-progress-text a{margin-left:3px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .progress-text .rsssl-progress-text .rsssl-progress-count{margin-left:3px;margin-right:3px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .rsssl-progress-table td{padding:10px 10px 10px 0}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-block .rsssl-progress-table td+td{padding-left:15px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks{color:#3c3c3c;padding-bottom:15px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .tips-tricks-content{display:flex;flex-direction:column;margin-right:10px;height:340px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .tips-tricks-content .tips-tricks-top{flex-grow:1}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .tips-tricks-content .tips-tricks-top .rsssl-tips-tricks-element{margin-top:10px;margin-bottom:15px;display:flex;flex-direction:row;justify-content:space-between}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .tips-tricks-content .tips-tricks-top .rsssl-tips-tricks-content{padding-right:20px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .tips-tricks-content .tips-tricks-bottom{color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-tips-tricks .rsssl-tips-tricks-read-more a{text-decoration:none;white-space:nowrap}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-bullet{height:13px;width:13px;border-radius:50%;margin-right:10px;background-color:lightgrey;text-decoration:none}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container{display:flex;flex-wrap:wrap;flex-direction:row}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums{display:flex;width:50%}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums a{text-decoration:none;color:#3c3c3c;display:flex;align-items:center;padding:2px 0}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums .rsssl-bullet{margin:7px 7px 7px 0;background-color:lightgrey;float:left}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums .rsssl-bullet:hover{background-color:#fbc43d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums .rsssl-forums-content{float:left;color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-support-forums-container .rsssl-support-forums .rsssl-forums-content:hover{text-decoration:underline}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content #rsssl-feedback{color:#d7263d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell{display:flex !important;flex-direction:row;padding:7px 0 7px 0;align-items:center;color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .plugin-text a{text-decoration:none;color:#3c3c3c}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .plugin-text a:hover{color:#fbc43d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .rsp-image{margin-right:5px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .wpsi-red{background-color:#d7263d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .cmplz-blue{background-color:#27adea}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .zip-pink{background-color:#e366a1}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-upsell .plugin-status{margin-left:auto}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-progress-status{display:block;min-width:60px;text-align:center;border-radius:15px;padding:4px 8px 4px 8px;font-size:.8em;font-weight:600;height:17px;line-height:17px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-premium{background-color:#29b6f6;color:white}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-success{background-color:#61ce70;color:white}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-open{background-color:#fbc43d}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-content .rsssl-warning{background-color:#d7263d;color:white}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-footer{display:flex;align-items:center;margin:14px 25px 0 25px;height:40px;bottom:0;width:95%}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-footer .rsssl-button-save{margin-right:25px}.rsssl-grid .rsssl-item .item-container .rsssl-grid-item-footer #rsssl-feedback{font-weight:600;color:#61ce70;padding-left:10px}.rsssl-grid .rsssl-item .item-container .rsssl-deactivate-keep-ssl th,.rsssl-grid .rsssl-item .item-container .rsssl-deactivate-keep-ssl span{display:none}.rsssl-grid .rsssl-item.half-height{height:247.5px}.rsssl-grid .rsssl-item.half-height .item-container{height:237.5px}.rsssl-grid .rsssl-item.half-height .item-container .rsssl-grid-item-content{height:110px}.rsssl-grid .rsssl-item.half-height .item-container .rsssl-grid-item-content .form-table tbody tr,.rsssl-grid .rsssl-item.half-height .item-container .rsssl-grid-item-content .form-table tbody th{width:100%;max-width:100%}.rsssl-grid .rsssl-item.small .item-container{width:390px}.rsssl-grid .rsssl-item.small .item-container th{width:85% !important}.rsssl-grid .rsssl-item.small .item-container .form-table tbody tr{width:100%}.rsssl-grid .rsssl-item.no-border .item-container{border:0}.rsssl-grid .rsssl-item.no-background .item-container{background-color:#f2f2f2}.rsssl-grid #rsssl-progress-footer{width:100%;text-align:right;margin-right:10px}.rsssl-grid #rsssl-progress-footer .rsssl-footer-item form{float:left}.rsssl-grid #rsssl-progress-footer .rsssl-footer-item+.rsssl-footer-item{margin-left:20px;padding:4px 0}.rsssl-grid #rsssl-progress-footer .footer-left{float:left}.rsssl-grid #rsssl-progress-footer .footer-left .upsell{min-width:80px;text-align:center}.rsssl-grid #rsssl-progress-footer .footer-right{float:right}.rsssl-grid #rsssl-progress-footer .hidden{display:none}.rsssl-grid .rsssl-system-status-footer-info{margin-right:20px;width:100%;text-align:right}.rsssl-grid .rsssl-system-status-footer-info .system-status-info{margin-left:6px}.rsssl-grid .dot{height:10px;width:10px;border-radius:50%;display:inline-block}.rsssl-grid .rsssl-dot-success{background-color:#61ce70}.rsssl-grid .rsssl-dot-error{background-color:#d7263d}.upsell-grid-container .rsssl-secondary-header-item img{height:30px;padding-top:5px}.rsssl-grid{position:relative}.rsssl-grid .rsssl-item{width:calc(100% - 20px);padding:10px;height:475px;min-height:500px;z-index:1}@media only screen and (min-width:400px){.rsssl-grid .rsssl-item{width:calc(100% - 20px)}}@media only screen and (min-width:600px){.rsssl-grid .rsssl-item{width:calc(100% - 20px)}}@media only screen and (min-width:768px){.rsssl-grid .rsssl-item{width:calc(100% - 20px)}}@media only screen and (min-width:992px){.rsssl-grid .rsssl-item{width:calc(100% - 20px)}}@media only screen and (min-width:1555px){.rsssl-grid .rsssl-item{width:calc(50% - 20px)}}.rsssl-grid .rsssl-item.small{width:calc(100% - 20px)}@media only screen and (min-width:400px){.rsssl-grid .rsssl-item.small{width:calc(100% - 20px)}}@media only screen and (min-width:600px){.rsssl-grid .rsssl-item.small{width:calc(100% - 20px)}}@media only screen and (min-width:768px){.rsssl-grid .rsssl-item.small{width:calc(50% - 20px)}}@media only screen and (min-width:992px){.rsssl-grid .rsssl-item.small{width:calc(50% - 20px)}}@media only screen and (min-width:1555px){.rsssl-grid .rsssl-item.small{width:calc(25% - 20px)}}.rsssl-grid .rsssl-item.small .item-container{width:100%;min-width:200px}.rsssl-grid .rsssl-item.half-height{min-height:250px}@media only screen and (min-width:400px){.rsssl-grid .rsssl-item.half-height{height:237.5px;min-height:250px}}@media only screen and (min-width:600px){.rsssl-grid .rsssl-item.half-height{min-height:250px;height:237.5px}}@media only screen and (min-width:768px){.rsssl-grid .rsssl-item.half-height{min-height:250px;height:237.5px}}@media only screen and (min-width:992px){.rsssl-grid .rsssl-item.half-height{min-height:250px;height:237.5px}}@media only screen and (min-width:1555px){.rsssl-grid .rsssl-item.half-height{min-height:250px;height:237.5px}}.rsssl-grid .rsssl-item.half-height .item-container{width:100%;min-width:200px;min-height:250px}.rsssl-grid .rsssl-item .settings.rsssl-item{width:100%;padding:0}.rsssl-grid .rsssl-item.muuri-item-hidden{z-index:0}.rsssl-grid .rsssl-item.muuri-item-releasing{z-index:2}.rsssl-grid .rsssl-item.muuri-item-dragging{z-index:3}.rsssl-grid .rsssl-item .rsssl-grid-header{border-bottom:1px solid lightgrey;padding:0;height:60px}.rsssl-grid .rsssl-item .rsssl-grid-header .rsssl-grid-header-container{margin:0 20px;height:100%}.rsssl-grid .rsssl-item .rsssl-grid-header .rsssl-grid-title{cursor:pointer;font-size:20px;padding:20px 0;font-weight:bold;float:left}.rsssl-grid .rsssl-item .rsssl-grid-header .rsssl-grid-controls{float:right;margin-top:20px;color:#cecece}.rsssl-grid .rsssl-item .item-container{background-color:#fff;position:relative;box-shadow:0 0 5px 5px rgba(222,222,222,0.2);height:100%;width:100%}.rsssl-grid .rsssl-item .item-container .item-content{clear:both;margin:15px;height:calc(100% - 100px);padding-top:0;padding-bottom:10px}.rsssl-grid .rsssl-item.no-border .item-container{border:0}.rsssl-grid .rsssl-item.no-background .item-container{background-color:#f1f1f1}.rsssl-grid .rsssl-item.muuri-item-placeholder .item-container{border-style:dashed;padding:0}
grid/templates/our-plugins-header.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <div class="rsssl-secondary-header-item">
2
+ <a href="https://really-simple-plugins.com/">
3
+ <img src="<?php echo rsssl_url?>assets/really-simple-plugins.png" alt="Really Simple Plugins Logo">
4
+ </a>
5
+ </div>
js/scripts.js CHANGED
@@ -1,6 +1,31 @@
1
  jQuery(document).ready(function ($) {
2
  "use strict";
3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  $(document).on('click','.rsssl-slider',function () {
5
  rssslSaveChangesNotice($(this));
6
  });
1
  jQuery(document).ready(function ($) {
2
  "use strict";
3
 
4
+ /**
5
+ * Highlight JS
6
+ */
7
+ var sPageURL = window.location.href;
8
+ var queryString = sPageURL.split('?');
9
+ if (queryString.length === 1) return false;
10
+ var setting_name = '';
11
+ var rsssl_variables = queryString[1].split('&');
12
+ for (var key in rsssl_variables) {
13
+ if (rsssl_variables.hasOwnProperty(key)) {
14
+ var output = rsssl_variables[key].split('=');
15
+ if (output[0]==='highlight') {
16
+ setting_name = output[1];
17
+ }
18
+ }
19
+ }
20
+
21
+ if(setting_name !== '' && $('#rsssl-maybe-highlight-' + setting_name).length) {
22
+ var tr_element = $('#rsssl-maybe-highlight-' + setting_name).closest('tr');
23
+ $([document.documentElement, document.body]).animate({
24
+ scrollTop: tr_element.offset().top
25
+ }, 1000);
26
+ tr_element.addClass('rsssl-highlight');
27
+ }
28
+
29
  $(document).on('click','.rsssl-slider',function () {
30
  rssslSaveChangesNotice($(this));
31
  });
languages/really-simple-ssl-fr_FR.mo DELETED
Binary file
languages/really-simple-ssl-fr_FR.po DELETED
@@ -1,420 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Really Simple SSL v2.2.2\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2015-11-21 19:31:58+0000\n"
7
- "Last-Translator: Cédric TAMBOISE <cedric@tamboi.se>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n>1;\n"
13
- "X-Generator: Loco - https://localise.biz/\n"
14
- "X-Poedit-Language: French\n"
15
- "X-Poedit-Country: FRANCE\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: ../\n"
19
- "X-Poedit-Bookmarks: \n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
-
23
- #: class-admin.php:1998
24
- #@ really-simple-ssl
25
- msgid "Force SSL without detection"
26
- msgstr "Forcer le mode SSL sans détection"
27
-
28
- #: class-admin.php:1727
29
- #@ really-simple-ssl
30
- msgid "Configuration"
31
- msgstr "Configuration"
32
-
33
- #: class-admin.php:1727
34
- #: class-admin.php:1984
35
- #: class-admin.php:2176
36
- #@ really-simple-ssl
37
- msgid "Settings"
38
- msgstr "Paramètres"
39
-
40
- #: class-admin.php:1727
41
- #@ really-simple-ssl
42
- msgid "Detected mixed content"
43
- msgstr "Contenu mixte détecté"
44
-
45
- #: class-admin.php:1727
46
- #: class-admin.php:2001
47
- #@ really-simple-ssl
48
- msgid "Debug"
49
- msgstr "Débogage"
50
-
51
- #: class-admin.php:1772
52
- #@ really-simple-ssl
53
- msgid "No SSL detected."
54
- msgstr "Pas de SSL détecté."
55
-
56
- #: class-admin.php:1774
57
- #@ really-simple-ssl
58
- msgid "No SSL detected, but SSL is forced."
59
- msgstr "Pas de SSL détecté, mais le mode SSL est forcé."
60
-
61
- #: class-admin.php:1778
62
- #@ really-simple-ssl
63
- msgid "An SSL certificate was detected on your site. "
64
- msgstr "Un certificat SSL a été détecté sur votre site."
65
-
66
- #: class-admin.php:1791
67
- #@ really-simple-ssl
68
- msgid "https redirect set in .htaccess"
69
- msgstr "Redirections HTTPS mises en place dans le fichier .htaccess"
70
-
71
- #: class-admin.php:1793
72
- #@ really-simple-ssl
73
- msgid "Editing of .htaccess is blocked in Really Simple ssl settings, so you're in control of the .htaccess file."
74
- msgstr "L'édition du fichier .htaccess est bloqué dans les paramètres du plugin Really Simple SSL, vous êtes donc en contrôle total du fichier .htaccess."
75
-
76
- #: class-admin.php:1800
77
- #@ really-simple-ssl
78
- msgid "Https redirect was set in javascript because the htaccess redirect rule could not be verified. Set manually if you want to redirect in .htaccess."
79
- msgstr "La redirection HTTPS a été mise en place en javascript car la règle du fichier htaccess n'a pas fonctionné. Vous pouvez l'y insérer manuellement si vous préférez ce mode."
80
-
81
- #: class-admin.php:1809
82
- #@ really-simple-ssl
83
- msgid "Try to add these rules at the bottom of your .htaccess. If it doesn't work, just remove them again."
84
- msgstr "Essayez d'ajouter ces règles à la fin du fichier .htaccess. Si cela ne fonctionne pas, supprimez-les de nouveau."
85
-
86
- #: class-admin.php:1832
87
- #@ really-simple-ssl
88
- msgid "HTTP Strict Transport Security was set in the .htaccess"
89
- msgstr "HTTP STS a été mis en place dans le .htaccess"
90
-
91
- #: class-admin.php:1834
92
- #@ really-simple-ssl
93
- msgid "HTTP Strict Transport Security was not set in your .htaccess. Do this only if your setup is fully working, and only when you do not plan to revert to http."
94
- msgstr "HTTP STS n'a pas été mis en place dans le .htaccess. N'activez ce mode qu'une fois que la mise en place du SSL fonctionne pleinement et que vous ne prévoyez pas de revenir en arrière."
95
-
96
- #: class-admin.php:1841
97
- #: class-scan.php:81
98
- #: class-scan.php:90
99
- #@ really-simple-ssl
100
- msgid "Manage settings"
101
- msgstr "Gestion des paramètres"
102
-
103
- #: class-admin.php:1863
104
- #@ really-simple-ssl
105
- msgid "Save"
106
- msgstr "Enregistrer"
107
-
108
- #: class-admin.php:1889
109
- #@ really-simple-ssl
110
- msgid "Log for debugging purposes"
111
- msgstr "Journaliser (log) dans une optique de débogage"
112
-
113
- #: class-admin.php:1890
114
- #@ really-simple-ssl
115
- msgid "Send me a copy of these lines if you have any issues. The log will be erased when debug is set to false"
116
- msgstr "Envoyez-moi une copie de ces lignes si vous avez le moindre problème. Ce journal sera écrasé quand le mode Debug est désactivé."
117
-
118
- #: class-admin.php:1898
119
- #@ really-simple-ssl
120
- msgid "To view results here, enable the debug option in the settings tab."
121
- msgstr "Pour voir les résultats ici, activez le mode debut dans l'onglet Paramètres"
122
-
123
- #: class-admin.php:1985
124
- #@ really-simple-ssl
125
- msgid "Stop editing the .htaccess file"
126
- msgstr "Arrêter d'éditer le fichier .htaccess"
127
-
128
- #: class-admin.php:1989
129
- #@ really-simple-ssl
130
- msgid "Auto replace mixed content"
131
- msgstr "Remplacer automatiquement le contenu mixte"
132
-
133
- #: class-admin.php:1993
134
- #@ really-simple-ssl
135
- msgid "Turn HTTP Strict Transport Security on"
136
- msgstr "Activez le mode HTTP Strict Transport Security (STS)"
137
-
138
- #: class-admin.php:2018
139
- #@ really-simple-ssl
140
- msgid "By unchecking the 'auto replace mixed content' checkbox you can test if your site can run without this extra functionality. Uncheck, empty your cache when you use one, and go to the front end of your site. You should then check if you have mixed content errors, by clicking on the lock icon in the addres bar."
141
- msgstr "En décochant la case 'Remplacer automatiquement le contenu mixte', vous pouvez tester si votre site fonctionne correctement dans cette fonctionnalité. Décochez, videz votre cache si vous en utilisez un, et accédez à votre site en mode public. Vous pouvez ensuite vérifier si vous avez des erreurs de contenu mixte, en cliquant sur le cadenas dans la barre d'adresse."
142
-
143
- #: class-admin.php:2020
144
- #@ really-simple-ssl
145
- msgid "The force ssl without detection option can be used when the ssl was not detected, but you are sure you have ssl."
146
- msgstr "L'option \"Forcer le SSL sans détection\" peut être u tilisée lorsque le certificat SSL n'a pas été détecté, mais seulement si vous êtes certain d'avoir un certificat SSL correctement en place."
147
-
148
- #: class-admin.php:2120
149
- #@ really-simple-ssl
150
- msgid "Are you sure? Your visitors will keep going to a https site for a year after you turn this off."
151
- msgstr "Êtes-vous sûr ? Vos visiteurs continueront à voir votre site en HTTPS pendant un an après avoir désactivé cette option."
152
-
153
- #: class-admin.php:2136
154
- #@ really-simple-ssl
155
- msgid "Are you sure you have an SSL certifcate? Forcing ssl on a non-ssl site can break your site."
156
- msgstr "Êtes-vous sûr d'avoir un certificat SSL ? Forcer le mode SSL sur un site non sécurisé peut endommager votre site."
157
-
158
- #: class-scan.php:37
159
- #: class-scan.php:38
160
- #@ really-simple-ssl
161
- msgid "Scanning..."
162
- msgstr "Analyse..."
163
-
164
- #: class-scan.php:78
165
- #@ really-simple-ssl
166
- msgid "Mixed content detected "
167
- msgstr "Contenu mixte détecté"
168
-
169
- #: class-scan.php:79
170
- #@ really-simple-ssl
171
- msgid "but that's ok, because the mixed content fixer is active."
172
- msgstr "mais ça ne pose pas de problème, car le paramètre pour corriger le contenu mixte est actif."
173
-
174
- #: class-scan.php:79
175
- #@ really-simple-ssl
176
- msgid "but the mixed content fix is not active."
177
- msgstr "mais le paramètre pour corriger le contenu mixte n'est pas actif."
178
-
179
- #: class-scan.php:84
180
- #@ really-simple-ssl
181
- msgid "In the tab \"detected mixed content\" you can find a list of items with mixed content."
182
- msgstr "Dans l'onglet \"Contenu mixte détecté\", vous retrouverez la liste des contenus mixtes."
183
-
184
- #: class-scan.php:89
185
- #@ really-simple-ssl
186
- msgid "No mixed content was detected. You could try to run your site without using the auto replace of insecure links, but check carefully. "
187
- msgstr "Aucun contenu mixte n'a été détecté. Vous pouvez essayer de faire fonctionner votre site sans le paramètre de remplacement automatique, mais faites attention tout de même."
188
-
189
- #: class-scan.php:98
190
- #, php-format
191
- #@ really-simple-ssl
192
- msgid "The scan searched for the following insecure links: %s"
193
- msgstr "L'analyse a détecté les liens non sécurisés suivants : %s"
194
-
195
- #: class-scan.php:100
196
- #@ really-simple-ssl
197
- msgid "List of detected items with mixed content"
198
- msgstr "Liste des contenus détectés avec du contenu mixte"
199
-
200
- #: class-scan.php:101
201
- #@ really-simple-ssl
202
- msgid "Because really simple ssl includes a mixed content fixer you do not have to worry about this list, but if you want to disable the mixed content fixer, you can find a list of possible issues here."
203
- msgstr "Du fait de l'option \"corriger le contenu mixte\" du plugin Really Simple SSL, vous n'avez pas à vous inquiéter à propos de cette liste. Mais si vous désactivez l'option, voici la liste des problèmes potentiels ci-dessous :"
204
-
205
- #: class-scan.php:108
206
- #@ really-simple-ssl
207
- msgid "edit"
208
- msgstr "Editer"
209
-
210
- #: class-scan.php:126
211
- #@ really-simple-ssl
212
- msgid "Scan again"
213
- msgstr "Analyser de nouveau"
214
-
215
- #. translators: plugin header field 'Name'
216
- #: really-simple-ssl.php:0
217
- #@ really-simple-ssl
218
- msgid "Really Simple SSL"
219
- msgstr "Really Simple SSL"
220
-
221
- #. translators: plugin header field 'Description'
222
- #: really-simple-ssl.php:0
223
- #@ really-simple-ssl
224
- msgid "Lightweight plugin without any setup to make your site ssl proof"
225
- msgstr "Plugin léger sans paramétrage complexe pour faire fonctionner votre site en SSL"
226
-
227
- #. translators: plugin header field 'Author'
228
- #: really-simple-ssl.php:0
229
- #@ really-simple-ssl
230
- msgid "Rogier Lankhorst"
231
- msgstr "Rogier Lankhorst"
232
-
233
- #: class-admin.php:1412
234
- #@ really-simple-ssl
235
- msgid "No SSL was detected. If you are just waiting for your ssl certificate to kick in you can dismiss this warning."
236
- msgstr "Aucun certificat SSL détecté. Si vous êtes simplement entrain d'attendre votre certificat, vous pouvez simplement fermer cette notification."
237
-
238
- #: class-admin.php:1414
239
- #@ really-simple-ssl
240
- msgid "Scan SSL setup again"
241
- msgstr "Rechercher un certificat de nouveau"
242
-
243
- #: class-admin.php:1470
244
- #: class-admin.php:1480
245
- #@ really-simple-ssl
246
- msgid "Really Simple SSL has a conflict with another plugin."
247
- msgstr "Le plugin Really Simple SSL est en conflit avec un autre plugin."
248
-
249
- #: class-admin.php:1471
250
- #@ really-simple-ssl
251
- msgid "The force rewrite titles option in Yoast SEO prevents Really Simple SSL plugin from fixing mixed content."
252
- msgstr "L'option \"Forcer la réécriture des titres\" du plugin Yoast SEO empêche Really Simple SSL de corriger le contenu mixte."
253
-
254
- #: class-admin.php:1472
255
- #: class-admin.php:1482
256
- #@ really-simple-ssl
257
- msgid "Show me this setting"
258
- msgstr "Afficher cette option"
259
-
260
- #: class-admin.php:1481
261
- #@ really-simple-ssl
262
- msgid "The force http after leaving checkout in Woocommerce will create a redirect loop."
263
- msgstr "Forcer le http après la transaction sur Woocommerce créera une boucle infinie."
264
-
265
- #: class-admin.php:1492
266
- #@ really-simple-ssl
267
- msgid "We detected a definition of siteurl or homeurl in your wp-config.php, but the file is not writable. Because of this, we cannot set the siteurl to https."
268
- msgstr "Nous avons détecté que votre \"siteurl\" ou votre \"homeurl\" dans votre fichier wp-config.php, mais le fichier n'est pas accessible en écriture. De ce fait, nous ne pouvons pas passer l'adresse du site en https."
269
-
270
- #: class-admin.php:1502
271
- #@ really-simple-ssl
272
- msgid "Because your site is behind a loadbalancer and is_ssl() returns false, you should add the following line of code to your wp-config.php. Your wp-config.php could not be written automatically."
273
- msgstr "Du fait que votre site est derrière un répartiteur de charge (load balancer) et que la fonction is_ssl() renvoie \"faux\", vous devez ajouter la ligne de code suivante dans votre fucguer wp-config.php. Ce fichier ne peut être écrit automatiquement."
274
-
275
- #: class-admin.php:1520
276
- #@ really-simple-ssl
277
- msgid "Because your server does not pass the $_SERVER[\"HTTPS\"] variable, Wordpress cannot function on SSL. You should add the following line of code to your wp-config.php. Your wp-config.php could not be written automatically."
278
- msgstr "Du fait que votre serveur ne renvoie pas la variable $_SERVER[\"HTTPS\"] , WordPress ne peut pas fonctionner en SSL. Vous devez ajouter la ligne de code suivante dans votre fucguer wp-config.php. Ce fichier ne peut être écrit automatiquement."
279
-
280
- #: class-admin.php:1662
281
- #@ really-simple-ssl
282
- msgid "SSL settings"
283
- msgstr "Réglages SSL"
284
-
285
- #: class-admin.php:1663
286
- #@ really-simple-ssl
287
- msgid "SSL"
288
- msgstr "SSL"
289
-
290
- #: class-admin.php:1687
291
- #: class-admin.php:1765
292
- #@ really-simple-ssl
293
- msgid "Detected setup"
294
- msgstr "Paramétrage détecté"
295
-
296
- #: class-admin.php:1688
297
- #@ really-simple-ssl
298
- msgid "In the detected setup section you can see what we detected for your site.<br><br><b>SSL detection:</b> if it is possible to open a page on your site with https, it is assumed you have a valid ssl certificate. No guarantees can be given.<br><br><B>SSL redirect in .htaccess:</b> (Only show when ssl is detected) If possible, the redirect will take place in the .htaccess file. If this file is not available or not writable, javascript is used to enforce ssl."
299
- msgstr "Dans la section \"Paramétrage détecté, vous pouvez voir ce que nous avons détecté sur votre site.<br><br><b>Détection SSL :</b> S'il est possible d'ouvrir une page de votre site en https, nous en déduisons que vous avez un certificat SSL valide. Ceci est bien sûr sans garantie.<br><br><B>Redirection SSL dans le .htaccess:</b> (Ne s'afiche que quand le SSL est détecté) Si possible, la redirection sera faite dans le fichier .htaccess. Si ce fichier n'est pas disponible ou accessible en écriture, le javascript sera utilisé pour forcer le mode SSL."
300
-
301
- #: class-admin.php:1693
302
- #@ really-simple-ssl
303
- msgid "Mixed content fixer"
304
- msgstr "Corriger le contenu mixte"
305
-
306
- #: class-admin.php:1694
307
- #@ really-simple-ssl
308
- msgid "In most sites, a lot of links are saved into the content, pluginoptions or even worse, in the theme. When you switch to ssl , these are still http, instead of https. To ensure a smooth transition, this plugin auto replaces all these links. If you see in the scan results that you have fixed most of these links, you can try to run your site without this replace script, which will give you a small performance advantage. If you do not have a lot of reported insecure links, you can try this. If you encounter mixed content warnings, just switch it back on. <br><br><b>How to check for mixed content?</b><br>Go to the the front end of your website, and click on the lock in your browser's address bar. When you have mixed content, this lock is not closed, or has a red cross over it."
309
- msgstr "Dans la plupart des sites, de nombreux liens sont insérés dans le contenu, dans des options du plugin, ou pire encore : dans le thème. Quand vous passez en SSL, ces liens restent en HTTP au lien d'HTTPS. Pour assurer une transition en douceur, ce plugin va remplacer tous ces liens. Si vous voyez dans l'analyse des résultats que vous avez corrigé la majorité de ces liens, vous pouvez essayer de faire fonctionner votre site sans ce script de remplacement, ce qui améliorera légèrement les performances. Si vous n'avez pas beaucoup de lien \"non sécurisés\" remontés, vous pouvez essayer cela. Si vous rencontrez des alertes de contenu mixte, réactivez simplement cette option. <br><br><b>Comment vérifier s'il y a du contenu mixte ?</b><br>Accédez à la partie publique de votre site et cliquez sur le cadenas dans la barre d'adresse de votre navigateur. Quand vous avez du contenu mixte, le cadenas n'est pas fermé, ou une croix rouge est dessinée au dessus."
310
-
311
- #: class-admin.php:1699
312
- #@ really-simple-ssl
313
- msgid "HTTP Strict Transport Security (HSTS)"
314
- msgstr "HTTP Strict Transport Security (HSTS)"
315
-
316
- #: class-admin.php:1700
317
- #@ really-simple-ssl
318
- msgid "Using this option will prevent users from visiting your website over http for one year, so use this option with caution! HTTP Strict Transport Security (HSTS) is an opt-in security enhancement that is specified by a web application through the use of a special response header. Once a supported browser receives this header that browser will prevent any communications from being sent over HTTP to the specified domain and will instead send all communications over HTTPS. It also prevents HTTPS click through prompts on browsers. "
319
- msgstr "Utiliser cette option évitera aux visiteurs de consulter votre site en http pour un an, donc à utiliser avec précaution. HTTP Strict Transport Security (HSTS) est une amélioration de la sécurité de la part d'une application web par l'envoi d'une entête particulière. Une fois qu'un navigateur compatible reçoit cette entête, ce navigateur ne communiquera plus avec le domaine concerné en HTTP mais enverra à la place toutes ses comminications en HTTPS. Cela évite également les alertes HTTPS dans les navigateurs."
320
-
321
- #: class-admin.php:1705
322
- #@ really-simple-ssl
323
- msgid "How to get an SSL certificate"
324
- msgstr "Comment obtenir un certificat SSL ?"
325
-
326
- #: class-admin.php:1706
327
- #@ really-simple-ssl
328
- msgid "To secure your site with ssl, you need an SSL certificate. How you can get a certificate depends on your hosting provider, but can often be requested on the control panel of your website. If you are not sure what to do, you can contact your hosting provider."
329
- msgstr "Pour sécuriser votre site en SSL, vous avez besoin d'un certificat SSL. La manière de l'obtenir dépend de de votre hébergeur, mais en général cela se trouve dans le panneau d'administration de votre site. Si vous n'êtes pas sur, vous pouvez contacter votre hébergeur à ce sujet."
330
-
331
- #: class-admin.php:1423
332
- #@ really-simple-ssl
333
- msgid "Major security issue!"
334
- msgstr ""
335
-
336
- #: class-admin.php:1426
337
- #@ really-simple-ssl
338
- msgid "The 'force-deactivate.php' file has to be renamed to .txt. Otherwise your ssl can be deactived by anyone on the internet."
339
- msgstr ""
340
-
341
- #: class-admin.php:1428
342
- #: class-admin.php:1494
343
- #: class-admin.php:1512
344
- #: class-admin.php:1530
345
- #@ really-simple-ssl
346
- msgid "Check again"
347
- msgstr ""
348
-
349
- #: class-admin.php:1440
350
- #@ really-simple-ssl
351
- msgid "You run a Multisite installation with subfolders, which prevents this plugin from handling the .htaccess."
352
- msgstr ""
353
-
354
- #: class-admin.php:1441
355
- #@ really-simple-ssl
356
- msgid "Because the domain is the same on all sites. You can just as easily activate ssl on all your sites."
357
- msgstr ""
358
-
359
- #: class-admin.php:1442
360
- #@ really-simple-ssl
361
- msgid "So to get rid of this annoying message, just activate networkwide."
362
- msgstr ""
363
-
364
- #: class-admin.php:1457
365
- #@ really-simple-ssl
366
- msgid "SSL was detected and successfully activated!"
367
- msgstr "Le certificat SSL a été détecté et activé avec succès !"
368
-
369
- #: class-admin.php:1796
370
- #@ really-simple-ssl
371
- msgid "Https redirect was set in javascript because the .htaccess was not writable. Set manually if you want to redirect in .htaccess."
372
- msgstr ""
373
-
374
- #: class-admin.php:1798
375
- #@ really-simple-ssl
376
- msgid "Https redirect was set in javascript because you have activated per site on a multiste subfolder install. Install networkwide to set the .htaccess redirect."
377
- msgstr ""
378
-
379
- #: class-admin.php:1837
380
- #@ really-simple-ssl
381
- msgid "More info about HSTS"
382
- msgstr ""
383
-
384
- #: class-admin.php:1877
385
- #@ really-simple-ssl
386
- msgid "The mixed content scan is available when SSL is detected or forced."
387
- msgstr ""
388
-
389
- #: class-admin.php:2024
390
- #@ really-simple-ssl
391
- msgid "The HSTS option is not available for per site activated ssl, as it would force other sites over ssl as well."
392
- msgstr ""
393
-
394
- #: class-admin.php:2121
395
- #@ really-simple-ssl
396
- msgid "On multisite with per site activation, activating HSTS is not possible"
397
- msgstr ""
398
-
399
- #: class-admin.php:2122
400
- #@ really-simple-ssl
401
- msgid "You have to enable htaccess editing to use this option."
402
- msgstr ""
403
-
404
- #. translators: plugin header field 'PluginURI'
405
- #: really-simple-ssl.php:0
406
- #@ really-simple-ssl
407
- msgid "https://www.really-simple-ssl.com"
408
- msgstr ""
409
-
410
- #. translators: plugin header field 'AuthorURI'
411
- #: really-simple-ssl.php:0
412
- #@ really-simple-ssl
413
- msgid "https://www.rogierlankhorst.com"
414
- msgstr ""
415
-
416
- #. translators: plugin header field 'Version'
417
- #: really-simple-ssl.php:0
418
- #@ really-simple-ssl
419
- msgid "2.2.2"
420
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/really-simple-ssl-ru_RU.mo DELETED
Binary file
languages/really-simple-ssl.pot CHANGED
@@ -3,8 +3,8 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Really Simple SSL\n"
6
- "POT-Creation-Date: 2020-11-11 15:57+0100\n"
7
- "PO-Revision-Date: 2020-11-11 15:56+0100\n"
8
  "Last-Translator: Rogier Lankhorst <rogierlankhorst@gmail.com>\n"
9
  "Language-Team: Rogier Lankhorst <rogierlankhorst@gmail.com>\n"
10
  "MIME-Version: 1.0\n"
@@ -21,14 +21,14 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: class-admin.php:50 class-cache.php:10 class-certificate.php:14
25
- #: class-front-end.php:19 class-help.php:9 class-mixed-content-fixer.php:13
26
  #: class-multisite.php:27 class-server.php:10 class-site-health.php:12
27
  #, php-format
28
  msgid "%s is a singleton class and you cannot create a second instance."
29
  msgstr ""
30
 
31
- #: class-admin.php:117
32
  #, php-format
33
  msgid ""
34
  "Really Simple SSL and Really Simple SSL add-ons do not process any personal "
@@ -37,89 +37,89 @@ msgid ""
37
  "href=\"%s\" target=\"_blank\">here</a>."
38
  msgstr ""
39
 
40
- #: class-admin.php:486
41
  msgid "Almost ready to migrate to SSL!"
42
  msgstr ""
43
 
44
- #: class-admin.php:493
45
  msgid "Before you migrate, please check for: "
46
  msgstr ""
47
 
48
- #: class-admin.php:496 class-multisite.php:533
49
  msgid ""
50
  "Http references in your .css and .js files: change any http:// into https://"
51
  msgstr ""
52
 
53
- #: class-admin.php:497
54
  msgid ""
55
  "Images, stylesheets or scripts from a domain without an SSL certificate: "
56
  "remove them or move to your own server"
57
  msgstr ""
58
 
59
- #: class-admin.php:503
60
  #, php-format
61
  msgid ""
62
  "We strongly recommend to create a %sbackup%s of your site before activating "
63
  "SSL"
64
  msgstr ""
65
 
66
- #: class-admin.php:504
67
  msgid "You may need to login in again."
68
  msgstr ""
69
 
70
- #: class-admin.php:509
71
  msgid ""
72
  "You can also let the automatic scan of the pro version handle this for you, "
73
  "and get premium support, increased security with HSTS and more!"
74
  msgstr ""
75
 
76
- #: class-admin.php:513
77
  msgid "Check out Really Simple SSL Pro"
78
  msgstr ""
79
 
80
- #: class-admin.php:676
81
  msgid "Go ahead, activate SSL!"
82
  msgstr ""
83
 
84
- #: class-admin.php:679
85
  msgid "Get ready with PRO!"
86
  msgstr ""
87
 
88
- #: class-admin.php:2213
89
  msgid ""
90
  "A definition of a siteurl or homeurl was detected in your wp-config.php, but "
91
  "the file is not writable."
92
  msgstr ""
93
 
94
- #: class-admin.php:2215 class-admin.php:2242
95
  msgid "Set your wp-config.php to writable and reload this page."
96
  msgstr ""
97
 
98
- #: class-admin.php:2218
99
  msgid "Your wp-config.php has to be edited, but is not writable."
100
  msgstr ""
101
 
102
- #: class-admin.php:2219
103
  msgid ""
104
  "Because your site is behind a loadbalancer and is_ssl() returns false, you "
105
  "should add the following line of code to your wp-config.php."
106
  msgstr ""
107
 
108
- #: class-admin.php:2235
109
  msgid "Or set your wp-config.php to writable and reload this page."
110
  msgstr ""
111
 
112
- #: class-admin.php:2241
113
  msgid ""
114
  "Because your server does not pass a variable with which WordPress can detect "
115
  "SSL, WordPress may create redirect loops on SSL."
116
  msgstr ""
117
 
118
- #: class-admin.php:2248
119
  msgid "System detection encountered issues"
120
  msgstr ""
121
 
122
- #: class-admin.php:2335
123
  #, php-format
124
  msgid ""
125
  "Hi, Really Simple SSL has kept your site secure for some time now, awesome! "
@@ -128,7 +128,7 @@ msgid ""
128
  "feedback, leave us a %smessage%s."
129
  msgstr ""
130
 
131
- #: class-admin.php:2337
132
  #, php-format
133
  msgid ""
134
  "Hi, Really Simple SSL has kept your site secure for a month now, awesome! If "
@@ -137,108 +137,100 @@ msgid ""
137
  "feedback, leave us a %smessage%s."
138
  msgstr ""
139
 
140
- #: class-admin.php:2343
141
  msgid "Leave a review"
142
  msgstr ""
143
 
144
- #: class-admin.php:2344
145
  msgid "Maybe later"
146
  msgstr ""
147
 
148
- #: class-admin.php:2345
149
  msgid "Don't show again"
150
  msgstr ""
151
 
152
- #: class-admin.php:2514
153
  msgid "SSL settings"
154
  msgstr ""
155
 
156
- #: class-admin.php:2515 class-site-health.php:125
157
  msgid "SSL"
158
  msgstr ""
159
 
160
- #: class-admin.php:2537 class-admin.php:3266 class-admin.php:3646
161
- #: class-admin.php:4071 class-multisite.php:225 class-multisite.php:336
162
- #: class-multisite.php:386
163
  msgid "Settings"
164
  msgstr ""
165
 
166
- #: class-admin.php:2567 class-admin.php:2612 class-multisite.php:431
167
- #: grid/templates/tips-tricks-footer.php:3
168
- msgid "Documentation"
169
- msgstr ""
170
-
171
- #: class-admin.php:2568
172
- msgid ""
173
- "On <a href='https://really-simple-ssl.com'>really-simple-ssl.com</a> you can "
174
- "find a lot of articles and documentation about installing this plugin, and "
175
- "installing SSL in general."
176
- msgstr ""
177
-
178
- #: class-admin.php:2594
179
  msgid "General"
180
  msgstr ""
181
 
182
- #: class-admin.php:2616 class-multisite.php:436
183
- msgid "PRO"
 
184
  msgstr ""
185
 
186
- #: class-admin.php:2619 class-admin.php:4075 class-multisite.php:229
 
187
  msgid "Support"
188
  msgstr ""
189
 
190
- #: class-admin.php:2662
191
  msgid "No recommended redirect rules detected."
192
  msgstr ""
193
 
194
- #: class-admin.php:2680
195
  msgid "Major security issue!"
196
  msgstr ""
197
 
198
- #: class-admin.php:2681
199
  msgid ""
200
  "The 'force-deactivate.php' file has to be renamed to .txt. Otherwise your "
201
  "ssl can be deactivated by anyone on the internet."
202
  msgstr ""
203
 
204
- #: class-admin.php:2682
205
  msgid "Check again"
206
  msgstr ""
207
 
208
- #: class-admin.php:2696
209
- msgid "Check your site to see if you still have mixed content"
 
 
210
  msgstr ""
211
 
212
- #: class-admin.php:2710
213
  msgid ""
214
  "Don't forget to change your settings in Google Analytics and Search Console."
215
  msgstr ""
216
 
217
- #: class-admin.php:2724
218
  msgid "https://really-simple-ssl.com/really-simple-ssl-4-a-new-dashboard"
219
  msgstr ""
220
 
221
- #: class-admin.php:2725
222
  msgid "Really Simple SSL 4.0. Learn more about our newest major release."
223
  msgstr ""
224
 
225
- #: class-admin.php:2738
226
  msgid "SSL is enabled on your site."
227
  msgstr ""
228
 
229
- #: class-admin.php:2742 class-multisite.php:131
230
- msgid "SSL is not enabled yet"
231
  msgstr ""
232
 
233
- #: class-admin.php:2753
234
  msgid "Cannot activate SSL due to system configuration."
235
  msgstr ""
236
 
237
- #: class-admin.php:2757
238
  msgid "No SSL detected"
239
  msgstr ""
240
 
241
- #: class-admin.php:2758
242
  #, php-format
243
  msgid ""
244
  "No SSL detected. See our guide on how to %sget a free SSL certificate%s. If "
@@ -246,34 +238,34 @@ msgid ""
246
  "clicking this link: %sReload over https.%s"
247
  msgstr ""
248
 
249
- #: class-admin.php:2763
250
  msgid "An SSL certificate was detected on your site."
251
  msgstr ""
252
 
253
- #: class-admin.php:2775
254
- msgid "Mixed content fixer was successfully detected on the front-end"
255
  msgstr ""
256
 
257
- #: class-admin.php:2780
258
  msgid "Really Simple SSL has received no response from the webpage."
259
  msgstr ""
260
 
261
- #: class-admin.php:2787
262
  msgid ""
263
  "The mixed content fixer is active, but was not detected on the frontpage."
264
  msgstr ""
265
 
266
- #: class-admin.php:2792
267
  msgid "Error occurred when retrieving the webpage."
268
  msgstr ""
269
 
270
- #: class-admin.php:2797
271
  msgid ""
272
  "Mixed content fixer not enabled. Enable the option to fix mixed content on "
273
  "your site."
274
  msgstr ""
275
 
276
- #: class-admin.php:2803
277
  #, php-format
278
  msgid ""
279
  "The mixed content fixer could not be detected due to a cURL error: %s. cURL "
@@ -281,176 +273,200 @@ msgid ""
281
  "affect the front-end of your site. Contact your hosting provider for a fix."
282
  msgstr ""
283
 
284
- #: class-admin.php:2816
285
- msgid "301 redirect to https set: WordPress redirect."
286
  msgstr ""
287
 
288
- #: class-admin.php:2820
289
  msgid ""
290
  "No 301 redirect is set. Enable the WordPress 301 redirect in the settings to "
291
  "get a 301 permanent redirect."
292
  msgstr ""
293
 
294
- #: class-admin.php:2832
295
  msgid "301 redirect to https set: .htaccess redirect."
296
  msgstr ""
297
 
298
- #: class-admin.php:2837
299
  msgid ""
300
  "WordPress 301 redirect enabled. We recommend to enable a 301 .htaccess "
301
  "redirect."
302
  msgstr ""
303
 
304
- #: class-admin.php:2844
305
  msgid ""
306
  "Enable a .htaccess redirect or WordPress redirect in the settings to create "
307
  "a 301 redirect."
308
  msgstr ""
309
 
310
- #: class-admin.php:2850
311
  #, php-format
312
  msgid ""
313
  "The %s file is not writable. You can either use the WordPress redirect, add "
314
  "the rules manually, or set the file to writable."
315
  msgstr ""
316
 
317
- #: class-admin.php:2855
318
  msgid ""
319
  "The .htaccess redirect rules selected by this plugin failed in the test. Set "
320
  "manually or dismiss to leave on WordPress redirect."
321
  msgstr ""
322
 
323
- #: class-admin.php:2869
324
  msgid ""
325
  "Your site uses Elementor. This can require some additional steps before "
326
  "getting the secure lock."
327
  msgstr ""
328
 
329
- #: class-admin.php:2883
330
  msgid ""
331
  "Your site uses Divi. This can require some additional steps before getting "
332
  "the secure lock."
333
  msgstr ""
334
 
335
- #: class-admin.php:2896
336
  msgid "HTTP Strict Transport Security was enabled."
337
  msgstr ""
338
 
339
- #: class-admin.php:2900
340
  #, php-format
341
- msgid "%sHTTP Strict Transport Security%s is not enabled %s(Read more)%s"
 
 
 
 
342
  msgstr ""
343
 
344
- #: class-admin.php:2911
345
- msgid "Secure cookies set"
 
346
  msgstr ""
347
 
348
- #: class-admin.php:2915
349
  #, php-format
350
- msgid "Secure cookie settings not enabled (%sRead more%s) "
351
  msgstr ""
352
 
353
- #: class-admin.php:2926
354
  msgid ""
355
  "Your .htaccess file is not writable. This prevents Really Simple SSL from "
356
  "writing redirects or security headers to your .htaccess file."
357
  msgstr ""
358
 
359
- #: class-admin.php:3019
360
  #, php-format
361
  msgid "%sMore info%s or %sdismiss%s"
362
  msgstr ""
363
 
364
- #: class-admin.php:3022
365
  #, php-format
366
  msgid "%sEnable%s or %sdismiss%s"
367
  msgstr ""
368
 
369
- #: class-admin.php:3257 class-multisite.php:377
370
  msgid "Your progress"
371
  msgstr ""
372
 
373
- #: class-admin.php:3275
374
  msgid "Tips & Tricks"
375
  msgstr ""
376
 
377
- #: class-admin.php:3284 class-multisite.php:395
378
- msgid "Support forum"
379
  msgstr ""
380
 
381
- #: class-admin.php:3293 class-multisite.php:404
382
- msgid "Our plugins"
383
  msgstr ""
384
 
385
- #: class-admin.php:3405
386
  msgid "Install"
387
  msgstr ""
388
 
389
- #: class-admin.php:3408
390
  msgid "Installed"
391
  msgstr ""
392
 
393
- #: class-admin.php:3411
394
  msgid "Upgrade to pro"
395
  msgstr ""
396
 
397
- #: class-admin.php:3519
 
 
 
 
398
  msgid "Completed"
399
  msgstr ""
400
 
401
- #: class-admin.php:3521
402
  msgid "Warning"
403
  msgstr ""
404
 
405
- #: class-admin.php:3523
406
  msgid "Open"
407
  msgstr ""
408
 
409
- #: class-admin.php:3525
410
  msgid "Premium"
411
  msgstr ""
412
 
413
- #: class-admin.php:3573
414
  msgid "More info"
415
  msgstr ""
416
 
417
- #: class-admin.php:3612 grid/templates/progress.php:32
418
  #, php-format
419
  msgid ""
420
  "Basic SSL configuration finished! Improve your score with %sReally Simple "
421
  "SSL Pro%s."
422
  msgstr ""
423
 
424
- #: class-admin.php:3618
425
- msgid "Copied!"
426
  msgstr ""
427
 
428
- #: class-admin.php:3620
 
 
 
 
 
 
 
 
 
 
 
429
  #, php-format
430
- msgid "You're doing well. You still have %s tasks open"
431
  msgstr ""
432
 
433
- #: class-admin.php:3648
 
 
 
 
434
  msgid ""
435
  "In most cases you need to leave this enabled, to prevent mixed content "
436
  "issues on your site."
437
  msgstr ""
438
 
439
- #: class-admin.php:3649
440
  msgid "Mixed content fixer"
441
  msgstr ""
442
 
443
- #: class-admin.php:3653
444
  msgid ""
445
  "Redirects all requests over HTTP to HTTPS using a PHP 301 redirect. Enable "
446
  "if the .htaccess redirect cannot be used, for example on NGINX servers."
447
  msgstr ""
448
 
449
- #: class-admin.php:3654
450
  msgid "Enable WordPress 301 redirect"
451
  msgstr ""
452
 
453
- #: class-admin.php:3658
454
  msgid ""
455
  "A .htaccess redirect is faster and works better with caching. Really Simple "
456
  "SSL detects the redirect code that is most likely to work (99% of websites), "
@@ -458,7 +474,7 @@ msgid ""
458
  "if anything goes wrong!"
459
  msgstr ""
460
 
461
- #: class-admin.php:3659 class-site-health.php:88
462
  msgid "Enable 301 .htaccess redirect"
463
  msgstr ""
464
 
@@ -473,318 +489,349 @@ msgstr ""
473
  msgid "Stop editing the .htaccess file"
474
  msgstr ""
475
 
476
- #: class-admin.php:3670
477
  msgid ""
478
  "If this option is set to true, the mixed content fixer will fire on the init "
479
  "hook instead of the template_redirect hook. Only use this option when you "
480
  "experience problems with the mixed content fixer.\""
481
  msgstr ""
482
 
483
- #: class-admin.php:3671
484
- msgid "Use alternative method to fix mixed content"
485
  msgstr ""
486
 
487
- #: class-admin.php:3672
488
  msgid ""
489
  "Enable this option to permanently dismiss all +1 notices in the 'Your "
490
  "progress' tab"
491
  msgstr ""
492
 
493
- #: class-admin.php:3673
494
  msgid "Dismiss all Really Simple SSL notices"
495
  msgstr ""
496
 
497
- #: class-admin.php:3780 class-admin.php:3808 class-admin.php:4044
498
  msgid "This option is enabled on the network menu."
499
  msgstr ""
500
 
501
- #: class-admin.php:3811
 
 
 
 
 
 
 
502
  msgid ""
503
  "If the setting 'stop editing the .htaccess file' is enabled, you can't "
504
  "change this setting."
505
  msgstr ""
506
 
507
- #: class-admin.php:3843
508
  msgid ".htaccess is currently not writable."
509
  msgstr ""
510
 
511
- #: class-admin.php:3988
512
  msgid "Are you sure?"
513
  msgstr ""
514
 
515
- #: class-admin.php:4001
516
  msgid "To deactivate the plugin correctly, please select if you want to:"
517
  msgstr ""
518
 
519
- #: class-admin.php:4003
520
  msgid "Deactivate, but stay on SSL."
521
  msgstr ""
522
 
523
- #: class-admin.php:4004
524
  msgid ""
525
  "Deactivate, and revert to http. This will remove all changes by the plugin."
526
  msgstr ""
527
 
528
- #: class-admin.php:4006
529
  msgid "Deactivating the plugin while keeping SSL will do the following:"
530
  msgstr ""
531
 
532
- #: class-admin.php:4008
533
  msgid "The mixed content fixer will stop working"
534
  msgstr ""
535
 
536
- #: class-admin.php:4009
537
  msgid "The WordPress 301 redirect will stop working"
538
  msgstr ""
539
 
540
- #: class-admin.php:4010
541
  msgid "Your site address will remain https://"
542
  msgstr ""
543
 
544
- #: class-admin.php:4011
545
  msgid "The .htaccess redirect will remain active"
546
  msgstr ""
547
 
548
- #: class-admin.php:4021
549
  msgid "Cancel"
550
  msgstr ""
551
 
552
- #: class-admin.php:4022
553
  msgid "Deactivate, keep https"
554
  msgstr ""
555
 
556
- #: class-admin.php:4023
557
  msgid "Deactivate, revert to http"
558
  msgstr ""
559
 
560
- #: class-admin.php:4077 class-multisite.php:231
561
  msgid "Premium Support"
562
  msgstr ""
563
 
564
- #: class-admin.php:4083 class-multisite.php:237
565
  msgid "Upgrade to premium"
566
  msgstr ""
567
 
568
  #: class-multisite.php:90
569
- msgid "No choice has been made regarding networkwide or per site activation"
570
  msgstr ""
571
 
572
  #: class-multisite.php:92
573
- msgid "SSL is activated network wide"
574
  msgstr ""
575
 
576
  #: class-multisite.php:94
577
- msgid "SSL is activated per site"
578
  msgstr ""
579
 
580
- #: class-multisite.php:123
581
  msgid "SSL is enabled networkwide."
582
  msgstr ""
583
 
584
- #: class-multisite.php:127
585
  msgid "SSL is enabled per site."
586
  msgstr ""
587
 
588
- #: class-multisite.php:145
 
 
 
 
589
  msgid ""
590
  "You run a Multisite installation with subfolders, which prevents this plugin "
591
  "from fixing your missing server variable in the wp-config.php."
592
  msgstr ""
593
 
594
- #: class-multisite.php:146
595
  msgid ""
596
  "Because the $_SERVER[\"HTTPS\"] variable is not set, your website may "
597
  "experience redirect loops."
598
  msgstr ""
599
 
600
- #: class-multisite.php:147
601
  msgid "Activate networkwide to fix this."
602
  msgstr ""
603
 
604
- #: class-multisite.php:158
605
  msgid ""
606
  "You run a Multisite installation with subdomains, but your site doesn't have "
607
  "a wildcard certificate."
608
  msgstr ""
609
 
610
- #: class-multisite.php:159
611
  msgid ""
612
  "This leads to issues when activating SSL networkwide since subdomains will "
613
  "be forced over SSL as well while they don't have a valid certificate."
614
  msgstr ""
615
 
616
- #: class-multisite.php:160
617
  msgid "Activate SSL per site or install a wildcard certificate to fix this."
618
  msgstr ""
619
 
620
- #: class-multisite.php:338
621
- msgid "Enable SSL"
622
  msgstr ""
623
 
624
- #: class-multisite.php:352
625
- msgid "Select to enable SSL networkwide or per site."
626
  msgstr ""
627
 
628
- #: class-multisite.php:356
629
- msgid "No selection was made"
630
  msgstr ""
631
 
632
- #: class-multisite.php:358
633
  msgid "networkwide"
634
  msgstr ""
635
 
636
- #: class-multisite.php:359
637
  msgid "per site"
638
  msgstr ""
639
 
640
- #: class-multisite.php:420
641
  msgid "Options saved."
642
  msgstr ""
643
 
644
- #: class-multisite.php:530
645
  msgid "Setup"
646
  msgstr ""
647
 
648
- #: class-multisite.php:531
649
  msgid ""
650
  "Some things can't be done automatically. Before you migrate, please check "
651
  "for: "
652
  msgstr ""
653
 
654
- #: class-multisite.php:534
655
  msgid ""
656
  "Images, stylesheets or scripts from a domain without an SSL certificate: "
657
  "remove them or move to your own server."
658
  msgstr ""
659
 
660
- #: class-multisite.php:536 class-multisite.php:564
661
  msgid ""
662
  "You can also let the automatic scan of the pro version handle this for you, "
663
  "and get premium support and increased security with HSTS included."
664
  msgstr ""
665
 
666
- #: class-multisite.php:538 class-multisite.php:566
667
  msgid "Check out Really Simple SSL Premium"
668
  msgstr ""
669
 
670
- #: class-multisite.php:543
671
  msgid "Activate SSL networkwide"
672
  msgstr ""
673
 
674
- #: class-multisite.php:546
675
  msgid "Activate SSL per site"
676
  msgstr ""
677
 
678
- #: class-multisite.php:549
679
  msgid ""
680
  "Networkwide activation does not check if a site has an SSL certificate. It "
681
  "just migrates all sites to SSL."
682
  msgstr ""
683
 
684
- #: class-multisite.php:989
685
  #, php-format
686
  msgid "Conversion of websites %s percent complete."
687
  msgstr ""
688
 
689
- #: class-multisite.php:990
690
  msgid ""
691
  "Site conversion in progress. Please refresh this page to check if the "
692
  "process has finished. It will proceed in the background."
693
  msgstr ""
694
 
695
- #: class-multisite.php:991
696
  #, php-format
697
  msgid ""
698
  "If the conversion does not proceed after a few minutes, click %shere%s to "
699
  "force the conversion process."
700
  msgstr ""
701
 
702
- #: class-multisite.php:993
703
  msgid "Conversion of websites completed."
704
  msgstr ""
705
 
706
- #: class-site-health.php:27
707
- msgid "Really Simple SSL HSTS test"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
708
  msgstr ""
709
 
710
- #: class-site-health.php:46
711
  msgid "SSL is not enabled."
712
  msgstr ""
713
 
714
- #: class-site-health.php:49
715
  msgid ""
716
  "Really Simple SSL detected an SSL certificate, but has not been configured "
717
  "to enforce SSL."
718
  msgstr ""
719
 
720
- #: class-site-health.php:55 grid/templates/progress-footer.php:27
721
  msgid "Activate SSL"
722
  msgstr ""
723
 
724
- #: class-site-health.php:59
725
  msgid "No SSL detected."
726
  msgstr ""
727
 
728
- #: class-site-health.php:62
729
  msgid ""
730
  "Really Simple SSL is installed, but no valid SSL certificate is detected."
731
  msgstr ""
732
 
733
- #: class-site-health.php:68
734
- msgid "No 301 redirect to SSL not enabled."
735
  msgstr ""
736
 
737
- #: class-site-health.php:71
738
  msgid "To ensure all traffic passes through SSL, please enable a 301 redirect."
739
  msgstr ""
740
 
741
- #: class-site-health.php:76
742
  msgid "Enable 301 redirect"
743
  msgstr ""
744
 
745
- #: class-site-health.php:80
746
  msgid "301 .htaccess redirect is not enabled."
747
  msgstr ""
748
 
749
- #: class-site-health.php:83
750
  msgid ""
751
  "The 301 .htaccess redirect is the fastest and most reliable redirect option."
752
  msgstr ""
753
 
754
- #: class-site-health.php:92
755
- msgid "301 SSL redirect enabled"
756
- msgstr ""
757
-
758
- #: class-site-health.php:96
759
- msgid "You have set a 301 redirect to SSL. This is important for SEO purposes"
760
- msgstr ""
761
-
762
- #: class-site-health.php:108
763
- msgid "Missing security headers"
764
- msgstr ""
765
-
766
- #: class-site-health.php:111
767
- msgid "Your .htaccess file does not contain all recommended security headers."
768
- msgstr ""
769
-
770
- #: class-site-health.php:116
771
- msgid "Lear more about security headers"
772
- msgstr ""
773
-
774
  #: grid/templates/header.php:5
775
  msgid "Save settings"
776
  msgstr ""
777
 
778
  #: grid/templates/other-plugins.php:32
779
- msgid "WP Search Insights - Track searches on your website"
780
  msgstr ""
781
 
782
  #: grid/templates/other-plugins.php:43
783
- msgid "Complianz Privacy Suite - Consent Management as it should be "
784
  msgstr ""
785
 
786
  #: grid/templates/other-plugins.php:54
787
- msgid "Zip Recipes - Beautiful recipes optimized for Google "
788
  msgstr ""
789
 
790
  #: grid/templates/progress-footer.php:6
@@ -795,11 +842,11 @@ msgstr ""
795
  msgid "SSL Not activated"
796
  msgstr ""
797
 
798
- #: grid/templates/progress-footer.php:20
799
  msgid "Go PRO!"
800
  msgstr ""
801
 
802
- #: grid/templates/progress-footer.php:46
803
  msgid "301 Redirect"
804
  msgstr ""
805
 
@@ -811,21 +858,10 @@ msgstr ""
811
  msgid "Remaining tasks"
812
  msgstr ""
813
 
814
- #: grid/templates/progress.php:24
815
- #, php-format
816
- msgid "You're doing well. You still have %s task open."
817
- msgid_plural "You're doing well. You still have %s tasks open."
818
- msgstr[0] ""
819
- msgstr[1] ""
820
-
821
- #: grid/templates/progress.php:27
822
  msgid "SSL configuration finished!"
823
  msgstr ""
824
 
825
- #: grid/templates/progress.php:38
826
- msgid "SSL is not yet enabled on this site."
827
- msgstr ""
828
-
829
  #: grid/templates/settings-footer.php:3
830
  msgid "Save"
831
  msgstr ""
@@ -867,7 +903,7 @@ msgid "Elementor"
867
  msgstr ""
868
 
869
  #: grid/templates/tips-tricks.php:7
870
- msgid "Improve security: Enable HTTP Strict Transport Security (HSTS)"
871
  msgstr ""
872
 
873
  #: grid/templates/tips-tricks.php:10 grid/templates/tips-tricks.php:18
@@ -877,7 +913,7 @@ msgid "Read more"
877
  msgstr ""
878
 
879
  #: grid/templates/tips-tricks.php:15
880
- msgid "Is your site still not secure? Do the extensive site scan"
881
  msgstr ""
882
 
883
  #: grid/templates/tips-tricks.php:23
@@ -885,7 +921,7 @@ msgid "Improve security: Add security headers"
885
  msgstr ""
886
 
887
  #: grid/templates/tips-tricks.php:31
888
- msgid "Improve security: secure cookies"
889
  msgstr ""
890
 
891
  #: grid/templates/tips-tricks.php:39
@@ -894,7 +930,7 @@ msgstr ""
894
 
895
  #: grid/templates/tips-tricks.php:48
896
  #, php-format
897
- msgid "Any questions? see the %sdocumentation%s or the %sWordPress Forum%s."
898
  msgstr ""
899
 
900
  #: multisite-cron.php:11
@@ -918,8 +954,8 @@ msgstr ""
918
 
919
  #: rlrsssl-really-simple-ssl.php:161
920
  msgid ""
921
- "You have a premium add with a version that is not compatible with the >4.0 "
922
- "release of Really Simple SSL."
923
  msgstr ""
924
 
925
  #: rlrsssl-really-simple-ssl.php:162
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Really Simple SSL\n"
6
+ "POT-Creation-Date: 2020-12-07 09:09+0100\n"
7
+ "PO-Revision-Date: 2020-12-07 09:09+0100\n"
8
  "Last-Translator: Rogier Lankhorst <rogierlankhorst@gmail.com>\n"
9
  "Language-Team: Rogier Lankhorst <rogierlankhorst@gmail.com>\n"
10
  "MIME-Version: 1.0\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: class-admin.php:49 class-cache.php:10 class-certificate.php:14
25
+ #: class-front-end.php:18 class-help.php:9 class-mixed-content-fixer.php:13
26
  #: class-multisite.php:27 class-server.php:10 class-site-health.php:12
27
  #, php-format
28
  msgid "%s is a singleton class and you cannot create a second instance."
29
  msgstr ""
30
 
31
+ #: class-admin.php:113
32
  #, php-format
33
  msgid ""
34
  "Really Simple SSL and Really Simple SSL add-ons do not process any personal "
37
  "href=\"%s\" target=\"_blank\">here</a>."
38
  msgstr ""
39
 
40
+ #: class-admin.php:487
41
  msgid "Almost ready to migrate to SSL!"
42
  msgstr ""
43
 
44
+ #: class-admin.php:497
45
  msgid "Before you migrate, please check for: "
46
  msgstr ""
47
 
48
+ #: class-admin.php:500 class-multisite.php:545
49
  msgid ""
50
  "Http references in your .css and .js files: change any http:// into https://"
51
  msgstr ""
52
 
53
+ #: class-admin.php:501
54
  msgid ""
55
  "Images, stylesheets or scripts from a domain without an SSL certificate: "
56
  "remove them or move to your own server"
57
  msgstr ""
58
 
59
+ #: class-admin.php:507
60
  #, php-format
61
  msgid ""
62
  "We strongly recommend to create a %sbackup%s of your site before activating "
63
  "SSL"
64
  msgstr ""
65
 
66
+ #: class-admin.php:508
67
  msgid "You may need to login in again."
68
  msgstr ""
69
 
70
+ #: class-admin.php:513
71
  msgid ""
72
  "You can also let the automatic scan of the pro version handle this for you, "
73
  "and get premium support, increased security with HSTS and more!"
74
  msgstr ""
75
 
76
+ #: class-admin.php:517
77
  msgid "Check out Really Simple SSL Pro"
78
  msgstr ""
79
 
80
+ #: class-admin.php:663
81
  msgid "Go ahead, activate SSL!"
82
  msgstr ""
83
 
84
+ #: class-admin.php:666
85
  msgid "Get ready with PRO!"
86
  msgstr ""
87
 
88
+ #: class-admin.php:2191
89
  msgid ""
90
  "A definition of a siteurl or homeurl was detected in your wp-config.php, but "
91
  "the file is not writable."
92
  msgstr ""
93
 
94
+ #: class-admin.php:2193 class-admin.php:2220
95
  msgid "Set your wp-config.php to writable and reload this page."
96
  msgstr ""
97
 
98
+ #: class-admin.php:2196
99
  msgid "Your wp-config.php has to be edited, but is not writable."
100
  msgstr ""
101
 
102
+ #: class-admin.php:2197
103
  msgid ""
104
  "Because your site is behind a loadbalancer and is_ssl() returns false, you "
105
  "should add the following line of code to your wp-config.php."
106
  msgstr ""
107
 
108
+ #: class-admin.php:2213
109
  msgid "Or set your wp-config.php to writable and reload this page."
110
  msgstr ""
111
 
112
+ #: class-admin.php:2219
113
  msgid ""
114
  "Because your server does not pass a variable with which WordPress can detect "
115
  "SSL, WordPress may create redirect loops on SSL."
116
  msgstr ""
117
 
118
+ #: class-admin.php:2226
119
  msgid "System detection encountered issues"
120
  msgstr ""
121
 
122
+ #: class-admin.php:2315
123
  #, php-format
124
  msgid ""
125
  "Hi, Really Simple SSL has kept your site secure for some time now, awesome! "
128
  "feedback, leave us a %smessage%s."
129
  msgstr ""
130
 
131
+ #: class-admin.php:2317
132
  #, php-format
133
  msgid ""
134
  "Hi, Really Simple SSL has kept your site secure for a month now, awesome! If "
137
  "feedback, leave us a %smessage%s."
138
  msgstr ""
139
 
140
+ #: class-admin.php:2323
141
  msgid "Leave a review"
142
  msgstr ""
143
 
144
+ #: class-admin.php:2324
145
  msgid "Maybe later"
146
  msgstr ""
147
 
148
+ #: class-admin.php:2325
149
  msgid "Don't show again"
150
  msgstr ""
151
 
152
+ #: class-admin.php:2507
153
  msgid "SSL settings"
154
  msgstr ""
155
 
156
+ #: class-admin.php:2508
157
  msgid "SSL"
158
  msgstr ""
159
 
160
+ #: class-admin.php:2530 class-admin.php:3274 class-admin.php:3647
161
+ #: class-admin.php:4082 class-multisite.php:224 class-multisite.php:335
162
+ #: class-multisite.php:382
163
  msgid "Settings"
164
  msgstr ""
165
 
166
+ #: class-admin.php:2567
 
 
 
 
 
 
 
 
 
 
 
 
167
  msgid "General"
168
  msgstr ""
169
 
170
+ #: class-admin.php:2585 class-multisite.php:441
171
+ #: grid/templates/tips-tricks-footer.php:3
172
+ msgid "Documentation"
173
  msgstr ""
174
 
175
+ #: class-admin.php:2591 class-admin.php:4086 class-multisite.php:228
176
+ #: class-multisite.php:447
177
  msgid "Support"
178
  msgstr ""
179
 
180
+ #: class-admin.php:2646
181
  msgid "No recommended redirect rules detected."
182
  msgstr ""
183
 
184
+ #: class-admin.php:2664
185
  msgid "Major security issue!"
186
  msgstr ""
187
 
188
+ #: class-admin.php:2665
189
  msgid ""
190
  "The 'force-deactivate.php' file has to be renamed to .txt. Otherwise your "
191
  "ssl can be deactivated by anyone on the internet."
192
  msgstr ""
193
 
194
+ #: class-admin.php:2666
195
  msgid "Check again"
196
  msgstr ""
197
 
198
+ #: class-admin.php:2682
199
+ msgid ""
200
+ "SSL is now activated. Check if your website is secure by following this "
201
+ "article."
202
  msgstr ""
203
 
204
+ #: class-admin.php:2697
205
  msgid ""
206
  "Don't forget to change your settings in Google Analytics and Search Console."
207
  msgstr ""
208
 
209
+ #: class-admin.php:2711
210
  msgid "https://really-simple-ssl.com/really-simple-ssl-4-a-new-dashboard"
211
  msgstr ""
212
 
213
+ #: class-admin.php:2712
214
  msgid "Really Simple SSL 4.0. Learn more about our newest major release."
215
  msgstr ""
216
 
217
+ #: class-admin.php:2725
218
  msgid "SSL is enabled on your site."
219
  msgstr ""
220
 
221
+ #: class-admin.php:2729
222
+ msgid "SSL is not enabled yet."
223
  msgstr ""
224
 
225
+ #: class-admin.php:2740
226
  msgid "Cannot activate SSL due to system configuration."
227
  msgstr ""
228
 
229
+ #: class-admin.php:2744
230
  msgid "No SSL detected"
231
  msgstr ""
232
 
233
+ #: class-admin.php:2745
234
  #, php-format
235
  msgid ""
236
  "No SSL detected. See our guide on how to %sget a free SSL certificate%s. If "
238
  "clicking this link: %sReload over https.%s"
239
  msgstr ""
240
 
241
+ #: class-admin.php:2750
242
  msgid "An SSL certificate was detected on your site."
243
  msgstr ""
244
 
245
+ #: class-admin.php:2762
246
+ msgid "Mixed content fixer was successfully detected on the front-end."
247
  msgstr ""
248
 
249
+ #: class-admin.php:2767
250
  msgid "Really Simple SSL has received no response from the webpage."
251
  msgstr ""
252
 
253
+ #: class-admin.php:2774
254
  msgid ""
255
  "The mixed content fixer is active, but was not detected on the frontpage."
256
  msgstr ""
257
 
258
+ #: class-admin.php:2779
259
  msgid "Error occurred when retrieving the webpage."
260
  msgstr ""
261
 
262
+ #: class-admin.php:2785
263
  msgid ""
264
  "Mixed content fixer not enabled. Enable the option to fix mixed content on "
265
  "your site."
266
  msgstr ""
267
 
268
+ #: class-admin.php:2791
269
  #, php-format
270
  msgid ""
271
  "The mixed content fixer could not be detected due to a cURL error: %s. cURL "
273
  "affect the front-end of your site. Contact your hosting provider for a fix."
274
  msgstr ""
275
 
276
+ #: class-admin.php:2804
277
+ msgid "301 redirect to https set."
278
  msgstr ""
279
 
280
+ #: class-admin.php:2808
281
  msgid ""
282
  "No 301 redirect is set. Enable the WordPress 301 redirect in the settings to "
283
  "get a 301 permanent redirect."
284
  msgstr ""
285
 
286
+ #: class-admin.php:2820
287
  msgid "301 redirect to https set: .htaccess redirect."
288
  msgstr ""
289
 
290
+ #: class-admin.php:2825
291
  msgid ""
292
  "WordPress 301 redirect enabled. We recommend to enable a 301 .htaccess "
293
  "redirect."
294
  msgstr ""
295
 
296
+ #: class-admin.php:2832
297
  msgid ""
298
  "Enable a .htaccess redirect or WordPress redirect in the settings to create "
299
  "a 301 redirect."
300
  msgstr ""
301
 
302
+ #: class-admin.php:2838
303
  #, php-format
304
  msgid ""
305
  "The %s file is not writable. You can either use the WordPress redirect, add "
306
  "the rules manually, or set the file to writable."
307
  msgstr ""
308
 
309
+ #: class-admin.php:2844
310
  msgid ""
311
  "The .htaccess redirect rules selected by this plugin failed in the test. Set "
312
  "manually or dismiss to leave on WordPress redirect."
313
  msgstr ""
314
 
315
+ #: class-admin.php:2859
316
  msgid ""
317
  "Your site uses Elementor. This can require some additional steps before "
318
  "getting the secure lock."
319
  msgstr ""
320
 
321
+ #: class-admin.php:2873
322
  msgid ""
323
  "Your site uses Divi. This can require some additional steps before getting "
324
  "the secure lock."
325
  msgstr ""
326
 
327
+ #: class-admin.php:2886
328
  msgid "HTTP Strict Transport Security was enabled."
329
  msgstr ""
330
 
331
+ #: class-admin.php:2890
332
  #, php-format
333
+ msgid "HTTP Strict Transport Security is not enabled %s(Read more)%s."
334
+ msgstr ""
335
+
336
+ #: class-admin.php:2902
337
+ msgid "Secure cookies set."
338
  msgstr ""
339
 
340
+ #: class-admin.php:2906
341
+ #, php-format
342
+ msgid "Secure cookie settings not enabled (%sRead more%s)."
343
  msgstr ""
344
 
345
+ #: class-admin.php:2917
346
  #, php-format
347
+ msgid "Recommended security headers not enabled (%sRead more%s)."
348
  msgstr ""
349
 
350
+ #: class-admin.php:2928
351
  msgid ""
352
  "Your .htaccess file is not writable. This prevents Really Simple SSL from "
353
  "writing redirects or security headers to your .htaccess file."
354
  msgstr ""
355
 
356
+ #: class-admin.php:3032
357
  #, php-format
358
  msgid "%sMore info%s or %sdismiss%s"
359
  msgstr ""
360
 
361
+ #: class-admin.php:3035
362
  #, php-format
363
  msgid "%sEnable%s or %sdismiss%s"
364
  msgstr ""
365
 
366
+ #: class-admin.php:3266 class-multisite.php:374
367
  msgid "Your progress"
368
  msgstr ""
369
 
370
+ #: class-admin.php:3281
371
  msgid "Tips & Tricks"
372
  msgstr ""
373
 
374
+ #: class-admin.php:3289 class-multisite.php:398
375
+ msgid "Our plugins"
376
  msgstr ""
377
 
378
+ #: class-admin.php:3296 class-multisite.php:390
379
+ msgid "Support forum"
380
  msgstr ""
381
 
382
+ #: class-admin.php:3388
383
  msgid "Install"
384
  msgstr ""
385
 
386
+ #: class-admin.php:3391
387
  msgid "Installed"
388
  msgstr ""
389
 
390
+ #: class-admin.php:3394
391
  msgid "Upgrade to pro"
392
  msgstr ""
393
 
394
+ #: class-admin.php:3448
395
+ msgid "Instructions manual"
396
+ msgstr ""
397
+
398
+ #: class-admin.php:3515
399
  msgid "Completed"
400
  msgstr ""
401
 
402
+ #: class-admin.php:3517
403
  msgid "Warning"
404
  msgstr ""
405
 
406
+ #: class-admin.php:3519
407
  msgid "Open"
408
  msgstr ""
409
 
410
+ #: class-admin.php:3521
411
  msgid "Premium"
412
  msgstr ""
413
 
414
+ #: class-admin.php:3569
415
  msgid "More info"
416
  msgstr ""
417
 
418
+ #: class-admin.php:3608 grid/templates/progress.php:33
419
  #, php-format
420
  msgid ""
421
  "Basic SSL configuration finished! Improve your score with %sReally Simple "
422
  "SSL Pro%s."
423
  msgstr ""
424
 
425
+ #: class-admin.php:3610 grid/templates/progress.php:25
426
+ msgid "SSL is activated on your site."
427
  msgstr ""
428
 
429
+ #: class-admin.php:3612 grid/templates/progress.php:39
430
+ msgid "SSL is not yet enabled on this site."
431
+ msgstr ""
432
+
433
+ #: class-admin.php:3615 grid/templates/progress.php:25
434
+ #, fuzzy, php-format
435
+ msgid "You still have %s task open."
436
+ msgstr ""
437
+ "#-#-#-#-# legacy_PHP_extracted.pot (PACKAGE VERSION) #-#-#-#-#\n"
438
+ "#-#-#-#-# 1legacy_PHP_extracted.pot (PACKAGE VERSION) #-#-#-#-#\n"
439
+
440
+ #: class-admin.php:3616
441
  #, php-format
442
+ msgid " You still have %s tasks open."
443
  msgstr ""
444
 
445
+ #: class-admin.php:3622
446
+ msgid "Copied!"
447
+ msgstr ""
448
+
449
+ #: class-admin.php:3649
450
  msgid ""
451
  "In most cases you need to leave this enabled, to prevent mixed content "
452
  "issues on your site."
453
  msgstr ""
454
 
455
+ #: class-admin.php:3650
456
  msgid "Mixed content fixer"
457
  msgstr ""
458
 
459
+ #: class-admin.php:3654
460
  msgid ""
461
  "Redirects all requests over HTTP to HTTPS using a PHP 301 redirect. Enable "
462
  "if the .htaccess redirect cannot be used, for example on NGINX servers."
463
  msgstr ""
464
 
465
+ #: class-admin.php:3655
466
  msgid "Enable WordPress 301 redirect"
467
  msgstr ""
468
 
469
+ #: class-admin.php:3659
470
  msgid ""
471
  "A .htaccess redirect is faster and works better with caching. Really Simple "
472
  "SSL detects the redirect code that is most likely to work (99% of websites), "
474
  "if anything goes wrong!"
475
  msgstr ""
476
 
477
+ #: class-admin.php:3660 class-site-health.php:155
478
  msgid "Enable 301 .htaccess redirect"
479
  msgstr ""
480
 
489
  msgid "Stop editing the .htaccess file"
490
  msgstr ""
491
 
492
+ #: class-admin.php:3672
493
  msgid ""
494
  "If this option is set to true, the mixed content fixer will fire on the init "
495
  "hook instead of the template_redirect hook. Only use this option when you "
496
  "experience problems with the mixed content fixer.\""
497
  msgstr ""
498
 
499
+ #: class-admin.php:3673
500
+ msgid "Fire mixed content fixer with different method"
501
  msgstr ""
502
 
503
+ #: class-admin.php:3676
504
  msgid ""
505
  "Enable this option to permanently dismiss all +1 notices in the 'Your "
506
  "progress' tab"
507
  msgstr ""
508
 
509
+ #: class-admin.php:3677
510
  msgid "Dismiss all Really Simple SSL notices"
511
  msgstr ""
512
 
513
+ #: class-admin.php:3784 class-admin.php:3814 class-admin.php:4055
514
  msgid "This option is enabled on the network menu."
515
  msgstr ""
516
 
517
+ #: class-admin.php:3810
518
+ #, php-format
519
+ msgid ""
520
+ "Before you enable the htaccess redirect, make sure you know how to %sregain "
521
+ "access%s to your site in case of a redirect loop."
522
+ msgstr ""
523
+
524
+ #: class-admin.php:3817
525
  msgid ""
526
  "If the setting 'stop editing the .htaccess file' is enabled, you can't "
527
  "change this setting."
528
  msgstr ""
529
 
530
+ #: class-admin.php:3849
531
  msgid ".htaccess is currently not writable."
532
  msgstr ""
533
 
534
+ #: class-admin.php:3999
535
  msgid "Are you sure?"
536
  msgstr ""
537
 
538
+ #: class-admin.php:4012
539
  msgid "To deactivate the plugin correctly, please select if you want to:"
540
  msgstr ""
541
 
542
+ #: class-admin.php:4014
543
  msgid "Deactivate, but stay on SSL."
544
  msgstr ""
545
 
546
+ #: class-admin.php:4015
547
  msgid ""
548
  "Deactivate, and revert to http. This will remove all changes by the plugin."
549
  msgstr ""
550
 
551
+ #: class-admin.php:4017
552
  msgid "Deactivating the plugin while keeping SSL will do the following:"
553
  msgstr ""
554
 
555
+ #: class-admin.php:4019
556
  msgid "The mixed content fixer will stop working"
557
  msgstr ""
558
 
559
+ #: class-admin.php:4020
560
  msgid "The WordPress 301 redirect will stop working"
561
  msgstr ""
562
 
563
+ #: class-admin.php:4021
564
  msgid "Your site address will remain https://"
565
  msgstr ""
566
 
567
+ #: class-admin.php:4022
568
  msgid "The .htaccess redirect will remain active"
569
  msgstr ""
570
 
571
+ #: class-admin.php:4032
572
  msgid "Cancel"
573
  msgstr ""
574
 
575
+ #: class-admin.php:4033
576
  msgid "Deactivate, keep https"
577
  msgstr ""
578
 
579
+ #: class-admin.php:4034
580
  msgid "Deactivate, revert to http"
581
  msgstr ""
582
 
583
+ #: class-admin.php:4088 class-multisite.php:230
584
  msgid "Premium Support"
585
  msgstr ""
586
 
587
+ #: class-admin.php:4094 class-multisite.php:236
588
  msgid "Upgrade to premium"
589
  msgstr ""
590
 
591
  #: class-multisite.php:90
592
+ msgid "No choice has been made regarding networkwide or per site activation."
593
  msgstr ""
594
 
595
  #: class-multisite.php:92
596
+ msgid "SSL is activated network wide."
597
  msgstr ""
598
 
599
  #: class-multisite.php:94
600
+ msgid "SSL is activated per site."
601
  msgstr ""
602
 
603
+ #: class-multisite.php:122
604
  msgid "SSL is enabled networkwide."
605
  msgstr ""
606
 
607
+ #: class-multisite.php:126
608
  msgid "SSL is enabled per site."
609
  msgstr ""
610
 
611
+ #: class-multisite.php:130
612
+ msgid "SSL is not enabled yet"
613
+ msgstr ""
614
+
615
+ #: class-multisite.php:144
616
  msgid ""
617
  "You run a Multisite installation with subfolders, which prevents this plugin "
618
  "from fixing your missing server variable in the wp-config.php."
619
  msgstr ""
620
 
621
+ #: class-multisite.php:145
622
  msgid ""
623
  "Because the $_SERVER[\"HTTPS\"] variable is not set, your website may "
624
  "experience redirect loops."
625
  msgstr ""
626
 
627
+ #: class-multisite.php:146
628
  msgid "Activate networkwide to fix this."
629
  msgstr ""
630
 
631
+ #: class-multisite.php:157
632
  msgid ""
633
  "You run a Multisite installation with subdomains, but your site doesn't have "
634
  "a wildcard certificate."
635
  msgstr ""
636
 
637
+ #: class-multisite.php:158
638
  msgid ""
639
  "This leads to issues when activating SSL networkwide since subdomains will "
640
  "be forced over SSL as well while they don't have a valid certificate."
641
  msgstr ""
642
 
643
+ #: class-multisite.php:159
644
  msgid "Activate SSL per site or install a wildcard certificate to fix this."
645
  msgstr ""
646
 
647
+ #: class-multisite.php:336
648
+ msgid "Select to enable SSL networkwide or per site."
649
  msgstr ""
650
 
651
+ #: class-multisite.php:337
652
+ msgid "Enable SSL"
653
  msgstr ""
654
 
655
+ #: class-multisite.php:353
656
+ msgid "Choose option"
657
  msgstr ""
658
 
659
+ #: class-multisite.php:355
660
  msgid "networkwide"
661
  msgstr ""
662
 
663
+ #: class-multisite.php:356
664
  msgid "per site"
665
  msgstr ""
666
 
667
+ #: class-multisite.php:429
668
  msgid "Options saved."
669
  msgstr ""
670
 
671
+ #: class-multisite.php:542
672
  msgid "Setup"
673
  msgstr ""
674
 
675
+ #: class-multisite.php:543
676
  msgid ""
677
  "Some things can't be done automatically. Before you migrate, please check "
678
  "for: "
679
  msgstr ""
680
 
681
+ #: class-multisite.php:546
682
  msgid ""
683
  "Images, stylesheets or scripts from a domain without an SSL certificate: "
684
  "remove them or move to your own server."
685
  msgstr ""
686
 
687
+ #: class-multisite.php:548 class-multisite.php:576
688
  msgid ""
689
  "You can also let the automatic scan of the pro version handle this for you, "
690
  "and get premium support and increased security with HSTS included."
691
  msgstr ""
692
 
693
+ #: class-multisite.php:550 class-multisite.php:578
694
  msgid "Check out Really Simple SSL Premium"
695
  msgstr ""
696
 
697
+ #: class-multisite.php:555
698
  msgid "Activate SSL networkwide"
699
  msgstr ""
700
 
701
+ #: class-multisite.php:558
702
  msgid "Activate SSL per site"
703
  msgstr ""
704
 
705
+ #: class-multisite.php:561
706
  msgid ""
707
  "Networkwide activation does not check if a site has an SSL certificate. It "
708
  "just migrates all sites to SSL."
709
  msgstr ""
710
 
711
+ #: class-multisite.php:1003
712
  #, php-format
713
  msgid "Conversion of websites %s percent complete."
714
  msgstr ""
715
 
716
+ #: class-multisite.php:1004
717
  msgid ""
718
  "Site conversion in progress. Please refresh this page to check if the "
719
  "process has finished. It will proceed in the background."
720
  msgstr ""
721
 
722
+ #: class-multisite.php:1005
723
  #, php-format
724
  msgid ""
725
  "If the conversion does not proceed after a few minutes, click %shere%s to "
726
  "force the conversion process."
727
  msgstr ""
728
 
729
+ #: class-multisite.php:1009
730
  msgid "Conversion of websites completed."
731
  msgstr ""
732
 
733
+ #: class-multisite.php:1011
734
+ msgid "Really Simple SSL has converted all your websites to SSL."
735
+ msgstr ""
736
+
737
+ #: class-multisite.php:1013
738
+ msgid "Really Simple SSL has converted all your websites to non SSL."
739
+ msgstr ""
740
+
741
+ #: class-site-health.php:29
742
+ msgid "SSL Status Test"
743
+ msgstr ""
744
+
745
+ #: class-site-health.php:35
746
+ msgid "Security Headers Test"
747
+ msgstr ""
748
+
749
+ #: class-site-health.php:52
750
+ msgid "Recommended security headers installed"
751
+ msgstr ""
752
+
753
+ #: class-site-health.php:60
754
+ msgid "The recommended security headers are detected on your site."
755
+ msgstr ""
756
+
757
+ #: class-site-health.php:72
758
+ msgid "Not all recommended security headers are installed"
759
+ msgstr ""
760
+
761
+ #: class-site-health.php:73
762
+ msgid "Your .htaccess file does not contain all recommended security headers."
763
+ msgstr ""
764
+
765
+ #: class-site-health.php:77
766
+ msgid "Learn more about security headers"
767
+ msgstr ""
768
+
769
+ #: class-site-health.php:96
770
+ msgid "301 SSL redirect enabled"
771
+ msgstr ""
772
+
773
+ #: class-site-health.php:104
774
+ msgid "You have set a 301 redirect to SSL. This is important for SEO purposes"
775
  msgstr ""
776
 
777
+ #: class-site-health.php:113
778
  msgid "SSL is not enabled."
779
  msgstr ""
780
 
781
+ #: class-site-health.php:116
782
  msgid ""
783
  "Really Simple SSL detected an SSL certificate, but has not been configured "
784
  "to enforce SSL."
785
  msgstr ""
786
 
787
+ #: class-site-health.php:122 grid/templates/progress-footer.php:25
788
  msgid "Activate SSL"
789
  msgstr ""
790
 
791
+ #: class-site-health.php:126
792
  msgid "No SSL detected."
793
  msgstr ""
794
 
795
+ #: class-site-health.php:129
796
  msgid ""
797
  "Really Simple SSL is installed, but no valid SSL certificate is detected."
798
  msgstr ""
799
 
800
+ #: class-site-health.php:135
801
+ msgid "No 301 redirect to SSL enabled."
802
  msgstr ""
803
 
804
+ #: class-site-health.php:138
805
  msgid "To ensure all traffic passes through SSL, please enable a 301 redirect."
806
  msgstr ""
807
 
808
+ #: class-site-health.php:143
809
  msgid "Enable 301 redirect"
810
  msgstr ""
811
 
812
+ #: class-site-health.php:147
813
  msgid "301 .htaccess redirect is not enabled."
814
  msgstr ""
815
 
816
+ #: class-site-health.php:150
817
  msgid ""
818
  "The 301 .htaccess redirect is the fastest and most reliable redirect option."
819
  msgstr ""
820
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
821
  #: grid/templates/header.php:5
822
  msgid "Save settings"
823
  msgstr ""
824
 
825
  #: grid/templates/other-plugins.php:32
826
+ msgid "Track searches on your website"
827
  msgstr ""
828
 
829
  #: grid/templates/other-plugins.php:43
830
+ msgid "Consent Management as it should be "
831
  msgstr ""
832
 
833
  #: grid/templates/other-plugins.php:54
834
+ msgid "Beautiful recipes optimized for Google "
835
  msgstr ""
836
 
837
  #: grid/templates/progress-footer.php:6
842
  msgid "SSL Not activated"
843
  msgstr ""
844
 
845
+ #: grid/templates/progress-footer.php:19
846
  msgid "Go PRO!"
847
  msgstr ""
848
 
849
+ #: grid/templates/progress-footer.php:39
850
  msgid "301 Redirect"
851
  msgstr ""
852
 
858
  msgid "Remaining tasks"
859
  msgstr ""
860
 
861
+ #: grid/templates/progress.php:28
 
 
 
 
 
 
 
862
  msgid "SSL configuration finished!"
863
  msgstr ""
864
 
 
 
 
 
865
  #: grid/templates/settings-footer.php:3
866
  msgid "Save"
867
  msgstr ""
903
  msgstr ""
904
 
905
  #: grid/templates/tips-tricks.php:7
906
+ msgid "Is your site still not secure? Do the extensive site scan"
907
  msgstr ""
908
 
909
  #: grid/templates/tips-tricks.php:10 grid/templates/tips-tricks.php:18
913
  msgstr ""
914
 
915
  #: grid/templates/tips-tricks.php:15
916
+ msgid "Improve security: Enable HTTP Strict Transport Security (HSTS)"
917
  msgstr ""
918
 
919
  #: grid/templates/tips-tricks.php:23
921
  msgstr ""
922
 
923
  #: grid/templates/tips-tricks.php:31
924
+ msgid "Improve security: Secure cookies"
925
  msgstr ""
926
 
927
  #: grid/templates/tips-tricks.php:39
930
 
931
  #: grid/templates/tips-tricks.php:48
932
  #, php-format
933
+ msgid "Any questions? See the %sdocumentation%s or the %sWordPress Forum%s."
934
  msgstr ""
935
 
936
  #: multisite-cron.php:11
954
 
955
  #: rlrsssl-really-simple-ssl.php:161
956
  msgid ""
957
+ "You have a premium add-on with a version that is not compatible with the "
958
+ ">4.0 release of Really Simple SSL."
959
  msgstr ""
960
 
961
  #: rlrsssl-really-simple-ssl.php:162
readme.txt CHANGED
@@ -6,7 +6,7 @@ Requires at least: 4.6
6
  License: GPL2
7
  Tested up to: 5.6
8
  Requires PHP: 5.4
9
- Stable tag: 4.0.3
10
 
11
  No setup required! You only need an SSL certificate, and this plugin will do the rest.
12
 
@@ -82,6 +82,11 @@ If you are experiencing redirect loops on your site, try these [instructions](ht
82
  Yes. There is a dedicated network settings page where you can switch between network activated SSL and per page SSL. In the dedicated pro for multisite plugin, you can override all site settings for SSL on the network level, and can activate and deactivate SSL in the network menu for each site.
83
 
84
  == Changelog ==
 
 
 
 
 
85
  = 4.0.3 =
86
  * Fix: sitehealth dismiss not working correctly, props @doffine
87
 
6
  License: GPL2
7
  Tested up to: 5.6
8
  Requires PHP: 5.4
9
+ Stable tag: 4.0.4
10
 
11
  No setup required! You only need an SSL certificate, and this plugin will do the rest.
12
 
82
  Yes. There is a dedicated network settings page where you can switch between network activated SSL and per page SSL. In the dedicated pro for multisite plugin, you can override all site settings for SSL on the network level, and can activate and deactivate SSL in the network menu for each site.
83
 
84
  == Changelog ==
85
+ = 4.0.4 =
86
+ * Added Really Simple Plugins logo
87
+ * Fix: enable link in task for multisite redirected to subsite
88
+ * Fix: exclude plus one count from admin notices
89
+
90
  = 4.0.3 =
91
  * Fix: sitehealth dismiss not working correctly, props @doffine
92
 
rlrsssl-really-simple-ssl.php CHANGED
@@ -3,10 +3,12 @@
3
  * Plugin Name: Really Simple SSL
4
  * Plugin URI: https://really-simple-ssl.com
5
  * Description: Lightweight plugin without any setup to make your site SSL proof
6
- * Version: 4.0.3
7
  * Author: Really Simple Plugins
8
  * Author URI: https://really-simple-plugins.com
9
  * License: GPL2
 
 
10
  */
11
  /* Copyright 2020 Really Simple Plugins BV (email : support@really-simple-ssl.com)
12
  This program is free software; you can redistribute it and/or modify
3
  * Plugin Name: Really Simple SSL
4
  * Plugin URI: https://really-simple-ssl.com
5
  * Description: Lightweight plugin without any setup to make your site SSL proof
6
+ * Version: 4.0.4
7
  * Author: Really Simple Plugins
8
  * Author URI: https://really-simple-plugins.com
9
  * License: GPL2
10
+ * Text Domain: really-simple-ssl
11
+ * Domain Path: /languages
12
  */
13
  /* Copyright 2020 Really Simple Plugins BV (email : support@really-simple-ssl.com)
14
  This program is free software; you can redistribute it and/or modify
testssl/cdn/.htaccess DELETED
@@ -1,5 +0,0 @@
1
- <IfModule mod_rewrite.c>
2
- RewriteEngine on
3
- RewriteCond %{HTTP:X-Forwarded-SSL} !on
4
- RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [L]
5
- </IfModule>
 
 
 
 
 
testssl/cdn/ssl-test-page.html DELETED
@@ -1,9 +0,0 @@
1
- <html>
2
- <head>
3
- <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
4
- </head>
5
- <body>
6
- This page is for testing SSL functionality.
7
- #SSL TEST PAGE#
8
- </body>
9
- </html>