WP Maintenance Mode - Version 2.2.4

Version Description

(20/05/2019) = * bump "Tested up to" to 5.2.0 * fix typo in Italian translation (it_IT) * Bot: add a note about how you can export the list of subscribers #195 * Bot: add client-side sanitization to the input fields #176

Download this release

Release Info

Developer GeorgeJipa
Plugin Icon 128x128 WP Maintenance Mode
Version 2.2.4
Comparing to
See all releases

Code changes from version 2.2.3 to 2.2.4

Files changed (39) hide show
  1. assets/images/resources/ayoshop.jpg +0 -0
  2. assets/images/resources/blocksy.jpg +0 -0
  3. assets/js/bot.js +93 -9
  4. assets/js/bot.min.js +1 -1
  5. includes/classes/wp-maintenance-mode.php +8 -8
  6. includes/functions/helpers.php +6 -6
  7. languages/wp-maintenance-mode-de_DE.mo +0 -0
  8. languages/wp-maintenance-mode-de_DE.po +82 -76
  9. languages/wp-maintenance-mode-en_US.mo +0 -0
  10. languages/wp-maintenance-mode-en_US.po +83 -77
  11. languages/wp-maintenance-mode-es_ES.mo +0 -0
  12. languages/wp-maintenance-mode-es_ES.po +83 -77
  13. languages/wp-maintenance-mode-fa_IR.mo +0 -0
  14. languages/wp-maintenance-mode-fa_IR.po +83 -77
  15. languages/wp-maintenance-mode-fr_FR.mo +0 -0
  16. languages/wp-maintenance-mode-fr_FR.po +83 -77
  17. languages/wp-maintenance-mode-it_IT.mo +0 -0
  18. languages/wp-maintenance-mode-it_IT.po +84 -78
  19. languages/wp-maintenance-mode-nb_NO.mo +0 -0
  20. languages/wp-maintenance-mode-nb_NO.po +83 -77
  21. languages/wp-maintenance-mode-nl_NL.mo +0 -0
  22. languages/wp-maintenance-mode-nl_NL.po +83 -77
  23. languages/wp-maintenance-mode-pl_PL.mo +0 -0
  24. languages/wp-maintenance-mode-pl_PL.po +83 -77
  25. languages/wp-maintenance-mode-pt_BR.mo +0 -0
  26. languages/wp-maintenance-mode-pt_BR.po +83 -77
  27. languages/wp-maintenance-mode-pt_PT.mo +0 -0
  28. languages/wp-maintenance-mode-pt_PT.po +83 -77
  29. languages/wp-maintenance-mode-ro_RO.mo +0 -0
  30. languages/wp-maintenance-mode-ro_RO.po +83 -77
  31. languages/wp-maintenance-mode-ru_RU.mo +0 -0
  32. languages/wp-maintenance-mode-ru_RU.po +83 -77
  33. languages/wp-maintenance-mode-sv_SE.mo +0 -0
  34. languages/wp-maintenance-mode-sv_SE.po +83 -77
  35. languages/wp-maintenance-mode-uk_UA.mo +0 -0
  36. languages/wp-maintenance-mode-uk_UA.po +83 -77
  37. readme.txt +8 -2
  38. views/settings.php +1 -0
  39. wp-maintenance-mode.php +1 -1
assets/images/resources/ayoshop.jpg DELETED
Binary file
assets/images/resources/blocksy.jpg ADDED
Binary file
assets/js/bot.js CHANGED
@@ -24,7 +24,87 @@ function getCurrentTime() {
24
  return strTime;
25
  }
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  function renderStatement(statement) {
 
 
 
28
  jQuery('.chat-container').append('<div class="chat-message-wrapper"><div class="absolute-wrapper"><div class="message-details"><div class="bot-avatar"></div><span class="message-date">' + getCurrentTime() + '</span></div></div><p class="chat-message">' + statement + '</p></div>');
29
  }
30
 
@@ -56,23 +136,25 @@ function inputError(msg) {
56
  }
57
 
58
  function checkInput(option) {
 
 
 
 
59
 
60
- let input = jQuery('.bot-container input[type=text]');
61
- if (input.val().length > 2) {
62
  showResponse(option);
63
  } else {
64
  inputError(botVars.validationName);
65
  }
 
66
  return false;
67
-
68
  }
69
 
70
 
71
  function checkEmail(option) {
72
-
73
- let input = jQuery('.bot-container input[type=email]').val();
74
- let regex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
75
- let result = regex.test(String(input.toLowerCase()) );
76
 
77
  if (input.length > 7 && result === true) {
78
 
@@ -161,7 +243,6 @@ function showStatement(pos) {
161
  Run this function over each statement
162
  */
163
  async.eachSeries(statements, function(item, callback) {
164
-
165
  // Emulate typing then scroll to bottom
166
  showTyping();
167
  scrollToBottom();
@@ -377,8 +458,11 @@ function showResponse(option) {
377
  else {
378
  feedback = option['choice'];
379
  }
380
-
381
  clearFooter();
 
 
 
382
 
383
  // Show what the user chose
384
  jQuery(".chat-container").append('<p class="chat-message user">' + feedback + '</p>');
24
  return strTime;
25
  }
26
 
27
+ /**
28
+ * Cast string
29
+ *
30
+ * @param string value
31
+ * @returns string
32
+ */
33
+ function _phpCastString (value) {
34
+ var type = typeof value
35
+
36
+ switch (type) {
37
+ case 'boolean':
38
+ return value ? '1' : ''
39
+ case 'string':
40
+ return value
41
+ case 'number':
42
+ if (isNaN(value)) {
43
+ return 'NAN'
44
+ }
45
+
46
+ if (!isFinite(value)) {
47
+ return (value < 0 ? '-' : '') + 'INF'
48
+ }
49
+
50
+ return value + ''
51
+ case 'undefined':
52
+ return ''
53
+ case 'object':
54
+ if (Array.isArray(value)) {
55
+ return 'Array'
56
+ }
57
+
58
+ if (value !== null) {
59
+ return 'Object'
60
+ }
61
+
62
+ return ''
63
+ case 'function':
64
+ // fall through
65
+ default:
66
+ throw new Error('Unsupported value type')
67
+ }
68
+ }
69
+
70
+ /**
71
+ * Strip tags from a string
72
+ *
73
+ * big thanks to http://locutus.io/php/strings/strip_tags/
74
+ *
75
+ * @param string input
76
+ * @param string allowed
77
+ * @returns string
78
+ */
79
+ function strip_tags (input, allowed) {
80
+ // making sure the allowed arg is a string containing only tags in lowercase (<a><b><c>)
81
+ allowed = (((allowed || '') + '').toLowerCase().match(/<[a-z][a-z0-9]*>/g) || []).join('')
82
+
83
+ var tags = /<\/?([a-z0-9]*)\b[^>]*>?/gi
84
+ var commentsAndPhpTags = /<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi
85
+
86
+ var after = _phpCastString(input)
87
+ // removes tha '<' char at the end of the string to replicate PHP's behaviour
88
+ after = (after.substring(after.length - 1) === '<') ? after.substring(0, after.length - 1) : after
89
+
90
+ // recursively remove tags to ensure that the returned string doesn't contain forbidden tags after previous passes (e.g. '<<bait/>switch/>')
91
+ while (true) {
92
+ var before = after
93
+ after = before.replace(commentsAndPhpTags, '').replace(tags, function ($0, $1) {
94
+ return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : ''
95
+ })
96
+
97
+ // return once no more tags are removed
98
+ if (before === after) {
99
+ return after
100
+ }
101
+ }
102
+ }
103
+
104
  function renderStatement(statement) {
105
+ // Strip html tags from statement
106
+ statement = strip_tags(statement);
107
+
108
  jQuery('.chat-container').append('<div class="chat-message-wrapper"><div class="absolute-wrapper"><div class="message-details"><div class="bot-avatar"></div><span class="message-date">' + getCurrentTime() + '</span></div></div><p class="chat-message">' + statement + '</p></div>');
109
  }
110
 
136
  }
137
 
138
  function checkInput(option) {
139
+ var input = jQuery('.bot-container input[type=text]').val();
140
+
141
+ // Strip html tags from input
142
+ input = strip_tags(input);
143
 
144
+ if (input.length > 2) {
 
145
  showResponse(option);
146
  } else {
147
  inputError(botVars.validationName);
148
  }
149
+
150
  return false;
 
151
  }
152
 
153
 
154
  function checkEmail(option) {
155
+ var input = jQuery('.bot-container input[type=email]').val();
156
+ var regex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
157
+ var result = regex.test(String(input.toLowerCase()));
 
158
 
159
  if (input.length > 7 && result === true) {
160
 
243
  Run this function over each statement
244
  */
245
  async.eachSeries(statements, function(item, callback) {
 
246
  // Emulate typing then scroll to bottom
247
  showTyping();
248
  scrollToBottom();
458
  else {
459
  feedback = option['choice'];
460
  }
461
+
462
  clearFooter();
463
+
464
+ // Strip html tags from feedback
465
+ feedback = strip_tags(feedback);
466
 
467
  // Show what the user chose
468
  jQuery(".chat-container").append('<p class="chat-message user">' + feedback + '</p>');
assets/js/bot.min.js CHANGED
@@ -1 +1 @@
1
- !function(){var n,t={};function e(){}function r(n){return n}function i(n){return!!n}function u(n){return!n}var o="object"==typeof self&&self.self===self&&self||"object"==typeof global&&global.global===global&&global||this;function c(n){return function(){if(null===n)throw new Error("Callback was already called.");n.apply(this,arguments),n=null}}function a(n){return function(){null!==n&&(n.apply(this,arguments),n=null)}}null!=o&&(n=o.async),t.noConflict=function(){return o.async=n,t};var s=Object.prototype.toString,l=Array.isArray||function(n){return"[object Array]"===s.call(n)};function f(n){return l(n)||"number"==typeof n.length&&n.length>=0&&n.length%1==0}function p(n,t){for(var e=-1,r=n.length;++e<r;)t(n[e],e,n)}function h(n,t){for(var e=-1,r=n.length,i=Array(r);++e<r;)i[e]=t(n[e],e,n);return i}function m(n){return h(Array(n),function(n,t){return t})}function y(n,t){p(v(n),function(e){t(n[e],e)})}function d(n,t){for(var e=0;e<n.length;e++)if(n[e]===t)return e;return-1}var v=Object.keys||function(n){var t=[];for(var e in n)n.hasOwnProperty(e)&&t.push(e);return t};function g(n){var t,e,r=-1;return f(n)?(t=n.length,function(){return++r<t?r:null}):(e=v(n),t=e.length,function(){return++r<t?e[r]:null})}function b(n,t){return t=null==t?n.length-1:+t,function(){for(var e=Math.max(arguments.length-t,0),r=Array(e),i=0;i<e;i++)r[i]=arguments[i+t];switch(t){case 0:return n.call(this,r);case 1:return n.call(this,arguments[0],r);case 2:return n.call(this,arguments[0],arguments[1],r)}}}function k(n){return function(t,e,r){return n(t,r)}}var j="function"==typeof setImmediate&&setImmediate,w=j?function(n){j(n)}:function(n){setTimeout(n,0)};function Q(n){return function(t,r,i){i=a(i||e);var u=g(t=t||[]);if(n<=0)return i(null);var o=!1,s=0,l=!1;!function e(){if(o&&s<=0)return i(null);for(;s<n&&!l;){var a=u();if(null===a)return o=!0,void(s<=0&&i(null));s+=1,r(t[a],a,c(function(n){s-=1,n?(i(n),l=!0):e()}))}}()}}function x(n){return function(e,r,i){return n(t.eachOf,e,r,i)}}function T(n){return function(t,e,r,i){return n(Q(e),t,r,i)}}function S(n){return function(e,r,i){return n(t.eachOfSeries,e,r,i)}}function E(n,t,r,i){i=a(i||e);var u=[];n(t,function(n,t,e){r(n,function(n,r){u[t]=r,e(n)})},function(n){i(n,u)})}function O(n,t,e,r){var i=[];n(t,function(n,t,r){e(n,function(e){e&&i.push({index:t,value:n}),r()})},function(){r(h(i.sort(function(n,t){return n.index-t.index}),function(n){return n.value}))})}function I(n,t,e,r){O(n,t,function(n,t){e(n,function(n){t(!n)})},r)}function L(n,t,e){return function(r,i,u,o){function c(){o&&o(e(!1,void 0))}function a(n,r,i){if(!o)return i();u(n,function(r){o&&t(r)&&(o(e(!0,n)),o=u=!1),i()})}arguments.length>3?n(r,i,a,c):(o=u,u=i,n(r,a,c))}}function A(n,t){return t}function C(n,t,r){r=r||e;var i=f(t)?[]:{};n(t,function(n,t,e){n(b(function(n,r){r.length<=1&&(r=r[0]),i[t]=r,e(n)}))},function(n){r(n,i)})}function q(n,t,e,r){var i=[];n(t,function(n,t,r){e(n,function(n,t){i=i.concat(t||[]),r(n)})},function(n){r(n,i)})}function z(n,r,i){if(null==r)r=1;else if(0===r)throw new Error("Concurrency must not be zero");function u(n,r,i,u){if(null!=u&&"function"!=typeof u)throw new Error("task callback must be a function");if(n.started=!0,l(r)||(r=[r]),0===r.length&&n.idle())return t.setImmediate(function(){n.drain()});p(r,function(t){var r={data:t,callback:u||e};i?n.tasks.unshift(r):n.tasks.push(r),n.tasks.length===n.concurrency&&n.saturated()}),t.setImmediate(n.process)}function o(n,t){return function(){a-=1;var e=arguments;p(t,function(n){n.callback.apply(n,e)}),n.tasks.length+a===0&&n.drain(),n.process()}}var a=0,s={tasks:[],concurrency:r,payload:i,saturated:e,empty:e,drain:e,started:!1,paused:!1,push:function(n,t){u(s,n,!1,t)},kill:function(){s.drain=e,s.tasks=[]},unshift:function(n,t){u(s,n,!0,t)},process:function(){if(!s.paused&&a<s.concurrency&&s.tasks.length)for(;a<s.concurrency&&s.tasks.length;){var t=s.payload?s.tasks.splice(0,s.payload):s.tasks.splice(0,s.tasks.length),e=h(t,function(n){return n.data});0===s.tasks.length&&s.empty(),a+=1;var r=c(o(s,t));n(e,r)}},length:function(){return s.tasks.length},running:function(){return a},idle:function(){return s.tasks.length+a===0},pause:function(){s.paused=!0},resume:function(){if(!1!==s.paused){s.paused=!1;for(var n=Math.min(s.concurrency,s.tasks.length),e=1;e<=n;e++)t.setImmediate(s.process)}}};return s}function B(n){return b(function(t,e){t.apply(null,e.concat([b(function(t,e){"undefined"!=typeof console&&(t?console.error&&console.error(t):console[n]&&p(e,function(t){console[n](t)}))})]))})}function M(n){return function(t,e,r){n(m(t),e,r)}}function P(n){return b(function(t,e){var r=b(function(e){var r=this,i=e.pop();return n(t,function(n,t,i){n.apply(r,e.concat([i]))},i)});return e.length?r.apply(this,e):r})}function V(n){return b(function(e){var r=e.pop();e.push(function(){var n=arguments;i?t.setImmediate(function(){r.apply(null,n)}):r.apply(null,n)});var i=!0;n.apply(this,e),i=!1})}"object"==typeof process&&"function"==typeof process.nextTick?t.nextTick=process.nextTick:t.nextTick=w,t.setImmediate=j?w:t.nextTick,t.forEach=t.each=function(n,e,r){return t.eachOf(n,k(e),r)},t.forEachSeries=t.eachSeries=function(n,e,r){return t.eachOfSeries(n,k(e),r)},t.forEachLimit=t.eachLimit=function(n,t,e,r){return Q(t)(n,k(e),r)},t.forEachOf=t.eachOf=function(n,t,r){r=a(r||e);var i=f(n=n||[])?n.length:v(n).length,u=0;if(!i)return r(null);function o(n){n?r(n):(u+=1)>=i&&r(null)}!function(n,t){f(n)?p(n,t):y(n,t)}(n,function(e,r){t(n[r],r,c(o))})},t.forEachOfSeries=t.eachOfSeries=function(n,r,i){i=a(i||e);var u=g(n=n||[]),o=u();!function e(){var a=!0;if(null===o)return i(null);r(n[o],o,c(function(n){if(n)i(n);else{if(null===(o=u()))return i(null);a?t.nextTick(e):e()}})),a=!1}()},t.forEachOfLimit=t.eachOfLimit=function(n,t,e,r){Q(t)(n,e,r)},t.map=x(E),t.mapSeries=S(E),t.mapLimit=T(E),t.inject=t.foldl=t.reduce=function(n,e,r,i){t.eachOfSeries(n,function(n,t,i){r(e,n,function(n,t){e=t,i(n)})},function(n){i(n||null,e)})},t.foldr=t.reduceRight=function(n,e,r,i){var u=h(n,function(n){return n}).reverse();t.reduce(u,e,r,i)},t.select=t.filter=x(O),t.selectLimit=t.filterLimit=T(O),t.selectSeries=t.filterSeries=S(O),t.reject=x(I),t.rejectLimit=T(I),t.rejectSeries=S(I),t.any=t.some=L(t.eachOf,i,r),t.someLimit=L(t.eachOfLimit,i,r),t.all=t.every=L(t.eachOf,u,u),t.everyLimit=L(t.eachOfLimit,u,u),t.detect=L(t.eachOf,r,A),t.detectSeries=L(t.eachOfSeries,r,A),t.sortBy=function(n,e,r){function i(n,t){var e=n.criteria,r=t.criteria;return e<r?-1:e>r?1:0}t.map(n,function(n,t){e(n,function(e,r){e?t(e):t(null,{value:n,criteria:r})})},function(n,t){if(n)return r(n);r(null,h(t.sort(i),function(n){return n.value}))})},t.auto=function(n,r){r=a(r||e);var i=v(n),u=i.length;if(!u)return r(null);var o={},c=[];function s(n){c.unshift(n)}function f(){u--,p(c.slice(0),function(n){n()})}s(function(){u||r(null,o)}),p(i,function(e){for(var i,u=l(n[e])?n[e]:[n[e]],a=b(function(n,i){if(i.length<=1&&(i=i[0]),n){var u={};y(o,function(n,t){u[t]=n}),u[e]=i,r(n,u)}else o[e]=i,t.setImmediate(f)}),h=u.slice(0,u.length-1),m=h.length;m--;){if(!(i=n[h[m]]))throw new Error("Has inexistant dependency");if(l(i)&&d(i,e)>=0)throw new Error("Has cyclic dependencies")}function v(){return n=function(n,t){return n&&o.hasOwnProperty(t)},t=!0,p(h,function(e,r,i){t=n(t,e,r,i)}),t&&!o.hasOwnProperty(e);var n,t}v()?u[u.length-1](a,o):s(function n(){v()&&((t=d(c,n))>=0&&c.splice(t,1),u[u.length-1](a,o));var t})})},t.retry=function(n,e,r){var i=5,u=0,o=[],c={times:i,interval:u};var a=arguments.length;if(a<1||a>3)throw new Error("Invalid arguments - must be either (task), (task, callback), (times, task) or (times, task, callback)");function s(n,e){function r(n,t){return function(r){n(function(n,e){r(!n||t,{err:n,result:e})},e)}}function i(n){return function(t){setTimeout(function(){t(null)},n)}}for(;c.times;){var u=!(c.times-=1);o.push(r(c.task,u)),!u&&c.interval>0&&o.push(i(c.interval))}t.series(o,function(t,e){e=e[e.length-1],(n||c.callback)(e.err,e.result)})}return a<=2&&"function"==typeof n&&(r=e,e=n),"function"!=typeof n&&function(n,t){if("number"==typeof t)n.times=parseInt(t,10)||i;else{if("object"!=typeof t)throw new Error("Unsupported argument type for 'times': "+typeof t);n.times=parseInt(t.times,10)||i,n.interval=parseInt(t.interval,10)||u}}(c,n),c.callback=r,c.task=e,c.callback?s():s},t.waterfall=function(n,r){if(r=a(r||e),!l(n)){var i=new Error("First argument to waterfall must be an array of functions");return r(i)}if(!n.length)return r();!function n(t){return b(function(e,i){if(e)r.apply(null,[e].concat(i));else{var u=t.next();u?i.push(n(u)):i.push(r),V(t).apply(null,i)}})}(t.iterator(n))()},t.parallel=function(n,e){C(t.eachOf,n,e)},t.parallelLimit=function(n,t,e){C(Q(t),n,e)},t.series=function(n,e){C(t.eachOfSeries,n,e)},t.iterator=function(n){return function t(e){function r(){return n.length&&n[e].apply(null,arguments),r.next()}return r.next=function(){return e<n.length-1?t(e+1):null},r}(0)},t.apply=b(function(n,t){return b(function(e){return n.apply(null,t.concat(e))})}),t.concat=x(q),t.concatSeries=S(q),t.whilst=function(n,t,r){if(r=r||e,n()){var i=b(function(e,u){e?r(e):n.apply(this,u)?t(i):r(null)});t(i)}else r(null)},t.doWhilst=function(n,e,r){var i=0;return t.whilst(function(){return++i<=1||e.apply(this,arguments)},n,r)},t.until=function(n,e,r){return t.whilst(function(){return!n.apply(this,arguments)},e,r)},t.doUntil=function(n,e,r){return t.doWhilst(n,function(){return!e.apply(this,arguments)},r)},t.during=function(n,t,r){r=r||e;var i=b(function(t,e){t?r(t):(e.push(u),n.apply(this,e))}),u=function(n,e){n?r(n):e?t(i):r(null)};n(u)},t.doDuring=function(n,e,r){var i=0;t.during(function(n){i++<1?n(null,!0):e.apply(this,arguments)},n,r)},t.queue=function(n,t){return z(function(t,e){n(t[0],e)},t,1)},t.priorityQueue=function(n,r){function i(n,t){return n.priority-t.priority}var u=t.queue(n,r);return u.push=function(n,r,o){!function(n,r,u,o){if(null!=o&&"function"!=typeof o)throw new Error("task callback must be a function");if(n.started=!0,l(r)||(r=[r]),0===r.length)return t.setImmediate(function(){n.drain()});p(r,function(r){var c={data:r,priority:u,callback:"function"==typeof o?o:e};n.tasks.splice(function(n,t,e){for(var r=-1,i=n.length-1;r<i;){var u=r+(i-r+1>>>1);e(t,n[u])>=0?r=u:i=u-1}return r}(n.tasks,c,i)+1,0,c),n.tasks.length===n.concurrency&&n.saturated(),t.setImmediate(n.process)})}(u,n,r,o)},delete u.unshift,u},t.cargo=function(n,t){return z(n,1,t)},t.log=B("log"),t.dir=B("dir"),t.memoize=function(n,e){var r={},i={};e=e||function(n){return n};var u=b(function(u){var o=u.pop(),c=e.apply(null,u);c in r?t.nextTick(function(){o.apply(null,r[c])}):c in i?i[c].push(o):(i[c]=[o],n.apply(null,u.concat([b(function(n){r[c]=n;var t=i[c];delete i[c];for(var e=0,u=t.length;e<u;e++)t[e].apply(null,n)})])))});return u.memo=r,u.unmemoized=n,u},t.unmemoize=function(n){return function(){return(n.unmemoized||n).apply(null,arguments)}},t.times=M(t.map),t.timesSeries=M(t.mapSeries),t.timesLimit=function(n,e,r,i){return t.mapLimit(m(n),e,r,i)},t.seq=function(){var n=arguments;return b(function(r){var i=this,u=r[r.length-1];"function"==typeof u?r.pop():u=e,t.reduce(n,r,function(n,t,e){t.apply(i,n.concat([b(function(n,t){e(n,t)})]))},function(n,t){u.apply(i,[n].concat(t))})})},t.compose=function(){return t.seq.apply(null,Array.prototype.reverse.call(arguments))},t.applyEach=P(t.eachOf),t.applyEachSeries=P(t.eachOfSeries),t.forever=function(n,t){var r=c(t||e),i=V(n);!function n(t){if(t)return r(t);i(n)}()},t.ensureAsync=V,t.constant=b(function(n){var t=[null].concat(n);return function(n){return n.apply(this,t)}}),t.wrapSync=t.asyncify=function(n){return b(function(t){var e,r=t.pop();try{e=n.apply(this,t)}catch(n){return r(n)}r(null,e)})},"undefined"!=typeof module&&module.exports?module.exports=t:"undefined"!=typeof define&&define.amd?define([],function(){return t}):o.async=t}();var conversationPos,DEBUG=!1,context={};function getCurrentTime(){var n=new Date,t=n.getHours(),e=n.getMinutes(),r=t>=12?"PM":"AM";return(t=(t%=12)||12)+":"+(e=e<10?"0"+e:e)+" "+r}function renderStatement(n){jQuery(".chat-container").append('<div class="chat-message-wrapper"><div class="absolute-wrapper"><div class="message-details"><div class="bot-avatar"></div><span class="message-date">'+getCurrentTime()+'</span></div></div><p class="chat-message">'+n+"</p></div>")}function showTyping(){jQuery(".chat-container").append('<div class="typing-wrapper"><div class="bot-avatar"></div><span class="bot-name">'+botName+'</span><p class="chat-message typing"><span class="dot"></span><span class="dot"></span><span class="dot"></span></p></div>')}function hideTyping(){jQuery(".typing-wrapper").remove()}var chatWrapper=jQuery(".bot-chat-wrapper");function scrollToBottom(){chatWrapper.animate({scrollTop:600},"slow")}function inputError(n){jQuery(".bot-error p").text(n),jQuery(".bot-error").animate({bottom:0},500).delay(3e3).animate({bottom:"-70px"},500)}function checkInput(n){return jQuery(".bot-container input[type=text]").val().length>2?showResponse(n):inputError(botVars.validationName),!1}function checkEmail(n){let t=jQuery(".bot-container input[type=email]").val(),e=/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(String(t.toLowerCase()));if(t.length>7&&!0===e){var r="action=wpmm_add_subscriber&"+jQuery(".bot-container input[type=email]").serialize();jQuery.post(wpmm_vars.ajax_url,r,function(n){if(!n.success)return alert(n.data),!1},"json"),showResponse(n)}else inputError(botVars.validationEmail);return!1}function clearChat(){jQuery(".chat-container").empty()}function clearFooter(){jQuery(".choices").empty(),jQuery(".input").empty()}function startConversation(n,t){clearFooter(),clearChat(),conversationPos=n,jQuery.getScript(botVars.uploadsBaseUrl+"data.js",function(n){showStatement(t)})}function showStatement(n){var t,e=conversationData[conversationPos][n];"sideeffect"in e&&jQuery.type("function"===e.sideeffect)&&e.sideeffect(context),"array"===jQuery.type(e.statement)?t=e.statement:"string"===jQuery.type(e.statement)?t=[e.statement]:"function"===jQuery.type(e.statement)&&(t=e.statement(context)),async.eachSeries(t,function(n,t){if(showTyping(),scrollToBottom(),n.length<=50)var e=1800;else e=n.length/3*30*(Math.floor(5*Math.random())+1.2);DEBUG&&(e=0),setTimeout(function(){hideTyping(),renderStatement(n),scrollToBottom(),t()},e)},function(n){if("options"in e){jQuery(".input").hide(),jQuery(".choices").show();var t=e.options;t.length>0&&setTimeout(function(){for(var n=0;n<t.length;n++){var e,r=t[n];null===r.consequence?(e=null,"disabled"):(e=function(n){showResponse(n)}.bind(null,r),"");jQuery("<p/>",{text:r.choice,class:"chat-message user",click:e}).appendTo(".choices")}},750)}else if("input"in e){jQuery(".input").show(),jQuery(".choices").hide();var r=e.input,i=jQuery("<form/>",{submit:checkInput.bind(null,r)}),u=jQuery("<p/>",{class:"chat-message user"}).appendTo(i),o=jQuery("<input/>",{type:"text",placeholder:botVars.typeName,name:r.name,autocomplete:"off",required:!0}).appendTo(u);jQuery("<a/>",{text:"Send",click:checkInput.bind(null,r)}).appendTo(u);i.appendTo(".input"),async.nextTick(function(){o.focus()})}else if("email"in e){jQuery(".input").show(),jQuery(".choices").hide();r=e.email,i=jQuery("<form/>",{class:"bot_subscribe_form",submit:checkEmail.bind(null,r)}),u=jQuery("<p/>",{class:"chat-message user"}).appendTo(i),o=jQuery("<input/>",{type:"email",placeholder:botVars.typeEmail,name:r.email,autocomplete:"off"}).appendTo(u),jQuery("<a/>",{text:botVars.send,click:checkEmail.bind(null,r)}).appendTo(u);i.appendTo(".input"),async.nextTick(function(){o.focus()})}scrollToBottom()})}function showResponse(n){var t="";"name"in n?(context[n.name]=jQuery(".bot-container input[type=text]").val(),t=context[n.name]):"email"in n?(context[n.email]=jQuery(".bot-container input[type=email]").val(),t=context[n.email]):t=n.choice,clearFooter(),jQuery(".chat-container").append('<p class="chat-message user">'+t+"</p>"),"consequence"in n&&showStatement(n.consequence)}
1
+ !function(){var n,t={};function e(){}function r(n){return n}function i(n){return!!n}function u(n){return!n}var o="object"==typeof self&&self.self===self&&self||"object"==typeof global&&global.global===global&&global||this;function a(n){return function(){if(null===n)throw new Error("Callback was already called.");n.apply(this,arguments),n=null}}function c(n){return function(){null!==n&&(n.apply(this,arguments),n=null)}}null!=o&&(n=o.async),t.noConflict=function(){return o.async=n,t};var s=Object.prototype.toString,l=Array.isArray||function(n){return"[object Array]"===s.call(n)};function f(n){return l(n)||"number"==typeof n.length&&n.length>=0&&n.length%1==0}function p(n,t){for(var e=-1,r=n.length;++e<r;)t(n[e],e,n)}function h(n,t){for(var e=-1,r=n.length,i=Array(r);++e<r;)i[e]=t(n[e],e,n);return i}function y(n){return h(Array(n),function(n,t){return t})}function m(n,t){p(v(n),function(e){t(n[e],e)})}function d(n,t){for(var e=0;e<n.length;e++)if(n[e]===t)return e;return-1}var v=Object.keys||function(n){var t=[];for(var e in n)n.hasOwnProperty(e)&&t.push(e);return t};function g(n){var t,e,r=-1;return f(n)?(t=n.length,function(){return++r<t?r:null}):(e=v(n),t=e.length,function(){return++r<t?e[r]:null})}function b(n,t){return t=null==t?n.length-1:+t,function(){for(var e=Math.max(arguments.length-t,0),r=Array(e),i=0;i<e;i++)r[i]=arguments[i+t];switch(t){case 0:return n.call(this,r);case 1:return n.call(this,arguments[0],r);case 2:return n.call(this,arguments[0],arguments[1],r)}}}function k(n){return function(t,e,r){return n(t,r)}}var w="function"==typeof setImmediate&&setImmediate,j=w?function(n){w(n)}:function(n){setTimeout(n,0)};function Q(n){return function(t,r,i){i=c(i||e);var u=g(t=t||[]);if(n<=0)return i(null);var o=!1,s=0,l=!1;!function e(){if(o&&s<=0)return i(null);for(;s<n&&!l;){var c=u();if(null===c)return o=!0,void(s<=0&&i(null));s+=1,r(t[c],c,a(function(n){s-=1,n?(i(n),l=!0):e()}))}}()}}function x(n){return function(e,r,i){return n(t.eachOf,e,r,i)}}function S(n){return function(t,e,r,i){return n(Q(e),t,r,i)}}function T(n){return function(e,r,i){return n(t.eachOfSeries,e,r,i)}}function E(n,t,r,i){i=c(i||e);var u=[];n(t,function(n,t,e){r(n,function(n,r){u[t]=r,e(n)})},function(n){i(n,u)})}function O(n,t,e,r){var i=[];n(t,function(n,t,r){e(n,function(e){e&&i.push({index:t,value:n}),r()})},function(){r(h(i.sort(function(n,t){return n.index-t.index}),function(n){return n.value}))})}function I(n,t,e,r){O(n,t,function(n,t){e(n,function(n){t(!n)})},r)}function L(n,t,e){return function(r,i,u,o){function a(){o&&o(e(!1,void 0))}function c(n,r,i){if(!o)return i();u(n,function(r){o&&t(r)&&(o(e(!0,n)),o=u=!1),i()})}arguments.length>3?n(r,i,c,a):(o=u,u=i,n(r,c,a))}}function A(n,t){return t}function C(n,t,r){r=r||e;var i=f(t)?[]:{};n(t,function(n,t,e){n(b(function(n,r){r.length<=1&&(r=r[0]),i[t]=r,e(n)}))},function(n){r(n,i)})}function _(n,t,e,r){var i=[];n(t,function(n,t,r){e(n,function(n,t){i=i.concat(t||[]),r(n)})},function(n){r(n,i)})}function z(n,r,i){if(null==r)r=1;else if(0===r)throw new Error("Concurrency must not be zero");function u(n,r,i,u){if(null!=u&&"function"!=typeof u)throw new Error("task callback must be a function");if(n.started=!0,l(r)||(r=[r]),0===r.length&&n.idle())return t.setImmediate(function(){n.drain()});p(r,function(t){var r={data:t,callback:u||e};i?n.tasks.unshift(r):n.tasks.push(r),n.tasks.length===n.concurrency&&n.saturated()}),t.setImmediate(n.process)}function o(n,t){return function(){c-=1;var e=arguments;p(t,function(n){n.callback.apply(n,e)}),n.tasks.length+c===0&&n.drain(),n.process()}}var c=0,s={tasks:[],concurrency:r,payload:i,saturated:e,empty:e,drain:e,started:!1,paused:!1,push:function(n,t){u(s,n,!1,t)},kill:function(){s.drain=e,s.tasks=[]},unshift:function(n,t){u(s,n,!0,t)},process:function(){if(!s.paused&&c<s.concurrency&&s.tasks.length)for(;c<s.concurrency&&s.tasks.length;){var t=s.payload?s.tasks.splice(0,s.payload):s.tasks.splice(0,s.tasks.length),e=h(t,function(n){return n.data});0===s.tasks.length&&s.empty(),c+=1;var r=a(o(s,t));n(e,r)}},length:function(){return s.tasks.length},running:function(){return c},idle:function(){return s.tasks.length+c===0},pause:function(){s.paused=!0},resume:function(){if(!1!==s.paused){s.paused=!1;for(var n=Math.min(s.concurrency,s.tasks.length),e=1;e<=n;e++)t.setImmediate(s.process)}}};return s}function q(n){return b(function(t,e){t.apply(null,e.concat([b(function(t,e){"undefined"!=typeof console&&(t?console.error&&console.error(t):console[n]&&p(e,function(t){console[n](t)}))})]))})}function B(n){return function(t,e,r){n(y(t),e,r)}}function N(n){return b(function(t,e){var r=b(function(e){var r=this,i=e.pop();return n(t,function(n,t,i){n.apply(r,e.concat([i]))},i)});return e.length?r.apply(this,e):r})}function M(n){return b(function(e){var r=e.pop();e.push(function(){var n=arguments;i?t.setImmediate(function(){r.apply(null,n)}):r.apply(null,n)});var i=!0;n.apply(this,e),i=!1})}"object"==typeof process&&"function"==typeof process.nextTick?t.nextTick=process.nextTick:t.nextTick=j,t.setImmediate=w?j:t.nextTick,t.forEach=t.each=function(n,e,r){return t.eachOf(n,k(e),r)},t.forEachSeries=t.eachSeries=function(n,e,r){return t.eachOfSeries(n,k(e),r)},t.forEachLimit=t.eachLimit=function(n,t,e,r){return Q(t)(n,k(e),r)},t.forEachOf=t.eachOf=function(n,t,r){r=c(r||e);var i=f(n=n||[])?n.length:v(n).length,u=0;if(!i)return r(null);function o(n){n?r(n):(u+=1)>=i&&r(null)}!function(n,t){f(n)?p(n,t):m(n,t)}(n,function(e,r){t(n[r],r,a(o))})},t.forEachOfSeries=t.eachOfSeries=function(n,r,i){i=c(i||e);var u=g(n=n||[]),o=u();!function e(){var c=!0;if(null===o)return i(null);r(n[o],o,a(function(n){if(n)i(n);else{if(null===(o=u()))return i(null);c?t.nextTick(e):e()}})),c=!1}()},t.forEachOfLimit=t.eachOfLimit=function(n,t,e,r){Q(t)(n,e,r)},t.map=x(E),t.mapSeries=T(E),t.mapLimit=S(E),t.inject=t.foldl=t.reduce=function(n,e,r,i){t.eachOfSeries(n,function(n,t,i){r(e,n,function(n,t){e=t,i(n)})},function(n){i(n||null,e)})},t.foldr=t.reduceRight=function(n,e,r,i){var u=h(n,function(n){return n}).reverse();t.reduce(u,e,r,i)},t.select=t.filter=x(O),t.selectLimit=t.filterLimit=S(O),t.selectSeries=t.filterSeries=T(O),t.reject=x(I),t.rejectLimit=S(I),t.rejectSeries=T(I),t.any=t.some=L(t.eachOf,i,r),t.someLimit=L(t.eachOfLimit,i,r),t.all=t.every=L(t.eachOf,u,u),t.everyLimit=L(t.eachOfLimit,u,u),t.detect=L(t.eachOf,r,A),t.detectSeries=L(t.eachOfSeries,r,A),t.sortBy=function(n,e,r){function i(n,t){var e=n.criteria,r=t.criteria;return e<r?-1:e>r?1:0}t.map(n,function(n,t){e(n,function(e,r){e?t(e):t(null,{value:n,criteria:r})})},function(n,t){if(n)return r(n);r(null,h(t.sort(i),function(n){return n.value}))})},t.auto=function(n,r){r=c(r||e);var i=v(n),u=i.length;if(!u)return r(null);var o={},a=[];function s(n){a.unshift(n)}function f(){u--,p(a.slice(0),function(n){n()})}s(function(){u||r(null,o)}),p(i,function(e){for(var i,u=l(n[e])?n[e]:[n[e]],c=b(function(n,i){if(i.length<=1&&(i=i[0]),n){var u={};m(o,function(n,t){u[t]=n}),u[e]=i,r(n,u)}else o[e]=i,t.setImmediate(f)}),h=u.slice(0,u.length-1),y=h.length;y--;){if(!(i=n[h[y]]))throw new Error("Has inexistant dependency");if(l(i)&&d(i,e)>=0)throw new Error("Has cyclic dependencies")}function v(){return n=function(n,t){return n&&o.hasOwnProperty(t)},t=!0,p(h,function(e,r,i){t=n(t,e,r,i)}),t&&!o.hasOwnProperty(e);var n,t}v()?u[u.length-1](c,o):s(function n(){v()&&((t=d(a,n))>=0&&a.splice(t,1),u[u.length-1](c,o));var t})})},t.retry=function(n,e,r){var i=5,u=0,o=[],a={times:i,interval:u};var c=arguments.length;if(c<1||c>3)throw new Error("Invalid arguments - must be either (task), (task, callback), (times, task) or (times, task, callback)");function s(n,e){function r(n,t){return function(r){n(function(n,e){r(!n||t,{err:n,result:e})},e)}}function i(n){return function(t){setTimeout(function(){t(null)},n)}}for(;a.times;){var u=!(a.times-=1);o.push(r(a.task,u)),!u&&a.interval>0&&o.push(i(a.interval))}t.series(o,function(t,e){e=e[e.length-1],(n||a.callback)(e.err,e.result)})}return c<=2&&"function"==typeof n&&(r=e,e=n),"function"!=typeof n&&function(n,t){if("number"==typeof t)n.times=parseInt(t,10)||i;else{if("object"!=typeof t)throw new Error("Unsupported argument type for 'times': "+typeof t);n.times=parseInt(t.times,10)||i,n.interval=parseInt(t.interval,10)||u}}(a,n),a.callback=r,a.task=e,a.callback?s():s},t.waterfall=function(n,r){if(r=c(r||e),!l(n)){var i=new Error("First argument to waterfall must be an array of functions");return r(i)}if(!n.length)return r();!function n(t){return b(function(e,i){if(e)r.apply(null,[e].concat(i));else{var u=t.next();u?i.push(n(u)):i.push(r),M(t).apply(null,i)}})}(t.iterator(n))()},t.parallel=function(n,e){C(t.eachOf,n,e)},t.parallelLimit=function(n,t,e){C(Q(t),n,e)},t.series=function(n,e){C(t.eachOfSeries,n,e)},t.iterator=function(n){return function t(e){function r(){return n.length&&n[e].apply(null,arguments),r.next()}return r.next=function(){return e<n.length-1?t(e+1):null},r}(0)},t.apply=b(function(n,t){return b(function(e){return n.apply(null,t.concat(e))})}),t.concat=x(_),t.concatSeries=T(_),t.whilst=function(n,t,r){if(r=r||e,n()){var i=b(function(e,u){e?r(e):n.apply(this,u)?t(i):r(null)});t(i)}else r(null)},t.doWhilst=function(n,e,r){var i=0;return t.whilst(function(){return++i<=1||e.apply(this,arguments)},n,r)},t.until=function(n,e,r){return t.whilst(function(){return!n.apply(this,arguments)},e,r)},t.doUntil=function(n,e,r){return t.doWhilst(n,function(){return!e.apply(this,arguments)},r)},t.during=function(n,t,r){r=r||e;var i=b(function(t,e){t?r(t):(e.push(u),n.apply(this,e))}),u=function(n,e){n?r(n):e?t(i):r(null)};n(u)},t.doDuring=function(n,e,r){var i=0;t.during(function(n){i++<1?n(null,!0):e.apply(this,arguments)},n,r)},t.queue=function(n,t){return z(function(t,e){n(t[0],e)},t,1)},t.priorityQueue=function(n,r){function i(n,t){return n.priority-t.priority}var u=t.queue(n,r);return u.push=function(n,r,o){!function(n,r,u,o){if(null!=o&&"function"!=typeof o)throw new Error("task callback must be a function");if(n.started=!0,l(r)||(r=[r]),0===r.length)return t.setImmediate(function(){n.drain()});p(r,function(r){var a={data:r,priority:u,callback:"function"==typeof o?o:e};n.tasks.splice(function(n,t,e){for(var r=-1,i=n.length-1;r<i;){var u=r+(i-r+1>>>1);e(t,n[u])>=0?r=u:i=u-1}return r}(n.tasks,a,i)+1,0,a),n.tasks.length===n.concurrency&&n.saturated(),t.setImmediate(n.process)})}(u,n,r,o)},delete u.unshift,u},t.cargo=function(n,t){return z(n,1,t)},t.log=q("log"),t.dir=q("dir"),t.memoize=function(n,e){var r={},i={};e=e||function(n){return n};var u=b(function(u){var o=u.pop(),a=e.apply(null,u);a in r?t.nextTick(function(){o.apply(null,r[a])}):a in i?i[a].push(o):(i[a]=[o],n.apply(null,u.concat([b(function(n){r[a]=n;var t=i[a];delete i[a];for(var e=0,u=t.length;e<u;e++)t[e].apply(null,n)})])))});return u.memo=r,u.unmemoized=n,u},t.unmemoize=function(n){return function(){return(n.unmemoized||n).apply(null,arguments)}},t.times=B(t.map),t.timesSeries=B(t.mapSeries),t.timesLimit=function(n,e,r,i){return t.mapLimit(y(n),e,r,i)},t.seq=function(){var n=arguments;return b(function(r){var i=this,u=r[r.length-1];"function"==typeof u?r.pop():u=e,t.reduce(n,r,function(n,t,e){t.apply(i,n.concat([b(function(n,t){e(n,t)})]))},function(n,t){u.apply(i,[n].concat(t))})})},t.compose=function(){return t.seq.apply(null,Array.prototype.reverse.call(arguments))},t.applyEach=N(t.eachOf),t.applyEachSeries=N(t.eachOfSeries),t.forever=function(n,t){var r=a(t||e),i=M(n);!function n(t){if(t)return r(t);i(n)}()},t.ensureAsync=M,t.constant=b(function(n){var t=[null].concat(n);return function(n){return n.apply(this,t)}}),t.wrapSync=t.asyncify=function(n){return b(function(t){var e,r=t.pop();try{e=n.apply(this,t)}catch(n){return r(n)}r(null,e)})},"undefined"!=typeof module&&module.exports?module.exports=t:"undefined"!=typeof define&&define.amd?define([],function(){return t}):o.async=t}();var conversationPos,DEBUG=!1,context={};function getCurrentTime(){var n=new Date,t=n.getHours(),e=n.getMinutes(),r=t>=12?"PM":"AM";return(t=(t%=12)||12)+":"+(e=e<10?"0"+e:e)+" "+r}function _phpCastString(n){switch(typeof n){case"boolean":return n?"1":"";case"string":return n;case"number":return isNaN(n)?"NAN":isFinite(n)?n+"":(n<0?"-":"")+"INF";case"undefined":return"";case"object":return Array.isArray(n)?"Array":null!==n?"Object":"";case"function":default:throw new Error("Unsupported value type")}}function strip_tags(n,t){t=(((t||"")+"").toLowerCase().match(/<[a-z][a-z0-9]*>/g)||[]).join("");var e=/<\/?([a-z0-9]*)\b[^>]*>?/gi,r=/<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi,i=_phpCastString(n);for(i="<"===i.substring(i.length-1)?i.substring(0,i.length-1):i;;){if(i===(i=i.replace(r,"").replace(e,function(n,e){return t.indexOf("<"+e.toLowerCase()+">")>-1?n:""})))return i}}function renderStatement(n){n=strip_tags(n),jQuery(".chat-container").append('<div class="chat-message-wrapper"><div class="absolute-wrapper"><div class="message-details"><div class="bot-avatar"></div><span class="message-date">'+getCurrentTime()+'</span></div></div><p class="chat-message">'+n+"</p></div>")}function showTyping(){jQuery(".chat-container").append('<div class="typing-wrapper"><div class="bot-avatar"></div><span class="bot-name">'+botName+'</span><p class="chat-message typing"><span class="dot"></span><span class="dot"></span><span class="dot"></span></p></div>')}function hideTyping(){jQuery(".typing-wrapper").remove()}var chatWrapper=jQuery(".bot-chat-wrapper");function scrollToBottom(){chatWrapper.animate({scrollTop:600},"slow")}function inputError(n){jQuery(".bot-error p").text(n),jQuery(".bot-error").animate({bottom:0},500).delay(3e3).animate({bottom:"-70px"},500)}function checkInput(n){var t=jQuery(".bot-container input[type=text]").val();return(t=strip_tags(t)).length>2?showResponse(n):inputError(botVars.validationName),!1}function checkEmail(n){var t=jQuery(".bot-container input[type=email]").val(),e=/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(String(t.toLowerCase()));if(t.length>7&&!0===e){var r="action=wpmm_add_subscriber&"+jQuery(".bot-container input[type=email]").serialize();jQuery.post(wpmm_vars.ajax_url,r,function(n){if(!n.success)return alert(n.data),!1},"json"),showResponse(n)}else inputError(botVars.validationEmail);return!1}function clearChat(){jQuery(".chat-container").empty()}function clearFooter(){jQuery(".choices").empty(),jQuery(".input").empty()}function startConversation(n,t){clearFooter(),clearChat(),conversationPos=n,jQuery.getScript(botVars.uploadsBaseUrl+"data.js",function(n){showStatement(t)})}function showStatement(n){var t,e=conversationData[conversationPos][n];"sideeffect"in e&&jQuery.type("function"===e.sideeffect)&&e.sideeffect(context),"array"===jQuery.type(e.statement)?t=e.statement:"string"===jQuery.type(e.statement)?t=[e.statement]:"function"===jQuery.type(e.statement)&&(t=e.statement(context)),async.eachSeries(t,function(n,t){if(showTyping(),scrollToBottom(),n.length<=50)var e=1800;else e=n.length/3*30*(Math.floor(5*Math.random())+1.2);DEBUG&&(e=0),setTimeout(function(){hideTyping(),renderStatement(n),scrollToBottom(),t()},e)},function(n){if("options"in e){jQuery(".input").hide(),jQuery(".choices").show();var t=e.options;t.length>0&&setTimeout(function(){for(var n=0;n<t.length;n++){var e,r=t[n];null===r.consequence?(e=null,"disabled"):(e=function(n){showResponse(n)}.bind(null,r),"");jQuery("<p/>",{text:r.choice,class:"chat-message user",click:e}).appendTo(".choices")}},750)}else if("input"in e){jQuery(".input").show(),jQuery(".choices").hide();var r=e.input,i=jQuery("<form/>",{submit:checkInput.bind(null,r)}),u=jQuery("<p/>",{class:"chat-message user"}).appendTo(i),o=jQuery("<input/>",{type:"text",placeholder:botVars.typeName,name:r.name,autocomplete:"off",required:!0}).appendTo(u);jQuery("<a/>",{text:"Send",click:checkInput.bind(null,r)}).appendTo(u);i.appendTo(".input"),async.nextTick(function(){o.focus()})}else if("email"in e){jQuery(".input").show(),jQuery(".choices").hide();r=e.email,i=jQuery("<form/>",{class:"bot_subscribe_form",submit:checkEmail.bind(null,r)}),u=jQuery("<p/>",{class:"chat-message user"}).appendTo(i),o=jQuery("<input/>",{type:"email",placeholder:botVars.typeEmail,name:r.email,autocomplete:"off"}).appendTo(u),jQuery("<a/>",{text:botVars.send,click:checkEmail.bind(null,r)}).appendTo(u);i.appendTo(".input"),async.nextTick(function(){o.focus()})}scrollToBottom()})}function showResponse(n){var t="";"name"in n?(context[n.name]=jQuery(".bot-container input[type=text]").val(),t=context[n.name]):"email"in n?(context[n.email]=jQuery(".bot-container input[type=email]").val(),t=context[n.email]):t=n.choice,clearFooter(),t=strip_tags(t),jQuery(".chat-container").append('<p class="chat-message user">'+t+"</p>"),"consequence"in n&&showStatement(n.consequence)}
includes/classes/wp-maintenance-mode.php CHANGED
@@ -4,7 +4,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
4
 
5
  class WP_Maintenance_Mode {
6
 
7
- const VERSION = '2.2.3';
8
 
9
  protected $plugin_slug = 'wp-maintenance-mode';
10
  protected $plugin_settings;
@@ -184,7 +184,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
184
  */
185
  public static function activate($network_wide) {
186
  // because we need translated items when activate :)
187
- load_plugin_textdomain(self::get_instance()->plugin_slug, FALSE, WPMM_LANGUAGES_PATH);
188
 
189
  // do the job
190
  if (function_exists('is_multisite') && is_multisite()) {
@@ -507,7 +507,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
507
  $locale = apply_filters('plugin_locale', get_locale(), $domain);
508
 
509
  load_textdomain($domain, trailingslashit(WP_LANG_DIR) . $domain . '/' . $domain . '-' . $locale . '.mo');
510
- load_plugin_textdomain($domain, FALSE, WPMM_LANGUAGES_PATH);
511
  }
512
 
513
  /**
@@ -614,7 +614,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
614
  nocache_headers();
615
  ob_start();
616
  header("Content-type: text/html; charset=$charset");
617
- header("$protocol $status_code Service Unavailable", TRUE, $status_code);
618
  header("Retry-After: $backtime");
619
 
620
  // load maintenance mode template
@@ -786,22 +786,22 @@ if (!class_exists('WP_Maintenance_Mode')) {
786
  public function redirect() {
787
  // we do not redirect if there's nothing saved in "redirect" input
788
  if (empty($this->plugin_settings['general']['redirection'])) {
789
- return NULL;
790
  }
791
 
792
  // we do not redirect ajax calls
793
  if ((defined('DOING_AJAX') && DOING_AJAX)) {
794
- return NULL;
795
  }
796
 
797
  // we do not redirect visitors or logged-in users that are not using /wp-admin/
798
  if (!is_user_logged_in() || !is_admin()) {
799
- return NULL;
800
  }
801
 
802
  // we do not redirect users that have access to backend
803
  if ($this->check_user_role()) {
804
- return NULL;
805
  }
806
 
807
  $redirect_to = stripslashes($this->plugin_settings['general']['redirection']);
4
 
5
  class WP_Maintenance_Mode {
6
 
7
+ const VERSION = '2.2.4';
8
 
9
  protected $plugin_slug = 'wp-maintenance-mode';
10
  protected $plugin_settings;
184
  */
185
  public static function activate($network_wide) {
186
  // because we need translated items when activate :)
187
+ load_plugin_textdomain(self::get_instance()->plugin_slug, false, WPMM_LANGUAGES_PATH);
188
 
189
  // do the job
190
  if (function_exists('is_multisite') && is_multisite()) {
507
  $locale = apply_filters('plugin_locale', get_locale(), $domain);
508
 
509
  load_textdomain($domain, trailingslashit(WP_LANG_DIR) . $domain . '/' . $domain . '-' . $locale . '.mo');
510
+ load_plugin_textdomain($domain, false, WPMM_LANGUAGES_PATH);
511
  }
512
 
513
  /**
614
  nocache_headers();
615
  ob_start();
616
  header("Content-type: text/html; charset=$charset");
617
+ header("$protocol $status_code Service Unavailable", true, $status_code);
618
  header("Retry-After: $backtime");
619
 
620
  // load maintenance mode template
786
  public function redirect() {
787
  // we do not redirect if there's nothing saved in "redirect" input
788
  if (empty($this->plugin_settings['general']['redirection'])) {
789
+ return null;
790
  }
791
 
792
  // we do not redirect ajax calls
793
  if ((defined('DOING_AJAX') && DOING_AJAX)) {
794
+ return null;
795
  }
796
 
797
  // we do not redirect visitors or logged-in users that are not using /wp-admin/
798
  if (!is_user_logged_in() || !is_admin()) {
799
+ return null;
800
  }
801
 
802
  // we do not redirect users that have access to backend
803
  if ($this->check_user_role()) {
804
+ return null;
805
  }
806
 
807
  $redirect_to = stripslashes($this->plugin_settings['general']['redirection']);
includes/functions/helpers.php CHANGED
@@ -91,15 +91,15 @@ function wpmm_get_banners() {
91
  'link' => 'https://designmodo.com/postcards/',
92
  'image' => $banners_path . 'postcards.jpg',
93
  'utm' => true
 
 
 
 
 
 
94
  )
95
  ),
96
  'resource' => array(
97
- array(
98
- 'title' => 'Free WordPress Theme',
99
- 'link' => 'https://designmodo.com/free-wordpress-theme/',
100
- 'image' => $banners_path . 'ayoshop.jpg',
101
- 'utm' => true
102
- ),
103
  array(
104
  'title' => 'Linecons',
105
  'link' => 'https://designmodo.com/linecons-free/',
91
  'link' => 'https://designmodo.com/postcards/',
92
  'image' => $banners_path . 'postcards.jpg',
93
  'utm' => true
94
+ ),
95
+ array(
96
+ 'title' => 'Blocksy',
97
+ 'link' => 'https://creativethemes.com/blocksy/',
98
+ 'image' => $banners_path . 'blocksy.jpg',
99
+ 'utm' => true
100
  )
101
  ),
102
  'resource' => array(
 
 
 
 
 
 
103
  array(
104
  'title' => 'Linecons',
105
  'link' => 'https://designmodo.com/linecons-free/',
languages/wp-maintenance-mode-de_DE.mo CHANGED
Binary file
languages/wp-maintenance-mode-de_DE.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP Maintenance Mode 2.2.2\n"
4
- "POT-Creation-Date: 2018-11-26 19:09+0200\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: \n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
@@ -9,7 +9,7 @@ msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.8\n"
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
@@ -112,108 +112,108 @@ msgid ""
112
  "your privacy policy page."
113
  msgstr ""
114
 
115
- #: includes/classes/wp-maintenance-mode.php:101
116
  #: includes/classes/wp-maintenance-mode.php:102
 
117
  msgid "Maintenance mode"
118
  msgstr "Wartungsmodus"
119
 
120
- #: includes/classes/wp-maintenance-mode.php:104
121
  msgid ""
122
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
123
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
124
  msgstr ""
125
 
126
- #: includes/classes/wp-maintenance-mode.php:122
127
  msgid "Notify me when it's ready"
128
  msgstr "Informiere mich, wenn die Arbeiten abgeschlossen sind."
129
 
130
- #: includes/classes/wp-maintenance-mode.php:147
131
  msgid ""
132
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
133
  "your assistant here."
134
  msgstr ""
135
 
136
- #: includes/classes/wp-maintenance-mode.php:148
137
  msgid "I have just a few questions."
138
  msgstr ""
139
 
140
- #: includes/classes/wp-maintenance-mode.php:149
141
  msgid "What is your name?"
142
  msgstr ""
143
 
144
- #: includes/classes/wp-maintenance-mode.php:150
145
  msgid "Nice to meet you here, {visitor_name}!"
146
  msgstr ""
147
 
148
- #: includes/classes/wp-maintenance-mode.php:151
149
  msgid "How you can see, our website will be lauched very soon."
150
  msgstr ""
151
 
152
- #: includes/classes/wp-maintenance-mode.php:152
153
  msgid ""
154
  "I know, you are very excited to see it, but we need a few days to finish it."
155
  msgstr ""
156
 
157
- #: includes/classes/wp-maintenance-mode.php:153
158
  msgid "Would you like to be first to see it?"
159
  msgstr ""
160
 
161
- #: includes/classes/wp-maintenance-mode.php:154
162
  msgid ""
163
  "Cool! Please leave your email here and I will send you a message when it's "
164
  "ready."
165
  msgstr ""
166
 
167
- #: includes/classes/wp-maintenance-mode.php:155
168
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
169
  msgstr ""
170
 
171
- #: includes/classes/wp-maintenance-mode.php:156
172
  msgid "Got it! Thank you and see you soon here!"
173
  msgstr ""
174
 
175
- #: includes/classes/wp-maintenance-mode.php:157
176
  msgid "Have a great day!"
177
  msgstr ""
178
 
179
- #: includes/classes/wp-maintenance-mode.php:160
180
- #: includes/classes/wp-maintenance-mode.php:645
181
  msgid "Type your name here…"
182
  msgstr ""
183
 
184
- #: includes/classes/wp-maintenance-mode.php:161
185
  msgid "Tell me more"
186
  msgstr ""
187
 
188
- #: includes/classes/wp-maintenance-mode.php:162
189
  msgid "Boring"
190
  msgstr ""
191
 
192
- #: includes/classes/wp-maintenance-mode.php:163
193
- #: includes/classes/wp-maintenance-mode.php:646
194
  #, fuzzy
195
  msgid "Type your email here…"
196
  msgstr "Gib deine E-Mail-Adresse an"
197
 
198
- #: includes/classes/wp-maintenance-mode.php:169
199
  msgid "Privacy Policy"
200
  msgstr ""
201
 
202
- #: includes/classes/wp-maintenance-mode.php:172
203
  msgid ""
204
  "This form collects your name and email so that we can reach you back. Check "
205
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
206
  "protect and manage your submitted data."
207
  msgstr ""
208
 
209
- #: includes/classes/wp-maintenance-mode.php:173
210
  msgid ""
211
  "This form collects your email so that we can add you to our newsletter list. "
212
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
213
  "we protect and manage your submitted data."
214
  msgstr ""
215
 
216
- #: includes/classes/wp-maintenance-mode.php:296
217
  #, php-format
218
  msgid ""
219
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
@@ -222,42 +222,42 @@ msgstr ""
222
  "Das WP Wartungsmodus Plugin wurde neu erstellt und du MUSST die <a href=\"%s"
223
  "\"></a> Einstellungen bearbeiten."
224
 
225
- #: includes/classes/wp-maintenance-mode.php:542
226
- #: includes/classes/wp-maintenance-mode.php:556
227
  msgid "Maintenance Mode"
228
  msgstr "Wartungsmodus"
229
 
230
- #: includes/classes/wp-maintenance-mode.php:642
231
  msgid "Please type in your name."
232
  msgstr ""
233
 
234
- #: includes/classes/wp-maintenance-mode.php:643
235
  #, fuzzy
236
  msgid "Please type in a valid email address."
237
  msgstr "Bitte gib eine gültige E-Mail-Adresse an."
238
 
239
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
240
  msgid "Send"
241
  msgstr "Senden"
242
 
243
- #: includes/classes/wp-maintenance-mode.php:858
244
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
245
  msgid "Please enter a valid email address."
246
  msgstr "Bitte gib eine gültige E-Mail-Adresse an."
247
 
248
- #: includes/classes/wp-maintenance-mode.php:870
249
  msgid "You successfully subscribed. Thanks!"
250
  msgstr ""
251
 
252
- #: includes/classes/wp-maintenance-mode.php:888
253
  msgid "All fields required."
254
  msgstr "Alle Felder sind notwendig."
255
 
256
- #: includes/classes/wp-maintenance-mode.php:900
257
  msgid "Message via contact"
258
  msgstr "Mitteilung via Kontakt"
259
 
260
- #: includes/classes/wp-maintenance-mode.php:917
261
  msgid "Your email was sent to the website administrator. Thanks!"
262
  msgstr "Deine E-Mail wurde an den Administrator der Website gesendet. Danke!"
263
 
@@ -358,15 +358,15 @@ msgstr ""
358
  msgid "GDPR"
359
  msgstr ""
360
 
361
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
362
  msgid "Status"
363
  msgstr "Status"
364
 
365
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
366
  msgid "Activated"
367
  msgstr "Aktiv"
368
 
369
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
370
  msgid "Deactivated"
371
  msgstr "Inaktiv"
372
 
@@ -468,12 +468,12 @@ msgid ""
468
  msgstr "Soll ein Link zum Backend auf der Wartungswebseite angezeigt werden?"
469
 
470
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
471
- #: views/settings.php:621 views/settings.php:694
472
  msgid "Save settings"
473
  msgstr "Einstellungen speichern"
474
 
475
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
476
- #: views/settings.php:622 views/settings.php:695
477
  msgid "Reset settings"
478
  msgstr "Einstellungen zurücksetzen"
479
 
@@ -606,11 +606,11 @@ msgstr "Zeige soziale Netzwerke?"
606
  msgid "Links target?"
607
  msgstr "Link-Ziel"
608
 
609
- #: views/settings.php:328 views/settings.php:665
610
  msgid "New page"
611
  msgstr "Neue Seite"
612
 
613
- #: views/settings.php:329 views/settings.php:666
614
  msgid "Same page"
615
  msgstr "Selbe Seite"
616
 
@@ -685,133 +685,139 @@ msgid ""
685
  "need to."
686
  msgstr ""
687
 
688
- #: views/settings.php:477
 
 
 
 
 
 
689
  #, fuzzy
690
  msgid "Bot Name"
691
  msgstr "Name"
692
 
693
- #: views/settings.php:480
694
  msgid "This name will appear when the bot is typing."
695
  msgstr ""
696
 
697
- #: views/settings.php:484
698
  #, fuzzy
699
  msgid "Upload avatar"
700
  msgstr "Hintergrund laden"
701
 
702
- #: views/settings.php:488
703
  msgid "A 512 x 512 px will work just fine."
704
  msgstr ""
705
 
706
- #: views/settings.php:494
707
  msgid "Customize Messages"
708
  msgstr ""
709
 
710
- #: views/settings.php:499
711
  msgid "Message 1"
712
  msgstr ""
713
 
714
- #: views/settings.php:507
715
  msgid "Message 2"
716
  msgstr ""
717
 
718
- #: views/settings.php:515
719
  msgid "Message 3"
720
  msgstr ""
721
 
722
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
723
  msgid "Response"
724
  msgstr ""
725
 
726
- #: views/settings.php:527 views/settings.php:589
727
  msgid "Edit the placeholder's text"
728
  msgstr ""
729
 
730
- #: views/settings.php:531
731
  msgid "Message 4"
732
  msgstr ""
733
 
734
- #: views/settings.php:539
735
  msgid "Message 5"
736
  msgstr ""
737
 
738
- #: views/settings.php:547
739
  msgid "Message 6"
740
  msgstr ""
741
 
742
- #: views/settings.php:555
743
  msgid "Message 7"
744
  msgstr ""
745
 
746
- #: views/settings.php:567
747
  msgid "Edit button one"
748
  msgstr ""
749
 
750
- #: views/settings.php:571
751
  msgid "Edit button two"
752
  msgstr ""
753
 
754
- #: views/settings.php:577 views/settings.php:593
755
  msgid "Message 8"
756
  msgstr ""
757
 
758
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
759
  msgid "(click on button one)"
760
  msgstr ""
761
 
762
- #: views/settings.php:593
763
  msgid "(click on button two)"
764
  msgstr ""
765
 
766
- #: views/settings.php:601
767
  msgid "Message 9"
768
  msgstr ""
769
 
770
- #: views/settings.php:609
771
  msgid "Message 10"
772
  msgstr ""
773
 
774
- #: views/settings.php:631
775
  msgid ""
776
  "To make the plugin GDPR compliant, fill in the details and enable this "
777
  "section."
778
  msgstr ""
779
 
780
- #: views/settings.php:632
781
  msgid ""
782
  "Here we added some generic texts that you may want to review, change or "
783
  "remove."
784
  msgstr ""
785
 
786
- #: views/settings.php:644
787
  msgid "Link name"
788
  msgstr ""
789
 
790
- #: views/settings.php:648
791
  msgid "Label the link that will be shown on frontend footer"
792
  msgstr ""
793
 
794
- #: views/settings.php:653
795
  msgid "P. Policy page link"
796
  msgstr ""
797
 
798
- #: views/settings.php:662
799
  msgid "P. Policy link target"
800
  msgstr ""
801
 
802
- #: views/settings.php:668
803
  msgid "Choose how the link will open."
804
  msgstr ""
805
 
806
- #: views/settings.php:673
807
  msgid "Contact form 'tail'"
808
  msgstr ""
809
 
810
- #: views/settings.php:677 views/settings.php:686
811
  msgid "This will be shown together with the acceptance checkbox below the form"
812
  msgstr ""
813
 
814
- #: views/settings.php:682
815
  msgid "Subscribe form 'tail'"
816
  msgstr ""
817
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.2.4\n"
4
+ "POT-Creation-Date: 2019-05-20 10:29+0300\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: \n"
7
  "Language-Team: Designmodo <info@designmodo.com>\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.2.2\n"
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
112
  "your privacy policy page."
113
  msgstr ""
114
 
 
115
  #: includes/classes/wp-maintenance-mode.php:102
116
+ #: includes/classes/wp-maintenance-mode.php:103
117
  msgid "Maintenance mode"
118
  msgstr "Wartungsmodus"
119
 
120
+ #: includes/classes/wp-maintenance-mode.php:105
121
  msgid ""
122
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
123
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
124
  msgstr ""
125
 
126
+ #: includes/classes/wp-maintenance-mode.php:123
127
  msgid "Notify me when it's ready"
128
  msgstr "Informiere mich, wenn die Arbeiten abgeschlossen sind."
129
 
130
+ #: includes/classes/wp-maintenance-mode.php:148
131
  msgid ""
132
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
133
  "your assistant here."
134
  msgstr ""
135
 
136
+ #: includes/classes/wp-maintenance-mode.php:149
137
  msgid "I have just a few questions."
138
  msgstr ""
139
 
140
+ #: includes/classes/wp-maintenance-mode.php:150
141
  msgid "What is your name?"
142
  msgstr ""
143
 
144
+ #: includes/classes/wp-maintenance-mode.php:151
145
  msgid "Nice to meet you here, {visitor_name}!"
146
  msgstr ""
147
 
148
+ #: includes/classes/wp-maintenance-mode.php:152
149
  msgid "How you can see, our website will be lauched very soon."
150
  msgstr ""
151
 
152
+ #: includes/classes/wp-maintenance-mode.php:153
153
  msgid ""
154
  "I know, you are very excited to see it, but we need a few days to finish it."
155
  msgstr ""
156
 
157
+ #: includes/classes/wp-maintenance-mode.php:154
158
  msgid "Would you like to be first to see it?"
159
  msgstr ""
160
 
161
+ #: includes/classes/wp-maintenance-mode.php:155
162
  msgid ""
163
  "Cool! Please leave your email here and I will send you a message when it's "
164
  "ready."
165
  msgstr ""
166
 
167
+ #: includes/classes/wp-maintenance-mode.php:156
168
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
169
  msgstr ""
170
 
171
+ #: includes/classes/wp-maintenance-mode.php:157
172
  msgid "Got it! Thank you and see you soon here!"
173
  msgstr ""
174
 
175
+ #: includes/classes/wp-maintenance-mode.php:158
176
  msgid "Have a great day!"
177
  msgstr ""
178
 
179
+ #: includes/classes/wp-maintenance-mode.php:161
180
+ #: includes/classes/wp-maintenance-mode.php:650
181
  msgid "Type your name here…"
182
  msgstr ""
183
 
184
+ #: includes/classes/wp-maintenance-mode.php:162
185
  msgid "Tell me more"
186
  msgstr ""
187
 
188
+ #: includes/classes/wp-maintenance-mode.php:163
189
  msgid "Boring"
190
  msgstr ""
191
 
192
+ #: includes/classes/wp-maintenance-mode.php:164
193
+ #: includes/classes/wp-maintenance-mode.php:651
194
  #, fuzzy
195
  msgid "Type your email here…"
196
  msgstr "Gib deine E-Mail-Adresse an"
197
 
198
+ #: includes/classes/wp-maintenance-mode.php:170
199
  msgid "Privacy Policy"
200
  msgstr ""
201
 
202
+ #: includes/classes/wp-maintenance-mode.php:173
203
  msgid ""
204
  "This form collects your name and email so that we can reach you back. Check "
205
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
206
  "protect and manage your submitted data."
207
  msgstr ""
208
 
209
+ #: includes/classes/wp-maintenance-mode.php:174
210
  msgid ""
211
  "This form collects your email so that we can add you to our newsletter list. "
212
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
213
  "we protect and manage your submitted data."
214
  msgstr ""
215
 
216
+ #: includes/classes/wp-maintenance-mode.php:301
217
  #, php-format
218
  msgid ""
219
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
222
  "Das WP Wartungsmodus Plugin wurde neu erstellt und du MUSST die <a href=\"%s"
223
  "\"></a> Einstellungen bearbeiten."
224
 
225
+ #: includes/classes/wp-maintenance-mode.php:547
226
+ #: includes/classes/wp-maintenance-mode.php:561
227
  msgid "Maintenance Mode"
228
  msgstr "Wartungsmodus"
229
 
230
+ #: includes/classes/wp-maintenance-mode.php:647
231
  msgid "Please type in your name."
232
  msgstr ""
233
 
234
+ #: includes/classes/wp-maintenance-mode.php:648
235
  #, fuzzy
236
  msgid "Please type in a valid email address."
237
  msgstr "Bitte gib eine gültige E-Mail-Adresse an."
238
 
239
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
240
  msgid "Send"
241
  msgstr "Senden"
242
 
243
+ #: includes/classes/wp-maintenance-mode.php:865
244
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
245
  msgid "Please enter a valid email address."
246
  msgstr "Bitte gib eine gültige E-Mail-Adresse an."
247
 
248
+ #: includes/classes/wp-maintenance-mode.php:877
249
  msgid "You successfully subscribed. Thanks!"
250
  msgstr ""
251
 
252
+ #: includes/classes/wp-maintenance-mode.php:895
253
  msgid "All fields required."
254
  msgstr "Alle Felder sind notwendig."
255
 
256
+ #: includes/classes/wp-maintenance-mode.php:907
257
  msgid "Message via contact"
258
  msgstr "Mitteilung via Kontakt"
259
 
260
+ #: includes/classes/wp-maintenance-mode.php:924
261
  msgid "Your email was sent to the website administrator. Thanks!"
262
  msgstr "Deine E-Mail wurde an den Administrator der Website gesendet. Danke!"
263
 
358
  msgid "GDPR"
359
  msgstr ""
360
 
361
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
362
  msgid "Status"
363
  msgstr "Status"
364
 
365
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
366
  msgid "Activated"
367
  msgstr "Aktiv"
368
 
369
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
370
  msgid "Deactivated"
371
  msgstr "Inaktiv"
372
 
468
  msgstr "Soll ein Link zum Backend auf der Wartungswebseite angezeigt werden?"
469
 
470
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
471
+ #: views/settings.php:622 views/settings.php:695
472
  msgid "Save settings"
473
  msgstr "Einstellungen speichern"
474
 
475
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
476
+ #: views/settings.php:623 views/settings.php:696
477
  msgid "Reset settings"
478
  msgstr "Einstellungen zurücksetzen"
479
 
606
  msgid "Links target?"
607
  msgstr "Link-Ziel"
608
 
609
+ #: views/settings.php:328 views/settings.php:666
610
  msgid "New page"
611
  msgstr "Neue Seite"
612
 
613
+ #: views/settings.php:329 views/settings.php:667
614
  msgid "Same page"
615
  msgstr "Selbe Seite"
616
 
685
  "need to."
686
  msgstr ""
687
 
688
+ #: views/settings.php:465
689
+ msgid ""
690
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
691
+ "&raquo; Export as CSV."
692
+ msgstr ""
693
+
694
+ #: views/settings.php:478
695
  #, fuzzy
696
  msgid "Bot Name"
697
  msgstr "Name"
698
 
699
+ #: views/settings.php:481
700
  msgid "This name will appear when the bot is typing."
701
  msgstr ""
702
 
703
+ #: views/settings.php:485
704
  #, fuzzy
705
  msgid "Upload avatar"
706
  msgstr "Hintergrund laden"
707
 
708
+ #: views/settings.php:489
709
  msgid "A 512 x 512 px will work just fine."
710
  msgstr ""
711
 
712
+ #: views/settings.php:495
713
  msgid "Customize Messages"
714
  msgstr ""
715
 
716
+ #: views/settings.php:500
717
  msgid "Message 1"
718
  msgstr ""
719
 
720
+ #: views/settings.php:508
721
  msgid "Message 2"
722
  msgstr ""
723
 
724
+ #: views/settings.php:516
725
  msgid "Message 3"
726
  msgstr ""
727
 
728
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
729
  msgid "Response"
730
  msgstr ""
731
 
732
+ #: views/settings.php:528 views/settings.php:590
733
  msgid "Edit the placeholder's text"
734
  msgstr ""
735
 
736
+ #: views/settings.php:532
737
  msgid "Message 4"
738
  msgstr ""
739
 
740
+ #: views/settings.php:540
741
  msgid "Message 5"
742
  msgstr ""
743
 
744
+ #: views/settings.php:548
745
  msgid "Message 6"
746
  msgstr ""
747
 
748
+ #: views/settings.php:556
749
  msgid "Message 7"
750
  msgstr ""
751
 
752
+ #: views/settings.php:568
753
  msgid "Edit button one"
754
  msgstr ""
755
 
756
+ #: views/settings.php:572
757
  msgid "Edit button two"
758
  msgstr ""
759
 
760
+ #: views/settings.php:578 views/settings.php:594
761
  msgid "Message 8"
762
  msgstr ""
763
 
764
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
765
  msgid "(click on button one)"
766
  msgstr ""
767
 
768
+ #: views/settings.php:594
769
  msgid "(click on button two)"
770
  msgstr ""
771
 
772
+ #: views/settings.php:602
773
  msgid "Message 9"
774
  msgstr ""
775
 
776
+ #: views/settings.php:610
777
  msgid "Message 10"
778
  msgstr ""
779
 
780
+ #: views/settings.php:632
781
  msgid ""
782
  "To make the plugin GDPR compliant, fill in the details and enable this "
783
  "section."
784
  msgstr ""
785
 
786
+ #: views/settings.php:633
787
  msgid ""
788
  "Here we added some generic texts that you may want to review, change or "
789
  "remove."
790
  msgstr ""
791
 
792
+ #: views/settings.php:645
793
  msgid "Link name"
794
  msgstr ""
795
 
796
+ #: views/settings.php:649
797
  msgid "Label the link that will be shown on frontend footer"
798
  msgstr ""
799
 
800
+ #: views/settings.php:654
801
  msgid "P. Policy page link"
802
  msgstr ""
803
 
804
+ #: views/settings.php:663
805
  msgid "P. Policy link target"
806
  msgstr ""
807
 
808
+ #: views/settings.php:669
809
  msgid "Choose how the link will open."
810
  msgstr ""
811
 
812
+ #: views/settings.php:674
813
  msgid "Contact form 'tail'"
814
  msgstr ""
815
 
816
+ #: views/settings.php:678 views/settings.php:687
817
  msgid "This will be shown together with the acceptance checkbox below the form"
818
  msgstr ""
819
 
820
+ #: views/settings.php:683
821
  msgid "Subscribe form 'tail'"
822
  msgstr ""
823
 
languages/wp-maintenance-mode-en_US.mo CHANGED
Binary file
languages/wp-maintenance-mode-en_US.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP Maintenance Mode 2.2.2\n"
4
- "POT-Creation-Date: 2018-11-26 19:09+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:09+0200\n"
6
  "Last-Translator: Maciej Gryniuk <maciejka45@gmail.com>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.8\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -110,148 +110,148 @@ msgid ""
110
  "your privacy policy page."
111
  msgstr ""
112
 
113
- #: includes/classes/wp-maintenance-mode.php:101
114
  #: includes/classes/wp-maintenance-mode.php:102
 
115
  msgid "Maintenance mode"
116
  msgstr ""
117
 
118
- #: includes/classes/wp-maintenance-mode.php:104
119
  msgid ""
120
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
121
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
122
  msgstr ""
123
 
124
- #: includes/classes/wp-maintenance-mode.php:122
125
  msgid "Notify me when it's ready"
126
  msgstr ""
127
 
128
- #: includes/classes/wp-maintenance-mode.php:147
129
  msgid ""
130
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
131
  "your assistant here."
132
  msgstr ""
133
 
134
- #: includes/classes/wp-maintenance-mode.php:148
135
  msgid "I have just a few questions."
136
  msgstr ""
137
 
138
- #: includes/classes/wp-maintenance-mode.php:149
139
  msgid "What is your name?"
140
  msgstr ""
141
 
142
- #: includes/classes/wp-maintenance-mode.php:150
143
  msgid "Nice to meet you here, {visitor_name}!"
144
  msgstr ""
145
 
146
- #: includes/classes/wp-maintenance-mode.php:151
147
  msgid "How you can see, our website will be lauched very soon."
148
  msgstr ""
149
 
150
- #: includes/classes/wp-maintenance-mode.php:152
151
  msgid ""
152
  "I know, you are very excited to see it, but we need a few days to finish it."
153
  msgstr ""
154
 
155
- #: includes/classes/wp-maintenance-mode.php:153
156
  msgid "Would you like to be first to see it?"
157
  msgstr ""
158
 
159
- #: includes/classes/wp-maintenance-mode.php:154
160
  msgid ""
161
  "Cool! Please leave your email here and I will send you a message when it's "
162
  "ready."
163
  msgstr ""
164
 
165
- #: includes/classes/wp-maintenance-mode.php:155
166
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
167
  msgstr ""
168
 
169
- #: includes/classes/wp-maintenance-mode.php:156
170
  msgid "Got it! Thank you and see you soon here!"
171
  msgstr ""
172
 
173
- #: includes/classes/wp-maintenance-mode.php:157
174
  msgid "Have a great day!"
175
  msgstr ""
176
 
177
- #: includes/classes/wp-maintenance-mode.php:160
178
- #: includes/classes/wp-maintenance-mode.php:645
179
  msgid "Type your name here…"
180
  msgstr ""
181
 
182
- #: includes/classes/wp-maintenance-mode.php:161
183
  msgid "Tell me more"
184
  msgstr ""
185
 
186
- #: includes/classes/wp-maintenance-mode.php:162
187
  msgid "Boring"
188
  msgstr ""
189
 
190
- #: includes/classes/wp-maintenance-mode.php:163
191
- #: includes/classes/wp-maintenance-mode.php:646
192
  msgid "Type your email here…"
193
  msgstr ""
194
 
195
- #: includes/classes/wp-maintenance-mode.php:169
196
  msgid "Privacy Policy"
197
  msgstr ""
198
 
199
- #: includes/classes/wp-maintenance-mode.php:172
200
  msgid ""
201
  "This form collects your name and email so that we can reach you back. Check "
202
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
203
  "protect and manage your submitted data."
204
  msgstr ""
205
 
206
- #: includes/classes/wp-maintenance-mode.php:173
207
  msgid ""
208
  "This form collects your email so that we can add you to our newsletter list. "
209
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
210
  "we protect and manage your submitted data."
211
  msgstr ""
212
 
213
- #: includes/classes/wp-maintenance-mode.php:296
214
  #, php-format
215
  msgid ""
216
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
217
  "\">settings</a>."
218
  msgstr ""
219
 
220
- #: includes/classes/wp-maintenance-mode.php:542
221
- #: includes/classes/wp-maintenance-mode.php:556
222
  msgid "Maintenance Mode"
223
  msgstr ""
224
 
225
- #: includes/classes/wp-maintenance-mode.php:642
226
  msgid "Please type in your name."
227
  msgstr ""
228
 
229
- #: includes/classes/wp-maintenance-mode.php:643
230
  msgid "Please type in a valid email address."
231
  msgstr ""
232
 
233
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
234
  msgid "Send"
235
  msgstr ""
236
 
237
- #: includes/classes/wp-maintenance-mode.php:858
238
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
239
  msgid "Please enter a valid email address."
240
  msgstr ""
241
 
242
- #: includes/classes/wp-maintenance-mode.php:870
243
  msgid "You successfully subscribed. Thanks!"
244
  msgstr ""
245
 
246
- #: includes/classes/wp-maintenance-mode.php:888
247
  msgid "All fields required."
248
  msgstr ""
249
 
250
- #: includes/classes/wp-maintenance-mode.php:900
251
  msgid "Message via contact"
252
  msgstr ""
253
 
254
- #: includes/classes/wp-maintenance-mode.php:917
255
  msgid "Your email was sent to the website administrator. Thanks!"
256
  msgstr ""
257
 
@@ -352,15 +352,15 @@ msgstr ""
352
  msgid "GDPR"
353
  msgstr ""
354
 
355
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
356
  msgid "Status"
357
  msgstr ""
358
 
359
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
360
  msgid "Activated"
361
  msgstr ""
362
 
363
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
364
  msgid "Deactivated"
365
  msgstr ""
366
 
@@ -458,12 +458,12 @@ msgid ""
458
  msgstr ""
459
 
460
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
461
- #: views/settings.php:621 views/settings.php:694
462
  msgid "Save settings"
463
  msgstr ""
464
 
465
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
466
- #: views/settings.php:622 views/settings.php:695
467
  msgid "Reset settings"
468
  msgstr ""
469
 
@@ -596,11 +596,11 @@ msgstr ""
596
  msgid "Links target?"
597
  msgstr ""
598
 
599
- #: views/settings.php:328 views/settings.php:665
600
  msgid "New page"
601
  msgstr ""
602
 
603
- #: views/settings.php:329 views/settings.php:666
604
  msgid "Same page"
605
  msgstr ""
606
 
@@ -675,131 +675,137 @@ msgid ""
675
  "need to."
676
  msgstr ""
677
 
678
- #: views/settings.php:477
 
 
 
 
 
 
679
  msgid "Bot Name"
680
  msgstr ""
681
 
682
- #: views/settings.php:480
683
  msgid "This name will appear when the bot is typing."
684
  msgstr ""
685
 
686
- #: views/settings.php:484
687
  msgid "Upload avatar"
688
  msgstr ""
689
 
690
- #: views/settings.php:488
691
  msgid "A 512 x 512 px will work just fine."
692
  msgstr ""
693
 
694
- #: views/settings.php:494
695
  msgid "Customize Messages"
696
  msgstr ""
697
 
698
- #: views/settings.php:499
699
  msgid "Message 1"
700
  msgstr ""
701
 
702
- #: views/settings.php:507
703
  msgid "Message 2"
704
  msgstr ""
705
 
706
- #: views/settings.php:515
707
  msgid "Message 3"
708
  msgstr ""
709
 
710
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
711
  msgid "Response"
712
  msgstr ""
713
 
714
- #: views/settings.php:527 views/settings.php:589
715
  msgid "Edit the placeholder's text"
716
  msgstr ""
717
 
718
- #: views/settings.php:531
719
  msgid "Message 4"
720
  msgstr ""
721
 
722
- #: views/settings.php:539
723
  msgid "Message 5"
724
  msgstr ""
725
 
726
- #: views/settings.php:547
727
  msgid "Message 6"
728
  msgstr ""
729
 
730
- #: views/settings.php:555
731
  msgid "Message 7"
732
  msgstr ""
733
 
734
- #: views/settings.php:567
735
  msgid "Edit button one"
736
  msgstr ""
737
 
738
- #: views/settings.php:571
739
  msgid "Edit button two"
740
  msgstr ""
741
 
742
- #: views/settings.php:577 views/settings.php:593
743
  msgid "Message 8"
744
  msgstr ""
745
 
746
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
747
  msgid "(click on button one)"
748
  msgstr ""
749
 
750
- #: views/settings.php:593
751
  msgid "(click on button two)"
752
  msgstr ""
753
 
754
- #: views/settings.php:601
755
  msgid "Message 9"
756
  msgstr ""
757
 
758
- #: views/settings.php:609
759
  msgid "Message 10"
760
  msgstr ""
761
 
762
- #: views/settings.php:631
763
  msgid ""
764
  "To make the plugin GDPR compliant, fill in the details and enable this "
765
  "section."
766
  msgstr ""
767
 
768
- #: views/settings.php:632
769
  msgid ""
770
  "Here we added some generic texts that you may want to review, change or "
771
  "remove."
772
  msgstr ""
773
 
774
- #: views/settings.php:644
775
  msgid "Link name"
776
  msgstr ""
777
 
778
- #: views/settings.php:648
779
  msgid "Label the link that will be shown on frontend footer"
780
  msgstr ""
781
 
782
- #: views/settings.php:653
783
  msgid "P. Policy page link"
784
  msgstr ""
785
 
786
- #: views/settings.php:662
787
  msgid "P. Policy link target"
788
  msgstr ""
789
 
790
- #: views/settings.php:668
791
  msgid "Choose how the link will open."
792
  msgstr ""
793
 
794
- #: views/settings.php:673
795
  msgid "Contact form 'tail'"
796
  msgstr ""
797
 
798
- #: views/settings.php:677 views/settings.php:686
799
  msgid "This will be shown together with the acceptance checkbox below the form"
800
  msgstr ""
801
 
802
- #: views/settings.php:682
803
  msgid "Subscribe form 'tail'"
804
  msgstr ""
805
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.2.4\n"
4
+ "POT-Creation-Date: 2019-05-20 10:29+0300\n"
5
+ "PO-Revision-Date: 2019-05-20 10:29+0300\n"
6
  "Last-Translator: Maciej Gryniuk <maciejka45@gmail.com>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: en\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.2.2\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
110
  "your privacy policy page."
111
  msgstr ""
112
 
 
113
  #: includes/classes/wp-maintenance-mode.php:102
114
+ #: includes/classes/wp-maintenance-mode.php:103
115
  msgid "Maintenance mode"
116
  msgstr ""
117
 
118
+ #: includes/classes/wp-maintenance-mode.php:105
119
  msgid ""
120
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
121
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
122
  msgstr ""
123
 
124
+ #: includes/classes/wp-maintenance-mode.php:123
125
  msgid "Notify me when it's ready"
126
  msgstr ""
127
 
128
+ #: includes/classes/wp-maintenance-mode.php:148
129
  msgid ""
130
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
131
  "your assistant here."
132
  msgstr ""
133
 
134
+ #: includes/classes/wp-maintenance-mode.php:149
135
  msgid "I have just a few questions."
136
  msgstr ""
137
 
138
+ #: includes/classes/wp-maintenance-mode.php:150
139
  msgid "What is your name?"
140
  msgstr ""
141
 
142
+ #: includes/classes/wp-maintenance-mode.php:151
143
  msgid "Nice to meet you here, {visitor_name}!"
144
  msgstr ""
145
 
146
+ #: includes/classes/wp-maintenance-mode.php:152
147
  msgid "How you can see, our website will be lauched very soon."
148
  msgstr ""
149
 
150
+ #: includes/classes/wp-maintenance-mode.php:153
151
  msgid ""
152
  "I know, you are very excited to see it, but we need a few days to finish it."
153
  msgstr ""
154
 
155
+ #: includes/classes/wp-maintenance-mode.php:154
156
  msgid "Would you like to be first to see it?"
157
  msgstr ""
158
 
159
+ #: includes/classes/wp-maintenance-mode.php:155
160
  msgid ""
161
  "Cool! Please leave your email here and I will send you a message when it's "
162
  "ready."
163
  msgstr ""
164
 
165
+ #: includes/classes/wp-maintenance-mode.php:156
166
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
167
  msgstr ""
168
 
169
+ #: includes/classes/wp-maintenance-mode.php:157
170
  msgid "Got it! Thank you and see you soon here!"
171
  msgstr ""
172
 
173
+ #: includes/classes/wp-maintenance-mode.php:158
174
  msgid "Have a great day!"
175
  msgstr ""
176
 
177
+ #: includes/classes/wp-maintenance-mode.php:161
178
+ #: includes/classes/wp-maintenance-mode.php:650
179
  msgid "Type your name here…"
180
  msgstr ""
181
 
182
+ #: includes/classes/wp-maintenance-mode.php:162
183
  msgid "Tell me more"
184
  msgstr ""
185
 
186
+ #: includes/classes/wp-maintenance-mode.php:163
187
  msgid "Boring"
188
  msgstr ""
189
 
190
+ #: includes/classes/wp-maintenance-mode.php:164
191
+ #: includes/classes/wp-maintenance-mode.php:651
192
  msgid "Type your email here…"
193
  msgstr ""
194
 
195
+ #: includes/classes/wp-maintenance-mode.php:170
196
  msgid "Privacy Policy"
197
  msgstr ""
198
 
199
+ #: includes/classes/wp-maintenance-mode.php:173
200
  msgid ""
201
  "This form collects your name and email so that we can reach you back. Check "
202
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
203
  "protect and manage your submitted data."
204
  msgstr ""
205
 
206
+ #: includes/classes/wp-maintenance-mode.php:174
207
  msgid ""
208
  "This form collects your email so that we can add you to our newsletter list. "
209
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
210
  "we protect and manage your submitted data."
211
  msgstr ""
212
 
213
+ #: includes/classes/wp-maintenance-mode.php:301
214
  #, php-format
215
  msgid ""
216
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
217
  "\">settings</a>."
218
  msgstr ""
219
 
220
+ #: includes/classes/wp-maintenance-mode.php:547
221
+ #: includes/classes/wp-maintenance-mode.php:561
222
  msgid "Maintenance Mode"
223
  msgstr ""
224
 
225
+ #: includes/classes/wp-maintenance-mode.php:647
226
  msgid "Please type in your name."
227
  msgstr ""
228
 
229
+ #: includes/classes/wp-maintenance-mode.php:648
230
  msgid "Please type in a valid email address."
231
  msgstr ""
232
 
233
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
234
  msgid "Send"
235
  msgstr ""
236
 
237
+ #: includes/classes/wp-maintenance-mode.php:865
238
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
239
  msgid "Please enter a valid email address."
240
  msgstr ""
241
 
242
+ #: includes/classes/wp-maintenance-mode.php:877
243
  msgid "You successfully subscribed. Thanks!"
244
  msgstr ""
245
 
246
+ #: includes/classes/wp-maintenance-mode.php:895
247
  msgid "All fields required."
248
  msgstr ""
249
 
250
+ #: includes/classes/wp-maintenance-mode.php:907
251
  msgid "Message via contact"
252
  msgstr ""
253
 
254
+ #: includes/classes/wp-maintenance-mode.php:924
255
  msgid "Your email was sent to the website administrator. Thanks!"
256
  msgstr ""
257
 
352
  msgid "GDPR"
353
  msgstr ""
354
 
355
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
356
  msgid "Status"
357
  msgstr ""
358
 
359
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
360
  msgid "Activated"
361
  msgstr ""
362
 
363
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
364
  msgid "Deactivated"
365
  msgstr ""
366
 
458
  msgstr ""
459
 
460
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
461
+ #: views/settings.php:622 views/settings.php:695
462
  msgid "Save settings"
463
  msgstr ""
464
 
465
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
466
+ #: views/settings.php:623 views/settings.php:696
467
  msgid "Reset settings"
468
  msgstr ""
469
 
596
  msgid "Links target?"
597
  msgstr ""
598
 
599
+ #: views/settings.php:328 views/settings.php:666
600
  msgid "New page"
601
  msgstr ""
602
 
603
+ #: views/settings.php:329 views/settings.php:667
604
  msgid "Same page"
605
  msgstr ""
606
 
675
  "need to."
676
  msgstr ""
677
 
678
+ #: views/settings.php:465
679
+ msgid ""
680
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
681
+ "&raquo; Export as CSV."
682
+ msgstr ""
683
+
684
+ #: views/settings.php:478
685
  msgid "Bot Name"
686
  msgstr ""
687
 
688
+ #: views/settings.php:481
689
  msgid "This name will appear when the bot is typing."
690
  msgstr ""
691
 
692
+ #: views/settings.php:485
693
  msgid "Upload avatar"
694
  msgstr ""
695
 
696
+ #: views/settings.php:489
697
  msgid "A 512 x 512 px will work just fine."
698
  msgstr ""
699
 
700
+ #: views/settings.php:495
701
  msgid "Customize Messages"
702
  msgstr ""
703
 
704
+ #: views/settings.php:500
705
  msgid "Message 1"
706
  msgstr ""
707
 
708
+ #: views/settings.php:508
709
  msgid "Message 2"
710
  msgstr ""
711
 
712
+ #: views/settings.php:516
713
  msgid "Message 3"
714
  msgstr ""
715
 
716
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
717
  msgid "Response"
718
  msgstr ""
719
 
720
+ #: views/settings.php:528 views/settings.php:590
721
  msgid "Edit the placeholder's text"
722
  msgstr ""
723
 
724
+ #: views/settings.php:532
725
  msgid "Message 4"
726
  msgstr ""
727
 
728
+ #: views/settings.php:540
729
  msgid "Message 5"
730
  msgstr ""
731
 
732
+ #: views/settings.php:548
733
  msgid "Message 6"
734
  msgstr ""
735
 
736
+ #: views/settings.php:556
737
  msgid "Message 7"
738
  msgstr ""
739
 
740
+ #: views/settings.php:568
741
  msgid "Edit button one"
742
  msgstr ""
743
 
744
+ #: views/settings.php:572
745
  msgid "Edit button two"
746
  msgstr ""
747
 
748
+ #: views/settings.php:578 views/settings.php:594
749
  msgid "Message 8"
750
  msgstr ""
751
 
752
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
753
  msgid "(click on button one)"
754
  msgstr ""
755
 
756
+ #: views/settings.php:594
757
  msgid "(click on button two)"
758
  msgstr ""
759
 
760
+ #: views/settings.php:602
761
  msgid "Message 9"
762
  msgstr ""
763
 
764
+ #: views/settings.php:610
765
  msgid "Message 10"
766
  msgstr ""
767
 
768
+ #: views/settings.php:632
769
  msgid ""
770
  "To make the plugin GDPR compliant, fill in the details and enable this "
771
  "section."
772
  msgstr ""
773
 
774
+ #: views/settings.php:633
775
  msgid ""
776
  "Here we added some generic texts that you may want to review, change or "
777
  "remove."
778
  msgstr ""
779
 
780
+ #: views/settings.php:645
781
  msgid "Link name"
782
  msgstr ""
783
 
784
+ #: views/settings.php:649
785
  msgid "Label the link that will be shown on frontend footer"
786
  msgstr ""
787
 
788
+ #: views/settings.php:654
789
  msgid "P. Policy page link"
790
  msgstr ""
791
 
792
+ #: views/settings.php:663
793
  msgid "P. Policy link target"
794
  msgstr ""
795
 
796
+ #: views/settings.php:669
797
  msgid "Choose how the link will open."
798
  msgstr ""
799
 
800
+ #: views/settings.php:674
801
  msgid "Contact form 'tail'"
802
  msgstr ""
803
 
804
+ #: views/settings.php:678 views/settings.php:687
805
  msgid "This will be shown together with the acceptance checkbox below the form"
806
  msgstr ""
807
 
808
+ #: views/settings.php:683
809
  msgid "Subscribe form 'tail'"
810
  msgstr ""
811
 
languages/wp-maintenance-mode-es_ES.mo CHANGED
Binary file
languages/wp-maintenance-mode-es_ES.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP Maintenance Mode 2.2.2\n"
4
- "POT-Creation-Date: 2018-11-26 19:10+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:10+0200\n"
6
  "Last-Translator: Erick Ruiz de Chavez <erick@erch.co>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: es_ES\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.8\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -112,12 +112,12 @@ msgid ""
112
  "your privacy policy page."
113
  msgstr ""
114
 
115
- #: includes/classes/wp-maintenance-mode.php:101
116
  #: includes/classes/wp-maintenance-mode.php:102
 
117
  msgid "Maintenance mode"
118
  msgstr "Modo de mantenimiento"
119
 
120
- #: includes/classes/wp-maintenance-mode.php:104
121
  msgid ""
122
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
123
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
@@ -125,97 +125,97 @@ msgstr ""
125
  "<p>Disculpa las molestias.<br />Nuestro sitio esta actualmente bajo "
126
  "mantenimiento programado.<br />Agradecemos tu comprensión.</p>"
127
 
128
- #: includes/classes/wp-maintenance-mode.php:122
129
  msgid "Notify me when it's ready"
130
  msgstr "Notifícame cuanto este listo"
131
 
132
- #: includes/classes/wp-maintenance-mode.php:147
133
  msgid ""
134
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
135
  "your assistant here."
136
  msgstr ""
137
 
138
- #: includes/classes/wp-maintenance-mode.php:148
139
  msgid "I have just a few questions."
140
  msgstr ""
141
 
142
- #: includes/classes/wp-maintenance-mode.php:149
143
  msgid "What is your name?"
144
  msgstr ""
145
 
146
- #: includes/classes/wp-maintenance-mode.php:150
147
  msgid "Nice to meet you here, {visitor_name}!"
148
  msgstr ""
149
 
150
- #: includes/classes/wp-maintenance-mode.php:151
151
  msgid "How you can see, our website will be lauched very soon."
152
  msgstr ""
153
 
154
- #: includes/classes/wp-maintenance-mode.php:152
155
  msgid ""
156
  "I know, you are very excited to see it, but we need a few days to finish it."
157
  msgstr ""
158
 
159
- #: includes/classes/wp-maintenance-mode.php:153
160
  msgid "Would you like to be first to see it?"
161
  msgstr ""
162
 
163
- #: includes/classes/wp-maintenance-mode.php:154
164
  msgid ""
165
  "Cool! Please leave your email here and I will send you a message when it's "
166
  "ready."
167
  msgstr ""
168
 
169
- #: includes/classes/wp-maintenance-mode.php:155
170
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
171
  msgstr ""
172
 
173
- #: includes/classes/wp-maintenance-mode.php:156
174
  msgid "Got it! Thank you and see you soon here!"
175
  msgstr ""
176
 
177
- #: includes/classes/wp-maintenance-mode.php:157
178
  msgid "Have a great day!"
179
  msgstr ""
180
 
181
- #: includes/classes/wp-maintenance-mode.php:160
182
- #: includes/classes/wp-maintenance-mode.php:645
183
  msgid "Type your name here…"
184
  msgstr ""
185
 
186
- #: includes/classes/wp-maintenance-mode.php:161
187
  msgid "Tell me more"
188
  msgstr ""
189
 
190
- #: includes/classes/wp-maintenance-mode.php:162
191
  msgid "Boring"
192
  msgstr ""
193
 
194
- #: includes/classes/wp-maintenance-mode.php:163
195
- #: includes/classes/wp-maintenance-mode.php:646
196
  #, fuzzy
197
  msgid "Type your email here…"
198
  msgstr "Introduce tu dirección de correo electrónico"
199
 
200
- #: includes/classes/wp-maintenance-mode.php:169
201
  msgid "Privacy Policy"
202
  msgstr ""
203
 
204
- #: includes/classes/wp-maintenance-mode.php:172
205
  msgid ""
206
  "This form collects your name and email so that we can reach you back. Check "
207
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
208
  "protect and manage your submitted data."
209
  msgstr ""
210
 
211
- #: includes/classes/wp-maintenance-mode.php:173
212
  msgid ""
213
  "This form collects your email so that we can add you to our newsletter list. "
214
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
215
  "we protect and manage your submitted data."
216
  msgstr ""
217
 
218
- #: includes/classes/wp-maintenance-mode.php:296
219
  #, php-format
220
  msgid ""
221
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
@@ -224,42 +224,42 @@ msgstr ""
224
  "El plugin Modo de Mantenimiento WP fue reactivado y es NECESARIO que revises "
225
  "los <a href=\"%s\">ajustes</a>."
226
 
227
- #: includes/classes/wp-maintenance-mode.php:542
228
- #: includes/classes/wp-maintenance-mode.php:556
229
  msgid "Maintenance Mode"
230
  msgstr "Modo de Mantenimiento"
231
 
232
- #: includes/classes/wp-maintenance-mode.php:642
233
  msgid "Please type in your name."
234
  msgstr ""
235
 
236
- #: includes/classes/wp-maintenance-mode.php:643
237
  #, fuzzy
238
  msgid "Please type in a valid email address."
239
  msgstr "Por favor usa una dirección de correo electrónico valida."
240
 
241
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
242
  msgid "Send"
243
  msgstr "Enviar"
244
 
245
- #: includes/classes/wp-maintenance-mode.php:858
246
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
247
  msgid "Please enter a valid email address."
248
  msgstr "Por favor usa una dirección de correo electrónico valida."
249
 
250
- #: includes/classes/wp-maintenance-mode.php:870
251
  msgid "You successfully subscribed. Thanks!"
252
  msgstr ""
253
 
254
- #: includes/classes/wp-maintenance-mode.php:888
255
  msgid "All fields required."
256
  msgstr "Todos los campos son obligatorios."
257
 
258
- #: includes/classes/wp-maintenance-mode.php:900
259
  msgid "Message via contact"
260
  msgstr "Mensaje vía formulario de contacto."
261
 
262
- #: includes/classes/wp-maintenance-mode.php:917
263
  msgid "Your email was sent to the website administrator. Thanks!"
264
  msgstr "Tu mensaje ha sido enviado al administrador. ¡Muchas gracias!"
265
 
@@ -360,15 +360,15 @@ msgstr ""
360
  msgid "GDPR"
361
  msgstr ""
362
 
363
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
364
  msgid "Status"
365
  msgstr "Estado"
366
 
367
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
368
  msgid "Activated"
369
  msgstr "Activado"
370
 
371
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
372
  msgid "Deactivated"
373
  msgstr "Desactivado"
374
 
@@ -471,12 +471,12 @@ msgid ""
471
  msgstr "¿Deseas agregar un enlace al escritorio en tu página de mantenimiento?"
472
 
473
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
474
- #: views/settings.php:621 views/settings.php:694
475
  msgid "Save settings"
476
  msgstr "Guardar ajustes"
477
 
478
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
479
- #: views/settings.php:622 views/settings.php:695
480
  msgid "Reset settings"
481
  msgstr "Restablecer ajustes"
482
 
@@ -609,11 +609,11 @@ msgstr "¿Mostrar redes sociales?"
609
  msgid "Links target?"
610
  msgstr "¿Destino de enlaces?"
611
 
612
- #: views/settings.php:328 views/settings.php:665
613
  msgid "New page"
614
  msgstr "Página nueva"
615
 
616
- #: views/settings.php:329 views/settings.php:666
617
  msgid "Same page"
618
  msgstr "Misma página"
619
 
@@ -688,133 +688,139 @@ msgid ""
688
  "need to."
689
  msgstr ""
690
 
691
- #: views/settings.php:477
 
 
 
 
 
 
692
  #, fuzzy
693
  msgid "Bot Name"
694
  msgstr "Nombre"
695
 
696
- #: views/settings.php:480
697
  msgid "This name will appear when the bot is typing."
698
  msgstr ""
699
 
700
- #: views/settings.php:484
701
  #, fuzzy
702
  msgid "Upload avatar"
703
  msgstr "Sube un fondo"
704
 
705
- #: views/settings.php:488
706
  msgid "A 512 x 512 px will work just fine."
707
  msgstr ""
708
 
709
- #: views/settings.php:494
710
  msgid "Customize Messages"
711
  msgstr ""
712
 
713
- #: views/settings.php:499
714
  msgid "Message 1"
715
  msgstr ""
716
 
717
- #: views/settings.php:507
718
  msgid "Message 2"
719
  msgstr ""
720
 
721
- #: views/settings.php:515
722
  msgid "Message 3"
723
  msgstr ""
724
 
725
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
726
  msgid "Response"
727
  msgstr ""
728
 
729
- #: views/settings.php:527 views/settings.php:589
730
  msgid "Edit the placeholder's text"
731
  msgstr ""
732
 
733
- #: views/settings.php:531
734
  msgid "Message 4"
735
  msgstr ""
736
 
737
- #: views/settings.php:539
738
  msgid "Message 5"
739
  msgstr ""
740
 
741
- #: views/settings.php:547
742
  msgid "Message 6"
743
  msgstr ""
744
 
745
- #: views/settings.php:555
746
  msgid "Message 7"
747
  msgstr ""
748
 
749
- #: views/settings.php:567
750
  msgid "Edit button one"
751
  msgstr ""
752
 
753
- #: views/settings.php:571
754
  msgid "Edit button two"
755
  msgstr ""
756
 
757
- #: views/settings.php:577 views/settings.php:593
758
  msgid "Message 8"
759
  msgstr ""
760
 
761
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
762
  msgid "(click on button one)"
763
  msgstr ""
764
 
765
- #: views/settings.php:593
766
  msgid "(click on button two)"
767
  msgstr ""
768
 
769
- #: views/settings.php:601
770
  msgid "Message 9"
771
  msgstr ""
772
 
773
- #: views/settings.php:609
774
  msgid "Message 10"
775
  msgstr ""
776
 
777
- #: views/settings.php:631
778
  msgid ""
779
  "To make the plugin GDPR compliant, fill in the details and enable this "
780
  "section."
781
  msgstr ""
782
 
783
- #: views/settings.php:632
784
  msgid ""
785
  "Here we added some generic texts that you may want to review, change or "
786
  "remove."
787
  msgstr ""
788
 
789
- #: views/settings.php:644
790
  msgid "Link name"
791
  msgstr ""
792
 
793
- #: views/settings.php:648
794
  msgid "Label the link that will be shown on frontend footer"
795
  msgstr ""
796
 
797
- #: views/settings.php:653
798
  msgid "P. Policy page link"
799
  msgstr ""
800
 
801
- #: views/settings.php:662
802
  msgid "P. Policy link target"
803
  msgstr ""
804
 
805
- #: views/settings.php:668
806
  msgid "Choose how the link will open."
807
  msgstr ""
808
 
809
- #: views/settings.php:673
810
  msgid "Contact form 'tail'"
811
  msgstr ""
812
 
813
- #: views/settings.php:677 views/settings.php:686
814
  msgid "This will be shown together with the acceptance checkbox below the form"
815
  msgstr ""
816
 
817
- #: views/settings.php:682
818
  msgid "Subscribe form 'tail'"
819
  msgstr ""
820
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.2.4\n"
4
+ "POT-Creation-Date: 2019-05-20 10:30+0300\n"
5
+ "PO-Revision-Date: 2019-05-20 10:30+0300\n"
6
  "Last-Translator: Erick Ruiz de Chavez <erick@erch.co>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: es_ES\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.2.2\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
112
  "your privacy policy page."
113
  msgstr ""
114
 
 
115
  #: includes/classes/wp-maintenance-mode.php:102
116
+ #: includes/classes/wp-maintenance-mode.php:103
117
  msgid "Maintenance mode"
118
  msgstr "Modo de mantenimiento"
119
 
120
+ #: includes/classes/wp-maintenance-mode.php:105
121
  msgid ""
122
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
123
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
125
  "<p>Disculpa las molestias.<br />Nuestro sitio esta actualmente bajo "
126
  "mantenimiento programado.<br />Agradecemos tu comprensión.</p>"
127
 
128
+ #: includes/classes/wp-maintenance-mode.php:123
129
  msgid "Notify me when it's ready"
130
  msgstr "Notifícame cuanto este listo"
131
 
132
+ #: includes/classes/wp-maintenance-mode.php:148
133
  msgid ""
134
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
135
  "your assistant here."
136
  msgstr ""
137
 
138
+ #: includes/classes/wp-maintenance-mode.php:149
139
  msgid "I have just a few questions."
140
  msgstr ""
141
 
142
+ #: includes/classes/wp-maintenance-mode.php:150
143
  msgid "What is your name?"
144
  msgstr ""
145
 
146
+ #: includes/classes/wp-maintenance-mode.php:151
147
  msgid "Nice to meet you here, {visitor_name}!"
148
  msgstr ""
149
 
150
+ #: includes/classes/wp-maintenance-mode.php:152
151
  msgid "How you can see, our website will be lauched very soon."
152
  msgstr ""
153
 
154
+ #: includes/classes/wp-maintenance-mode.php:153
155
  msgid ""
156
  "I know, you are very excited to see it, but we need a few days to finish it."
157
  msgstr ""
158
 
159
+ #: includes/classes/wp-maintenance-mode.php:154
160
  msgid "Would you like to be first to see it?"
161
  msgstr ""
162
 
163
+ #: includes/classes/wp-maintenance-mode.php:155
164
  msgid ""
165
  "Cool! Please leave your email here and I will send you a message when it's "
166
  "ready."
167
  msgstr ""
168
 
169
+ #: includes/classes/wp-maintenance-mode.php:156
170
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
171
  msgstr ""
172
 
173
+ #: includes/classes/wp-maintenance-mode.php:157
174
  msgid "Got it! Thank you and see you soon here!"
175
  msgstr ""
176
 
177
+ #: includes/classes/wp-maintenance-mode.php:158
178
  msgid "Have a great day!"
179
  msgstr ""
180
 
181
+ #: includes/classes/wp-maintenance-mode.php:161
182
+ #: includes/classes/wp-maintenance-mode.php:650
183
  msgid "Type your name here…"
184
  msgstr ""
185
 
186
+ #: includes/classes/wp-maintenance-mode.php:162
187
  msgid "Tell me more"
188
  msgstr ""
189
 
190
+ #: includes/classes/wp-maintenance-mode.php:163
191
  msgid "Boring"
192
  msgstr ""
193
 
194
+ #: includes/classes/wp-maintenance-mode.php:164
195
+ #: includes/classes/wp-maintenance-mode.php:651
196
  #, fuzzy
197
  msgid "Type your email here…"
198
  msgstr "Introduce tu dirección de correo electrónico"
199
 
200
+ #: includes/classes/wp-maintenance-mode.php:170
201
  msgid "Privacy Policy"
202
  msgstr ""
203
 
204
+ #: includes/classes/wp-maintenance-mode.php:173
205
  msgid ""
206
  "This form collects your name and email so that we can reach you back. Check "
207
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
208
  "protect and manage your submitted data."
209
  msgstr ""
210
 
211
+ #: includes/classes/wp-maintenance-mode.php:174
212
  msgid ""
213
  "This form collects your email so that we can add you to our newsletter list. "
214
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
215
  "we protect and manage your submitted data."
216
  msgstr ""
217
 
218
+ #: includes/classes/wp-maintenance-mode.php:301
219
  #, php-format
220
  msgid ""
221
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
224
  "El plugin Modo de Mantenimiento WP fue reactivado y es NECESARIO que revises "
225
  "los <a href=\"%s\">ajustes</a>."
226
 
227
+ #: includes/classes/wp-maintenance-mode.php:547
228
+ #: includes/classes/wp-maintenance-mode.php:561
229
  msgid "Maintenance Mode"
230
  msgstr "Modo de Mantenimiento"
231
 
232
+ #: includes/classes/wp-maintenance-mode.php:647
233
  msgid "Please type in your name."
234
  msgstr ""
235
 
236
+ #: includes/classes/wp-maintenance-mode.php:648
237
  #, fuzzy
238
  msgid "Please type in a valid email address."
239
  msgstr "Por favor usa una dirección de correo electrónico valida."
240
 
241
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
242
  msgid "Send"
243
  msgstr "Enviar"
244
 
245
+ #: includes/classes/wp-maintenance-mode.php:865
246
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
247
  msgid "Please enter a valid email address."
248
  msgstr "Por favor usa una dirección de correo electrónico valida."
249
 
250
+ #: includes/classes/wp-maintenance-mode.php:877
251
  msgid "You successfully subscribed. Thanks!"
252
  msgstr ""
253
 
254
+ #: includes/classes/wp-maintenance-mode.php:895
255
  msgid "All fields required."
256
  msgstr "Todos los campos son obligatorios."
257
 
258
+ #: includes/classes/wp-maintenance-mode.php:907
259
  msgid "Message via contact"
260
  msgstr "Mensaje vía formulario de contacto."
261
 
262
+ #: includes/classes/wp-maintenance-mode.php:924
263
  msgid "Your email was sent to the website administrator. Thanks!"
264
  msgstr "Tu mensaje ha sido enviado al administrador. ¡Muchas gracias!"
265
 
360
  msgid "GDPR"
361
  msgstr ""
362
 
363
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
364
  msgid "Status"
365
  msgstr "Estado"
366
 
367
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
368
  msgid "Activated"
369
  msgstr "Activado"
370
 
371
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
372
  msgid "Deactivated"
373
  msgstr "Desactivado"
374
 
471
  msgstr "¿Deseas agregar un enlace al escritorio en tu página de mantenimiento?"
472
 
473
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
474
+ #: views/settings.php:622 views/settings.php:695
475
  msgid "Save settings"
476
  msgstr "Guardar ajustes"
477
 
478
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
479
+ #: views/settings.php:623 views/settings.php:696
480
  msgid "Reset settings"
481
  msgstr "Restablecer ajustes"
482
 
609
  msgid "Links target?"
610
  msgstr "¿Destino de enlaces?"
611
 
612
+ #: views/settings.php:328 views/settings.php:666
613
  msgid "New page"
614
  msgstr "Página nueva"
615
 
616
+ #: views/settings.php:329 views/settings.php:667
617
  msgid "Same page"
618
  msgstr "Misma página"
619
 
688
  "need to."
689
  msgstr ""
690
 
691
+ #: views/settings.php:465
692
+ msgid ""
693
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
694
+ "&raquo; Export as CSV."
695
+ msgstr ""
696
+
697
+ #: views/settings.php:478
698
  #, fuzzy
699
  msgid "Bot Name"
700
  msgstr "Nombre"
701
 
702
+ #: views/settings.php:481
703
  msgid "This name will appear when the bot is typing."
704
  msgstr ""
705
 
706
+ #: views/settings.php:485
707
  #, fuzzy
708
  msgid "Upload avatar"
709
  msgstr "Sube un fondo"
710
 
711
+ #: views/settings.php:489
712
  msgid "A 512 x 512 px will work just fine."
713
  msgstr ""
714
 
715
+ #: views/settings.php:495
716
  msgid "Customize Messages"
717
  msgstr ""
718
 
719
+ #: views/settings.php:500
720
  msgid "Message 1"
721
  msgstr ""
722
 
723
+ #: views/settings.php:508
724
  msgid "Message 2"
725
  msgstr ""
726
 
727
+ #: views/settings.php:516
728
  msgid "Message 3"
729
  msgstr ""
730
 
731
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
732
  msgid "Response"
733
  msgstr ""
734
 
735
+ #: views/settings.php:528 views/settings.php:590
736
  msgid "Edit the placeholder's text"
737
  msgstr ""
738
 
739
+ #: views/settings.php:532
740
  msgid "Message 4"
741
  msgstr ""
742
 
743
+ #: views/settings.php:540
744
  msgid "Message 5"
745
  msgstr ""
746
 
747
+ #: views/settings.php:548
748
  msgid "Message 6"
749
  msgstr ""
750
 
751
+ #: views/settings.php:556
752
  msgid "Message 7"
753
  msgstr ""
754
 
755
+ #: views/settings.php:568
756
  msgid "Edit button one"
757
  msgstr ""
758
 
759
+ #: views/settings.php:572
760
  msgid "Edit button two"
761
  msgstr ""
762
 
763
+ #: views/settings.php:578 views/settings.php:594
764
  msgid "Message 8"
765
  msgstr ""
766
 
767
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
768
  msgid "(click on button one)"
769
  msgstr ""
770
 
771
+ #: views/settings.php:594
772
  msgid "(click on button two)"
773
  msgstr ""
774
 
775
+ #: views/settings.php:602
776
  msgid "Message 9"
777
  msgstr ""
778
 
779
+ #: views/settings.php:610
780
  msgid "Message 10"
781
  msgstr ""
782
 
783
+ #: views/settings.php:632
784
  msgid ""
785
  "To make the plugin GDPR compliant, fill in the details and enable this "
786
  "section."
787
  msgstr ""
788
 
789
+ #: views/settings.php:633
790
  msgid ""
791
  "Here we added some generic texts that you may want to review, change or "
792
  "remove."
793
  msgstr ""
794
 
795
+ #: views/settings.php:645
796
  msgid "Link name"
797
  msgstr ""
798
 
799
+ #: views/settings.php:649
800
  msgid "Label the link that will be shown on frontend footer"
801
  msgstr ""
802
 
803
+ #: views/settings.php:654
804
  msgid "P. Policy page link"
805
  msgstr ""
806
 
807
+ #: views/settings.php:663
808
  msgid "P. Policy link target"
809
  msgstr ""
810
 
811
+ #: views/settings.php:669
812
  msgid "Choose how the link will open."
813
  msgstr ""
814
 
815
+ #: views/settings.php:674
816
  msgid "Contact form 'tail'"
817
  msgstr ""
818
 
819
+ #: views/settings.php:678 views/settings.php:687
820
  msgid "This will be shown together with the acceptance checkbox below the form"
821
  msgstr ""
822
 
823
+ #: views/settings.php:683
824
  msgid "Subscribe form 'tail'"
825
  msgstr ""
826
 
languages/wp-maintenance-mode-fa_IR.mo CHANGED
Binary file
languages/wp-maintenance-mode-fa_IR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP Maintenance Mode 2.2.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-11-26 19:11+0200\n"
6
- "PO-Revision-Date: 2018-11-26 19:11+0200\n"
7
  "Last-Translator: Milad Nekofar <milad@nekofar.com>\n"
8
  "Language-Team: Milad Nekofar <milad@nekofar.com>\n"
9
  "Language: fa\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=1; plural=0;\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 1.8.8\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
@@ -113,149 +113,149 @@ msgid ""
113
  "your privacy policy page."
114
  msgstr ""
115
 
116
- #: includes/classes/wp-maintenance-mode.php:101
117
  #: includes/classes/wp-maintenance-mode.php:102
 
118
  msgid "Maintenance mode"
119
  msgstr "حالت تعمیر و نگهداری"
120
 
121
- #: includes/classes/wp-maintenance-mode.php:104
122
  msgid ""
123
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
124
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
125
  msgstr ""
126
 
127
- #: includes/classes/wp-maintenance-mode.php:122
128
  msgid "Notify me when it's ready"
129
  msgstr ""
130
 
131
- #: includes/classes/wp-maintenance-mode.php:147
132
  msgid ""
133
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
134
  "your assistant here."
135
  msgstr ""
136
 
137
- #: includes/classes/wp-maintenance-mode.php:148
138
  msgid "I have just a few questions."
139
  msgstr ""
140
 
141
- #: includes/classes/wp-maintenance-mode.php:149
142
  msgid "What is your name?"
143
  msgstr ""
144
 
145
- #: includes/classes/wp-maintenance-mode.php:150
146
  msgid "Nice to meet you here, {visitor_name}!"
147
  msgstr ""
148
 
149
- #: includes/classes/wp-maintenance-mode.php:151
150
  msgid "How you can see, our website will be lauched very soon."
151
  msgstr ""
152
 
153
- #: includes/classes/wp-maintenance-mode.php:152
154
  msgid ""
155
  "I know, you are very excited to see it, but we need a few days to finish it."
156
  msgstr ""
157
 
158
- #: includes/classes/wp-maintenance-mode.php:153
159
  msgid "Would you like to be first to see it?"
160
  msgstr ""
161
 
162
- #: includes/classes/wp-maintenance-mode.php:154
163
  msgid ""
164
  "Cool! Please leave your email here and I will send you a message when it's "
165
  "ready."
166
  msgstr ""
167
 
168
- #: includes/classes/wp-maintenance-mode.php:155
169
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
170
  msgstr ""
171
 
172
- #: includes/classes/wp-maintenance-mode.php:156
173
  msgid "Got it! Thank you and see you soon here!"
174
  msgstr ""
175
 
176
- #: includes/classes/wp-maintenance-mode.php:157
177
  msgid "Have a great day!"
178
  msgstr ""
179
 
180
- #: includes/classes/wp-maintenance-mode.php:160
181
- #: includes/classes/wp-maintenance-mode.php:645
182
  msgid "Type your name here…"
183
  msgstr ""
184
 
185
- #: includes/classes/wp-maintenance-mode.php:161
186
  msgid "Tell me more"
187
  msgstr ""
188
 
189
- #: includes/classes/wp-maintenance-mode.php:162
190
  msgid "Boring"
191
  msgstr ""
192
 
193
- #: includes/classes/wp-maintenance-mode.php:163
194
- #: includes/classes/wp-maintenance-mode.php:646
195
  msgid "Type your email here…"
196
  msgstr ""
197
 
198
- #: includes/classes/wp-maintenance-mode.php:169
199
  msgid "Privacy Policy"
200
  msgstr ""
201
 
202
- #: includes/classes/wp-maintenance-mode.php:172
203
  msgid ""
204
  "This form collects your name and email so that we can reach you back. Check "
205
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
206
  "protect and manage your submitted data."
207
  msgstr ""
208
 
209
- #: includes/classes/wp-maintenance-mode.php:173
210
  msgid ""
211
  "This form collects your email so that we can add you to our newsletter list. "
212
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
213
  "we protect and manage your submitted data."
214
  msgstr ""
215
 
216
- #: includes/classes/wp-maintenance-mode.php:296
217
  #, php-format
218
  msgid ""
219
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
220
  "\">settings</a>."
221
  msgstr ""
222
 
223
- #: includes/classes/wp-maintenance-mode.php:542
224
- #: includes/classes/wp-maintenance-mode.php:556
225
  msgid "Maintenance Mode"
226
  msgstr "حالت تعمیر و نگهداری"
227
 
228
- #: includes/classes/wp-maintenance-mode.php:642
229
  msgid "Please type in your name."
230
  msgstr ""
231
 
232
- #: includes/classes/wp-maintenance-mode.php:643
233
  #, fuzzy
234
  msgid "Please type in a valid email address."
235
  msgstr "لطفا ایمیل آدرس معتبر وارد نمایید."
236
 
237
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
238
  msgid "Send"
239
  msgstr "ارسال"
240
 
241
- #: includes/classes/wp-maintenance-mode.php:858
242
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
243
  msgid "Please enter a valid email address."
244
  msgstr "لطفا ایمیل آدرس معتبر وارد نمایید."
245
 
246
- #: includes/classes/wp-maintenance-mode.php:870
247
  msgid "You successfully subscribed. Thanks!"
248
  msgstr ""
249
 
250
- #: includes/classes/wp-maintenance-mode.php:888
251
  msgid "All fields required."
252
  msgstr "تمام فیلد ها لازم است."
253
 
254
- #: includes/classes/wp-maintenance-mode.php:900
255
  msgid "Message via contact"
256
  msgstr ""
257
 
258
- #: includes/classes/wp-maintenance-mode.php:917
259
  msgid "Your email was sent to the website administrator. Thanks!"
260
  msgstr ""
261
 
@@ -356,15 +356,15 @@ msgstr ""
356
  msgid "GDPR"
357
  msgstr ""
358
 
359
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
360
  msgid "Status"
361
  msgstr "وضعیت"
362
 
363
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
364
  msgid "Activated"
365
  msgstr "فعال‌شده"
366
 
367
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
368
  msgid "Deactivated"
369
  msgstr "غیرفعال‌شده"
370
 
@@ -462,12 +462,12 @@ msgid ""
462
  msgstr ""
463
 
464
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
465
- #: views/settings.php:621 views/settings.php:694
466
  msgid "Save settings"
467
  msgstr "ذخیره تنظیمات"
468
 
469
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
470
- #: views/settings.php:622 views/settings.php:695
471
  msgid "Reset settings"
472
  msgstr "بازنشانی تنظیمات"
473
 
@@ -599,11 +599,11 @@ msgstr ""
599
  msgid "Links target?"
600
  msgstr ""
601
 
602
- #: views/settings.php:328 views/settings.php:665
603
  msgid "New page"
604
  msgstr "برگه جدید"
605
 
606
- #: views/settings.php:329 views/settings.php:666
607
  msgid "Same page"
608
  msgstr "همان برگه"
609
 
@@ -678,133 +678,139 @@ msgid ""
678
  "need to."
679
  msgstr ""
680
 
681
- #: views/settings.php:477
 
 
 
 
 
 
682
  #, fuzzy
683
  msgid "Bot Name"
684
  msgstr "نام"
685
 
686
- #: views/settings.php:480
687
  msgid "This name will appear when the bot is typing."
688
  msgstr ""
689
 
690
- #: views/settings.php:484
691
  #, fuzzy
692
  msgid "Upload avatar"
693
  msgstr "بارگزاری پس‌زمینه"
694
 
695
- #: views/settings.php:488
696
  msgid "A 512 x 512 px will work just fine."
697
  msgstr ""
698
 
699
- #: views/settings.php:494
700
  msgid "Customize Messages"
701
  msgstr ""
702
 
703
- #: views/settings.php:499
704
  msgid "Message 1"
705
  msgstr ""
706
 
707
- #: views/settings.php:507
708
  msgid "Message 2"
709
  msgstr ""
710
 
711
- #: views/settings.php:515
712
  msgid "Message 3"
713
  msgstr ""
714
 
715
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
716
  msgid "Response"
717
  msgstr ""
718
 
719
- #: views/settings.php:527 views/settings.php:589
720
  msgid "Edit the placeholder's text"
721
  msgstr ""
722
 
723
- #: views/settings.php:531
724
  msgid "Message 4"
725
  msgstr ""
726
 
727
- #: views/settings.php:539
728
  msgid "Message 5"
729
  msgstr ""
730
 
731
- #: views/settings.php:547
732
  msgid "Message 6"
733
  msgstr ""
734
 
735
- #: views/settings.php:555
736
  msgid "Message 7"
737
  msgstr ""
738
 
739
- #: views/settings.php:567
740
  msgid "Edit button one"
741
  msgstr ""
742
 
743
- #: views/settings.php:571
744
  msgid "Edit button two"
745
  msgstr ""
746
 
747
- #: views/settings.php:577 views/settings.php:593
748
  msgid "Message 8"
749
  msgstr ""
750
 
751
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
752
  msgid "(click on button one)"
753
  msgstr ""
754
 
755
- #: views/settings.php:593
756
  msgid "(click on button two)"
757
  msgstr ""
758
 
759
- #: views/settings.php:601
760
  msgid "Message 9"
761
  msgstr ""
762
 
763
- #: views/settings.php:609
764
  msgid "Message 10"
765
  msgstr ""
766
 
767
- #: views/settings.php:631
768
  msgid ""
769
  "To make the plugin GDPR compliant, fill in the details and enable this "
770
  "section."
771
  msgstr ""
772
 
773
- #: views/settings.php:632
774
  msgid ""
775
  "Here we added some generic texts that you may want to review, change or "
776
  "remove."
777
  msgstr ""
778
 
779
- #: views/settings.php:644
780
  msgid "Link name"
781
  msgstr ""
782
 
783
- #: views/settings.php:648
784
  msgid "Label the link that will be shown on frontend footer"
785
  msgstr ""
786
 
787
- #: views/settings.php:653
788
  msgid "P. Policy page link"
789
  msgstr ""
790
 
791
- #: views/settings.php:662
792
  msgid "P. Policy link target"
793
  msgstr ""
794
 
795
- #: views/settings.php:668
796
  msgid "Choose how the link will open."
797
  msgstr ""
798
 
799
- #: views/settings.php:673
800
  msgid "Contact form 'tail'"
801
  msgstr ""
802
 
803
- #: views/settings.php:677 views/settings.php:686
804
  msgid "This will be shown together with the acceptance checkbox below the form"
805
  msgstr ""
806
 
807
- #: views/settings.php:682
808
  msgid "Subscribe form 'tail'"
809
  msgstr ""
810
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.2.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-05-20 10:30+0300\n"
6
+ "PO-Revision-Date: 2019-05-20 10:30+0300\n"
7
  "Last-Translator: Milad Nekofar <milad@nekofar.com>\n"
8
  "Language-Team: Milad Nekofar <milad@nekofar.com>\n"
9
  "Language: fa\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=1; plural=0;\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Poedit 2.2.2\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
113
  "your privacy policy page."
114
  msgstr ""
115
 
 
116
  #: includes/classes/wp-maintenance-mode.php:102
117
+ #: includes/classes/wp-maintenance-mode.php:103
118
  msgid "Maintenance mode"
119
  msgstr "حالت تعمیر و نگهداری"
120
 
121
+ #: includes/classes/wp-maintenance-mode.php:105
122
  msgid ""
123
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
124
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
125
  msgstr ""
126
 
127
+ #: includes/classes/wp-maintenance-mode.php:123
128
  msgid "Notify me when it's ready"
129
  msgstr ""
130
 
131
+ #: includes/classes/wp-maintenance-mode.php:148
132
  msgid ""
133
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
134
  "your assistant here."
135
  msgstr ""
136
 
137
+ #: includes/classes/wp-maintenance-mode.php:149
138
  msgid "I have just a few questions."
139
  msgstr ""
140
 
141
+ #: includes/classes/wp-maintenance-mode.php:150
142
  msgid "What is your name?"
143
  msgstr ""
144
 
145
+ #: includes/classes/wp-maintenance-mode.php:151
146
  msgid "Nice to meet you here, {visitor_name}!"
147
  msgstr ""
148
 
149
+ #: includes/classes/wp-maintenance-mode.php:152
150
  msgid "How you can see, our website will be lauched very soon."
151
  msgstr ""
152
 
153
+ #: includes/classes/wp-maintenance-mode.php:153
154
  msgid ""
155
  "I know, you are very excited to see it, but we need a few days to finish it."
156
  msgstr ""
157
 
158
+ #: includes/classes/wp-maintenance-mode.php:154
159
  msgid "Would you like to be first to see it?"
160
  msgstr ""
161
 
162
+ #: includes/classes/wp-maintenance-mode.php:155
163
  msgid ""
164
  "Cool! Please leave your email here and I will send you a message when it's "
165
  "ready."
166
  msgstr ""
167
 
168
+ #: includes/classes/wp-maintenance-mode.php:156
169
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
170
  msgstr ""
171
 
172
+ #: includes/classes/wp-maintenance-mode.php:157
173
  msgid "Got it! Thank you and see you soon here!"
174
  msgstr ""
175
 
176
+ #: includes/classes/wp-maintenance-mode.php:158
177
  msgid "Have a great day!"
178
  msgstr ""
179
 
180
+ #: includes/classes/wp-maintenance-mode.php:161
181
+ #: includes/classes/wp-maintenance-mode.php:650
182
  msgid "Type your name here…"
183