WP Maintenance - Version 3.0.8

Version Description

  • Adding menu admin bar
  • Ready for 4.9 version
  • Bugs fixed for image logo size
  • Replace image path

=

Download this release

Release Info

Developer Florent73
Plugin Icon 128x128 WP Maintenance
Version 3.0.8
Comparing to
See all releases

Code changes from version 3.0.7 to 3.0.8

classes/wp-maintenance.php CHANGED
@@ -208,7 +208,8 @@ a.wpmadashicons:hover { text-decoration:none;color: '.$colors[2].'!important; }
208
  background-color: '.$colors[0].'!important;
209
  color:#e4e4e4!important;
210
  }
211
-
 
212
  </style>';
213
  }
214
  }
@@ -216,10 +217,13 @@ a.wpmadashicons:hover { text-decoration:none;color: '.$colors[2].'!important; }
216
  function wpm_add_menu_admin_bar( $wp_admin_bar ) {
217
 
218
  $checkActive = get_option('wp_maintenance_active');
219
- if( isset($checkActive) && $checkActive==1 && !is_network_admin() ) {
220
-
221
- $textAdmin = '<img src="'.WPM_PLUGIN_URL.'images/lock.png" style="padding: 6px 0;float:left;margin-right: 6px;">'.__('Maintenance mode activated!', 'wp-maintenance');
222
-
 
 
 
223
  $args = array(
224
  'id' => 'wpm-info', // id of the existing child node (New > Post)
225
  'title' => $textAdmin, // alter the title of existing node
@@ -230,6 +234,57 @@ a.wpmadashicons:hover { text-decoration:none;color: '.$colors[2].'!important; }
230
  )
231
  );
232
  $wp_admin_bar->add_node( $args );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  }
234
  }
235
 
@@ -755,11 +810,11 @@ a.wpmadashicons:hover { text-decoration:none;color: '.$colors[2].'!important; }
755
  }
756
  if( isset($paramMMode['image']) && $paramMMode['image'] ) {
757
  if( ini_get('allow_url_fopen')==1) {
758
- $image_path = str_replace(get_bloginfo('url'), ABSPATH, $paramMMode['image']);
759
  list($logoWidth, $logoHeight, $logoType, $logoAttr) = getimagesize($image_path);
760
  } else {
761
- $width = 150;
762
- $height = 80;
763
  }
764
  $LogoImage = '<div id="logo"><img src="'.$paramMMode['image'].'" width="'.$logoWidth.'" height="'.$logoHeight.'" alt="'.get_bloginfo( 'name', 'display' ).' '.get_bloginfo( 'description', 'display' ).'" title="'.get_bloginfo( 'name', 'display' ).' '.get_bloginfo( 'description', 'display' ).'" /></div>';
765
  } else {
208
  background-color: '.$colors[0].'!important;
209
  color:#e4e4e4!important;
210
  }
211
+ #wpadminbar .wpmbackground { background-color: '.$colors[2].'!important; }
212
+ .infoLock { -webkit-animation-name:blinker;-webkit-animation-duration:5s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-moz-animation-name:blinker;-moz-animation-duration:5s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;animation-name:blinker;animation-duration:5s;animation-timing-function:linear;animation-iteration-count:infinite; }
213
  </style>';
214
  }
215
  }
217
  function wpm_add_menu_admin_bar( $wp_admin_bar ) {
218
 
219
  $checkActive = get_option('wp_maintenance_active');
220
+ if( isset($checkActive) && !is_network_admin() ) {
221
+
222
+ $textAdmin = '<img src="'.WPM_PLUGIN_URL.'images/unlock.png" class="infoLock" style="padding: 6px 0;float:left;margin-right: 6px;">'.__('WP Maintenance', 'wp-maintenance');
223
+
224
+ if( $checkActive==1 ) {
225
+ $textAdmin = '<img src="'.WPM_PLUGIN_URL.'images/lock.png" class="infoLock" style="padding: 6px 0;float:left;margin-right: 6px;">'.__('WP Maintenance', 'wp-maintenance');
226
+ }
227
  $args = array(
228
  'id' => 'wpm-info', // id of the existing child node (New > Post)
229
  'title' => $textAdmin, // alter the title of existing node
234
  )
235
  );
236
  $wp_admin_bar->add_node( $args );
237
+
238
+ // add a child item to our parent item
239
+ $args = array(
240
+ 'parent' => 'wpm-info',
241
+ 'id' => 'wp-maintenance-colors',
242
+ 'title' => __('Colors', 'wp-maintenance'),
243
+ 'href' => admin_url().'admin.php?page=wp-maintenance-colors',
244
+ 'meta' => false
245
+ );
246
+ $wp_admin_bar->add_node( $args );
247
+
248
+ // add a child item to our parent item
249
+ $args = array(
250
+ 'parent' => 'wpm-info',
251
+ 'id' => 'wp-maintenance-picture',
252
+ 'title' => __('Pictures', 'wp-maintenance'),
253
+ 'href' => admin_url().'admin.php?page=wp-maintenance-picture',
254
+ 'meta' => false
255
+ );
256
+ $wp_admin_bar->add_node( $args );
257
+
258
+ // add a child item to our parent item
259
+ $args = array(
260
+ 'parent' => 'wpm-info',
261
+ 'id' => 'wp-maintenance-countdown',
262
+ 'title' => __('Countdown', 'wp-maintenance'),
263
+ 'href' => admin_url().'admin.php?page=wp-maintenance-countdown',
264
+ 'meta' => false
265
+ );
266
+ $wp_admin_bar->add_node( $args );
267
+
268
+ // add a child item to our parent item
269
+ $args = array(
270
+ 'parent' => 'wpm-info',
271
+ 'id' => 'wp-maintenance-css',
272
+ 'title' => __('CSS', 'wp-maintenance'),
273
+ 'href' => admin_url().'admin.php?page=wp-maintenance-css',
274
+ 'meta' => false
275
+ );
276
+ $wp_admin_bar->add_node( $args );
277
+
278
+ // add a child item to our parent item
279
+ $args = array(
280
+ 'parent' => 'wpm-info',
281
+ 'id' => 'wp-maintenance-settings',
282
+ 'title' => __('Settings', 'wp-maintenance'),
283
+ 'href' => admin_url().'admin.php?page=wp-maintenance-settings',
284
+ 'meta' => false
285
+ );
286
+ $wp_admin_bar->add_node( $args );
287
+
288
  }
289
  }
290
 
810
  }
811
  if( isset($paramMMode['image']) && $paramMMode['image'] ) {
812
  if( ini_get('allow_url_fopen')==1) {
813
+ $image_path = str_replace(get_bloginfo('url'), get_home_path(), $paramMMode['image']);
814
  list($logoWidth, $logoHeight, $logoType, $logoAttr) = getimagesize($image_path);
815
  } else {
816
+ $logoWidth = 150;
817
+ $logoHeight = 80;
818
  }
819
  $LogoImage = '<div id="logo"><img src="'.$paramMMode['image'].'" width="'.$logoWidth.'" height="'.$logoHeight.'" alt="'.get_bloginfo( 'name', 'display' ).' '.get_bloginfo( 'description', 'display' ).'" title="'.get_bloginfo( 'name', 'display' ).' '.get_bloginfo( 'description', 'display' ).'" /></div>';
820
  } else {
css/wpm-admin.css CHANGED
@@ -1 +1 @@
1
- .switch-field label,.wpmclassname{display:inline-block;text-align:center}body#tinymce.wp-editor{font-size:.9rem;margin:10px;max-width:100%}.switch-field{font-family:"Lucida Grande",Tahoma,Verdana,sans-serif;padding-top:5px;padding-bottom:10px;overflow:hidden;width:180px;margin-left:auto}.switch-title{margin-bottom:6px}.switch-field input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.switch-field label{float:left;width:60px;background-color:#e4e4e4;color:#333;font-size:14px;font-weight:400;text-shadow:none;padding:6px 14px;border:1px solid rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.3),0 1px rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.3),0 1px rgba(255,255,255,.1);-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.switch-field label:hover{cursor:pointer}.switch-field input:checked+label{-webkit-box-shadow:none;box-shadow:none;color:#e4e4e4}.switch-field label:first-of-type{border-radius:4px 0 0 4px}.switch-field label:last-of-type{border-radius:0 4px 4px 0}#wpadminbar .wpmbackground{background-color:#333;-webkit-animation-name:blinker;-webkit-animation-duration:5s;-webkit-animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-moz-animation-name:blinker;-moz-animation-duration:5s;-moz-animation-timing-function:linear;-moz-animation-iteration-count:infinite;animation-name:blinker;animation-duration:5s;animation-timing-function:linear;animation-iteration-count:infinite}@-moz-keyframes blinker{0%,100%{opacity:1}50%{opacity:0}}@-webkit-keyframes blinker{0%,100%{opacity:1}50%{opacity:0}}@keyframes blinker{0%,100%{opacity:1}50%{opacity:0}}.wpmclassname{background-color:#848838;-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px;-moz-border-radius-bottomright:10px;-moz-border-radius-bottomleft:10px;text-indent:0;border:3px solid #656830;color:#fff;font-size:15px;font-weight:700;font-style:normal;height:50px;line-height:45px;width:215px;text-decoration:none;-webkit-border-radius:10px;border-radius:10px}.wpmclassname:hover{background-color:#656830;color:#fff}.wpmclassname:active{position:relative;top:1px;color:#fff}#wpmcontainer-sticky-wrapper{height:0!important}#wpmcontainer{left:0;top:32px;width:100%;z-index:9980;background-color:#f1f1f1}#wpmNotifications{color:#fff;background-color:#a3b745;margin-left:auto;margin-right:auto;width:60%;padding:14px 25px;-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px;-moz-border-radius-bottomright:10px;-moz-border-radius-bottomleft:10px;-webkit-border-radius:10px;border-radius:10px}.bottom-notices,.postbox{width:75%;box-shadow:none;-webkit-box-shadow:none}.postbox .hndle{padding:5px 5px 15px}.postbox .hndle span{font-size:25px}.postbox .hndle .postbox-title-action{font-size:12px;font-style:italic;padding-left:5px}.inside{display:none}.inside.openinside{display:block}.switch-field-mini label {display:inline-block;text-align:center}.switch-field-mini{font-family:"Lucida Grande",Tahoma,Verdana,sans-serif;overflow:hidden;margin-left:auto}.switch-mini-title{margin-bottom:6px}.switch-field-mini input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.switch-field-mini label{float:left;width:40px;background-color:#e4e4e4;color:#333;font-size:12px;text-shadow:none;padding:0;border:1px solid rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.3),0 1px rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.3),0 1px rgba(255,255,255,.1);-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.switch-field-mini label:hover{cursor:pointer}.switch-field-mini input:checked+label{-webkit-box-shadow:none;box-shadow:none;color:#e4e4e4}.switch-field-mini label:first-of-type{border-radius:4px 0 0 4px}.switch-field-mini label:last-of-type{border-radius:0 4px 4px 0}#wpm-column1{float:left;width:73%;margin-right:1%;border:1px solid #ddd;background-color:#fff;padding:10px}#wpm-column2{float:left;width:24%}#wpm-navsave{float:left;width:18%;text-align:right;margin-top:25px}#wpm-navdashicons{float:left;width:20%;padding-top:8px}#wpm-navtitle{float:left;width:100%;}#wpm-navmessage{float:left;width:40%;text-align:center;padding-top:10px}#wpm-navtext{float:left;width:20%}@media (max-width:640px){#wpm-column1{width:92%;border:1px solid #ddd;background-color:#fff}#wpm-column2{width:98%}.switch-field{width:100px}.switch-field label{width:20px}h3{font-size:1em}#wpmcontainer{padding-left:0}#wpm-navsave{display:none}#divwpmcontainer{width:100%}#wpm-navtitle{width:99%;}#wpm-navdashicons{width:55%;padding-top:12px;height:55px}.wpm-form-field{width:95%}}@media (max-width:782px){#wpmcontainer{padding-left:0}#divwpmcontainer{width:100%}.wpm-form-field{width:95%}#wpm-navdashicons{width:55%;padding-top:12px;height:55px}#wpm-navtitle{}#wpm-column1{width:97%;border:1px solid #ddd;background-color:#fff}#wpm-column2{width:100%}}@media screen and (max-width:1280px){#wpmcontainer{width:85%}#wpm-column1{width:95%;border:1px solid #ddd;background-color:#fff}#wpm-column2{width:98%}#wpm-navtitle{width:100%;}#wpm-navtext{font-size: 15px;width:30%}#wpm-navdashicons{display: none;}#wpm-navmessage{width: 37%;}}
1
+ .switch-field label,.wpmclassname{display:inline-block;text-align:center}body#tinymce.wp-editor{font-size:.9rem;margin:10px;max-width:100%}.switch-field{font-family:"Lucida Grande",Tahoma,Verdana,sans-serif;padding-top:5px;padding-bottom:10px;overflow:hidden;width:180px;margin-left:auto}.switch-title{margin-bottom:6px}.switch-field input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.switch-field label{float:left;width:60px;background-color:#e4e4e4;color:#333;font-size:14px;font-weight:400;text-shadow:none;padding:6px 14px;border:1px solid rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.3),0 1px rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.3),0 1px rgba(255,255,255,.1);-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.switch-field label:hover{cursor:pointer}.switch-field input:checked+label{-webkit-box-shadow:none;box-shadow:none;color:#e4e4e4}.switch-field label:first-of-type{border-radius:4px 0 0 4px}.switch-field label:last-of-type{border-radius:0 4px 4px 0}#wpadminbar .wpmbackground{background-color:#333;}@-moz-keyframes blinker{0%,100%{opacity:1}50%{opacity:0}}@-webkit-keyframes blinker{0%,100%{opacity:1}50%{opacity:0}}@keyframes blinker{0%,100%{opacity:1}50%{opacity:0}}.wpmclassname{background-color:#848838;-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px;-moz-border-radius-bottomright:10px;-moz-border-radius-bottomleft:10px;text-indent:0;border:3px solid #656830;color:#fff;font-size:15px;font-weight:700;font-style:normal;height:50px;line-height:45px;width:215px;text-decoration:none;-webkit-border-radius:10px;border-radius:10px}.wpmclassname:hover{background-color:#656830;color:#fff}.wpmclassname:active{position:relative;top:1px;color:#fff}#wpmcontainer-sticky-wrapper{height:0!important}#wpmcontainer{left:0;top:32px;width:100%;z-index:9980;background-color:#f1f1f1}#wpmNotifications{color:#fff;background-color:#a3b745;margin-left:auto;margin-right:auto;width:60%;padding:14px 25px;-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px;-moz-border-radius-bottomright:10px;-moz-border-radius-bottomleft:10px;-webkit-border-radius:10px;border-radius:10px}.bottom-notices,.postbox{width:75%;box-shadow:none;-webkit-box-shadow:none}.postbox .hndle{padding:5px 5px 15px}.postbox .hndle span{font-size:25px}.postbox .hndle .postbox-title-action{font-size:12px;font-style:italic;padding-left:5px}.inside{display:none}.inside.openinside{display:block}.switch-field-mini label {display:inline-block;text-align:center}.switch-field-mini{font-family:"Lucida Grande",Tahoma,Verdana,sans-serif;overflow:hidden;margin-left:auto}.switch-mini-title{margin-bottom:6px}.switch-field-mini input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.switch-field-mini label{float:left;width:40px;background-color:#e4e4e4;color:#333;font-size:12px;text-shadow:none;padding:0;border:1px solid rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.3),0 1px rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.3),0 1px rgba(255,255,255,.1);-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.switch-field-mini label:hover{cursor:pointer}.switch-field-mini input:checked+label{-webkit-box-shadow:none;box-shadow:none;color:#e4e4e4}.switch-field-mini label:first-of-type{border-radius:4px 0 0 4px}.switch-field-mini label:last-of-type{border-radius:0 4px 4px 0}#wpm-column1{float:left;width:73%;margin-right:1%;border:1px solid #ddd;background-color:#fff;padding:10px}#wpm-column2{float:left;width:24%}#wpm-navsave{float:left;width:18%;text-align:right;margin-top:25px}#wpm-navdashicons{float:left;width:20%;padding-top:8px}#wpm-navtitle{float:left;width:100%;}#wpm-navmessage{float:left;width:40%;text-align:center;padding-top:10px}#wpm-navtext{float:left;width:20%}@media (max-width:640px){#wpm-column1{width:92%;border:1px solid #ddd;background-color:#fff}#wpm-column2{width:98%}.switch-field{width:100px}.switch-field label{width:20px}h3{font-size:1em}#wpmcontainer{padding-left:0}#wpm-navsave{display:none}#divwpmcontainer{width:100%}#wpm-navtitle{width:99%;}#wpm-navdashicons{width:55%;padding-top:12px;height:55px}.wpm-form-field{width:95%}}@media (max-width:782px){#wpmcontainer{padding-left:0}#divwpmcontainer{width:100%}.wpm-form-field{width:95%}#wpm-navdashicons{width:55%;padding-top:12px;height:55px}#wpm-navtitle{}#wpm-column1{width:97%;border:1px solid #ddd;background-color:#fff}#wpm-column2{width:100%}}@media screen and (max-width:1280px){#wpmcontainer{width:85%}#wpm-column1{width:95%;border:1px solid #ddd;background-color:#fff}#wpm-column2{width:98%}#wpm-navtitle{width:100%;}#wpm-navtext{font-size: 15px;width:30%}#wpm-navdashicons{display: none;}#wpm-navmessage{width: 37%;}}
includes/functions.php CHANGED
@@ -12,9 +12,9 @@ function wpm_get_header( $text = 'Settings', $dashicon = 'dashicons-admin-settin
12
  <div id="wpm-container">
13
  <div id="wpm-navtitle">
14
  <div id="wpm-navtext">
15
- <h2 style="font-size: 23px;font-weight: 400;line-height: 29px;margin-bottom:15px;">
16
  <span class="dashicons '.$dashicon.'" style="font-size:35px;margin-right:10px;"></span> '.$text.'
17
- </h2>
18
  </div>';
19
  $getHeader .= '<div id="wpm-navdashicons">
20
  <div style="text-align:center;border-bottom: 1px solid #ddd;margin-bottom: 5px;">MENU</div><div style="text-align:center;">'.wpm_list_dashicons().'</div>
12
  <div id="wpm-container">
13
  <div id="wpm-navtitle">
14
  <div id="wpm-navtext">
15
+ <h3 style="font-size: 23px;font-weight: 400;line-height: 29px;margin-bottom:15px;">
16
  <span class="dashicons '.$dashicon.'" style="font-size:35px;margin-right:10px;"></span> '.$text.'
17
+ </h3>
18
  </div>';
19
  $getHeader .= '<div id="wpm-navdashicons">
20
  <div style="text-align:center;border-bottom: 1px solid #ddd;margin-bottom: 5px;">MENU</div><div style="text-align:center;">'.wpm_list_dashicons().'</div>
languages/wp-maintenance-fr_FR.mo CHANGED
Binary file
languages/wp-maintenance-fr_FR.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Maintenance\n"
4
- "POT-Creation-Date: 2017-08-09 10:06+0200\n"
5
- "PO-Revision-Date: 2017-08-09 10:07+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.3\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
@@ -21,131 +21,147 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: classes/countdown.php:34
25
  msgid "Days"
26
  msgstr "Jours"
27
 
28
- #: classes/countdown.php:34
29
  msgid "Hours"
30
  msgstr "Heures"
31
 
32
- #: classes/countdown.php:34
33
  msgid "Minutes"
34
  msgstr "Minutes"
35
 
36
- #: classes/countdown.php:36
37
  msgid "Seconds"
38
  msgstr "Secondes"
39
 
40
- #: classes/slider.php:90
41
  msgid "Previous"
42
  msgstr "Précédent"
43
 
44
- #: classes/slider.php:91
45
  msgid "Next"
46
  msgstr "Suivant"
47
 
48
- #: classes/wp-maintenance.php:45 classes/wp-maintenance.php:280
49
  msgid "This site is down for maintenance"
50
  msgstr "Ce site est fermé pour maintenance"
51
 
52
- #: classes/wp-maintenance.php:46 classes/wp-maintenance.php:281
53
  msgid "Come back quickly!"
54
  msgstr "Nous revenons rapidement !"
55
 
56
- #: classes/wp-maintenance.php:154 classes/wp-maintenance.php:270
57
- #: views/wp-maintenance-settings.php:57
58
  msgid "Settings"
59
  msgstr "Réglages"
60
 
61
- #: classes/wp-maintenance.php:213
 
 
 
 
62
  msgid "Maintenance mode activated!"
63
  msgstr "Maintenance activée !"
64
 
65
- #: classes/wp-maintenance.php:260 views/wp-maintenance-dashboard.php:53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  msgid "General"
67
  msgstr "Général"
68
 
69
- #: classes/wp-maintenance.php:262 views/wp-maintenance-colors.php:41
70
  msgid "Colors & Fonts"
71
  msgstr "Coleurs & Polices"
72
 
73
- #: classes/wp-maintenance.php:264
74
- msgid "Pictures"
75
- msgstr "Images"
76
-
77
- #: classes/wp-maintenance.php:266
78
  msgid "CountDown"
79
  msgstr "Compte à rebours"
80
 
81
- #: classes/wp-maintenance.php:268 views/wp-maintenance-css.php:36
82
  msgid "CSS Style"
83
  msgstr "Style CSS"
84
 
85
- #: classes/wp-maintenance.php:400
86
  msgid "Choose This Image"
87
  msgstr "Choisir cette image"
88
 
89
- #: classes/wp-maintenance.php:401
90
  msgid "Choose Image"
91
  msgstr "Choisir une image"
92
 
93
- #: classes/wp-maintenance.php:417 classes/wp-maintenance.php:425
94
- #: classes/wp-maintenance.php:433 classes/wp-maintenance.php:442
95
- #: classes/wp-maintenance.php:451 classes/wp-maintenance.php:460
96
  msgid "You do not have sufficient privileges to access this page."
97
  msgstr ""
98
  "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
99
 
100
- #: classes/wp-maintenance.php:543
101
  msgid "Please upload a valid .json file"
102
  msgstr "Veuillez téléverser un fichier .json valide"
103
 
104
- #: classes/wp-maintenance.php:549
105
  msgid "Please upload a file to import"
106
  msgstr "Veuillez téléverser un fichier à importer"
107
 
108
- #: classes/wp-maintenance.php:559
109
  msgid "New settings imported successfully!"
110
  msgstr "Nouveaux paramètres importés avec succès."
111
 
112
- #: classes/wp-maintenance.php:755
113
  msgid "Dashboard"
114
  msgstr "Tableau de bord"
115
 
116
- #: includes/functions.php:25
117
  msgid "Options saved."
118
  msgstr "Options sauvegardées."
119
 
120
- #: includes/functions.php:57
121
  msgid "Go to Generals options"
122
  msgstr "Aller aux options générales"
123
 
124
- #: includes/functions.php:62
125
  msgid "Go to Colors and Fonts options"
126
  msgstr "Aller aux options de couleurs et polices"
127
 
128
- #: includes/functions.php:67
129
  msgid "Go to Pictures options"
130
  msgstr "Aller aux options des images"
131
 
132
- #: includes/functions.php:72
133
  msgid "Go to Countdown options"
134
  msgstr "Aller aux options du compte à rebours"
135
 
136
- #: includes/functions.php:77
137
  msgid "Go to CSS options"
138
  msgstr "Aller aux options de la feuille de style CSS"
139
 
140
- #: includes/functions.php:82
141
  msgid "Go to Settings options"
142
  msgstr "Aller aux paramètrages"
143
 
144
- #: includes/functions.php:136
145
  msgid "ABOUT"
146
  msgstr "A PROPOS"
147
 
148
- #: includes/functions.php:138
149
  msgid ""
150
  "This plugin has been developed for you for free by <a href=\"https://"
151
  "restezconnectes.fr\" target=\"_blank\">Florent Maillefaud</a>. It is royalty "
@@ -156,196 +172,200 @@ msgstr ""
156
  "Elle est libre de droits, vous pouvez la prendre, la modifier, la distribuer "
157
  "comme bon vous semble."
158
 
159
- #: includes/functions.php:139
160
  msgid "Visit"
161
  msgstr "Visitez"
162
 
163
- #: includes/functions.php:139
164
  msgid ""
165
  "try the demo of the plugin, talk about this plugin to your surroundings!"
166
  msgstr "essayez la démo de cette extension et parlez-en à votre entourage !"
167
 
168
- #: includes/functions.php:141
169
  msgid "Support this extension and my other developments (French Paypal):"
170
  msgstr "Soutenez cette extension et mes autres développements (PayPal) :"
171
 
172
- #: includes/functions.php:153
173
  msgid "DISCOVER"
174
  msgstr "DÉCOUVRIR"
175
 
176
  #. Plugin Name of the plugin/theme
177
- #: includes/functions.php:174
178
  msgid "WP Maintenance"
179
  msgstr "WP Maintenance"
180
 
181
- #: includes/functions.php:174
182
  msgid "is brought to you by"
183
  msgstr "vous est proposé par"
184
 
185
- #: includes/functions.php:174
186
  msgid "If you found this plugin useful"
187
  msgstr "Si vous avez trouvé cette extension utile"
188
 
189
- #: includes/functions.php:174
190
  msgid "give it 5 &#9733; on WordPress.org"
191
  msgstr "donnez-lui 5 &#9733; sur WordPress.org"
192
 
193
- #: views/wp-maintenance-colors.php:51
194
  msgid "Choice general colors:"
195
  msgstr "Choix des couleurs générales :"
196
 
197
- #: views/wp-maintenance-colors.php:52
198
  msgid "Background page color:"
199
  msgstr "Couleur du fond de page :"
200
 
201
- #: views/wp-maintenance-colors.php:53
202
  msgid "Header color:"
203
  msgstr "Couleur d'entête :"
204
 
205
- #: views/wp-maintenance-colors.php:56
206
  msgid "Choice texts fonts and colors:"
207
  msgstr "Choix des polices et couleurs des textes :"
208
 
209
- #: views/wp-maintenance-colors.php:57
210
  msgid "Text color:"
211
  msgstr "Couleur du texte :"
212
 
213
- #: views/wp-maintenance-colors.php:59
214
  msgid "Title font settings"
215
  msgstr "Paramètres de la police du titre"
216
 
217
- #: views/wp-maintenance-colors.php:66 views/wp-maintenance-colors.php:89
218
- #: views/wp-maintenance-colors.php:143 views/wp-maintenance-colors.php:164
219
- #: views/wp-maintenance-colors.php:198
220
  msgid "Size:"
221
  msgstr "Taille :"
222
 
223
- #: views/wp-maintenance-colors.php:82 views/wp-maintenance-colors.php:157
224
- msgid "Text font settings"
225
- msgstr "Paramètres de la police du texte"
226
-
227
- #: views/wp-maintenance-colors.php:107
228
- msgid "Activate Frame"
229
- msgstr "Activer le cadre"
230
-
231
- #: views/wp-maintenance-colors.php:111 views/wp-maintenance-countdown.php:58
232
  #: views/wp-maintenance-countdown.php:96 views/wp-maintenance-countdown.php:108
233
- #: views/wp-maintenance-css.php:57 views/wp-maintenance-dashboard.php:64
234
  #: views/wp-maintenance-dashboard.php:124
235
  #: views/wp-maintenance-dashboard.php:148
236
  #: views/wp-maintenance-dashboard.php:171
237
- #: views/wp-maintenance-dashboard.php:242
238
- #: views/wp-maintenance-dashboard.php:259 views/wp-maintenance-picture.php:91
239
  #: views/wp-maintenance-picture.php:152 views/wp-maintenance-picture.php:184
240
  #: views/wp-maintenance-picture.php:191 views/wp-maintenance-settings.php:69
241
  #: views/wp-maintenance-settings.php:89 views/wp-maintenance-settings.php:104
242
  msgid "Yes"
243
  msgstr "Oui"
244
 
245
- #: views/wp-maintenance-colors.php:113 views/wp-maintenance-countdown.php:60
 
 
 
 
246
  #: views/wp-maintenance-countdown.php:98 views/wp-maintenance-countdown.php:110
247
- #: views/wp-maintenance-css.php:59 views/wp-maintenance-dashboard.php:66
248
  #: views/wp-maintenance-dashboard.php:126
249
  #: views/wp-maintenance-dashboard.php:150
250
  #: views/wp-maintenance-dashboard.php:173
251
- #: views/wp-maintenance-dashboard.php:244
252
- #: views/wp-maintenance-dashboard.php:261 views/wp-maintenance-picture.php:93
253
  #: views/wp-maintenance-picture.php:154 views/wp-maintenance-picture.php:186
254
  #: views/wp-maintenance-picture.php:193 views/wp-maintenance-settings.php:71
255
  #: views/wp-maintenance-settings.php:91 views/wp-maintenance-settings.php:106
256
  msgid "No"
257
  msgstr "Non"
258
 
259
- #: views/wp-maintenance-colors.php:120
 
 
 
 
 
 
 
 
260
  msgid "Color:"
261
  msgstr "Couleur :"
262
 
263
- #: views/wp-maintenance-colors.php:121
264
  msgid "Opacity:"
265
  msgstr "Opacité :"
266
 
267
- #: views/wp-maintenance-colors.php:123 views/wp-maintenance-picture.php:176
268
  msgid "Width:"
269
  msgstr "Largeur :"
270
 
271
- #: views/wp-maintenance-colors.php:131
272
  msgid "Choice countdown fonts and colors:"
273
  msgstr "Choix des polices et couleurs du compte à rebours :"
274
 
275
- #: views/wp-maintenance-colors.php:132
276
  msgid "Countdown text color:"
277
  msgstr "Couleur du texte du compteur :"
278
 
279
- #: views/wp-maintenance-colors.php:133
280
  msgid "Countdown background color:"
281
  msgstr "Couleur du fond du compteur :"
282
 
283
- #: views/wp-maintenance-colors.php:136
284
  msgid "Countdown font settings"
285
  msgstr "Paramètres de la police du compte à rebours"
286
 
287
- #: views/wp-maintenance-colors.php:152
288
  msgid "Choice fonts and colors bottom page:"
289
  msgstr "Choix des polices et couleurs du bas de page :"
290
 
291
- #: views/wp-maintenance-colors.php:153
292
  msgid "Bottom color:"
293
  msgstr "Couleur du fond :"
294
 
295
- #: views/wp-maintenance-colors.php:154
296
  msgid "Text bottom color:"
297
  msgstr "Couleur du texte :"
298
 
299
- #: views/wp-maintenance-colors.php:181
300
  msgid "Choice form color:"
301
  msgstr "Choisir les couleurs du formulaire :"
302
 
303
- #: views/wp-maintenance-colors.php:212
304
  msgid "Field text color:"
305
  msgstr "Couleur du texte dans les champs :"
306
 
307
- #: views/wp-maintenance-colors.php:214
308
  msgid "Field border color:"
309
  msgstr "Couleur de bordure des champs :"
310
 
311
- #: views/wp-maintenance-colors.php:216
312
  msgid "Field background color:"
313
  msgstr "Couleur de fond des champs :"
314
 
315
- #: views/wp-maintenance-colors.php:219
316
  msgid "Button text color:"
317
  msgstr "Couleur du texte dans le bouton :"
318
 
319
- #: views/wp-maintenance-colors.php:222
320
  msgid "Button color:"
321
  msgstr "Couleur du bouton :"
322
 
323
- #: views/wp-maintenance-colors.php:225
324
  msgid "Button color hover:"
325
  msgstr "Couleur du bouton au survol :"
326
 
327
- #: views/wp-maintenance-colors.php:227
328
  msgid "Button color onclick:"
329
  msgstr "Couleur du bouton au click :"
330
 
331
- #: views/wp-maintenance-colors.php:231
332
  #, php-format
333
  msgid "Enable %s to customize the forms"
334
  msgstr "Activer %s pour personnaliser les formulaires"
335
 
336
- #: views/wp-maintenance-colors.php:231
337
  msgid "newsletter option"
338
  msgstr "options de newsletter"
339
 
340
- #: views/wp-maintenance-colors.php:235
341
  msgid "Enable Mailpoet or MailChimp extensions to customize the forms"
342
  msgstr ""
343
  "Activer les extensions Mailpoet ou MailChimp personnaliser les formulaires"
344
 
345
- #: views/wp-maintenance-countdown.php:24
346
- msgid "Countdown"
347
- msgstr "Compte à rebours"
348
-
349
  #: views/wp-maintenance-countdown.php:50
350
  msgid "Enable a countdown ?"
351
  msgstr "Activer le compte à rebours ?"
@@ -479,7 +499,7 @@ msgstr "Sélectionner un mois"
479
  msgid "Select a year"
480
  msgstr "Sélectionner une année"
481
 
482
- #: views/wp-maintenance-css.php:45
483
  msgid ""
484
  "Edit the CSS sheet of your maintenance page here. Click \"Reset\" and \"Save"
485
  "\" to retrieve the default style sheet."
@@ -487,43 +507,43 @@ msgstr ""
487
  "Editer le code CSS de votre page de maintenance ici. Cliquez sur "
488
  "\"Réinitialiser\" et \"Sauvegarder\" pour remettre le style par défaut."
489
 
490
- #: views/wp-maintenance-css.php:53
491
  msgid "Reset default CSS stylesheet ?"
492
  msgstr "Réinitialiser la feuille de style ?"
493
 
494
- #: views/wp-maintenance-css.php:68
495
  msgid "Markers for colors"
496
  msgstr "Marqueurs pour les couleurs"
497
 
498
- #: views/wp-maintenance-css.php:73
499
  msgid "Use this code for text color"
500
  msgstr "Utiliser ce code pour la couleur du texte"
501
 
502
- #: views/wp-maintenance-css.php:77
503
  msgid "Use this code for background text color"
504
  msgstr "Utiliser ce code pour la couleur de fond du texte"
505
 
506
- #: views/wp-maintenance-css.php:81
507
  msgid "Use this code for background color countdown"
508
  msgstr "Utiliser ce code pour la couleur du fond du compte à rebours"
509
 
510
- #: views/wp-maintenance-css.php:85
511
  msgid "Use this code for size countdown"
512
  msgstr "Utiliser ce code pour la taille du compte à rebours"
513
 
514
- #: views/wp-maintenance-css.php:89
515
  msgid "Use this code for countdown color"
516
  msgstr "Utiliser ce code pour la couleur du texte du compte à rebours"
517
 
518
- #: views/wp-maintenance-css.php:94
519
  msgid "Need CSS code for MailPoet plugin?"
520
  msgstr "Besoin de code CSS pour le plugin MailPoet ?"
521
 
522
- #: views/wp-maintenance-css.php:95 views/wp-maintenance-css.php:110
523
  msgid "Click for select all"
524
  msgstr "Cliquez pour tout sélectionner"
525
 
526
- #: views/wp-maintenance-css.php:109
527
  msgid "Need CSS code for MailChimp plugin?"
528
  msgstr "Besoin de code CSS pour le plugin MailChimp ?"
529
 
@@ -596,60 +616,64 @@ msgid "Drad and drop the lines to put in the order you want:"
596
  msgstr ""
597
  "Cliquez et glisser les lignes pour mettre dans l'ordre que vous souhaitez :"
598
 
599
- #: views/wp-maintenance-dashboard.php:211
600
  msgid "Choose icons size:"
601
  msgstr "Choisissez la taille des icônes :"
602
 
603
- #: views/wp-maintenance-dashboard.php:222 views/wp-maintenance-picture.php:199
 
 
 
 
604
  msgid "Position:"
605
  msgstr "Position :"
606
 
607
- #: views/wp-maintenance-dashboard.php:224
608
  msgid "Top"
609
  msgstr "Haut"
610
 
611
- #: views/wp-maintenance-dashboard.php:225
612
  msgid "Bottom"
613
  msgstr "Bas"
614
 
615
- #: views/wp-maintenance-dashboard.php:228
616
  msgid "Align:"
617
  msgstr "Alignement :"
618
 
619
- #: views/wp-maintenance-dashboard.php:230
620
  msgid "Left"
621
  msgstr "Gauche"
622
 
623
- #: views/wp-maintenance-dashboard.php:231
624
  msgid "Center"
625
  msgstr "Centre"
626
 
627
- #: views/wp-maintenance-dashboard.php:232
628
  msgid "Right"
629
  msgstr "Droite"
630
 
631
- #: views/wp-maintenance-dashboard.php:235
632
  msgid "You have your own icons? Enter the folder name of your theme here:"
633
  msgstr ""
634
  "Vous avez vos propres icônes ? Entrez le nom du dossier de votre thème ici :"
635
 
636
- #: views/wp-maintenance-dashboard.php:238
637
  msgid "Reset Social Icon?"
638
  msgstr "Réinitialiser les icônes des réseaux sociaux ?"
639
 
640
- #: views/wp-maintenance-dashboard.php:255
641
  msgid "Enable Newletter:"
642
  msgstr "Activer l'encart de newletter :"
643
 
644
- #: views/wp-maintenance-dashboard.php:269
645
  msgid "Enter title for the newletter block:"
646
  msgstr "Entrez un titre pour l'encart de la newsletter :"
647
 
648
- #: views/wp-maintenance-dashboard.php:271
649
  msgid "Enter your newletter shortcode here:"
650
  msgstr "Entrez le Shortcode de la newletter ici :"
651
 
652
- #: views/wp-maintenance-dashboard.php:273
653
  msgid "Or enter your newletter iframe code here:"
654
  msgstr "Ou entrez le code iframe de la newsletter ici :"
655
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Maintenance\n"
4
+ "POT-Creation-Date: 2017-11-09 16:23+0100\n"
5
+ "PO-Revision-Date: 2017-11-09 16:26+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: classes/countdown.php:35
25
  msgid "Days"
26
  msgstr "Jours"
27
 
28
+ #: classes/countdown.php:35
29
  msgid "Hours"
30
  msgstr "Heures"
31
 
32
+ #: classes/countdown.php:35
33
  msgid "Minutes"
34
  msgstr "Minutes"
35
 
36
+ #: classes/countdown.php:37
37
  msgid "Seconds"
38
  msgstr "Secondes"
39
 
40
+ #: classes/slider.php:99
41
  msgid "Previous"
42
  msgstr "Précédent"
43
 
44
+ #: classes/slider.php:100
45
  msgid "Next"
46
  msgstr "Suivant"
47
 
48
+ #: classes/wp-maintenance.php:50 classes/wp-maintenance.php:348
49
  msgid "This site is down for maintenance"
50
  msgstr "Ce site est fermé pour maintenance"
51
 
52
+ #: classes/wp-maintenance.php:51 classes/wp-maintenance.php:349
53
  msgid "Come back quickly!"
54
  msgstr "Nous revenons rapidement !"
55
 
56
+ #: classes/wp-maintenance.php:158 classes/wp-maintenance.php:282
57
+ #: classes/wp-maintenance.php:333 views/wp-maintenance-settings.php:57
58
  msgid "Settings"
59
  msgstr "Réglages"
60
 
61
+ #: classes/wp-maintenance.php:222
62
+ msgid "Maintenance mode disable!"
63
+ msgstr "Maintenance désactivé !"
64
+
65
+ #: classes/wp-maintenance.php:225
66
  msgid "Maintenance mode activated!"
67
  msgstr "Maintenance activée !"
68
 
69
+ #: classes/wp-maintenance.php:242
70
+ msgid "Colors"
71
+ msgstr "Couleurs"
72
+
73
+ #: classes/wp-maintenance.php:252 classes/wp-maintenance.php:327
74
+ msgid "Pictures"
75
+ msgstr "Images"
76
+
77
+ #: classes/wp-maintenance.php:262 views/wp-maintenance-countdown.php:24
78
+ msgid "Countdown"
79
+ msgstr "Compte à rebours"
80
+
81
+ #: classes/wp-maintenance.php:272
82
+ msgid "CSS"
83
+ msgstr "CSS"
84
+
85
+ #: classes/wp-maintenance.php:323 views/wp-maintenance-dashboard.php:53
86
  msgid "General"
87
  msgstr "Général"
88
 
89
+ #: classes/wp-maintenance.php:325 views/wp-maintenance-colors.php:41
90
  msgid "Colors & Fonts"
91
  msgstr "Coleurs & Polices"
92
 
93
+ #: classes/wp-maintenance.php:329
 
 
 
 
94
  msgid "CountDown"
95
  msgstr "Compte à rebours"
96
 
97
+ #: classes/wp-maintenance.php:331 views/wp-maintenance-css.php:36
98
  msgid "CSS Style"
99
  msgstr "Style CSS"
100
 
101
+ #: classes/wp-maintenance.php:475
102
  msgid "Choose This Image"
103
  msgstr "Choisir cette image"
104
 
105
+ #: classes/wp-maintenance.php:476
106
  msgid "Choose Image"
107
  msgstr "Choisir une image"
108
 
109
+ #: classes/wp-maintenance.php:492 classes/wp-maintenance.php:500
110
+ #: classes/wp-maintenance.php:508 classes/wp-maintenance.php:517
111
+ #: classes/wp-maintenance.php:526 classes/wp-maintenance.php:535
112
  msgid "You do not have sufficient privileges to access this page."
113
  msgstr ""
114
  "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
115
 
116
+ #: classes/wp-maintenance.php:618
117
  msgid "Please upload a valid .json file"
118
  msgstr "Veuillez téléverser un fichier .json valide"
119
 
120
+ #: classes/wp-maintenance.php:624
121
  msgid "Please upload a file to import"
122
  msgstr "Veuillez téléverser un fichier à importer"
123
 
124
+ #: classes/wp-maintenance.php:634
125
  msgid "New settings imported successfully!"
126
  msgstr "Nouveaux paramètres importés avec succès."
127
 
128
+ #: classes/wp-maintenance.php:830
129
  msgid "Dashboard"
130
  msgstr "Tableau de bord"
131
 
132
+ #: includes/functions.php:24
133
  msgid "Options saved."
134
  msgstr "Options sauvegardées."
135
 
136
+ #: includes/functions.php:55
137
  msgid "Go to Generals options"
138
  msgstr "Aller aux options générales"
139
 
140
+ #: includes/functions.php:60
141
  msgid "Go to Colors and Fonts options"
142
  msgstr "Aller aux options de couleurs et polices"
143
 
144
+ #: includes/functions.php:65
145
  msgid "Go to Pictures options"
146
  msgstr "Aller aux options des images"
147
 
148
+ #: includes/functions.php:70
149
  msgid "Go to Countdown options"
150
  msgstr "Aller aux options du compte à rebours"
151
 
152
+ #: includes/functions.php:75
153
  msgid "Go to CSS options"
154
  msgstr "Aller aux options de la feuille de style CSS"
155
 
156
+ #: includes/functions.php:80
157
  msgid "Go to Settings options"
158
  msgstr "Aller aux paramètrages"
159
 
160
+ #: includes/functions.php:134
161
  msgid "ABOUT"
162
  msgstr "A PROPOS"
163
 
164
+ #: includes/functions.php:136
165
  msgid ""
166
  "This plugin has been developed for you for free by <a href=\"https://"
167
  "restezconnectes.fr\" target=\"_blank\">Florent Maillefaud</a>. It is royalty "
172
  "Elle est libre de droits, vous pouvez la prendre, la modifier, la distribuer "
173
  "comme bon vous semble."
174
 
175
+ #: includes/functions.php:137
176
  msgid "Visit"
177
  msgstr "Visitez"
178
 
179
+ #: includes/functions.php:137
180
  msgid ""
181
  "try the demo of the plugin, talk about this plugin to your surroundings!"
182
  msgstr "essayez la démo de cette extension et parlez-en à votre entourage !"
183
 
184
+ #: includes/functions.php:139
185
  msgid "Support this extension and my other developments (French Paypal):"
186
  msgstr "Soutenez cette extension et mes autres développements (PayPal) :"
187
 
188
+ #: includes/functions.php:151
189
  msgid "DISCOVER"
190
  msgstr "DÉCOUVRIR"
191
 
192
  #. Plugin Name of the plugin/theme
193
+ #: includes/functions.php:172
194
  msgid "WP Maintenance"
195
  msgstr "WP Maintenance"
196
 
197
+ #: includes/functions.php:172
198
  msgid "is brought to you by"
199
  msgstr "vous est proposé par"
200
 
201
+ #: includes/functions.php:172
202
  msgid "If you found this plugin useful"
203
  msgstr "Si vous avez trouvé cette extension utile"
204
 
205
+ #: includes/functions.php:172
206
  msgid "give it 5 &#9733; on WordPress.org"
207
  msgstr "donnez-lui 5 &#9733; sur WordPress.org"
208
 
209
+ #: views/wp-maintenance-colors.php:49
210
  msgid "Choice general colors:"
211
  msgstr "Choix des couleurs générales :"
212
 
213
+ #: views/wp-maintenance-colors.php:50
214
  msgid "Background page color:"
215
  msgstr "Couleur du fond de page :"
216
 
217
+ #: views/wp-maintenance-colors.php:51
218
  msgid "Header color:"
219
  msgstr "Couleur d'entête :"
220
 
221
+ #: views/wp-maintenance-colors.php:54
222
  msgid "Choice texts fonts and colors:"
223
  msgstr "Choix des polices et couleurs des textes :"
224
 
225
+ #: views/wp-maintenance-colors.php:55
226
  msgid "Text color:"
227
  msgstr "Couleur du texte :"
228
 
229
+ #: views/wp-maintenance-colors.php:57
230
  msgid "Title font settings"
231
  msgstr "Paramètres de la police du titre"
232
 
233
+ #: views/wp-maintenance-colors.php:64 views/wp-maintenance-colors.php:102
234
+ #: views/wp-maintenance-colors.php:171 views/wp-maintenance-colors.php:192
235
+ #: views/wp-maintenance-colors.php:243
236
  msgid "Size:"
237
  msgstr "Taille :"
238
 
239
+ #: views/wp-maintenance-colors.php:76 views/wp-maintenance-colors.php:85
240
+ #: views/wp-maintenance-colors.php:114 views/wp-maintenance-colors.php:123
241
+ #: views/wp-maintenance-colors.php:139 views/wp-maintenance-colors.php:204
242
+ #: views/wp-maintenance-colors.php:213 views/wp-maintenance-colors.php:255
243
+ #: views/wp-maintenance-colors.php:264 views/wp-maintenance-countdown.php:58
 
 
 
 
244
  #: views/wp-maintenance-countdown.php:96 views/wp-maintenance-countdown.php:108
245
+ #: views/wp-maintenance-css.php:56 views/wp-maintenance-dashboard.php:64
246
  #: views/wp-maintenance-dashboard.php:124
247
  #: views/wp-maintenance-dashboard.php:148
248
  #: views/wp-maintenance-dashboard.php:171
249
+ #: views/wp-maintenance-dashboard.php:256
250
+ #: views/wp-maintenance-dashboard.php:273 views/wp-maintenance-picture.php:91
251
  #: views/wp-maintenance-picture.php:152 views/wp-maintenance-picture.php:184
252
  #: views/wp-maintenance-picture.php:191 views/wp-maintenance-settings.php:69
253
  #: views/wp-maintenance-settings.php:89 views/wp-maintenance-settings.php:104
254
  msgid "Yes"
255
  msgstr "Oui"
256
 
257
+ #: views/wp-maintenance-colors.php:78 views/wp-maintenance-colors.php:87
258
+ #: views/wp-maintenance-colors.php:116 views/wp-maintenance-colors.php:125
259
+ #: views/wp-maintenance-colors.php:141 views/wp-maintenance-colors.php:206
260
+ #: views/wp-maintenance-colors.php:215 views/wp-maintenance-colors.php:257
261
+ #: views/wp-maintenance-colors.php:266 views/wp-maintenance-countdown.php:60
262
  #: views/wp-maintenance-countdown.php:98 views/wp-maintenance-countdown.php:110
263
+ #: views/wp-maintenance-css.php:58 views/wp-maintenance-dashboard.php:66
264
  #: views/wp-maintenance-dashboard.php:126
265
  #: views/wp-maintenance-dashboard.php:150
266
  #: views/wp-maintenance-dashboard.php:173
267
+ #: views/wp-maintenance-dashboard.php:258
268
+ #: views/wp-maintenance-dashboard.php:275 views/wp-maintenance-picture.php:93
269
  #: views/wp-maintenance-picture.php:154 views/wp-maintenance-picture.php:186
270
  #: views/wp-maintenance-picture.php:193 views/wp-maintenance-settings.php:71
271
  #: views/wp-maintenance-settings.php:91 views/wp-maintenance-settings.php:106
272
  msgid "No"
273
  msgstr "Non"
274
 
275
+ #: views/wp-maintenance-colors.php:95 views/wp-maintenance-colors.php:185
276
+ msgid "Text font settings"
277
+ msgstr "Paramètres de la police du texte"
278
+
279
+ #: views/wp-maintenance-colors.php:135
280
+ msgid "Activate Frame"
281
+ msgstr "Activer le cadre"
282
+
283
+ #: views/wp-maintenance-colors.php:148
284
  msgid "Color:"
285
  msgstr "Couleur :"
286
 
287
+ #: views/wp-maintenance-colors.php:149
288
  msgid "Opacity:"
289
  msgstr "Opacité :"
290
 
291
+ #: views/wp-maintenance-colors.php:151 views/wp-maintenance-picture.php:176
292
  msgid "Width:"
293
  msgstr "Largeur :"
294
 
295
+ #: views/wp-maintenance-colors.php:159
296
  msgid "Choice countdown fonts and colors:"
297
  msgstr "Choix des polices et couleurs du compte à rebours :"
298
 
299
+ #: views/wp-maintenance-colors.php:160
300
  msgid "Countdown text color:"
301
  msgstr "Couleur du texte du compteur :"
302
 
303
+ #: views/wp-maintenance-colors.php:161
304
  msgid "Countdown background color:"
305
  msgstr "Couleur du fond du compteur :"
306
 
307
+ #: views/wp-maintenance-colors.php:164
308
  msgid "Countdown font settings"
309
  msgstr "Paramètres de la police du compte à rebours"
310
 
311
+ #: views/wp-maintenance-colors.php:180
312
  msgid "Choice fonts and colors bottom page:"
313
  msgstr "Choix des polices et couleurs du bas de page :"
314
 
315
+ #: views/wp-maintenance-colors.php:181
316
  msgid "Bottom color:"
317
  msgstr "Couleur du fond :"
318
 
319
+ #: views/wp-maintenance-colors.php:182
320
  msgid "Text bottom color:"
321
  msgstr "Couleur du texte :"
322
 
323
+ #: views/wp-maintenance-colors.php:224
324
  msgid "Choice form color:"
325
  msgstr "Choisir les couleurs du formulaire :"
326
 
327
+ #: views/wp-maintenance-colors.php:275
328
  msgid "Field text color:"
329
  msgstr "Couleur du texte dans les champs :"
330
 
331
+ #: views/wp-maintenance-colors.php:277
332
  msgid "Field border color:"
333
  msgstr "Couleur de bordure des champs :"
334
 
335
+ #: views/wp-maintenance-colors.php:279
336
  msgid "Field background color:"
337
  msgstr "Couleur de fond des champs :"
338
 
339
+ #: views/wp-maintenance-colors.php:280
340
  msgid "Button text color:"
341
  msgstr "Couleur du texte dans le bouton :"
342
 
343
+ #: views/wp-maintenance-colors.php:284
344
  msgid "Button color:"
345
  msgstr "Couleur du bouton :"
346
 
347
+ #: views/wp-maintenance-colors.php:287
348
  msgid "Button color hover:"
349
  msgstr "Couleur du bouton au survol :"
350
 
351
+ #: views/wp-maintenance-colors.php:289
352
  msgid "Button color onclick:"
353
  msgstr "Couleur du bouton au click :"
354
 
355
+ #: views/wp-maintenance-colors.php:296
356
  #, php-format
357
  msgid "Enable %s to customize the forms"
358
  msgstr "Activer %s pour personnaliser les formulaires"
359
 
360
+ #: views/wp-maintenance-colors.php:296
361
  msgid "newsletter option"
362
  msgstr "options de newsletter"
363
 
364
+ #: views/wp-maintenance-colors.php:300
365
  msgid "Enable Mailpoet or MailChimp extensions to customize the forms"
366
  msgstr ""
367
  "Activer les extensions Mailpoet ou MailChimp personnaliser les formulaires"
368
 
 
 
 
 
369
  #: views/wp-maintenance-countdown.php:50
370
  msgid "Enable a countdown ?"
371
  msgstr "Activer le compte à rebours ?"
499
  msgid "Select a year"
500
  msgstr "Sélectionner une année"
501
 
502
+ #: views/wp-maintenance-css.php:44
503
  msgid ""
504
  "Edit the CSS sheet of your maintenance page here. Click \"Reset\" and \"Save"
505
  "\" to retrieve the default style sheet."
507
  "Editer le code CSS de votre page de maintenance ici. Cliquez sur "
508
  "\"Réinitialiser\" et \"Sauvegarder\" pour remettre le style par défaut."
509
 
510
+ #: views/wp-maintenance-css.php:52
511
  msgid "Reset default CSS stylesheet ?"
512
  msgstr "Réinitialiser la feuille de style ?"
513
 
514
+ #: views/wp-maintenance-css.php:67
515
  msgid "Markers for colors"
516
  msgstr "Marqueurs pour les couleurs"
517
 
518
+ #: views/wp-maintenance-css.php:72
519
  msgid "Use this code for text color"
520
  msgstr "Utiliser ce code pour la couleur du texte"
521
 
522
+ #: views/wp-maintenance-css.php:76
523
  msgid "Use this code for background text color"
524
  msgstr "Utiliser ce code pour la couleur de fond du texte"
525
 
526
+ #: views/wp-maintenance-css.php:80
527
  msgid "Use this code for background color countdown"
528
  msgstr "Utiliser ce code pour la couleur du fond du compte à rebours"
529
 
530
+ #: views/wp-maintenance-css.php:84
531
  msgid "Use this code for size countdown"
532
  msgstr "Utiliser ce code pour la taille du compte à rebours"
533
 
534
+ #: views/wp-maintenance-css.php:88
535
  msgid "Use this code for countdown color"
536
  msgstr "Utiliser ce code pour la couleur du texte du compte à rebours"
537
 
538
+ #: views/wp-maintenance-css.php:93
539
  msgid "Need CSS code for MailPoet plugin?"
540
  msgstr "Besoin de code CSS pour le plugin MailPoet ?"
541
 
542
+ #: views/wp-maintenance-css.php:94 views/wp-maintenance-css.php:109
543
  msgid "Click for select all"
544
  msgstr "Cliquez pour tout sélectionner"
545
 
546
+ #: views/wp-maintenance-css.php:108
547
  msgid "Need CSS code for MailChimp plugin?"
548
  msgstr "Besoin de code CSS pour le plugin MailChimp ?"
549
 
616
  msgstr ""
617
  "Cliquez et glisser les lignes pour mettre dans l'ordre que vous souhaitez :"
618
 
619
+ #: views/wp-maintenance-dashboard.php:213
620
  msgid "Choose icons size:"
621
  msgstr "Choisissez la taille des icônes :"
622
 
623
+ #: views/wp-maintenance-dashboard.php:224
624
+ msgid "Choose icons style:"
625
+ msgstr "Choisissez le style des icônes :"
626
+
627
+ #: views/wp-maintenance-dashboard.php:236 views/wp-maintenance-picture.php:199
628
  msgid "Position:"
629
  msgstr "Position :"
630
 
631
+ #: views/wp-maintenance-dashboard.php:238
632
  msgid "Top"
633
  msgstr "Haut"
634
 
635
+ #: views/wp-maintenance-dashboard.php:239
636
  msgid "Bottom"
637
  msgstr "Bas"
638
 
639
+ #: views/wp-maintenance-dashboard.php:242
640
  msgid "Align:"
641
  msgstr "Alignement :"
642
 
643
+ #: views/wp-maintenance-dashboard.php:244
644
  msgid "Left"
645
  msgstr "Gauche"
646
 
647
+ #: views/wp-maintenance-dashboard.php:245
648
  msgid "Center"
649
  msgstr "Centre"
650
 
651
+ #: views/wp-maintenance-dashboard.php:246
652
  msgid "Right"
653
  msgstr "Droite"
654
 
655
+ #: views/wp-maintenance-dashboard.php:249
656
  msgid "You have your own icons? Enter the folder name of your theme here:"
657
  msgstr ""
658
  "Vous avez vos propres icônes ? Entrez le nom du dossier de votre thème ici :"
659
 
660
+ #: views/wp-maintenance-dashboard.php:252
661
  msgid "Reset Social Icon?"
662
  msgstr "Réinitialiser les icônes des réseaux sociaux ?"
663
 
664
+ #: views/wp-maintenance-dashboard.php:269
665
  msgid "Enable Newletter:"
666
  msgstr "Activer l'encart de newletter :"
667
 
668
+ #: views/wp-maintenance-dashboard.php:283
669
  msgid "Enter title for the newletter block:"
670
  msgstr "Entrez un titre pour l'encart de la newsletter :"
671
 
672
+ #: views/wp-maintenance-dashboard.php:285
673
  msgid "Enter your newletter shortcode here:"
674
  msgstr "Entrez le Shortcode de la newletter ici :"
675
 
676
+ #: views/wp-maintenance-dashboard.php:287
677
  msgid "Or enter your newletter iframe code here:"
678
  msgstr "Ou entrez le code iframe de la newsletter ici :"
679
 
languages/wp-maintenance.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WP Maintenance\n"
5
- "POT-Creation-Date: 2017-08-09 10:06+0200\n"
6
  "PO-Revision-Date: 2015-03-19 11:19+0100\n"
7
  "Last-Translator: Florent Maillefaud <contact@restezconnectes.fr>\n"
8
  "Language-Team: Florent Maillefaud <contact@restezconnectes.fr>\n"
@@ -10,331 +10,351 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.0.3\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "Plural-Forms: nplurals=2; plural=n>1;\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: classes/countdown.php:34
21
  msgid "Days"
22
  msgstr ""
23
 
24
- #: classes/countdown.php:34
25
  msgid "Hours"
26
  msgstr ""
27
 
28
- #: classes/countdown.php:34
29
  msgid "Minutes"
30
  msgstr ""
31
 
32
- #: classes/countdown.php:36
33
  msgid "Seconds"
34
  msgstr ""
35
 
36
- #: classes/slider.php:90
37
  msgid "Previous"
38
  msgstr ""
39
 
40
- #: classes/slider.php:91
41
  msgid "Next"
42
  msgstr ""
43
 
44
- #: classes/wp-maintenance.php:45 classes/wp-maintenance.php:280
45
  msgid "This site is down for maintenance"
46
  msgstr ""
47
 
48
- #: classes/wp-maintenance.php:46 classes/wp-maintenance.php:281
49
  msgid "Come back quickly!"
50
  msgstr ""
51
 
52
- #: classes/wp-maintenance.php:154 classes/wp-maintenance.php:270
53
- #: views/wp-maintenance-settings.php:57
54
  msgid "Settings"
55
  msgstr ""
56
 
57
- #: classes/wp-maintenance.php:213
58
- msgid "Maintenance mode activated!"
59
  msgstr ""
60
 
61
- #: classes/wp-maintenance.php:260 views/wp-maintenance-dashboard.php:53
62
- msgid "General"
63
  msgstr ""
64
 
65
- #: classes/wp-maintenance.php:262 views/wp-maintenance-colors.php:41
66
- msgid "Colors & Fonts"
67
  msgstr ""
68
 
69
- #: classes/wp-maintenance.php:264
70
  msgid "Pictures"
71
  msgstr ""
72
 
73
- #: classes/wp-maintenance.php:266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  msgid "CountDown"
75
  msgstr ""
76
 
77
- #: classes/wp-maintenance.php:268 views/wp-maintenance-css.php:36
78
  msgid "CSS Style"
79
  msgstr ""
80
 
81
- #: classes/wp-maintenance.php:400
82
  msgid "Choose This Image"
83
  msgstr ""
84
 
85
- #: classes/wp-maintenance.php:401
86
  msgid "Choose Image"
87
  msgstr ""
88
 
89
- #: classes/wp-maintenance.php:417 classes/wp-maintenance.php:425
90
- #: classes/wp-maintenance.php:433 classes/wp-maintenance.php:442
91
- #: classes/wp-maintenance.php:451 classes/wp-maintenance.php:460
92
  msgid "You do not have sufficient privileges to access this page."
93
  msgstr ""
94
 
95
- #: classes/wp-maintenance.php:543
96
  msgid "Please upload a valid .json file"
97
  msgstr ""
98
 
99
- #: classes/wp-maintenance.php:549
100
  msgid "Please upload a file to import"
101
  msgstr ""
102
 
103
- #: classes/wp-maintenance.php:559
104
  msgid "New settings imported successfully!"
105
  msgstr ""
106
 
107
- #: classes/wp-maintenance.php:755
108
  msgid "Dashboard"
109
  msgstr ""
110
 
111
- #: includes/functions.php:25
112
  msgid "Options saved."
113
  msgstr ""
114
 
115
- #: includes/functions.php:57
116
  msgid "Go to Generals options"
117
  msgstr ""
118
 
119
- #: includes/functions.php:62
120
  msgid "Go to Colors and Fonts options"
121
  msgstr ""
122
 
123
- #: includes/functions.php:67
124
  msgid "Go to Pictures options"
125
  msgstr ""
126
 
127
- #: includes/functions.php:72
128
  msgid "Go to Countdown options"
129
  msgstr ""
130
 
131
- #: includes/functions.php:77
132
  msgid "Go to CSS options"
133
  msgstr ""
134
 
135
- #: includes/functions.php:82
136
  msgid "Go to Settings options"
137
  msgstr ""
138
 
139
- #: includes/functions.php:136
140
  msgid "ABOUT"
141
  msgstr ""
142
 
143
- #: includes/functions.php:138
144
  msgid ""
145
  "This plugin has been developed for you for free by <a href=\"https://"
146
  "restezconnectes.fr\" target=\"_blank\">Florent Maillefaud</a>. It is royalty "
147
  "free, you can take it, modify it, distribute it as you see fit."
148
  msgstr ""
149
 
150
- #: includes/functions.php:139
151
  msgid "Visit"
152
  msgstr ""
153
 
154
- #: includes/functions.php:139
155
  msgid ""
156
  "try the demo of the plugin, talk about this plugin to your surroundings!"
157
  msgstr ""
158
 
159
- #: includes/functions.php:141
160
  msgid "Support this extension and my other developments (French Paypal):"
161
  msgstr ""
162
 
163
- #: includes/functions.php:153
164
  msgid "DISCOVER"
165
  msgstr ""
166
 
167
- #: includes/functions.php:174
168
  msgid "WP Maintenance"
169
  msgstr ""
170
 
171
- #: includes/functions.php:174
172
  msgid "is brought to you by"
173
  msgstr ""
174
 
175
- #: includes/functions.php:174
176
  msgid "If you found this plugin useful"
177
  msgstr ""
178
 
179
- #: includes/functions.php:174
180
  msgid "give it 5 &#9733; on WordPress.org"
181
  msgstr ""
182
 
183
- #: views/wp-maintenance-colors.php:51
184
  msgid "Choice general colors:"
185
  msgstr ""
186
 
187
- #: views/wp-maintenance-colors.php:52
188
  msgid "Background page color:"
189
  msgstr ""
190
 
191
- #: views/wp-maintenance-colors.php:53
192
  msgid "Header color:"
193
  msgstr ""
194
 
195
- #: views/wp-maintenance-colors.php:56
196
  msgid "Choice texts fonts and colors:"
197
  msgstr ""
198
 
199
- #: views/wp-maintenance-colors.php:57
200
  msgid "Text color:"
201
  msgstr ""
202
 
203
- #: views/wp-maintenance-colors.php:59
204
  msgid "Title font settings"
205
  msgstr ""
206
 
207
- #: views/wp-maintenance-colors.php:66 views/wp-maintenance-colors.php:89
208
- #: views/wp-maintenance-colors.php:143 views/wp-maintenance-colors.php:164
209
- #: views/wp-maintenance-colors.php:198
210
  msgid "Size:"
211
  msgstr ""
212
 
213
- #: views/wp-maintenance-colors.php:82 views/wp-maintenance-colors.php:157
214
- msgid "Text font settings"
215
- msgstr ""
216
-
217
- #: views/wp-maintenance-colors.php:107
218
- msgid "Activate Frame"
219
- msgstr ""
220
-
221
- #: views/wp-maintenance-colors.php:111 views/wp-maintenance-countdown.php:58
222
  #: views/wp-maintenance-countdown.php:96 views/wp-maintenance-countdown.php:108
223
- #: views/wp-maintenance-css.php:57 views/wp-maintenance-dashboard.php:64
224
  #: views/wp-maintenance-dashboard.php:124
225
  #: views/wp-maintenance-dashboard.php:148
226
  #: views/wp-maintenance-dashboard.php:171
227
- #: views/wp-maintenance-dashboard.php:242
228
- #: views/wp-maintenance-dashboard.php:259 views/wp-maintenance-picture.php:91
229
  #: views/wp-maintenance-picture.php:152 views/wp-maintenance-picture.php:184
230
  #: views/wp-maintenance-picture.php:191 views/wp-maintenance-settings.php:69
231
  #: views/wp-maintenance-settings.php:89 views/wp-maintenance-settings.php:104
232
  msgid "Yes"
233
  msgstr ""
234
 
235
- #: views/wp-maintenance-colors.php:113 views/wp-maintenance-countdown.php:60
 
 
 
 
236
  #: views/wp-maintenance-countdown.php:98 views/wp-maintenance-countdown.php:110
237
- #: views/wp-maintenance-css.php:59 views/wp-maintenance-dashboard.php:66
238
  #: views/wp-maintenance-dashboard.php:126
239
  #: views/wp-maintenance-dashboard.php:150
240
  #: views/wp-maintenance-dashboard.php:173
241
- #: views/wp-maintenance-dashboard.php:244
242
- #: views/wp-maintenance-dashboard.php:261 views/wp-maintenance-picture.php:93
243
  #: views/wp-maintenance-picture.php:154 views/wp-maintenance-picture.php:186
244
  #: views/wp-maintenance-picture.php:193 views/wp-maintenance-settings.php:71
245
  #: views/wp-maintenance-settings.php:91 views/wp-maintenance-settings.php:106
246
  msgid "No"
247
  msgstr ""
248
 
249
- #: views/wp-maintenance-colors.php:120
 
 
 
 
 
 
 
 
250
  msgid "Color:"
251
  msgstr ""
252
 
253
- #: views/wp-maintenance-colors.php:121
254
  msgid "Opacity:"
255
  msgstr ""
256
 
257
- #: views/wp-maintenance-colors.php:123 views/wp-maintenance-picture.php:176
258
  msgid "Width:"
259
  msgstr ""
260
 
261
- #: views/wp-maintenance-colors.php:131
262
  msgid "Choice countdown fonts and colors:"
263
  msgstr ""
264
 
265
- #: views/wp-maintenance-colors.php:132
266
  msgid "Countdown text color:"
267
  msgstr ""
268
 
269
- #: views/wp-maintenance-colors.php:133
270
  msgid "Countdown background color:"
271
  msgstr ""
272
 
273
- #: views/wp-maintenance-colors.php:136
274
  msgid "Countdown font settings"
275
  msgstr ""
276
 
277
- #: views/wp-maintenance-colors.php:152
278
  msgid "Choice fonts and colors bottom page:"
279
  msgstr ""
280
 
281
- #: views/wp-maintenance-colors.php:153
282
  msgid "Bottom color:"
283
  msgstr ""
284
 
285
- #: views/wp-maintenance-colors.php:154
286
  msgid "Text bottom color:"
287
  msgstr ""
288
 
289
- #: views/wp-maintenance-colors.php:181
290
  msgid "Choice form color:"
291
  msgstr ""
292
 
293
- #: views/wp-maintenance-colors.php:212
294
  msgid "Field text color:"
295
  msgstr ""
296
 
297
- #: views/wp-maintenance-colors.php:214
298
  msgid "Field border color:"
299
  msgstr ""
300
 
301
- #: views/wp-maintenance-colors.php:216
302
  msgid "Field background color:"
303
  msgstr ""
304
 
305
- #: views/wp-maintenance-colors.php:219
306
  msgid "Button text color:"
307
  msgstr ""
308
 
309
- #: views/wp-maintenance-colors.php:222
310
  msgid "Button color:"
311
  msgstr ""
312
 
313
- #: views/wp-maintenance-colors.php:225
314
  msgid "Button color hover:"
315
  msgstr ""
316
 
317
- #: views/wp-maintenance-colors.php:227
318
  msgid "Button color onclick:"
319
  msgstr ""
320
 
321
- #: views/wp-maintenance-colors.php:231
322
  #, php-format
323
  msgid "Enable %s to customize the forms"
324
  msgstr ""
325
 
326
- #: views/wp-maintenance-colors.php:231
327
  msgid "newsletter option"
328
  msgstr ""
329
 
330
- #: views/wp-maintenance-colors.php:235
331
  msgid "Enable Mailpoet or MailChimp extensions to customize the forms"
332
  msgstr ""
333
 
334
- #: views/wp-maintenance-countdown.php:24
335
- msgid "Countdown"
336
- msgstr ""
337
-
338
  #: views/wp-maintenance-countdown.php:50
339
  msgid "Enable a countdown ?"
340
  msgstr ""
@@ -468,49 +488,49 @@ msgstr ""
468
  msgid "Select a year"
469
  msgstr ""
470
 
471
- #: views/wp-maintenance-css.php:45
472
  msgid ""
473
  "Edit the CSS sheet of your maintenance page here. Click \"Reset\" and \"Save"
474
  "\" to retrieve the default style sheet."
475
  msgstr ""
476
 
477
- #: views/wp-maintenance-css.php:53
478
  msgid "Reset default CSS stylesheet ?"
479
  msgstr ""
480
 
481
- #: views/wp-maintenance-css.php:68
482
  msgid "Markers for colors"
483
  msgstr ""
484
 
485
- #: views/wp-maintenance-css.php:73
486
  msgid "Use this code for text color"
487
  msgstr ""
488
 
489
- #: views/wp-maintenance-css.php:77
490
  msgid "Use this code for background text color"
491
  msgstr ""
492
 
493
- #: views/wp-maintenance-css.php:81
494
  msgid "Use this code for background color countdown"
495
  msgstr ""
496
 
497
- #: views/wp-maintenance-css.php:85
498
  msgid "Use this code for size countdown"
499
  msgstr ""
500
 
501
- #: views/wp-maintenance-css.php:89
502
  msgid "Use this code for countdown color"
503
  msgstr ""
504
 
505
- #: views/wp-maintenance-css.php:94
506
  msgid "Need CSS code for MailPoet plugin?"
507
  msgstr ""
508
 
509
- #: views/wp-maintenance-css.php:95 views/wp-maintenance-css.php:110
510
  msgid "Click for select all"
511
  msgstr ""
512
 
513
- #: views/wp-maintenance-css.php:109
514
  msgid "Need CSS code for MailChimp plugin?"
515
  msgstr ""
516
 
@@ -580,59 +600,63 @@ msgstr ""
580
  msgid "Drad and drop the lines to put in the order you want:"
581
  msgstr ""
582
 
583
- #: views/wp-maintenance-dashboard.php:211
584
  msgid "Choose icons size:"
585
  msgstr ""
586
 
587
- #: views/wp-maintenance-dashboard.php:222 views/wp-maintenance-picture.php:199
 
 
 
 
588
  msgid "Position:"
589
  msgstr ""
590
 
591
- #: views/wp-maintenance-dashboard.php:224
592
  msgid "Top"
593
  msgstr ""
594
 
595
- #: views/wp-maintenance-dashboard.php:225
596
  msgid "Bottom"
597
  msgstr ""
598
 
599
- #: views/wp-maintenance-dashboard.php:228
600
  msgid "Align:"
601
  msgstr ""
602
 
603
- #: views/wp-maintenance-dashboard.php:230
604
  msgid "Left"
605
  msgstr ""
606
 
607
- #: views/wp-maintenance-dashboard.php:231
608
  msgid "Center"
609
  msgstr ""
610
 
611
- #: views/wp-maintenance-dashboard.php:232
612
  msgid "Right"
613
  msgstr ""
614
 
615
- #: views/wp-maintenance-dashboard.php:235
616
  msgid "You have your own icons? Enter the folder name of your theme here:"
617
  msgstr ""
618
 
619
- #: views/wp-maintenance-dashboard.php:238
620
  msgid "Reset Social Icon?"
621
  msgstr ""
622
 
623
- #: views/wp-maintenance-dashboard.php:255
624
  msgid "Enable Newletter:"
625
  msgstr ""
626
 
627
- #: views/wp-maintenance-dashboard.php:269
628
  msgid "Enter title for the newletter block:"
629
  msgstr ""
630
 
631
- #: views/wp-maintenance-dashboard.php:271
632
  msgid "Enter your newletter shortcode here:"
633
  msgstr ""
634
 
635
- #: views/wp-maintenance-dashboard.php:273
636
  msgid "Or enter your newletter iframe code here:"
637
  msgstr ""
638
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WP Maintenance\n"
5
+ "POT-Creation-Date: 2017-11-09 16:22+0100\n"
6
  "PO-Revision-Date: 2015-03-19 11:19+0100\n"
7
  "Last-Translator: Florent Maillefaud <contact@restezconnectes.fr>\n"
8
  "Language-Team: Florent Maillefaud <contact@restezconnectes.fr>\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.0.4\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "Plural-Forms: nplurals=2; plural=n>1;\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: classes/countdown.php:35
21
  msgid "Days"
22
  msgstr ""
23
 
24
+ #: classes/countdown.php:35
25
  msgid "Hours"
26
  msgstr ""
27
 
28
+ #: classes/countdown.php:35
29
  msgid "Minutes"
30
  msgstr ""
31
 
32
+ #: classes/countdown.php:37
33
  msgid "Seconds"
34
  msgstr ""
35
 
36
+ #: classes/slider.php:99
37
  msgid "Previous"
38
  msgstr ""
39
 
40
+ #: classes/slider.php:100
41
  msgid "Next"
42
  msgstr ""
43
 
44
+ #: classes/wp-maintenance.php:50 classes/wp-maintenance.php:348
45
  msgid "This site is down for maintenance"
46
  msgstr ""
47
 
48
+ #: classes/wp-maintenance.php:51 classes/wp-maintenance.php:349
49
  msgid "Come back quickly!"
50
  msgstr ""
51
 
52
+ #: classes/wp-maintenance.php:158 classes/wp-maintenance.php:282
53
+ #: classes/wp-maintenance.php:333 views/wp-maintenance-settings.php:57
54
  msgid "Settings"
55
  msgstr ""
56
 
57
+ #: classes/wp-maintenance.php:222
58
+ msgid "Maintenance mode disable!"
59
  msgstr ""
60
 
61
+ #: classes/wp-maintenance.php:225
62
+ msgid "Maintenance mode activated!"
63
  msgstr ""
64
 
65
+ #: classes/wp-maintenance.php:242
66
+ msgid "Colors"
67
  msgstr ""
68
 
69
+ #: classes/wp-maintenance.php:252 classes/wp-maintenance.php:327
70
  msgid "Pictures"
71
  msgstr ""
72
 
73
+ #: classes/wp-maintenance.php:262 views/wp-maintenance-countdown.php:24
74
+ msgid "Countdown"
75
+ msgstr ""
76
+
77
+ #: classes/wp-maintenance.php:272
78
+ msgid "CSS"
79
+ msgstr ""
80
+
81
+ #: classes/wp-maintenance.php:323 views/wp-maintenance-dashboard.php:53
82
+ msgid "General"
83
+ msgstr ""
84
+
85
+ #: classes/wp-maintenance.php:325 views/wp-maintenance-colors.php:41
86
+ msgid "Colors & Fonts"
87
+ msgstr ""
88
+
89
+ #: classes/wp-maintenance.php:329
90
  msgid "CountDown"
91
  msgstr ""
92
 
93
+ #: classes/wp-maintenance.php:331 views/wp-maintenance-css.php:36
94
  msgid "CSS Style"
95
  msgstr ""
96
 
97
+ #: classes/wp-maintenance.php:475
98
  msgid "Choose This Image"
99
  msgstr ""
100
 
101
+ #: classes/wp-maintenance.php:476
102
  msgid "Choose Image"
103
  msgstr ""
104
 
105
+ #: classes/wp-maintenance.php:492 classes/wp-maintenance.php:500
106
+ #: classes/wp-maintenance.php:508 classes/wp-maintenance.php:517
107
+ #: classes/wp-maintenance.php:526 classes/wp-maintenance.php:535
108
  msgid "You do not have sufficient privileges to access this page."
109
  msgstr ""
110
 
111
+ #: classes/wp-maintenance.php:618
112
  msgid "Please upload a valid .json file"
113
  msgstr ""
114
 
115
+ #: classes/wp-maintenance.php:624
116
  msgid "Please upload a file to import"
117
  msgstr ""
118
 
119
+ #: classes/wp-maintenance.php:634
120
  msgid "New settings imported successfully!"
121
  msgstr ""
122
 
123
+ #: classes/wp-maintenance.php:830
124
  msgid "Dashboard"
125
  msgstr ""
126
 
127
+ #: includes/functions.php:24
128
  msgid "Options saved."
129
  msgstr ""
130
 
131
+ #: includes/functions.php:55
132
  msgid "Go to Generals options"
133
  msgstr ""
134
 
135
+ #: includes/functions.php:60
136
  msgid "Go to Colors and Fonts options"
137
  msgstr ""
138
 
139
+ #: includes/functions.php:65
140
  msgid "Go to Pictures options"
141
  msgstr ""
142
 
143
+ #: includes/functions.php:70
144
  msgid "Go to Countdown options"
145
  msgstr ""
146
 
147
+ #: includes/functions.php:75
148
  msgid "Go to CSS options"
149
  msgstr ""
150
 
151
+ #: includes/functions.php:80
152
  msgid "Go to Settings options"
153
  msgstr ""
154
 
155
+ #: includes/functions.php:134
156
  msgid "ABOUT"
157
  msgstr ""
158
 
159
+ #: includes/functions.php:136
160
  msgid ""
161
  "This plugin has been developed for you for free by <a href=\"https://"
162
  "restezconnectes.fr\" target=\"_blank\">Florent Maillefaud</a>. It is royalty "
163
  "free, you can take it, modify it, distribute it as you see fit."
164
  msgstr ""
165
 
166
+ #: includes/functions.php:137
167
  msgid "Visit"
168
  msgstr ""
169
 
170
+ #: includes/functions.php:137
171
  msgid ""
172
  "try the demo of the plugin, talk about this plugin to your surroundings!"
173
  msgstr ""
174
 
175
+ #: includes/functions.php:139
176
  msgid "Support this extension and my other developments (French Paypal):"
177
  msgstr ""
178
 
179
+ #: includes/functions.php:151
180
  msgid "DISCOVER"
181
  msgstr ""
182
 
183
+ #: includes/functions.php:172
184
  msgid "WP Maintenance"
185
  msgstr ""
186
 
187
+ #: includes/functions.php:172
188
  msgid "is brought to you by"
189
  msgstr ""
190
 
191
+ #: includes/functions.php:172
192
  msgid "If you found this plugin useful"
193
  msgstr ""
194
 
195
+ #: includes/functions.php:172
196
  msgid "give it 5 &#9733; on WordPress.org"
197
  msgstr ""
198
 
199
+ #: views/wp-maintenance-colors.php:49
200
  msgid "Choice general colors:"
201
  msgstr ""
202
 
203
+ #: views/wp-maintenance-colors.php:50
204
  msgid "Background page color:"
205
  msgstr ""
206
 
207
+ #: views/wp-maintenance-colors.php:51
208
  msgid "Header color:"
209
  msgstr ""
210
 
211
+ #: views/wp-maintenance-colors.php:54
212
  msgid "Choice texts fonts and colors:"
213
  msgstr ""
214
 
215
+ #: views/wp-maintenance-colors.php:55
216
  msgid "Text color:"
217
  msgstr ""
218
 
219
+ #: views/wp-maintenance-colors.php:57
220
  msgid "Title font settings"
221
  msgstr ""
222
 
223
+ #: views/wp-maintenance-colors.php:64 views/wp-maintenance-colors.php:102
224
+ #: views/wp-maintenance-colors.php:171 views/wp-maintenance-colors.php:192
225
+ #: views/wp-maintenance-colors.php:243
226
  msgid "Size:"
227
  msgstr ""
228
 
229
+ #: views/wp-maintenance-colors.php:76 views/wp-maintenance-colors.php:85
230
+ #: views/wp-maintenance-colors.php:114 views/wp-maintenance-colors.php:123
231
+ #: views/wp-maintenance-colors.php:139 views/wp-maintenance-colors.php:204
232
+ #: views/wp-maintenance-colors.php:213 views/wp-maintenance-colors.php:255
233
+ #: views/wp-maintenance-colors.php:264 views/wp-maintenance-countdown.php:58
 
 
 
 
234
  #: views/wp-maintenance-countdown.php:96 views/wp-maintenance-countdown.php:108
235
+ #: views/wp-maintenance-css.php:56 views/wp-maintenance-dashboard.php:64
236
  #: views/wp-maintenance-dashboard.php:124
237
  #: views/wp-maintenance-dashboard.php:148
238
  #: views/wp-maintenance-dashboard.php:171
239
+ #: views/wp-maintenance-dashboard.php:256
240
+ #: views/wp-maintenance-dashboard.php:273 views/wp-maintenance-picture.php:91
241
  #: views/wp-maintenance-picture.php:152 views/wp-maintenance-picture.php:184
242
  #: views/wp-maintenance-picture.php:191 views/wp-maintenance-settings.php:69
243
  #: views/wp-maintenance-settings.php:89 views/wp-maintenance-settings.php:104
244
  msgid "Yes"
245
  msgstr ""
246
 
247
+ #: views/wp-maintenance-colors.php:78 views/wp-maintenance-colors.php:87
248
+ #: views/wp-maintenance-colors.php:116 views/wp-maintenance-colors.php:125
249
+ #: views/wp-maintenance-colors.php:141 views/wp-maintenance-colors.php:206
250
+ #: views/wp-maintenance-colors.php:215 views/wp-maintenance-colors.php:257
251
+ #: views/wp-maintenance-colors.php:266 views/wp-maintenance-countdown.php:60
252
  #: views/wp-maintenance-countdown.php:98 views/wp-maintenance-countdown.php:110
253
+ #: views/wp-maintenance-css.php:58 views/wp-maintenance-dashboard.php:66
254
  #: views/wp-maintenance-dashboard.php:126
255
  #: views/wp-maintenance-dashboard.php:150
256
  #: views/wp-maintenance-dashboard.php:173
257
+ #: views/wp-maintenance-dashboard.php:258
258
+ #: views/wp-maintenance-dashboard.php:275 views/wp-maintenance-picture.php:93
259
  #: views/wp-maintenance-picture.php:154 views/wp-maintenance-picture.php:186
260
  #: views/wp-maintenance-picture.php:193 views/wp-maintenance-settings.php:71
261
  #: views/wp-maintenance-settings.php:91 views/wp-maintenance-settings.php:106
262
  msgid "No"
263
  msgstr ""
264
 
265
+ #: views/wp-maintenance-colors.php:95 views/wp-maintenance-colors.php:185
266
+ msgid "Text font settings"
267
+ msgstr ""
268
+
269
+ #: views/wp-maintenance-colors.php:135
270
+ msgid "Activate Frame"
271
+ msgstr ""
272
+
273
+ #: views/wp-maintenance-colors.php:148
274
  msgid "Color:"
275
  msgstr ""
276
 
277
+ #: views/wp-maintenance-colors.php:149
278
  msgid "Opacity:"
279
  msgstr ""
280
 
281
+ #: views/wp-maintenance-colors.php:151 views/wp-maintenance-picture.php:176
282
  msgid "Width:"
283
  msgstr ""
284
 
285
+ #: views/wp-maintenance-colors.php:159
286
  msgid "Choice countdown fonts and colors:"
287
  msgstr ""
288
 
289
+ #: views/wp-maintenance-colors.php:160
290
  msgid "Countdown text color:"
291
  msgstr ""
292
 
293
+ #: views/wp-maintenance-colors.php:161
294
  msgid "Countdown background color:"
295
  msgstr ""
296
 
297
+ #: views/wp-maintenance-colors.php:164
298
  msgid "Countdown font settings"
299
  msgstr ""
300
 
301
+ #: views/wp-maintenance-colors.php:180
302
  msgid "Choice fonts and colors bottom page:"
303
  msgstr ""
304
 
305
+ #: views/wp-maintenance-colors.php:181
306
  msgid "Bottom color:"
307
  msgstr ""
308
 
309
+ #: views/wp-maintenance-colors.php:182
310
  msgid "Text bottom color:"
311
  msgstr ""
312
 
313
+ #: views/wp-maintenance-colors.php:224
314
  msgid "Choice form color:"
315
  msgstr ""
316
 
317
+ #: views/wp-maintenance-colors.php:275
318
  msgid "Field text color:"
319
  msgstr ""
320
 
321
+ #: views/wp-maintenance-colors.php:277
322
  msgid "Field border color:"
323
  msgstr ""
324
 
325
+ #: views/wp-maintenance-colors.php:279
326
  msgid "Field background color:"
327
  msgstr ""
328
 
329
+ #: views/wp-maintenance-colors.php:280
330
  msgid "Button text color:"
331
  msgstr ""
332
 
333
+ #: views/wp-maintenance-colors.php:284
334
  msgid "Button color:"
335
  msgstr ""
336
 
337
+ #: views/wp-maintenance-colors.php:287
338
  msgid "Button color hover:"
339
  msgstr ""
340
 
341
+ #: views/wp-maintenance-colors.php:289
342
  msgid "Button color onclick:"
343
  msgstr ""
344
 
345
+ #: views/wp-maintenance-colors.php:296
346
  #, php-format
347
  msgid "Enable %s to customize the forms"
348
  msgstr ""
349
 
350
+ #: views/wp-maintenance-colors.php:296
351
  msgid "newsletter option"
352
  msgstr ""
353
 
354
+ #: views/wp-maintenance-colors.php:300
355
  msgid "Enable Mailpoet or MailChimp extensions to customize the forms"
356
  msgstr ""
357
 
 
 
 
 
358
  #: views/wp-maintenance-countdown.php:50
359
  msgid "Enable a countdown ?"
360
  msgstr ""
488
  msgid "Select a year"
489
  msgstr ""
490
 
491
+ #: views/wp-maintenance-css.php:44
492
  msgid ""
493
  "Edit the CSS sheet of your maintenance page here. Click \"Reset\" and \"Save"
494
  "\" to retrieve the default style sheet."
495
  msgstr ""
496
 
497
+ #: views/wp-maintenance-css.php:52
498
  msgid "Reset default CSS stylesheet ?"
499
  msgstr ""
500
 
501
+ #: views/wp-maintenance-css.php:67
502
  msgid "Markers for colors"
503
  msgstr ""
504
 
505
+ #: views/wp-maintenance-css.php:72
506
  msgid "Use this code for text color"
507
  msgstr ""
508
 
509
+ #: views/wp-maintenance-css.php:76
510
  msgid "Use this code for background text color"
511
  msgstr ""
512
 
513
+ #: views/wp-maintenance-css.php:80
514
  msgid "Use this code for background color countdown"
515
  msgstr ""
516
 
517
+ #: views/wp-maintenance-css.php:84
518
  msgid "Use this code for size countdown"
519
  msgstr ""
520
 
521
+ #: views/wp-maintenance-css.php:88
522
  msgid "Use this code for countdown color"
523
  msgstr ""
524
 
525
+ #: views/wp-maintenance-css.php:93
526
  msgid "Need CSS code for MailPoet plugin?"
527
  msgstr ""
528
 
529
+ #: views/wp-maintenance-css.php:94 views/wp-maintenance-css.php:109
530
  msgid "Click for select all"
531
  msgstr ""
532
 
533
+ #: views/wp-maintenance-css.php:108
534
  msgid "Need CSS code for MailChimp plugin?"
535
  msgstr ""
536
 
600
  msgid "Drad and drop the lines to put in the order you want:"
601
  msgstr ""
602
 
603
+ #: views/wp-maintenance-dashboard.php:213
604
  msgid "Choose icons size:"
605
  msgstr ""
606
 
607
+ #: views/wp-maintenance-dashboard.php:224
608
+ msgid "Choose icons style:"
609
+ msgstr ""
610
+
611
+ #: views/wp-maintenance-dashboard.php:236 views/wp-maintenance-picture.php:199
612
  msgid "Position:"
613
  msgstr ""
614
 
615
+ #: views/wp-maintenance-dashboard.php:238
616
  msgid "Top"
617
  msgstr ""
618
 
619
+ #: views/wp-maintenance-dashboard.php:239
620
  msgid "Bottom"
621
  msgstr ""
622
 
623
+ #: views/wp-maintenance-dashboard.php:242
624
  msgid "Align:"
625
  msgstr ""
626
 
627
+ #: views/wp-maintenance-dashboard.php:244
628
  msgid "Left"
629
  msgstr ""
630
 
631
+ #: views/wp-maintenance-dashboard.php:245
632
  msgid "Center"
633
  msgstr ""
634
 
635
+ #: views/wp-maintenance-dashboard.php:246
636
  msgid "Right"
637
  msgstr ""
638
 
639
+ #: views/wp-maintenance-dashboard.php:249
640
  msgid "You have your own icons? Enter the folder name of your theme here:"
641
  msgstr ""
642
 
643
+ #: views/wp-maintenance-dashboard.php:252
644
  msgid "Reset Social Icon?"
645
  msgstr ""
646
 
647
+ #: views/wp-maintenance-dashboard.php:269
648
  msgid "Enable Newletter:"
649
  msgstr ""
650
 
651
+ #: views/wp-maintenance-dashboard.php:283
652
  msgid "Enter title for the newletter block:"
653
  msgstr ""
654
 
655
+ #: views/wp-maintenance-dashboard.php:285
656
  msgid "Enter your newletter shortcode here:"
657
  msgstr ""
658
 
659
+ #: views/wp-maintenance-dashboard.php:287
660
  msgid "Or enter your newletter iframe code here:"
661
  msgstr ""
662
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Florent73
3
  Donate link: https://wpmaintenance.info/a-propos/
4
  Tags: Maintenance, Construction, Launch, Coming soon
5
  Requires at least: 3.0
6
- Tested up to: 4.8.2
7
- Stable tag: 3.0.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -67,15 +67,17 @@ You can translate WP Maintenance on [__translate.wordpress.org__](https://transl
67
 
68
  == Upgrade Notice ==
69
 
70
- = 3.0.7 =
71
- This version is stable
 
 
 
72
 
73
  == Changelog ==
74
 
75
  = 3.0.7 =
76
  * Bugs minors resolved
77
  * Bug upload pictures fixed
78
- * Optimisation CSS / JS
79
 
80
  = 3.0.6 =
81
  * Bugs minors resolved
3
  Donate link: https://wpmaintenance.info/a-propos/
4
  Tags: Maintenance, Construction, Launch, Coming soon
5
  Requires at least: 3.0
6
+ Tested up to: 4.9
7
+ Stable tag: 3.0.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
67
 
68
  == Upgrade Notice ==
69
 
70
+ = 3.0.8 =
71
+ * Adding menu admin bar
72
+ * Ready for 4.9 version
73
+ * Bugs fixed for image logo size
74
+ * Replace image path
75
 
76
  == Changelog ==
77
 
78
  = 3.0.7 =
79
  * Bugs minors resolved
80
  * Bug upload pictures fixed
 
81
 
82
  = 3.0.6 =
83
  * Bugs minors resolved
wp-maintenance.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: The WP Maintenance plugin allows you to put your website on the waiting time for you to do maintenance or launch your website. Personalize this page with picture, countdown...
6
  * Author: Florent Maillefaud
7
  * Author URI: https://wpmaintenance.info
8
- * Version: 3.0.7
9
  * Text Domain: wp-maintenance
10
  * Domain Path: /languages/
11
  */
@@ -36,7 +36,7 @@ define( 'WPM_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
36
  define( 'WPM_PLUGIN_URL', plugins_url().'/'.strtolower('wp-maintenance').'/');
37
  define( 'WPM_ICONS_URL', plugins_url().'/'.strtolower('wp-maintenance').'/socialicons/');
38
 
39
- if( !defined( 'WPM_VERSION' )) { define( 'WPM_VERSION', '3.0.7' ); }
40
 
41
  require WPM_DIR . 'classes/wp-maintenance.php';
42
  require WPM_DIR . 'classes/slider.php';
5
  * Description: The WP Maintenance plugin allows you to put your website on the waiting time for you to do maintenance or launch your website. Personalize this page with picture, countdown...
6
  * Author: Florent Maillefaud
7
  * Author URI: https://wpmaintenance.info
8
+ * Version: 3.0.8
9
  * Text Domain: wp-maintenance
10
  * Domain Path: /languages/
11
  */
36
  define( 'WPM_PLUGIN_URL', plugins_url().'/'.strtolower('wp-maintenance').'/');
37
  define( 'WPM_ICONS_URL', plugins_url().'/'.strtolower('wp-maintenance').'/socialicons/');
38
 
39
+ if( !defined( 'WPM_VERSION' )) { define( 'WPM_VERSION', '3.0.8' ); }
40
 
41
  require WPM_DIR . 'classes/wp-maintenance.php';
42
  require WPM_DIR . 'classes/slider.php';