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
  msgstr ""
184
 
185
+ #: includes/classes/wp-maintenance-mode.php:162
186
  msgid "Tell me more"
187
  msgstr ""
188
 
189
+ #: includes/classes/wp-maintenance-mode.php:163
190
  msgid "Boring"
191
  msgstr ""
192
 
193
+ #: includes/classes/wp-maintenance-mode.php:164
194
+ #: includes/classes/wp-maintenance-mode.php:651
195
  msgid "Type your email here…"
196
  msgstr ""
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"
220
  "\">settings</a>."
221
  msgstr ""
222
 
223
+ #: includes/classes/wp-maintenance-mode.php:547
224
+ #: includes/classes/wp-maintenance-mode.php:561
225
  msgid "Maintenance Mode"
226
  msgstr "حالت تعمیر و نگهداری"
227
 
228
+ #: includes/classes/wp-maintenance-mode.php:647
229
  msgid "Please type in your name."
230
  msgstr ""
231
 
232
+ #: includes/classes/wp-maintenance-mode.php:648
233
  #, fuzzy
234
  msgid "Please type in a valid email address."
235
  msgstr "لطفا ایمیل آدرس معتبر وارد نمایید."
236
 
237
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
238
  msgid "Send"
239
  msgstr "ارسال"
240
 
241
+ #: includes/classes/wp-maintenance-mode.php:865
242
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
243
  msgid "Please enter a valid email address."
244
  msgstr "لطفا ایمیل آدرس معتبر وارد نمایید."
245
 
246
+ #: includes/classes/wp-maintenance-mode.php:877
247
  msgid "You successfully subscribed. Thanks!"
248
  msgstr ""
249
 
250
+ #: includes/classes/wp-maintenance-mode.php:895
251
  msgid "All fields required."
252
  msgstr "تمام فیلد ها لازم است."
253
 
254
+ #: includes/classes/wp-maintenance-mode.php:907
255
  msgid "Message via contact"
256
  msgstr ""
257
 
258
+ #: includes/classes/wp-maintenance-mode.php:924
259
  msgid "Your email was sent to the website administrator. Thanks!"
260
  msgstr ""
261
 
356
  msgid "GDPR"
357
  msgstr ""
358
 
359
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
360
  msgid "Status"
361
  msgstr "وضعیت"
362
 
363
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
364
  msgid "Activated"
365
  msgstr "فعال‌شده"
366
 
367
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
368
  msgid "Deactivated"
369
  msgstr "غیرفعال‌شده"
370
 
462
  msgstr ""
463
 
464
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
465
+ #: views/settings.php:622 views/settings.php:695
466
  msgid "Save settings"
467
  msgstr "ذخیره تنظیمات"
468
 
469
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
470
+ #: views/settings.php:623 views/settings.php:696
471
  msgid "Reset settings"
472
  msgstr "بازنشانی تنظیمات"
473
 
599
  msgid "Links target?"
600
  msgstr ""
601
 
602
+ #: views/settings.php:328 views/settings.php:666
603
  msgid "New page"
604
  msgstr "برگه جدید"
605
 
606
+ #: views/settings.php:329 views/settings.php:667
607
  msgid "Same page"
608
  msgstr "همان برگه"
609
 
678
  "need to."
679
  msgstr ""
680
 
681
+ #: views/settings.php:465
682
+ msgid ""
683
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
684
+ "&raquo; Export as CSV."
685
+ msgstr ""
686
+
687
+ #: views/settings.php:478
688
  #, fuzzy
689
  msgid "Bot Name"
690
  msgstr "نام"
691
 
692
+ #: views/settings.php:481
693
  msgid "This name will appear when the bot is typing."
694
  msgstr ""
695
 
696
+ #: views/settings.php:485
697
  #, fuzzy
698
  msgid "Upload avatar"
699
  msgstr "بارگزاری پس‌زمینه"
700
 
701
+ #: views/settings.php:489
702
  msgid "A 512 x 512 px will work just fine."
703
  msgstr ""
704
 
705
+ #: views/settings.php:495
706
  msgid "Customize Messages"
707
  msgstr ""
708
 
709
+ #: views/settings.php:500
710
  msgid "Message 1"
711
  msgstr ""
712
 
713
+ #: views/settings.php:508
714
  msgid "Message 2"
715
  msgstr ""
716
 
717
+ #: views/settings.php:516
718
  msgid "Message 3"
719
  msgstr ""
720
 
721
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
722
  msgid "Response"
723
  msgstr ""
724
 
725
+ #: views/settings.php:528 views/settings.php:590
726
  msgid "Edit the placeholder's text"
727
  msgstr ""
728
 
729
+ #: views/settings.php:532
730
  msgid "Message 4"
731
  msgstr ""
732
 
733
+ #: views/settings.php:540
734
  msgid "Message 5"
735
  msgstr ""
736
 
737
+ #: views/settings.php:548
738
  msgid "Message 6"
739
  msgstr ""
740
 
741
+ #: views/settings.php:556
742
  msgid "Message 7"
743
  msgstr ""
744
 
745
+ #: views/settings.php:568
746
  msgid "Edit button one"
747
  msgstr ""
748
 
749
+ #: views/settings.php:572
750
  msgid "Edit button two"
751
  msgstr ""
752
 
753
+ #: views/settings.php:578 views/settings.php:594
754
  msgid "Message 8"
755
  msgstr ""
756
 
757
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
758
  msgid "(click on button one)"
759
  msgstr ""
760
 
761
+ #: views/settings.php:594
762
  msgid "(click on button two)"
763
  msgstr ""
764
 
765
+ #: views/settings.php:602
766
  msgid "Message 9"
767
  msgstr ""
768
 
769
+ #: views/settings.php:610
770
  msgid "Message 10"
771
  msgstr ""
772
 
773
+ #: views/settings.php:632
774
  msgid ""
775
  "To make the plugin GDPR compliant, fill in the details and enable this "
776
  "section."
777
  msgstr ""
778
 
779
+ #: views/settings.php:633
780
  msgid ""
781
  "Here we added some generic texts that you may want to review, change or "
782
  "remove."
783
  msgstr ""
784
 
785
+ #: views/settings.php:645
786
  msgid "Link name"
787
  msgstr ""
788
 
789
+ #: views/settings.php:649
790
  msgid "Label the link that will be shown on frontend footer"
791
  msgstr ""
792
 
793
+ #: views/settings.php:654
794
  msgid "P. Policy page link"
795
  msgstr ""
796
 
797
+ #: views/settings.php:663
798
  msgid "P. Policy link target"
799
  msgstr ""
800
 
801
+ #: views/settings.php:669
802
  msgid "Choose how the link will open."
803
  msgstr ""
804
 
805
+ #: views/settings.php:674
806
  msgid "Contact form 'tail'"
807
  msgstr ""
808
 
809
+ #: views/settings.php:678 views/settings.php:687
810
  msgid "This will be shown together with the acceptance checkbox below the form"
811
  msgstr ""
812
 
813
+ #: views/settings.php:683
814
  msgid "Subscribe form 'tail'"
815
  msgstr ""
816
 
languages/wp-maintenance-mode-fr_FR.mo CHANGED
Binary file
languages/wp-maintenance-mode-fr_FR.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:11+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:11+0200\n"
6
  "Last-Translator: Florian TIAR <tflorian91@hotmail.fr>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.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 "Mode Maintenance"
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>Excusez-nous pour la gêne occasionnée.<br />Notre site web est "
126
  "actuellement en maintenance.<br />Merci de votre compréhension.</p>"
127
 
128
- #: includes/classes/wp-maintenance-mode.php:122
129
  msgid "Notify me when it's ready"
130
  msgstr "Me notifier quand c'est prêt"
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 "Entrez votre adresse email"
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
  "Le plugin WP Maintenance Mode a été relancé et vous devez redéfinir les <a "
225
  "href=\"%s\">options</a>."
226
 
227
- #: includes/classes/wp-maintenance-mode.php:542
228
- #: includes/classes/wp-maintenance-mode.php:556
229
  msgid "Maintenance Mode"
230
  msgstr "Maintenance Mode"
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 "Veuillez entrer une adresse email valide s'il vous plait."
240
 
241
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
242
  msgid "Send"
243
  msgstr "Envoyer"
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 "Veuillez entrer une adresse email valide s'il vous plait."
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 "Tous les champs requis."
257
 
258
- #: includes/classes/wp-maintenance-mode.php:900
259
  msgid "Message via contact"
260
  msgstr "Message via contact"
261
 
262
- #: includes/classes/wp-maintenance-mode.php:917
263
  msgid "Your email was sent to the website administrator. Thanks!"
264
  msgstr "Merci ! Votre email a été envoyé au webmaster du site."
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 "Etat"
366
 
367
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
368
  msgid "Activated"
369
  msgstr "Activé"
370
 
371
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
372
  msgid "Deactivated"
373
  msgstr "Désactivé"
374
 
@@ -472,12 +472,12 @@ msgid ""
472
  msgstr ""
473
 
474
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
475
- #: views/settings.php:621 views/settings.php:694
476
  msgid "Save settings"
477
  msgstr ""
478
 
479
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
480
- #: views/settings.php:622 views/settings.php:695
481
  msgid "Reset settings"
482
  msgstr ""
483
 
@@ -610,11 +610,11 @@ msgstr "Afficher les réseaux sociaux ?"
610
  msgid "Links target?"
611
  msgstr ""
612
 
613
- #: views/settings.php:328 views/settings.php:665
614
  msgid "New page"
615
  msgstr ""
616
 
617
- #: views/settings.php:329 views/settings.php:666
618
  msgid "Same page"
619
  msgstr ""
620
 
@@ -689,133 +689,139 @@ msgid ""
689
  "need to."
690
  msgstr ""
691
 
692
- #: views/settings.php:477
 
 
 
 
 
 
693
  #, fuzzy
694
  msgid "Bot Name"
695
  msgstr "Nom"
696
 
697
- #: views/settings.php:480
698
  msgid "This name will appear when the bot is typing."
699
  msgstr ""
700
 
701
- #: views/settings.php:484
702
  #, fuzzy
703
  msgid "Upload avatar"
704
  msgstr "Uploader le fond d'écran"
705
 
706
- #: views/settings.php:488
707
  msgid "A 512 x 512 px will work just fine."
708
  msgstr ""
709
 
710
- #: views/settings.php:494
711
  msgid "Customize Messages"
712
  msgstr ""
713
 
714
- #: views/settings.php:499
715
  msgid "Message 1"
716
  msgstr ""
717
 
718
- #: views/settings.php:507
719
  msgid "Message 2"
720
  msgstr ""
721
 
722
- #: views/settings.php:515
723
  msgid "Message 3"
724
  msgstr ""
725
 
726
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
727
  msgid "Response"
728
  msgstr ""
729
 
730
- #: views/settings.php:527 views/settings.php:589
731
  msgid "Edit the placeholder's text"
732
  msgstr ""
733
 
734
- #: views/settings.php:531
735
  msgid "Message 4"
736
  msgstr ""
737
 
738
- #: views/settings.php:539
739
  msgid "Message 5"
740
  msgstr ""
741
 
742
- #: views/settings.php:547
743
  msgid "Message 6"
744
  msgstr ""
745
 
746
- #: views/settings.php:555
747
  msgid "Message 7"
748
  msgstr ""
749
 
750
- #: views/settings.php:567
751
  msgid "Edit button one"
752
  msgstr ""
753
 
754
- #: views/settings.php:571
755
  msgid "Edit button two"
756
  msgstr ""
757
 
758
- #: views/settings.php:577 views/settings.php:593
759
  msgid "Message 8"
760
  msgstr ""
761
 
762
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
763
  msgid "(click on button one)"
764
  msgstr ""
765
 
766
- #: views/settings.php:593
767
  msgid "(click on button two)"
768
  msgstr ""
769
 
770
- #: views/settings.php:601
771
  msgid "Message 9"
772
  msgstr ""
773
 
774
- #: views/settings.php:609
775
  msgid "Message 10"
776
  msgstr ""
777
 
778
- #: views/settings.php:631
779
  msgid ""
780
  "To make the plugin GDPR compliant, fill in the details and enable this "
781
  "section."
782
  msgstr ""
783
 
784
- #: views/settings.php:632
785
  msgid ""
786
  "Here we added some generic texts that you may want to review, change or "
787
  "remove."
788
  msgstr ""
789
 
790
- #: views/settings.php:644
791
  msgid "Link name"
792
  msgstr ""
793
 
794
- #: views/settings.php:648
795
  msgid "Label the link that will be shown on frontend footer"
796
  msgstr ""
797
 
798
- #: views/settings.php:653
799
  msgid "P. Policy page link"
800
  msgstr ""
801
 
802
- #: views/settings.php:662
803
  msgid "P. Policy link target"
804
  msgstr ""
805
 
806
- #: views/settings.php:668
807
  msgid "Choose how the link will open."
808
  msgstr ""
809
 
810
- #: views/settings.php:673
811
  msgid "Contact form 'tail'"
812
  msgstr ""
813
 
814
- #: views/settings.php:677 views/settings.php:686
815
  msgid "This will be shown together with the acceptance checkbox below the form"
816
  msgstr ""
817
 
818
- #: views/settings.php:682
819
  msgid "Subscribe form 'tail'"
820
  msgstr ""
821
 
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: Florian TIAR <tflorian91@hotmail.fr>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.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 "Mode Maintenance"
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>Excusez-nous pour la gêne occasionnée.<br />Notre site web est "
126
  "actuellement en maintenance.<br />Merci de votre compréhension.</p>"
127
 
128
+ #: includes/classes/wp-maintenance-mode.php:123
129
  msgid "Notify me when it's ready"
130
  msgstr "Me notifier quand c'est prêt"
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 "Entrez votre adresse email"
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
  "Le plugin WP Maintenance Mode a été relancé et vous devez redéfinir les <a "
225
  "href=\"%s\">options</a>."
226
 
227
+ #: includes/classes/wp-maintenance-mode.php:547
228
+ #: includes/classes/wp-maintenance-mode.php:561
229
  msgid "Maintenance Mode"
230
  msgstr "Maintenance Mode"
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 "Veuillez entrer une adresse email valide s'il vous plait."
240
 
241
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
242
  msgid "Send"
243
  msgstr "Envoyer"
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 "Veuillez entrer une adresse email valide s'il vous plait."
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 "Tous les champs requis."
257
 
258
+ #: includes/classes/wp-maintenance-mode.php:907
259
  msgid "Message via contact"
260
  msgstr "Message via contact"
261
 
262
+ #: includes/classes/wp-maintenance-mode.php:924
263
  msgid "Your email was sent to the website administrator. Thanks!"
264
  msgstr "Merci ! Votre email a été envoyé au webmaster du site."
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 "Etat"
366
 
367
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
368
  msgid "Activated"
369
  msgstr "Activé"
370
 
371
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
372
  msgid "Deactivated"
373
  msgstr "Désactivé"
374
 
472
  msgstr ""
473
 
474
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
475
+ #: views/settings.php:622 views/settings.php:695
476
  msgid "Save settings"
477
  msgstr ""
478
 
479
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
480
+ #: views/settings.php:623 views/settings.php:696
481
  msgid "Reset settings"
482
  msgstr ""
483
 
610
  msgid "Links target?"
611
  msgstr ""
612
 
613
+ #: views/settings.php:328 views/settings.php:666
614
  msgid "New page"
615
  msgstr ""
616
 
617
+ #: views/settings.php:329 views/settings.php:667
618
  msgid "Same page"
619
  msgstr ""
620
 
689
  "need to."
690
  msgstr ""
691
 
692
+ #: views/settings.php:465
693
+ msgid ""
694
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
695
+ "&raquo; Export as CSV."
696
+ msgstr ""
697
+
698
+ #: views/settings.php:478
699
  #, fuzzy
700
  msgid "Bot Name"
701
  msgstr "Nom"
702
 
703
+ #: views/settings.php:481
704
  msgid "This name will appear when the bot is typing."
705
  msgstr ""
706
 
707
+ #: views/settings.php:485
708
  #, fuzzy
709
  msgid "Upload avatar"
710
  msgstr "Uploader le fond d'écran"
711
 
712
+ #: views/settings.php:489
713
  msgid "A 512 x 512 px will work just fine."
714
  msgstr ""
715
 
716
+ #: views/settings.php:495
717
  msgid "Customize Messages"
718
  msgstr ""
719
 
720
+ #: views/settings.php:500
721
  msgid "Message 1"
722
  msgstr ""
723
 
724
+ #: views/settings.php:508
725
  msgid "Message 2"
726
  msgstr ""
727
 
728
+ #: views/settings.php:516
729
  msgid "Message 3"
730
  msgstr ""
731
 
732
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
733
  msgid "Response"
734
  msgstr ""
735
 
736
+ #: views/settings.php:528 views/settings.php:590
737
  msgid "Edit the placeholder's text"
738
  msgstr ""
739
 
740
+ #: views/settings.php:532
741
  msgid "Message 4"
742
  msgstr ""
743
 
744
+ #: views/settings.php:540
745
  msgid "Message 5"
746
  msgstr ""
747
 
748
+ #: views/settings.php:548
749
  msgid "Message 6"
750
  msgstr ""
751
 
752
+ #: views/settings.php:556
753
  msgid "Message 7"
754
  msgstr ""
755
 
756
+ #: views/settings.php:568
757
  msgid "Edit button one"
758
  msgstr ""
759
 
760
+ #: views/settings.php:572
761
  msgid "Edit button two"
762
  msgstr ""
763
 
764
+ #: views/settings.php:578 views/settings.php:594
765
  msgid "Message 8"
766
  msgstr ""
767
 
768
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
769
  msgid "(click on button one)"
770
  msgstr ""
771
 
772
+ #: views/settings.php:594
773
  msgid "(click on button two)"
774
  msgstr ""
775
 
776
+ #: views/settings.php:602
777
  msgid "Message 9"
778
  msgstr ""
779
 
780
+ #: views/settings.php:610
781
  msgid "Message 10"
782
  msgstr ""
783
 
784
+ #: views/settings.php:632
785
  msgid ""
786
  "To make the plugin GDPR compliant, fill in the details and enable this "
787
  "section."
788
  msgstr ""
789
 
790
+ #: views/settings.php:633
791
  msgid ""
792
  "Here we added some generic texts that you may want to review, change or "
793
  "remove."
794
  msgstr ""
795
 
796
+ #: views/settings.php:645
797
  msgid "Link name"
798
  msgstr ""
799
 
800
+ #: views/settings.php:649
801
  msgid "Label the link that will be shown on frontend footer"
802
  msgstr ""
803
 
804
+ #: views/settings.php:654
805
  msgid "P. Policy page link"
806
  msgstr ""
807
 
808
+ #: views/settings.php:663
809
  msgid "P. Policy link target"
810
  msgstr ""
811
 
812
+ #: views/settings.php:669
813
  msgid "Choose how the link will open."
814
  msgstr ""
815
 
816
+ #: views/settings.php:674
817
  msgid "Contact form 'tail'"
818
  msgstr ""
819
 
820
+ #: views/settings.php:678 views/settings.php:687
821
  msgid "This will be shown together with the acceptance checkbox below the form"
822
  msgstr ""
823
 
824
+ #: views/settings.php:683
825
  msgid "Subscribe form 'tail'"
826
  msgstr ""
827
 
languages/wp-maintenance-mode-it_IT.mo CHANGED
Binary file
languages/wp-maintenance-mode-it_IT.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:12+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:12+0200\n"
6
  "Last-Translator: Massimiliano Losego <massimiliano@losego.it>\n"
7
  "Language-Team: Losego Massimiliano <massimiliano@losego.it>\n"
8
  "Language: it\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"
@@ -65,7 +65,7 @@ msgstr ""
65
 
66
  #: includes/classes/wp-maintenance-mode-admin.php:532
67
  msgid "Settings"
68
- msgstr "Impotazioni"
69
 
70
  #: includes/classes/wp-maintenance-mode-admin.php:551
71
  #, php-format
@@ -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 "Modalità Manutenzione"
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,96 +125,96 @@ msgstr ""
125
  "<p>Ci scusiamo per l'inconveniente.<br />Il nostro sito è attualmente in "
126
  "manutenzione.<br />Grazie per la comprensione.</p>"
127
 
128
- #: includes/classes/wp-maintenance-mode.php:122
129
  msgid "Notify me when it's ready"
130
  msgstr "Informatemi quando sarà pronto"
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
  msgid "Type your email here…"
197
  msgstr ""
198
 
199
- #: includes/classes/wp-maintenance-mode.php:169
200
  msgid "Privacy Policy"
201
  msgstr ""
202
 
203
- #: includes/classes/wp-maintenance-mode.php:172
204
  msgid ""
205
  "This form collects your name and email so that we can reach you back. Check "
206
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
207
  "protect and manage your submitted data."
208
  msgstr ""
209
 
210
- #: includes/classes/wp-maintenance-mode.php:173
211
  msgid ""
212
  "This form collects your email so that we can add you to our newsletter list. "
213
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
214
  "we protect and manage your submitted data."
215
  msgstr ""
216
 
217
- #: includes/classes/wp-maintenance-mode.php:296
218
  #, php-format
219
  msgid ""
220
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
@@ -223,42 +223,42 @@ msgstr ""
223
  "WP Maintenance Mode plugin è stato ri-lanciato e DOVRAI rivedere le <a href="
224
  "\"%s\">impostazioni</a>."
225
 
226
- #: includes/classes/wp-maintenance-mode.php:542
227
- #: includes/classes/wp-maintenance-mode.php:556
228
  msgid "Maintenance Mode"
229
  msgstr "Modalità Manutenzione"
230
 
231
- #: includes/classes/wp-maintenance-mode.php:642
232
  msgid "Please type in your name."
233
  msgstr ""
234
 
235
- #: includes/classes/wp-maintenance-mode.php:643
236
  #, fuzzy
237
  msgid "Please type in a valid email address."
238
  msgstr "Per favore inserisci in email corretta."
239
 
240
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
241
  msgid "Send"
242
  msgstr "Spedisci"
243
 
244
- #: includes/classes/wp-maintenance-mode.php:858
245
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
246
  msgid "Please enter a valid email address."
247
  msgstr "Per favore inserisci in email corretta."
248
 
249
- #: includes/classes/wp-maintenance-mode.php:870
250
  msgid "You successfully subscribed. Thanks!"
251
  msgstr ""
252
 
253
- #: includes/classes/wp-maintenance-mode.php:888
254
  msgid "All fields required."
255
  msgstr "Sono richiesti tutti i campi."
256
 
257
- #: includes/classes/wp-maintenance-mode.php:900
258
  msgid "Message via contact"
259
  msgstr "Messaggio via contatto"
260
 
261
- #: includes/classes/wp-maintenance-mode.php:917
262
  msgid "Your email was sent to the website administrator. Thanks!"
263
  msgstr "La tua email è stata spedita all'amministratore del sito. Grazie!"
264
 
@@ -359,15 +359,15 @@ msgstr ""
359
  msgid "GDPR"
360
  msgstr ""
361
 
362
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
363
  msgid "Status"
364
  msgstr "Stato"
365
 
366
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
367
  msgid "Activated"
368
  msgstr "Attivato"
369
 
370
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
371
  msgid "Deactivated"
372
  msgstr "Disattivato"
373
 
@@ -473,12 +473,12 @@ msgstr ""
473
  "manutenzione?"
474
 
475
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
476
- #: views/settings.php:621 views/settings.php:694
477
  msgid "Save settings"
478
  msgstr "Salva impostazioni"
479
 
480
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
481
- #: views/settings.php:622 views/settings.php:695
482
  msgid "Reset settings"
483
  msgstr "Resetta impostazioni"
484
 
@@ -611,11 +611,11 @@ msgstr "Mostra Social Networks?"
611
  msgid "Links target?"
612
  msgstr "Link di destinazione?"
613
 
614
- #: views/settings.php:328 views/settings.php:665
615
  msgid "New page"
616
  msgstr "Nuova Pagina"
617
 
618
- #: views/settings.php:329 views/settings.php:666
619
  msgid "Same page"
620
  msgstr "Stessa Pagina"
621
 
@@ -690,133 +690,139 @@ msgid ""
690
  "need to."
691
  msgstr ""
692
 
693
- #: views/settings.php:477
 
 
 
 
 
 
694
  #, fuzzy
695
  msgid "Bot Name"
696
  msgstr "Nome"
697
 
698
- #: views/settings.php:480
699
  msgid "This name will appear when the bot is typing."
700
  msgstr ""
701
 
702
- #: views/settings.php:484
703
  #, fuzzy
704
  msgid "Upload avatar"
705
  msgstr "Carica uno Sfondo"
706
 
707
- #: views/settings.php:488
708
  msgid "A 512 x 512 px will work just fine."
709
  msgstr ""
710
 
711
- #: views/settings.php:494
712
  msgid "Customize Messages"
713
  msgstr ""
714
 
715
- #: views/settings.php:499
716
  msgid "Message 1"
717
  msgstr ""
718
 
719
- #: views/settings.php:507
720
  msgid "Message 2"
721
  msgstr ""
722
 
723
- #: views/settings.php:515
724
  msgid "Message 3"
725
  msgstr ""
726
 
727
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
728
  msgid "Response"
729
  msgstr ""
730
 
731
- #: views/settings.php:527 views/settings.php:589
732
  msgid "Edit the placeholder's text"
733
  msgstr ""
734
 
735
- #: views/settings.php:531
736
  msgid "Message 4"
737
  msgstr ""
738
 
739
- #: views/settings.php:539
740
  msgid "Message 5"
741
  msgstr ""
742
 
743
- #: views/settings.php:547
744
  msgid "Message 6"
745
  msgstr ""
746
 
747
- #: views/settings.php:555
748
  msgid "Message 7"
749
  msgstr ""
750
 
751
- #: views/settings.php:567
752
  msgid "Edit button one"
753
  msgstr ""
754
 
755
- #: views/settings.php:571
756
  msgid "Edit button two"
757
  msgstr ""
758
 
759
- #: views/settings.php:577 views/settings.php:593
760
  msgid "Message 8"
761
  msgstr ""
762
 
763
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
764
  msgid "(click on button one)"
765
  msgstr ""
766
 
767
- #: views/settings.php:593
768
  msgid "(click on button two)"
769
  msgstr ""
770
 
771
- #: views/settings.php:601
772
  msgid "Message 9"
773
  msgstr ""
774
 
775
- #: views/settings.php:609
776
  msgid "Message 10"
777
  msgstr ""
778
 
779
- #: views/settings.php:631
780
  msgid ""
781
  "To make the plugin GDPR compliant, fill in the details and enable this "
782
  "section."
783
  msgstr ""
784
 
785
- #: views/settings.php:632
786
  msgid ""
787
  "Here we added some generic texts that you may want to review, change or "
788
  "remove."
789
  msgstr ""
790
 
791
- #: views/settings.php:644
792
  msgid "Link name"
793
  msgstr ""
794
 
795
- #: views/settings.php:648
796
  msgid "Label the link that will be shown on frontend footer"
797
  msgstr ""
798
 
799
- #: views/settings.php:653
800
  msgid "P. Policy page link"
801
  msgstr ""
802
 
803
- #: views/settings.php:662
804
  msgid "P. Policy link target"
805
  msgstr ""
806
 
807
- #: views/settings.php:668
808
  msgid "Choose how the link will open."
809
  msgstr ""
810
 
811
- #: views/settings.php:673
812
  msgid "Contact form 'tail'"
813
  msgstr ""
814
 
815
- #: views/settings.php:677 views/settings.php:686
816
  msgid "This will be shown together with the acceptance checkbox below the form"
817
  msgstr ""
818
 
819
- #: views/settings.php:682
820
  msgid "Subscribe form 'tail'"
821
  msgstr ""
822
 
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: Massimiliano Losego <massimiliano@losego.it>\n"
7
  "Language-Team: Losego Massimiliano <massimiliano@losego.it>\n"
8
  "Language: it\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"
65
 
66
  #: includes/classes/wp-maintenance-mode-admin.php:532
67
  msgid "Settings"
68
+ msgstr "Impostazioni"
69
 
70
  #: includes/classes/wp-maintenance-mode-admin.php:551
71
  #, php-format
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 "Modalità Manutenzione"
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>Ci scusiamo per l'inconveniente.<br />Il nostro sito è attualmente in "
126
  "manutenzione.<br />Grazie per la comprensione.</p>"
127
 
128
+ #: includes/classes/wp-maintenance-mode.php:123
129
  msgid "Notify me when it's ready"
130
  msgstr "Informatemi quando sarà pronto"
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
  msgid "Type your email here…"
197
  msgstr ""
198
 
199
+ #: includes/classes/wp-maintenance-mode.php:170
200
  msgid "Privacy Policy"
201
  msgstr ""
202
 
203
+ #: includes/classes/wp-maintenance-mode.php:173
204
  msgid ""
205
  "This form collects your name and email so that we can reach you back. Check "
206
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
207
  "protect and manage your submitted data."
208
  msgstr ""
209
 
210
+ #: includes/classes/wp-maintenance-mode.php:174
211
  msgid ""
212
  "This form collects your email so that we can add you to our newsletter list. "
213
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
214
  "we protect and manage your submitted data."
215
  msgstr ""
216
 
217
+ #: includes/classes/wp-maintenance-mode.php:301
218
  #, php-format
219
  msgid ""
220
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
223
  "WP Maintenance Mode plugin è stato ri-lanciato e DOVRAI rivedere le <a href="
224
  "\"%s\">impostazioni</a>."
225
 
226
+ #: includes/classes/wp-maintenance-mode.php:547
227
+ #: includes/classes/wp-maintenance-mode.php:561
228
  msgid "Maintenance Mode"
229
  msgstr "Modalità Manutenzione"
230
 
231
+ #: includes/classes/wp-maintenance-mode.php:647
232
  msgid "Please type in your name."
233
  msgstr ""
234
 
235
+ #: includes/classes/wp-maintenance-mode.php:648
236
  #, fuzzy
237
  msgid "Please type in a valid email address."
238
  msgstr "Per favore inserisci in email corretta."
239
 
240
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
241
  msgid "Send"
242
  msgstr "Spedisci"
243
 
244
+ #: includes/classes/wp-maintenance-mode.php:865
245
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
246
  msgid "Please enter a valid email address."
247
  msgstr "Per favore inserisci in email corretta."
248
 
249
+ #: includes/classes/wp-maintenance-mode.php:877
250
  msgid "You successfully subscribed. Thanks!"
251
  msgstr ""
252
 
253
+ #: includes/classes/wp-maintenance-mode.php:895
254
  msgid "All fields required."
255
  msgstr "Sono richiesti tutti i campi."
256
 
257
+ #: includes/classes/wp-maintenance-mode.php:907
258
  msgid "Message via contact"
259
  msgstr "Messaggio via contatto"
260
 
261
+ #: includes/classes/wp-maintenance-mode.php:924
262
  msgid "Your email was sent to the website administrator. Thanks!"
263
  msgstr "La tua email è stata spedita all'amministratore del sito. Grazie!"
264
 
359
  msgid "GDPR"
360
  msgstr ""
361
 
362
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
363
  msgid "Status"
364
  msgstr "Stato"
365
 
366
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
367
  msgid "Activated"
368
  msgstr "Attivato"
369
 
370
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
371
  msgid "Deactivated"
372
  msgstr "Disattivato"
373
 
473
  "manutenzione?"
474
 
475
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
476
+ #: views/settings.php:622 views/settings.php:695
477
  msgid "Save settings"
478
  msgstr "Salva impostazioni"
479
 
480
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
481
+ #: views/settings.php:623 views/settings.php:696
482
  msgid "Reset settings"
483
  msgstr "Resetta impostazioni"
484
 
611
  msgid "Links target?"
612
  msgstr "Link di destinazione?"
613
 
614
+ #: views/settings.php:328 views/settings.php:666
615
  msgid "New page"
616
  msgstr "Nuova Pagina"
617
 
618
+ #: views/settings.php:329 views/settings.php:667
619
  msgid "Same page"
620
  msgstr "Stessa Pagina"
621
 
690
  "need to."
691
  msgstr ""
692
 
693
+ #: views/settings.php:465
694
+ msgid ""
695
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
696
+ "&raquo; Export as CSV."
697
+ msgstr ""
698
+
699
+ #: views/settings.php:478
700
  #, fuzzy
701
  msgid "Bot Name"
702
  msgstr "Nome"
703
 
704
+ #: views/settings.php:481
705
  msgid "This name will appear when the bot is typing."
706
  msgstr ""
707
 
708
+ #: views/settings.php:485
709
  #, fuzzy
710
  msgid "Upload avatar"
711
  msgstr "Carica uno Sfondo"
712
 
713
+ #: views/settings.php:489
714
  msgid "A 512 x 512 px will work just fine."
715
  msgstr ""
716
 
717
+ #: views/settings.php:495
718
  msgid "Customize Messages"
719
  msgstr ""
720
 
721
+ #: views/settings.php:500
722
  msgid "Message 1"
723
  msgstr ""
724
 
725
+ #: views/settings.php:508
726
  msgid "Message 2"
727
  msgstr ""
728
 
729
+ #: views/settings.php:516
730
  msgid "Message 3"
731
  msgstr ""
732
 
733
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
734
  msgid "Response"
735
  msgstr ""
736
 
737
+ #: views/settings.php:528 views/settings.php:590
738
  msgid "Edit the placeholder's text"
739
  msgstr ""
740
 
741
+ #: views/settings.php:532
742
  msgid "Message 4"
743
  msgstr ""
744
 
745
+ #: views/settings.php:540
746
  msgid "Message 5"
747
  msgstr ""
748
 
749
+ #: views/settings.php:548
750
  msgid "Message 6"
751
  msgstr ""
752
 
753
+ #: views/settings.php:556
754
  msgid "Message 7"
755
  msgstr ""
756
 
757
+ #: views/settings.php:568
758
  msgid "Edit button one"
759
  msgstr ""
760
 
761
+ #: views/settings.php:572
762
  msgid "Edit button two"
763
  msgstr ""
764
 
765
+ #: views/settings.php:578 views/settings.php:594
766
  msgid "Message 8"
767
  msgstr ""
768
 
769
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
770
  msgid "(click on button one)"
771
  msgstr ""
772
 
773
+ #: views/settings.php:594
774
  msgid "(click on button two)"
775
  msgstr ""
776
 
777
+ #: views/settings.php:602
778
  msgid "Message 9"
779
  msgstr ""
780
 
781
+ #: views/settings.php:610
782
  msgid "Message 10"
783
  msgstr ""
784
 
785
+ #: views/settings.php:632
786
  msgid ""
787
  "To make the plugin GDPR compliant, fill in the details and enable this "
788
  "section."
789
  msgstr ""
790
 
791
+ #: views/settings.php:633
792
  msgid ""
793
  "Here we added some generic texts that you may want to review, change or "
794
  "remove."
795
  msgstr ""
796
 
797
+ #: views/settings.php:645
798
  msgid "Link name"
799
  msgstr ""
800
 
801
+ #: views/settings.php:649
802
  msgid "Label the link that will be shown on frontend footer"
803
  msgstr ""
804
 
805
+ #: views/settings.php:654
806
  msgid "P. Policy page link"
807
  msgstr ""
808
 
809
+ #: views/settings.php:663
810
  msgid "P. Policy link target"
811
  msgstr ""
812
 
813
+ #: views/settings.php:669
814
  msgid "Choose how the link will open."
815
  msgstr ""
816
 
817
+ #: views/settings.php:674
818
  msgid "Contact form 'tail'"
819
  msgstr ""
820
 
821
+ #: views/settings.php:678 views/settings.php:687
822
  msgid "This will be shown together with the acceptance checkbox below the form"
823
  msgstr ""
824
 
825
+ #: views/settings.php:683
826
  msgid "Subscribe form 'tail'"
827
  msgstr ""
828
 
languages/wp-maintenance-mode-nb_NO.mo CHANGED
Binary file
languages/wp-maintenance-mode-nb_NO.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:13+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:13+0200\n"
6
  "Last-Translator: Fredrik Hugås <fhugas@gmail.com>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: nb\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 "Vedlikehold pågår"
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,96 +125,96 @@ msgstr ""
125
  "<p>Nettsiden gjennomgår for tiden et planlagt vedlikehold.<br />Vi beklager "
126
  "nedetiden dette medfører.<br />Takk for din forståelse.</p>"
127
 
128
- #: includes/classes/wp-maintenance-mode.php:122
129
  msgid "Notify me when it's ready"
130
  msgstr "Varsle meg når den er klar"
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
  msgid "Type your email here…"
197
  msgstr ""
198
 
199
- #: includes/classes/wp-maintenance-mode.php:169
200
  msgid "Privacy Policy"
201
  msgstr ""
202
 
203
- #: includes/classes/wp-maintenance-mode.php:172
204
  msgid ""
205
  "This form collects your name and email so that we can reach you back. Check "
206
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
207
  "protect and manage your submitted data."
208
  msgstr ""
209
 
210
- #: includes/classes/wp-maintenance-mode.php:173
211
  msgid ""
212
  "This form collects your email so that we can add you to our newsletter list. "
213
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
214
  "we protect and manage your submitted data."
215
  msgstr ""
216
 
217
- #: includes/classes/wp-maintenance-mode.php:296
218
  #, php-format
219
  msgid ""
220
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
@@ -223,42 +223,42 @@ msgstr ""
223
  "Utvidelsen WP Maintanance Mode er oppdatert og du må <a href=\"%s\">se "
224
  "igjennom innstillingene</a>"
225
 
226
- #: includes/classes/wp-maintenance-mode.php:542
227
- #: includes/classes/wp-maintenance-mode.php:556
228
  msgid "Maintenance Mode"
229
  msgstr "Vedlikehold pågår"
230
 
231
- #: includes/classes/wp-maintenance-mode.php:642
232
  msgid "Please type in your name."
233
  msgstr ""
234
 
235
- #: includes/classes/wp-maintenance-mode.php:643
236
  #, fuzzy
237
  msgid "Please type in a valid email address."
238
  msgstr "Vennligst oppgi en gyldig epostadresse."
239
 
240
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
241
  msgid "Send"
242
  msgstr "Send"
243
 
244
- #: includes/classes/wp-maintenance-mode.php:858
245
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
246
  msgid "Please enter a valid email address."
247
  msgstr "Vennligst oppgi en gyldig epostadresse."
248
 
249
- #: includes/classes/wp-maintenance-mode.php:870
250
  msgid "You successfully subscribed. Thanks!"
251
  msgstr ""
252
 
253
- #: includes/classes/wp-maintenance-mode.php:888
254
  msgid "All fields required."
255
  msgstr "Alle felt er påkrevd."
256
 
257
- #: includes/classes/wp-maintenance-mode.php:900
258
  msgid "Message via contact"
259
  msgstr "Melding via kontakt"
260
 
261
- #: includes/classes/wp-maintenance-mode.php:917
262
  msgid "Your email was sent to the website administrator. Thanks!"
263
  msgstr "Din epost ble sendt til administratoren for nettstedet. Takk!"
264
 
@@ -359,15 +359,15 @@ msgstr ""
359
  msgid "GDPR"
360
  msgstr ""
361
 
362
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
363
  msgid "Status"
364
  msgstr "Status"
365
 
366
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
367
  msgid "Activated"
368
  msgstr "Aktivert"
369
 
370
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
371
  msgid "Deactivated"
372
  msgstr "Deaktivert"
373
 
@@ -472,12 +472,12 @@ msgstr ""
472
  "vedlikeholdsmodus?"
473
 
474
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
475
- #: views/settings.php:621 views/settings.php:694
476
  msgid "Save settings"
477
  msgstr "Lagre innstillinger"
478
 
479
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
480
- #: views/settings.php:622 views/settings.php:695
481
  msgid "Reset settings"
482
  msgstr "Tilbakestill innstillinger"
483
 
@@ -610,11 +610,11 @@ msgstr "Vis sosiale nettverk?"
610
  msgid "Links target?"
611
  msgstr "Lenkemål"
612
 
613
- #: views/settings.php:328 views/settings.php:665
614
  msgid "New page"
615
  msgstr "Ny side"
616
 
617
- #: views/settings.php:329 views/settings.php:666
618
  msgid "Same page"
619
  msgstr "Samme side"
620
 
@@ -689,133 +689,139 @@ msgid ""
689
  "need to."
690
  msgstr ""
691
 
692
- #: views/settings.php:477
 
 
 
 
 
 
693
  #, fuzzy
694
  msgid "Bot Name"
695
  msgstr "Navn"
696
 
697
- #: views/settings.php:480
698
  msgid "This name will appear when the bot is typing."
699
  msgstr ""
700
 
701
- #: views/settings.php:484
702
  #, fuzzy
703
  msgid "Upload avatar"
704
  msgstr "Last opp bakgrunn"
705
 
706
- #: views/settings.php:488
707
  msgid "A 512 x 512 px will work just fine."
708
  msgstr ""
709
 
710
- #: views/settings.php:494
711
  msgid "Customize Messages"
712
  msgstr ""
713
 
714
- #: views/settings.php:499
715
  msgid "Message 1"
716
  msgstr ""
717
 
718
- #: views/settings.php:507
719
  msgid "Message 2"
720
  msgstr ""
721
 
722
- #: views/settings.php:515
723
  msgid "Message 3"
724
  msgstr ""
725
 
726
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
727
  msgid "Response"
728
  msgstr ""
729
 
730
- #: views/settings.php:527 views/settings.php:589
731
  msgid "Edit the placeholder's text"
732
  msgstr ""
733
 
734
- #: views/settings.php:531
735
  msgid "Message 4"
736
  msgstr ""
737
 
738
- #: views/settings.php:539
739
  msgid "Message 5"
740
  msgstr ""
741
 
742
- #: views/settings.php:547
743
  msgid "Message 6"
744
  msgstr ""
745
 
746
- #: views/settings.php:555
747
  msgid "Message 7"
748
  msgstr ""
749
 
750
- #: views/settings.php:567
751
  msgid "Edit button one"
752
  msgstr ""
753
 
754
- #: views/settings.php:571
755
  msgid "Edit button two"
756
  msgstr ""
757
 
758
- #: views/settings.php:577 views/settings.php:593
759
  msgid "Message 8"
760
  msgstr ""
761
 
762
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
763
  msgid "(click on button one)"
764
  msgstr ""
765
 
766
- #: views/settings.php:593
767
  msgid "(click on button two)"
768
  msgstr ""
769
 
770
- #: views/settings.php:601
771
  msgid "Message 9"
772
  msgstr ""
773
 
774
- #: views/settings.php:609
775
  msgid "Message 10"
776
  msgstr ""
777
 
778
- #: views/settings.php:631
779
  msgid ""
780
  "To make the plugin GDPR compliant, fill in the details and enable this "
781
  "section."
782
  msgstr ""
783
 
784
- #: views/settings.php:632
785
  msgid ""
786
  "Here we added some generic texts that you may want to review, change or "
787
  "remove."
788
  msgstr ""
789
 
790
- #: views/settings.php:644
791
  msgid "Link name"
792
  msgstr ""
793
 
794
- #: views/settings.php:648
795
  msgid "Label the link that will be shown on frontend footer"
796
  msgstr ""
797
 
798
- #: views/settings.php:653
799
  msgid "P. Policy page link"
800
  msgstr ""
801
 
802
- #: views/settings.php:662
803
  msgid "P. Policy link target"
804
  msgstr ""
805
 
806
- #: views/settings.php:668
807
  msgid "Choose how the link will open."
808
  msgstr ""
809
 
810
- #: views/settings.php:673
811
  msgid "Contact form 'tail'"
812
  msgstr ""
813
 
814
- #: views/settings.php:677 views/settings.php:686
815
  msgid "This will be shown together with the acceptance checkbox below the form"
816
  msgstr ""
817
 
818
- #: views/settings.php:682
819
  msgid "Subscribe form 'tail'"
820
  msgstr ""
821
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.2.4\n"
4
+ "POT-Creation-Date: 2019-05-20 10:31+0300\n"
5
+ "PO-Revision-Date: 2019-05-20 10:31+0300\n"
6
  "Last-Translator: Fredrik Hugås <fhugas@gmail.com>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: nb\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 "Vedlikehold pågår"
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>Nettsiden gjennomgår for tiden et planlagt vedlikehold.<br />Vi beklager "
126
  "nedetiden dette medfører.<br />Takk for din forståelse.</p>"
127
 
128
+ #: includes/classes/wp-maintenance-mode.php:123
129
  msgid "Notify me when it's ready"
130
  msgstr "Varsle meg når den er klar"
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
  msgid "Type your email here…"
197
  msgstr ""
198
 
199
+ #: includes/classes/wp-maintenance-mode.php:170
200
  msgid "Privacy Policy"
201
  msgstr ""
202
 
203
+ #: includes/classes/wp-maintenance-mode.php:173
204
  msgid ""
205
  "This form collects your name and email so that we can reach you back. Check "
206
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
207
  "protect and manage your submitted data."
208
  msgstr ""
209
 
210
+ #: includes/classes/wp-maintenance-mode.php:174
211
  msgid ""
212
  "This form collects your email so that we can add you to our newsletter list. "
213
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
214
  "we protect and manage your submitted data."
215
  msgstr ""
216
 
217
+ #: includes/classes/wp-maintenance-mode.php:301
218
  #, php-format
219
  msgid ""
220
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
223
  "Utvidelsen WP Maintanance Mode er oppdatert og du må <a href=\"%s\">se "
224
  "igjennom innstillingene</a>"
225
 
226
+ #: includes/classes/wp-maintenance-mode.php:547
227
+ #: includes/classes/wp-maintenance-mode.php:561
228
  msgid "Maintenance Mode"
229
  msgstr "Vedlikehold pågår"
230
 
231
+ #: includes/classes/wp-maintenance-mode.php:647
232
  msgid "Please type in your name."
233
  msgstr ""
234
 
235
+ #: includes/classes/wp-maintenance-mode.php:648
236
  #, fuzzy
237
  msgid "Please type in a valid email address."
238
  msgstr "Vennligst oppgi en gyldig epostadresse."
239
 
240
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
241
  msgid "Send"
242
  msgstr "Send"
243
 
244
+ #: includes/classes/wp-maintenance-mode.php:865
245
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
246
  msgid "Please enter a valid email address."
247
  msgstr "Vennligst oppgi en gyldig epostadresse."
248
 
249
+ #: includes/classes/wp-maintenance-mode.php:877
250
  msgid "You successfully subscribed. Thanks!"
251
  msgstr ""
252
 
253
+ #: includes/classes/wp-maintenance-mode.php:895
254
  msgid "All fields required."
255
  msgstr "Alle felt er påkrevd."
256
 
257
+ #: includes/classes/wp-maintenance-mode.php:907
258
  msgid "Message via contact"
259
  msgstr "Melding via kontakt"
260
 
261
+ #: includes/classes/wp-maintenance-mode.php:924
262
  msgid "Your email was sent to the website administrator. Thanks!"
263
  msgstr "Din epost ble sendt til administratoren for nettstedet. Takk!"
264
 
359
  msgid "GDPR"
360
  msgstr ""
361
 
362
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
363
  msgid "Status"
364
  msgstr "Status"
365
 
366
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
367
  msgid "Activated"
368
  msgstr "Aktivert"
369
 
370
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
371
  msgid "Deactivated"
372
  msgstr "Deaktivert"
373
 
472
  "vedlikeholdsmodus?"
473
 
474
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
475
+ #: views/settings.php:622 views/settings.php:695
476
  msgid "Save settings"
477
  msgstr "Lagre innstillinger"
478
 
479
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
480
+ #: views/settings.php:623 views/settings.php:696
481
  msgid "Reset settings"
482
  msgstr "Tilbakestill innstillinger"
483
 
610
  msgid "Links target?"
611
  msgstr "Lenkemål"
612
 
613
+ #: views/settings.php:328 views/settings.php:666
614
  msgid "New page"
615
  msgstr "Ny side"
616
 
617
+ #: views/settings.php:329 views/settings.php:667
618
  msgid "Same page"
619
  msgstr "Samme side"
620
 
689
  "need to."
690
  msgstr ""
691
 
692
+ #: views/settings.php:465
693
+ msgid ""
694
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
695
+ "&raquo; Export as CSV."
696
+ msgstr ""
697
+
698
+ #: views/settings.php:478
699
  #, fuzzy
700
  msgid "Bot Name"
701
  msgstr "Navn"
702
 
703
+ #: views/settings.php:481
704
  msgid "This name will appear when the bot is typing."
705
  msgstr ""
706
 
707
+ #: views/settings.php:485
708
  #, fuzzy
709
  msgid "Upload avatar"
710
  msgstr "Last opp bakgrunn"
711
 
712
+ #: views/settings.php:489
713
  msgid "A 512 x 512 px will work just fine."
714
  msgstr ""
715
 
716
+ #: views/settings.php:495
717
  msgid "Customize Messages"
718
  msgstr ""
719
 
720
+ #: views/settings.php:500
721
  msgid "Message 1"
722
  msgstr ""
723
 
724
+ #: views/settings.php:508
725
  msgid "Message 2"
726
  msgstr ""
727
 
728
+ #: views/settings.php:516
729
  msgid "Message 3"
730
  msgstr ""
731
 
732
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
733
  msgid "Response"
734
  msgstr ""
735
 
736
+ #: views/settings.php:528 views/settings.php:590
737
  msgid "Edit the placeholder's text"
738
  msgstr ""
739
 
740
+ #: views/settings.php:532
741
  msgid "Message 4"
742
  msgstr ""
743
 
744
+ #: views/settings.php:540
745
  msgid "Message 5"
746
  msgstr ""
747
 
748
+ #: views/settings.php:548
749
  msgid "Message 6"
750
  msgstr ""
751
 
752
+ #: views/settings.php:556
753
  msgid "Message 7"
754
  msgstr ""
755
 
756
+ #: views/settings.php:568
757
  msgid "Edit button one"
758
  msgstr ""
759
 
760
+ #: views/settings.php:572
761
  msgid "Edit button two"
762
  msgstr ""
763
 
764
+ #: views/settings.php:578 views/settings.php:594
765
  msgid "Message 8"
766
  msgstr ""
767
 
768
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
769
  msgid "(click on button one)"
770
  msgstr ""
771
 
772
+ #: views/settings.php:594
773
  msgid "(click on button two)"
774
  msgstr ""
775
 
776
+ #: views/settings.php:602
777
  msgid "Message 9"
778
  msgstr ""
779
 
780
+ #: views/settings.php:610
781
  msgid "Message 10"
782
  msgstr ""
783
 
784
+ #: views/settings.php:632
785
  msgid ""
786
  "To make the plugin GDPR compliant, fill in the details and enable this "
787
  "section."
788
  msgstr ""
789
 
790
+ #: views/settings.php:633
791
  msgid ""
792
  "Here we added some generic texts that you may want to review, change or "
793
  "remove."
794
  msgstr ""
795
 
796
+ #: views/settings.php:645
797
  msgid "Link name"
798
  msgstr ""
799
 
800
+ #: views/settings.php:649
801
  msgid "Label the link that will be shown on frontend footer"
802
  msgstr ""
803
 
804
+ #: views/settings.php:654
805
  msgid "P. Policy page link"
806
  msgstr ""
807
 
808
+ #: views/settings.php:663
809
  msgid "P. Policy link target"
810
  msgstr ""
811
 
812
+ #: views/settings.php:669
813
  msgid "Choose how the link will open."
814
  msgstr ""
815
 
816
+ #: views/settings.php:674
817
  msgid "Contact form 'tail'"
818
  msgstr ""
819
 
820
+ #: views/settings.php:678 views/settings.php:687
821
  msgid "This will be shown together with the acceptance checkbox below the form"
822
  msgstr ""
823
 
824
+ #: views/settings.php:683
825
  msgid "Subscribe form 'tail'"
826
  msgstr ""
827
 
languages/wp-maintenance-mode-nl_NL.mo CHANGED
Binary file
languages/wp-maintenance-mode-nl_NL.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:14+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:14+0200\n"
6
  "Last-Translator: Dennis Hunink <dennishunink@me.com>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: nl\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 "Onderhoudsmodus"
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>Excuus voor het ongemak.<br />Onze website ondergaat op dit moment "
126
  "gepland onderhoud.<br/>Bedankt voor uw begrip.</p>"
127
 
128
- #: includes/classes/wp-maintenance-mode.php:122
129
  msgid "Notify me when it's ready"
130
  msgstr "Informeer mij wanneer het is afgerond"
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 "Voer je e-mailadres in"
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
  "De WP Maintenance Mode Plugin is opnieuw opgestart en je MOET de <a href=\"%s"
225
  "\">instellingen</a> opnieuw bekijken."
226
 
227
- #: includes/classes/wp-maintenance-mode.php:542
228
- #: includes/classes/wp-maintenance-mode.php:556
229
  msgid "Maintenance Mode"
230
  msgstr "Onderhousmodus"
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 "Voer een geldig e-mailadres in."
240
 
241
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
242
  msgid "Send"
243
  msgstr "Verstuur"
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 "Voer een geldig e-mailadres in."
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 "Alle velden zijn verplicht."
257
 
258
- #: includes/classes/wp-maintenance-mode.php:900
259
  msgid "Message via contact"
260
  msgstr "Bericht via contact"
261
 
262
- #: includes/classes/wp-maintenance-mode.php:917
263
  msgid "Your email was sent to the website administrator. Thanks!"
264
  msgstr "Je bericht is verstuurd naar de beheerder. Dankjewel!"
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 "Status"
366
 
367
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
368
  msgid "Activated"
369
  msgstr "Geactiveerd"
370
 
371
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
372
  msgid "Deactivated"
373
  msgstr "Gedeactiveerd"
374
 
@@ -470,12 +470,12 @@ msgid ""
470
  msgstr ""
471
 
472
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
473
- #: views/settings.php:621 views/settings.php:694
474
  msgid "Save settings"
475
  msgstr "Instellingen opslaan"
476
 
477
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
478
- #: views/settings.php:622 views/settings.php:695
479
  msgid "Reset settings"
480
  msgstr "Instellingen herstellen"
481
 
@@ -608,11 +608,11 @@ msgstr "Toon sociale netwerken?"
608
  msgid "Links target?"
609
  msgstr ""
610
 
611
- #: views/settings.php:328 views/settings.php:665
612
  msgid "New page"
613
  msgstr ""
614
 
615
- #: views/settings.php:329 views/settings.php:666
616
  msgid "Same page"
617
  msgstr ""
618
 
@@ -687,133 +687,139 @@ msgid ""
687
  "need to."
688
  msgstr ""
689
 
690
- #: views/settings.php:477
 
 
 
 
 
 
691
  #, fuzzy
692
  msgid "Bot Name"
693
  msgstr "Naam"
694
 
695
- #: views/settings.php:480
696
  msgid "This name will appear when the bot is typing."
697
  msgstr ""
698
 
699
- #: views/settings.php:484
700
  #, fuzzy
701
  msgid "Upload avatar"
702
  msgstr "Upload achtergrond"
703
 
704
- #: views/settings.php:488
705
  msgid "A 512 x 512 px will work just fine."
706
  msgstr ""
707
 
708
- #: views/settings.php:494
709
  msgid "Customize Messages"
710
  msgstr ""
711
 
712
- #: views/settings.php:499
713
  msgid "Message 1"
714
  msgstr ""
715
 
716
- #: views/settings.php:507
717
  msgid "Message 2"
718
  msgstr ""
719
 
720
- #: views/settings.php:515
721
  msgid "Message 3"
722
  msgstr ""
723
 
724
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
725
  msgid "Response"
726
  msgstr ""
727
 
728
- #: views/settings.php:527 views/settings.php:589
729
  msgid "Edit the placeholder's text"
730
  msgstr ""
731
 
732
- #: views/settings.php:531
733
  msgid "Message 4"
734
  msgstr ""
735
 
736
- #: views/settings.php:539
737
  msgid "Message 5"
738
  msgstr ""
739
 
740
- #: views/settings.php:547
741
  msgid "Message 6"
742
  msgstr ""
743
 
744
- #: views/settings.php:555
745
  msgid "Message 7"
746
  msgstr ""
747
 
748
- #: views/settings.php:567
749
  msgid "Edit button one"
750
  msgstr ""
751
 
752
- #: views/settings.php:571
753
  msgid "Edit button two"
754
  msgstr ""
755
 
756
- #: views/settings.php:577 views/settings.php:593
757
  msgid "Message 8"
758
  msgstr ""
759
 
760
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
761
  msgid "(click on button one)"
762
  msgstr ""
763
 
764
- #: views/settings.php:593
765
  msgid "(click on button two)"
766
  msgstr ""
767
 
768
- #: views/settings.php:601
769
  msgid "Message 9"
770
  msgstr ""
771
 
772
- #: views/settings.php:609
773
  msgid "Message 10"
774
  msgstr ""
775
 
776
- #: views/settings.php:631
777
  msgid ""
778
  "To make the plugin GDPR compliant, fill in the details and enable this "
779
  "section."
780
  msgstr ""
781
 
782
- #: views/settings.php:632
783
  msgid ""
784
  "Here we added some generic texts that you may want to review, change or "
785
  "remove."
786
  msgstr ""
787
 
788
- #: views/settings.php:644
789
  msgid "Link name"
790
  msgstr ""
791
 
792
- #: views/settings.php:648
793
  msgid "Label the link that will be shown on frontend footer"
794
  msgstr ""
795
 
796
- #: views/settings.php:653
797
  msgid "P. Policy page link"
798
  msgstr ""
799
 
800
- #: views/settings.php:662
801
  msgid "P. Policy link target"
802
  msgstr ""
803
 
804
- #: views/settings.php:668
805
  msgid "Choose how the link will open."
806
  msgstr ""
807
 
808
- #: views/settings.php:673
809
  msgid "Contact form 'tail'"
810
  msgstr ""
811
 
812
- #: views/settings.php:677 views/settings.php:686
813
  msgid "This will be shown together with the acceptance checkbox below the form"
814
  msgstr ""
815
 
816
- #: views/settings.php:682
817
  msgid "Subscribe form 'tail'"
818
  msgstr ""
819
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.2.4\n"
4
+ "POT-Creation-Date: 2019-05-20 10:31+0300\n"
5
+ "PO-Revision-Date: 2019-05-20 10:31+0300\n"
6
  "Last-Translator: Dennis Hunink <dennishunink@me.com>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: nl\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 "Onderhoudsmodus"
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>Excuus voor het ongemak.<br />Onze website ondergaat op dit moment "
126
  "gepland onderhoud.<br/>Bedankt voor uw begrip.</p>"
127
 
128
+ #: includes/classes/wp-maintenance-mode.php:123
129
  msgid "Notify me when it's ready"
130
  msgstr "Informeer mij wanneer het is afgerond"
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 "Voer je e-mailadres in"
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
  "De WP Maintenance Mode Plugin is opnieuw opgestart en je MOET de <a href=\"%s"
225
  "\">instellingen</a> opnieuw bekijken."
226
 
227
+ #: includes/classes/wp-maintenance-mode.php:547
228
+ #: includes/classes/wp-maintenance-mode.php:561
229
  msgid "Maintenance Mode"
230
  msgstr "Onderhousmodus"
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 "Voer een geldig e-mailadres in."
240
 
241
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
242
  msgid "Send"
243
  msgstr "Verstuur"
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 "Voer een geldig e-mailadres in."
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 "Alle velden zijn verplicht."
257
 
258
+ #: includes/classes/wp-maintenance-mode.php:907
259
  msgid "Message via contact"
260
  msgstr "Bericht via contact"
261
 
262
+ #: includes/classes/wp-maintenance-mode.php:924
263
  msgid "Your email was sent to the website administrator. Thanks!"
264
  msgstr "Je bericht is verstuurd naar de beheerder. Dankjewel!"
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 "Status"
366
 
367
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
368
  msgid "Activated"
369
  msgstr "Geactiveerd"
370
 
371
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
372
  msgid "Deactivated"
373
  msgstr "Gedeactiveerd"
374
 
470
  msgstr ""
471
 
472
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
473
+ #: views/settings.php:622 views/settings.php:695
474
  msgid "Save settings"
475
  msgstr "Instellingen opslaan"
476
 
477
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
478
+ #: views/settings.php:623 views/settings.php:696
479
  msgid "Reset settings"
480
  msgstr "Instellingen herstellen"
481
 
608
  msgid "Links target?"
609
  msgstr ""
610
 
611
+ #: views/settings.php:328 views/settings.php:666
612
  msgid "New page"
613
  msgstr ""
614
 
615
+ #: views/settings.php:329 views/settings.php:667
616
  msgid "Same page"
617
  msgstr ""
618
 
687
  "need to."
688
  msgstr ""
689
 
690
+ #: views/settings.php:465
691
+ msgid ""
692
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
693
+ "&raquo; Export as CSV."
694
+ msgstr ""
695
+
696
+ #: views/settings.php:478
697
  #, fuzzy
698
  msgid "Bot Name"
699
  msgstr "Naam"
700
 
701
+ #: views/settings.php:481
702
  msgid "This name will appear when the bot is typing."
703
  msgstr ""
704
 
705
+ #: views/settings.php:485
706
  #, fuzzy
707
  msgid "Upload avatar"
708
  msgstr "Upload achtergrond"
709
 
710
+ #: views/settings.php:489
711
  msgid "A 512 x 512 px will work just fine."
712
  msgstr ""
713
 
714
+ #: views/settings.php:495
715
  msgid "Customize Messages"
716
  msgstr ""
717
 
718
+ #: views/settings.php:500
719
  msgid "Message 1"
720
  msgstr ""
721
 
722
+ #: views/settings.php:508
723
  msgid "Message 2"
724
  msgstr ""
725
 
726
+ #: views/settings.php:516
727
  msgid "Message 3"
728
  msgstr ""
729
 
730
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
731
  msgid "Response"
732
  msgstr ""
733
 
734
+ #: views/settings.php:528 views/settings.php:590
735
  msgid "Edit the placeholder's text"
736
  msgstr ""
737
 
738
+ #: views/settings.php:532
739
  msgid "Message 4"
740
  msgstr ""
741
 
742
+ #: views/settings.php:540
743
  msgid "Message 5"
744
  msgstr ""
745
 
746
+ #: views/settings.php:548
747
  msgid "Message 6"
748
  msgstr ""
749
 
750
+ #: views/settings.php:556
751
  msgid "Message 7"
752
  msgstr ""
753
 
754
+ #: views/settings.php:568
755
  msgid "Edit button one"
756
  msgstr ""
757
 
758
+ #: views/settings.php:572
759
  msgid "Edit button two"
760
  msgstr ""
761
 
762
+ #: views/settings.php:578 views/settings.php:594
763
  msgid "Message 8"
764
  msgstr ""
765
 
766
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
767
  msgid "(click on button one)"
768
  msgstr ""
769
 
770
+ #: views/settings.php:594
771
  msgid "(click on button two)"
772
  msgstr ""
773
 
774
+ #: views/settings.php:602
775
  msgid "Message 9"
776
  msgstr ""
777
 
778
+ #: views/settings.php:610
779
  msgid "Message 10"
780
  msgstr ""
781
 
782
+ #: views/settings.php:632
783
  msgid ""
784
  "To make the plugin GDPR compliant, fill in the details and enable this "
785
  "section."
786
  msgstr ""
787
 
788
+ #: views/settings.php:633
789
  msgid ""
790
  "Here we added some generic texts that you may want to review, change or "
791
  "remove."
792
  msgstr ""
793
 
794
+ #: views/settings.php:645
795
  msgid "Link name"
796
  msgstr ""
797
 
798
+ #: views/settings.php:649
799
  msgid "Label the link that will be shown on frontend footer"
800
  msgstr ""
801
 
802
+ #: views/settings.php:654
803
  msgid "P. Policy page link"
804
  msgstr ""
805
 
806
+ #: views/settings.php:663
807
  msgid "P. Policy link target"
808
  msgstr ""
809
 
810
+ #: views/settings.php:669
811
  msgid "Choose how the link will open."
812
  msgstr ""
813
 
814
+ #: views/settings.php:674
815
  msgid "Contact form 'tail'"
816
  msgstr ""
817
 
818
+ #: views/settings.php:678 views/settings.php:687
819
  msgid "This will be shown together with the acceptance checkbox below the form"
820
  msgstr ""
821
 
822
+ #: views/settings.php:683
823
  msgid "Subscribe form 'tail'"
824
  msgstr ""
825
 
languages/wp-maintenance-mode-pl_PL.mo CHANGED
Binary file
languages/wp-maintenance-mode-pl_PL.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:15+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:15+0200\n"
6
  "Last-Translator: Maciej Gryniuk <maciejka45@gmail.com>\n"
7
  "Language-Team: Maciej Gryniuk <maciejka45@gmail.com>\n"
8
  "Language: pl\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 "Tryb konserwacji"
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,96 +125,96 @@ msgstr ""
125
  "<p>Przepraszamy za niedogodności.<br />Nasza strona jest obecnie poddawana "
126
  "pracom konserwacyjnym.<br />Dziękujemy za zrozumienie.</p>"
127
 
128
- #: includes/classes/wp-maintenance-mode.php:122
129
  msgid "Notify me when it's ready"
130
  msgstr "Powiadom mnie po uruchomieniu strony"
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
  msgid "Type your email here…"
197
  msgstr ""
198
 
199
- #: includes/classes/wp-maintenance-mode.php:169
200
  msgid "Privacy Policy"
201
  msgstr ""
202
 
203
- #: includes/classes/wp-maintenance-mode.php:172
204
  msgid ""
205
  "This form collects your name and email so that we can reach you back. Check "
206
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
207
  "protect and manage your submitted data."
208
  msgstr ""
209
 
210
- #: includes/classes/wp-maintenance-mode.php:173
211
  msgid ""
212
  "This form collects your email so that we can add you to our newsletter list. "
213
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
214
  "we protect and manage your submitted data."
215
  msgstr ""
216
 
217
- #: includes/classes/wp-maintenance-mode.php:296
218
  #, php-format
219
  msgid ""
220
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
@@ -223,42 +223,42 @@ msgstr ""
223
  "Wtyczka WP Tryb Konserwacji została ponownie uruchomiona i MUSISZ sprawdzić "
224
  "<a href=\"%s\">ustawienia</a>.\v"
225
 
226
- #: includes/classes/wp-maintenance-mode.php:542
227
- #: includes/classes/wp-maintenance-mode.php:556
228
  msgid "Maintenance Mode"
229
  msgstr "Tryb Konserwacji"
230
 
231
- #: includes/classes/wp-maintenance-mode.php:642
232
  msgid "Please type in your name."
233
  msgstr ""
234
 
235
- #: includes/classes/wp-maintenance-mode.php:643
236
  #, fuzzy
237
  msgid "Please type in a valid email address."
238
  msgstr "Proszę podać poprawny adres e-mail."
239
 
240
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
241
  msgid "Send"
242
  msgstr "Wyślij"
243
 
244
- #: includes/classes/wp-maintenance-mode.php:858
245
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
246
  msgid "Please enter a valid email address."
247
  msgstr "Proszę podać poprawny adres e-mail."
248
 
249
- #: includes/classes/wp-maintenance-mode.php:870
250
  msgid "You successfully subscribed. Thanks!"
251
  msgstr ""
252
 
253
- #: includes/classes/wp-maintenance-mode.php:888
254
  msgid "All fields required."
255
  msgstr "Wszystkie pola są wymagane"
256
 
257
- #: includes/classes/wp-maintenance-mode.php:900
258
  msgid "Message via contact"
259
  msgstr "Wiadomość poprzez kontakt"
260
 
261
- #: includes/classes/wp-maintenance-mode.php:917
262
  msgid "Your email was sent to the website administrator. Thanks!"
263
  msgstr "Twój adres e-mail został wysłany do administratora strony. Dzięki!"
264
 
@@ -359,15 +359,15 @@ msgstr ""
359
  msgid "GDPR"
360
  msgstr ""
361
 
362
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
363
  msgid "Status"
364
  msgstr "Status"
365
 
366
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
367
  msgid "Activated"
368
  msgstr "Aktywny"
369
 
370
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
371
  msgid "Deactivated"
372
  msgstr "Zdezaktywowany"
373
 
@@ -470,12 +470,12 @@ msgid ""
470
  msgstr "Chcesz dodać link do kokpitu na stronie trybu konserwacyjnego?"
471
 
472
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
473
- #: views/settings.php:621 views/settings.php:694
474
  msgid "Save settings"
475
  msgstr "Zapisz ustawienia"
476
 
477
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
478
- #: views/settings.php:622 views/settings.php:695
479
  msgid "Reset settings"
480
  msgstr "Zresetuj ustawienia"
481
 
@@ -608,11 +608,11 @@ msgstr "Pokazać serwisy społecznościowe?"
608
  msgid "Links target?"
609
  msgstr "Cel linków?"
610
 
611
- #: views/settings.php:328 views/settings.php:665
612
  msgid "New page"
613
  msgstr "Nowa karta"
614
 
615
- #: views/settings.php:329 views/settings.php:666
616
  msgid "Same page"
617
  msgstr "Ta sama karta"
618
 
@@ -687,133 +687,139 @@ msgid ""
687
  "need to."
688
  msgstr ""
689
 
690
- #: views/settings.php:477
 
 
 
 
 
 
691
  #, fuzzy
692
  msgid "Bot Name"
693
  msgstr "Nazwa"
694
 
695
- #: views/settings.php:480
696
  msgid "This name will appear when the bot is typing."
697
  msgstr ""
698
 
699
- #: views/settings.php:484
700
  #, fuzzy
701
  msgid "Upload avatar"
702
  msgstr "Prześlij tło"
703
 
704
- #: views/settings.php:488
705
  msgid "A 512 x 512 px will work just fine."
706
  msgstr ""
707
 
708
- #: views/settings.php:494
709
  msgid "Customize Messages"
710
  msgstr ""
711
 
712
- #: views/settings.php:499
713
  msgid "Message 1"
714
  msgstr ""
715
 
716
- #: views/settings.php:507
717
  msgid "Message 2"
718
  msgstr ""
719
 
720
- #: views/settings.php:515
721
  msgid "Message 3"
722
  msgstr ""
723
 
724
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
725
  msgid "Response"
726
  msgstr ""
727
 
728
- #: views/settings.php:527 views/settings.php:589
729
  msgid "Edit the placeholder's text"
730
  msgstr ""
731
 
732
- #: views/settings.php:531
733
  msgid "Message 4"
734
  msgstr ""
735
 
736
- #: views/settings.php:539
737
  msgid "Message 5"
738
  msgstr ""
739
 
740
- #: views/settings.php:547
741
  msgid "Message 6"
742
  msgstr ""
743
 
744
- #: views/settings.php:555
745
  msgid "Message 7"
746
  msgstr ""
747
 
748
- #: views/settings.php:567
749
  msgid "Edit button one"
750
  msgstr ""
751
 
752
- #: views/settings.php:571
753
  msgid "Edit button two"
754
  msgstr ""
755
 
756
- #: views/settings.php:577 views/settings.php:593
757
  msgid "Message 8"
758
  msgstr ""
759
 
760
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
761
  msgid "(click on button one)"
762
  msgstr ""
763
 
764
- #: views/settings.php:593
765
  msgid "(click on button two)"
766
  msgstr ""
767
 
768
- #: views/settings.php:601
769
  msgid "Message 9"
770
  msgstr ""
771
 
772
- #: views/settings.php:609
773
  msgid "Message 10"
774
  msgstr ""
775
 
776
- #: views/settings.php:631
777
  msgid ""
778
  "To make the plugin GDPR compliant, fill in the details and enable this "
779
  "section."
780
  msgstr ""
781
 
782
- #: views/settings.php:632
783
  msgid ""
784
  "Here we added some generic texts that you may want to review, change or "
785
  "remove."
786
  msgstr ""
787
 
788
- #: views/settings.php:644
789
  msgid "Link name"
790
  msgstr ""
791
 
792
- #: views/settings.php:648
793
  msgid "Label the link that will be shown on frontend footer"
794
  msgstr ""
795
 
796
- #: views/settings.php:653
797
  msgid "P. Policy page link"
798
  msgstr ""
799
 
800
- #: views/settings.php:662
801
  msgid "P. Policy link target"
802
  msgstr ""
803
 
804
- #: views/settings.php:668
805
  msgid "Choose how the link will open."
806
  msgstr ""
807
 
808
- #: views/settings.php:673
809
  msgid "Contact form 'tail'"
810
  msgstr ""
811
 
812
- #: views/settings.php:677 views/settings.php:686
813
  msgid "This will be shown together with the acceptance checkbox below the form"
814
  msgstr ""
815
 
816
- #: views/settings.php:682
817
  msgid "Subscribe form 'tail'"
818
  msgstr ""
819
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.2.4\n"
4
+ "POT-Creation-Date: 2019-05-20 10:32+0300\n"
5
+ "PO-Revision-Date: 2019-05-20 10:32+0300\n"
6
  "Last-Translator: Maciej Gryniuk <maciejka45@gmail.com>\n"
7
  "Language-Team: Maciej Gryniuk <maciejka45@gmail.com>\n"
8
  "Language: pl\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 "Tryb konserwacji"
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>Przepraszamy za niedogodności.<br />Nasza strona jest obecnie poddawana "
126
  "pracom konserwacyjnym.<br />Dziękujemy za zrozumienie.</p>"
127
 
128
+ #: includes/classes/wp-maintenance-mode.php:123
129
  msgid "Notify me when it's ready"
130
  msgstr "Powiadom mnie po uruchomieniu strony"
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
  msgid "Type your email here…"
197
  msgstr ""
198
 
199
+ #: includes/classes/wp-maintenance-mode.php:170
200
  msgid "Privacy Policy"
201
  msgstr ""
202
 
203
+ #: includes/classes/wp-maintenance-mode.php:173
204
  msgid ""
205
  "This form collects your name and email so that we can reach you back. Check "
206
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
207
  "protect and manage your submitted data."
208
  msgstr ""
209
 
210
+ #: includes/classes/wp-maintenance-mode.php:174
211
  msgid ""
212
  "This form collects your email so that we can add you to our newsletter list. "
213
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
214
  "we protect and manage your submitted data."
215
  msgstr ""
216
 
217
+ #: includes/classes/wp-maintenance-mode.php:301
218
  #, php-format
219
  msgid ""
220
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
223
  "Wtyczka WP Tryb Konserwacji została ponownie uruchomiona i MUSISZ sprawdzić "
224
  "<a href=\"%s\">ustawienia</a>.\v"
225
 
226
+ #: includes/classes/wp-maintenance-mode.php:547
227
+ #: includes/classes/wp-maintenance-mode.php:561
228
  msgid "Maintenance Mode"
229
  msgstr "Tryb Konserwacji"
230
 
231
+ #: includes/classes/wp-maintenance-mode.php:647
232
  msgid "Please type in your name."
233
  msgstr ""
234
 
235
+ #: includes/classes/wp-maintenance-mode.php:648
236
  #, fuzzy
237
  msgid "Please type in a valid email address."
238
  msgstr "Proszę podać poprawny adres e-mail."
239
 
240
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
241
  msgid "Send"
242
  msgstr "Wyślij"
243
 
244
+ #: includes/classes/wp-maintenance-mode.php:865
245
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
246
  msgid "Please enter a valid email address."
247
  msgstr "Proszę podać poprawny adres e-mail."
248
 
249
+ #: includes/classes/wp-maintenance-mode.php:877
250
  msgid "You successfully subscribed. Thanks!"
251
  msgstr ""
252
 
253
+ #: includes/classes/wp-maintenance-mode.php:895
254
  msgid "All fields required."
255
  msgstr "Wszystkie pola są wymagane"
256
 
257
+ #: includes/classes/wp-maintenance-mode.php:907
258
  msgid "Message via contact"
259
  msgstr "Wiadomość poprzez kontakt"
260
 
261
+ #: includes/classes/wp-maintenance-mode.php:924
262
  msgid "Your email was sent to the website administrator. Thanks!"
263
  msgstr "Twój adres e-mail został wysłany do administratora strony. Dzięki!"
264
 
359
  msgid "GDPR"
360
  msgstr ""
361
 
362
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
363
  msgid "Status"
364
  msgstr "Status"
365
 
366
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
367
  msgid "Activated"
368
  msgstr "Aktywny"
369
 
370
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
371
  msgid "Deactivated"
372
  msgstr "Zdezaktywowany"
373
 
470
  msgstr "Chcesz dodać link do kokpitu na stronie trybu konserwacyjnego?"
471
 
472
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
473
+ #: views/settings.php:622 views/settings.php:695
474
  msgid "Save settings"
475
  msgstr "Zapisz ustawienia"
476
 
477
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
478
+ #: views/settings.php:623 views/settings.php:696
479
  msgid "Reset settings"
480
  msgstr "Zresetuj ustawienia"
481
 
608
  msgid "Links target?"
609
  msgstr "Cel linków?"
610
 
611
+ #: views/settings.php:328 views/settings.php:666
612
  msgid "New page"
613
  msgstr "Nowa karta"
614
 
615
+ #: views/settings.php:329 views/settings.php:667
616
  msgid "Same page"
617
  msgstr "Ta sama karta"
618
 
687
  "need to."
688
  msgstr ""
689
 
690
+ #: views/settings.php:465
691
+ msgid ""
692
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
693
+ "&raquo; Export as CSV."
694
+ msgstr ""
695
+
696
+ #: views/settings.php:478
697
  #, fuzzy
698
  msgid "Bot Name"
699
  msgstr "Nazwa"
700
 
701
+ #: views/settings.php:481
702
  msgid "This name will appear when the bot is typing."
703
  msgstr ""
704
 
705
+ #: views/settings.php:485
706
  #, fuzzy
707
  msgid "Upload avatar"
708
  msgstr "Prześlij tło"
709
 
710
+ #: views/settings.php:489
711
  msgid "A 512 x 512 px will work just fine."
712
  msgstr ""
713
 
714
+ #: views/settings.php:495
715
  msgid "Customize Messages"
716
  msgstr ""
717
 
718
+ #: views/settings.php:500
719
  msgid "Message 1"
720
  msgstr ""
721
 
722
+ #: views/settings.php:508
723
  msgid "Message 2"
724
  msgstr ""
725
 
726
+ #: views/settings.php:516
727
  msgid "Message 3"
728
  msgstr ""
729
 
730
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
731
  msgid "Response"
732
  msgstr ""
733
 
734
+ #: views/settings.php:528 views/settings.php:590
735
  msgid "Edit the placeholder's text"
736
  msgstr ""
737
 
738
+ #: views/settings.php:532
739
  msgid "Message 4"
740
  msgstr ""
741
 
742
+ #: views/settings.php:540
743
  msgid "Message 5"
744
  msgstr ""
745
 
746
+ #: views/settings.php:548
747
  msgid "Message 6"
748
  msgstr ""
749
 
750
+ #: views/settings.php:556
751
  msgid "Message 7"
752
  msgstr ""
753
 
754
+ #: views/settings.php:568
755
  msgid "Edit button one"
756
  msgstr ""
757
 
758
+ #: views/settings.php:572
759
  msgid "Edit button two"
760
  msgstr ""
761
 
762
+ #: views/settings.php:578 views/settings.php:594
763
  msgid "Message 8"
764
  msgstr ""
765
 
766
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
767
  msgid "(click on button one)"
768
  msgstr ""
769
 
770
+ #: views/settings.php:594
771
  msgid "(click on button two)"
772
  msgstr ""
773
 
774
+ #: views/settings.php:602
775
  msgid "Message 9"
776
  msgstr ""
777
 
778
+ #: views/settings.php:610
779
  msgid "Message 10"
780
  msgstr ""
781
 
782
+ #: views/settings.php:632
783
  msgid ""
784
  "To make the plugin GDPR compliant, fill in the details and enable this "
785
  "section."
786
  msgstr ""
787
 
788
+ #: views/settings.php:633
789
  msgid ""
790
  "Here we added some generic texts that you may want to review, change or "
791
  "remove."
792
  msgstr ""
793
 
794
+ #: views/settings.php:645
795
  msgid "Link name"
796
  msgstr ""
797
 
798
+ #: views/settings.php:649
799
  msgid "Label the link that will be shown on frontend footer"
800
  msgstr ""
801
 
802
+ #: views/settings.php:654
803
  msgid "P. Policy page link"
804
  msgstr ""
805
 
806
+ #: views/settings.php:663
807
  msgid "P. Policy link target"
808
  msgstr ""
809
 
810
+ #: views/settings.php:669
811
  msgid "Choose how the link will open."
812
  msgstr ""
813
 
814
+ #: views/settings.php:674
815
  msgid "Contact form 'tail'"
816
  msgstr ""
817
 
818
+ #: views/settings.php:678 views/settings.php:687
819
  msgid "This will be shown together with the acceptance checkbox below the form"
820
  msgstr ""
821
 
822
+ #: views/settings.php:683
823
  msgid "Subscribe form 'tail'"
824
  msgstr ""
825
 
languages/wp-maintenance-mode-pt_BR.mo CHANGED
Binary file
languages/wp-maintenance-mode-pt_BR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP Maintenance Mode v2.2.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-11-26 19:16+0200\n"
6
- "PO-Revision-Date: 2018-11-26 19:16+0200\n"
7
  "Last-Translator: Jônatas Araújo <jonatasaraujos@live.com>\n"
8
  "Language-Team: \n"
9
  "Language: pt_BR\n"
@@ -11,7 +11,7 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
14
- "X-Generator: Poedit 1.8.8\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
@@ -118,13 +118,13 @@ msgid ""
118
  msgstr ""
119
 
120
  # @ wp-maintenance-mode
121
- #: includes/classes/wp-maintenance-mode.php:101
122
  #: includes/classes/wp-maintenance-mode.php:102
 
123
  msgid "Maintenance mode"
124
  msgstr "Modo manutenção"
125
 
126
  # @ wp-maintenance-mode
127
- #: includes/classes/wp-maintenance-mode.php:104
128
  msgid ""
129
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
130
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
@@ -133,89 +133,89 @@ msgstr ""
133
  "programada.<br/>Obrigado por sua compreensão.</p>"
134
 
135
  # @ wp-maintenance-mode
136
- #: includes/classes/wp-maintenance-mode.php:122
137
  msgid "Notify me when it's ready"
138
  msgstr "Notifique-me quando estiver pronto"
139
 
140
- #: includes/classes/wp-maintenance-mode.php:147
141
  msgid ""
142
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
143
  "your assistant here."
144
  msgstr ""
145
 
146
- #: includes/classes/wp-maintenance-mode.php:148
147
  msgid "I have just a few questions."
148
  msgstr ""
149
 
150
- #: includes/classes/wp-maintenance-mode.php:149
151
  msgid "What is your name?"
152
  msgstr ""
153
 
154
- #: includes/classes/wp-maintenance-mode.php:150
155
  msgid "Nice to meet you here, {visitor_name}!"
156
  msgstr ""
157
 
158
- #: includes/classes/wp-maintenance-mode.php:151
159
  msgid "How you can see, our website will be lauched very soon."
160
  msgstr ""
161
 
162
- #: includes/classes/wp-maintenance-mode.php:152
163
  msgid ""
164
  "I know, you are very excited to see it, but we need a few days to finish it."
165
  msgstr ""
166
 
167
- #: includes/classes/wp-maintenance-mode.php:153
168
  msgid "Would you like to be first to see it?"
169
  msgstr ""
170
 
171
- #: includes/classes/wp-maintenance-mode.php:154
172
  msgid ""
173
  "Cool! Please leave your email here and I will send you a message when it's "
174
  "ready."
175
  msgstr ""
176
 
177
- #: includes/classes/wp-maintenance-mode.php:155
178
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
179
  msgstr ""
180
 
181
- #: includes/classes/wp-maintenance-mode.php:156
182
  msgid "Got it! Thank you and see you soon here!"
183
  msgstr ""
184
 
185
- #: includes/classes/wp-maintenance-mode.php:157
186
  msgid "Have a great day!"
187
  msgstr ""
188
 
189
- #: includes/classes/wp-maintenance-mode.php:160
190
- #: includes/classes/wp-maintenance-mode.php:645
191
  msgid "Type your name here…"
192
  msgstr ""
193
 
194
- #: includes/classes/wp-maintenance-mode.php:161
195
  msgid "Tell me more"
196
  msgstr ""
197
 
198
- #: includes/classes/wp-maintenance-mode.php:162
199
  msgid "Boring"
200
  msgstr ""
201
 
202
- #: includes/classes/wp-maintenance-mode.php:163
203
- #: includes/classes/wp-maintenance-mode.php:646
204
  msgid "Type your email here…"
205
  msgstr ""
206
 
207
- #: includes/classes/wp-maintenance-mode.php:169
208
  msgid "Privacy Policy"
209
  msgstr ""
210
 
211
- #: includes/classes/wp-maintenance-mode.php:172
212
  msgid ""
213
  "This form collects your name and email so that we can reach you back. Check "
214
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
215
  "protect and manage your submitted data."
216
  msgstr ""
217
 
218
- #: includes/classes/wp-maintenance-mode.php:173
219
  msgid ""
220
  "This form collects your email so that we can add you to our newsletter list. "
221
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
@@ -223,7 +223,7 @@ msgid ""
223
  msgstr ""
224
 
225
  # @ wp-maintenance-mode
226
- #: includes/classes/wp-maintenance-mode.php:296
227
  #, php-format
228
  msgid ""
229
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
@@ -233,48 +233,48 @@ msgstr ""
233
  "\">configurações</a>."
234
 
235
  # @ wp-maintenance-mode
236
- #: includes/classes/wp-maintenance-mode.php:542
237
- #: includes/classes/wp-maintenance-mode.php:556
238
  msgid "Maintenance Mode"
239
  msgstr "Modo de Manutenção"
240
 
241
- #: includes/classes/wp-maintenance-mode.php:642
242
  msgid "Please type in your name."
243
  msgstr ""
244
 
245
  # @ wp-maintenance-mode
246
- #: includes/classes/wp-maintenance-mode.php:643
247
  #, fuzzy
248
  msgid "Please type in a valid email address."
249
  msgstr "Por favor insira um endereço de e-mail válido."
250
 
251
  # @ wp-maintenance-mode
252
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
253
  msgid "Send"
254
  msgstr "Enviar"
255
 
256
  # @ wp-maintenance-mode
257
- #: includes/classes/wp-maintenance-mode.php:858
258
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
259
  msgid "Please enter a valid email address."
260
  msgstr "Por favor insira um endereço de e-mail válido."
261
 
262
- #: includes/classes/wp-maintenance-mode.php:870
263
  msgid "You successfully subscribed. Thanks!"
264
  msgstr ""
265
 
266
  # @ wp-maintenance-mode
267
- #: includes/classes/wp-maintenance-mode.php:888
268
  msgid "All fields required."
269
  msgstr "Todos os campos são obrigatórios."
270
 
271
  # @ wp-maintenance-mode
272
- #: includes/classes/wp-maintenance-mode.php:900
273
  msgid "Message via contact"
274
  msgstr "Mensagem via contato"
275
 
276
  # @ wp-maintenance-mode
277
- #: includes/classes/wp-maintenance-mode.php:917
278
  msgid "Your email was sent to the website administrator. Thanks!"
279
  msgstr "Seu e-mail foi enviado ao administrador do site. Obrigado!"
280
 
@@ -386,17 +386,17 @@ msgid "GDPR"
386
  msgstr ""
387
 
388
  # @ wp-maintenance-mode
389
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
390
  msgid "Status"
391
  msgstr "Status"
392
 
393
  # @ wp-maintenance-mode
394
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
395
  msgid "Activated"
396
  msgstr "Ativado"
397
 
398
  # @ wp-maintenance-mode
399
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
400
  msgid "Deactivated"
401
  msgstr "Desativado"
402
 
@@ -514,13 +514,13 @@ msgstr ""
514
 
515
  # @ wp-maintenance-mode
516
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
517
- #: views/settings.php:621 views/settings.php:694
518
  msgid "Save settings"
519
  msgstr ""
520
 
521
  # @ wp-maintenance-mode
522
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
523
- #: views/settings.php:622 views/settings.php:695
524
  msgid "Reset settings"
525
  msgstr ""
526
 
@@ -679,11 +679,11 @@ msgstr "Mostrar Rede Sociais?"
679
  msgid "Links target?"
680
  msgstr ""
681
 
682
- #: views/settings.php:328 views/settings.php:665
683
  msgid "New page"
684
  msgstr ""
685
 
686
- #: views/settings.php:329 views/settings.php:666
687
  msgid "Same page"
688
  msgstr ""
689
 
@@ -762,135 +762,141 @@ msgid ""
762
  "need to."
763
  msgstr ""
764
 
 
 
 
 
 
 
765
  # @ wp-maintenance-mode
766
- #: views/settings.php:477
767
  #, fuzzy
768
  msgid "Bot Name"
769
  msgstr "Nome"
770
 
771
- #: views/settings.php:480
772
  msgid "This name will appear when the bot is typing."
773
  msgstr ""
774
 
775
  # @ wp-maintenance-mode
776
- #: views/settings.php:484
777
  #, fuzzy
778
  msgid "Upload avatar"
779
  msgstr "Enviar Imagem de Fundo"
780
 
781
- #: views/settings.php:488
782
  msgid "A 512 x 512 px will work just fine."
783
  msgstr ""
784
 
785
- #: views/settings.php:494
786
  msgid "Customize Messages"
787
  msgstr ""
788
 
789
- #: views/settings.php:499
790
  msgid "Message 1"
791
  msgstr ""
792
 
793
- #: views/settings.php:507
794
  msgid "Message 2"
795
  msgstr ""
796
 
797
- #: views/settings.php:515
798
  msgid "Message 3"
799
  msgstr ""
800
 
801
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
802
  msgid "Response"
803
  msgstr ""
804
 
805
- #: views/settings.php:527 views/settings.php:589
806
  msgid "Edit the placeholder's text"
807
  msgstr ""
808
 
809
- #: views/settings.php:531
810
  msgid "Message 4"
811
  msgstr ""
812
 
813
- #: views/settings.php:539
814
  msgid "Message 5"
815
  msgstr ""
816
 
817
- #: views/settings.php:547
818
  msgid "Message 6"
819
  msgstr ""
820
 
821
- #: views/settings.php:555
822
  msgid "Message 7"
823
  msgstr ""
824
 
825
- #: views/settings.php:567
826
  msgid "Edit button one"
827
  msgstr ""
828
 
829
- #: views/settings.php:571
830
  msgid "Edit button two"
831
  msgstr ""
832
 
833
- #: views/settings.php:577 views/settings.php:593
834
  msgid "Message 8"
835
  msgstr ""
836
 
837
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
838
  msgid "(click on button one)"
839
  msgstr ""
840
 
841
- #: views/settings.php:593
842
  msgid "(click on button two)"
843
  msgstr ""
844
 
845
- #: views/settings.php:601
846
  msgid "Message 9"
847
  msgstr ""
848
 
849
- #: views/settings.php:609
850
  msgid "Message 10"
851
  msgstr ""
852
 
853
- #: views/settings.php:631
854
  msgid ""
855
  "To make the plugin GDPR compliant, fill in the details and enable this "
856
  "section."
857
  msgstr ""
858
 
859
- #: views/settings.php:632
860
  msgid ""
861
  "Here we added some generic texts that you may want to review, change or "
862
  "remove."
863
  msgstr ""
864
 
865
- #: views/settings.php:644
866
  msgid "Link name"
867
  msgstr ""
868
 
869
- #: views/settings.php:648
870
  msgid "Label the link that will be shown on frontend footer"
871
  msgstr ""
872
 
873
- #: views/settings.php:653
874
  msgid "P. Policy page link"
875
  msgstr ""
876
 
877
- #: views/settings.php:662
878
  msgid "P. Policy link target"
879
  msgstr ""
880
 
881
- #: views/settings.php:668
882
  msgid "Choose how the link will open."
883
  msgstr ""
884
 
885
- #: views/settings.php:673
886
  msgid "Contact form 'tail'"
887
  msgstr ""
888
 
889
- #: views/settings.php:677 views/settings.php:686
890
  msgid "This will be shown together with the acceptance checkbox below the form"
891
  msgstr ""
892
 
893
- #: views/settings.php:682
894
  msgid "Subscribe form 'tail'"
895
  msgstr ""
896
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode v2.2.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-05-20 10:33+0300\n"
6
+ "PO-Revision-Date: 2019-05-20 10:33+0300\n"
7
  "Last-Translator: Jônatas Araújo <jonatasaraujos@live.com>\n"
8
  "Language-Team: \n"
9
  "Language: pt_BR\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
14
+ "X-Generator: Poedit 2.2.2\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
118
  msgstr ""
119
 
120
  # @ wp-maintenance-mode
 
121
  #: includes/classes/wp-maintenance-mode.php:102
122
+ #: includes/classes/wp-maintenance-mode.php:103
123
  msgid "Maintenance mode"
124
  msgstr "Modo manutenção"
125
 
126
  # @ wp-maintenance-mode
127
+ #: includes/classes/wp-maintenance-mode.php:105
128
  msgid ""
129
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
130
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
133
  "programada.<br/>Obrigado por sua compreensão.</p>"
134
 
135
  # @ wp-maintenance-mode
136
+ #: includes/classes/wp-maintenance-mode.php:123
137
  msgid "Notify me when it's ready"
138
  msgstr "Notifique-me quando estiver pronto"
139
 
140
+ #: includes/classes/wp-maintenance-mode.php:148
141
  msgid ""
142
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
143
  "your assistant here."
144
  msgstr ""
145
 
146
+ #: includes/classes/wp-maintenance-mode.php:149
147
  msgid "I have just a few questions."
148
  msgstr ""
149
 
150
+ #: includes/classes/wp-maintenance-mode.php:150
151
  msgid "What is your name?"
152
  msgstr ""
153
 
154
+ #: includes/classes/wp-maintenance-mode.php:151
155
  msgid "Nice to meet you here, {visitor_name}!"
156
  msgstr ""
157
 
158
+ #: includes/classes/wp-maintenance-mode.php:152
159
  msgid "How you can see, our website will be lauched very soon."
160
  msgstr ""
161
 
162
+ #: includes/classes/wp-maintenance-mode.php:153
163
  msgid ""
164
  "I know, you are very excited to see it, but we need a few days to finish it."
165
  msgstr ""
166
 
167
+ #: includes/classes/wp-maintenance-mode.php:154
168
  msgid "Would you like to be first to see it?"
169
  msgstr ""
170
 
171
+ #: includes/classes/wp-maintenance-mode.php:155
172
  msgid ""
173
  "Cool! Please leave your email here and I will send you a message when it's "
174
  "ready."
175
  msgstr ""
176
 
177
+ #: includes/classes/wp-maintenance-mode.php:156
178
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
179
  msgstr ""
180
 
181
+ #: includes/classes/wp-maintenance-mode.php:157
182
  msgid "Got it! Thank you and see you soon here!"
183
  msgstr ""
184
 
185
+ #: includes/classes/wp-maintenance-mode.php:158
186
  msgid "Have a great day!"
187
  msgstr ""
188
 
189
+ #: includes/classes/wp-maintenance-mode.php:161
190
+ #: includes/classes/wp-maintenance-mode.php:650
191
  msgid "Type your name here…"
192
  msgstr ""
193
 
194
+ #: includes/classes/wp-maintenance-mode.php:162
195
  msgid "Tell me more"
196
  msgstr ""
197
 
198
+ #: includes/classes/wp-maintenance-mode.php:163
199
  msgid "Boring"
200
  msgstr ""
201
 
202
+ #: includes/classes/wp-maintenance-mode.php:164
203
+ #: includes/classes/wp-maintenance-mode.php:651
204
  msgid "Type your email here…"
205
  msgstr ""
206
 
207
+ #: includes/classes/wp-maintenance-mode.php:170
208
  msgid "Privacy Policy"
209
  msgstr ""
210
 
211
+ #: includes/classes/wp-maintenance-mode.php:173
212
  msgid ""
213
  "This form collects your name and email so that we can reach you back. Check "
214
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
215
  "protect and manage your submitted data."
216
  msgstr ""
217
 
218
+ #: includes/classes/wp-maintenance-mode.php:174
219
  msgid ""
220
  "This form collects your email so that we can add you to our newsletter list. "
221
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
223
  msgstr ""
224
 
225
  # @ wp-maintenance-mode
226
+ #: includes/classes/wp-maintenance-mode.php:301
227
  #, php-format
228
  msgid ""
229
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
233
  "\">configurações</a>."
234
 
235
  # @ wp-maintenance-mode
236
+ #: includes/classes/wp-maintenance-mode.php:547
237
+ #: includes/classes/wp-maintenance-mode.php:561
238
  msgid "Maintenance Mode"
239
  msgstr "Modo de Manutenção"
240
 
241
+ #: includes/classes/wp-maintenance-mode.php:647
242
  msgid "Please type in your name."
243
  msgstr ""
244
 
245
  # @ wp-maintenance-mode
246
+ #: includes/classes/wp-maintenance-mode.php:648
247
  #, fuzzy
248
  msgid "Please type in a valid email address."
249
  msgstr "Por favor insira um endereço de e-mail válido."
250
 
251
  # @ wp-maintenance-mode
252
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
253
  msgid "Send"
254
  msgstr "Enviar"
255
 
256
  # @ wp-maintenance-mode
257
+ #: includes/classes/wp-maintenance-mode.php:865
258
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
259
  msgid "Please enter a valid email address."
260
  msgstr "Por favor insira um endereço de e-mail válido."
261
 
262
+ #: includes/classes/wp-maintenance-mode.php:877
263
  msgid "You successfully subscribed. Thanks!"
264
  msgstr ""
265
 
266
  # @ wp-maintenance-mode
267
+ #: includes/classes/wp-maintenance-mode.php:895
268
  msgid "All fields required."
269
  msgstr "Todos os campos são obrigatórios."
270
 
271
  # @ wp-maintenance-mode
272
+ #: includes/classes/wp-maintenance-mode.php:907
273
  msgid "Message via contact"
274
  msgstr "Mensagem via contato"
275
 
276
  # @ wp-maintenance-mode
277
+ #: includes/classes/wp-maintenance-mode.php:924
278
  msgid "Your email was sent to the website administrator. Thanks!"
279
  msgstr "Seu e-mail foi enviado ao administrador do site. Obrigado!"
280
 
386
  msgstr ""
387
 
388
  # @ wp-maintenance-mode
389
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
390
  msgid "Status"
391
  msgstr "Status"
392
 
393
  # @ wp-maintenance-mode
394
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
395
  msgid "Activated"
396
  msgstr "Ativado"
397
 
398
  # @ wp-maintenance-mode
399
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
400
  msgid "Deactivated"
401
  msgstr "Desativado"
402
 
514
 
515
  # @ wp-maintenance-mode
516
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
517
+ #: views/settings.php:622 views/settings.php:695
518
  msgid "Save settings"
519
  msgstr ""
520
 
521
  # @ wp-maintenance-mode
522
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
523
+ #: views/settings.php:623 views/settings.php:696
524
  msgid "Reset settings"
525
  msgstr ""
526
 
679
  msgid "Links target?"
680
  msgstr ""
681
 
682
+ #: views/settings.php:328 views/settings.php:666
683
  msgid "New page"
684
  msgstr ""
685
 
686
+ #: views/settings.php:329 views/settings.php:667
687
  msgid "Same page"
688
  msgstr ""
689
 
762
  "need to."
763
  msgstr ""
764
 
765
+ #: views/settings.php:465
766
+ msgid ""
767
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
768
+ "&raquo; Export as CSV."
769
+ msgstr ""
770
+
771
  # @ wp-maintenance-mode
772
+ #: views/settings.php:478
773
  #, fuzzy
774
  msgid "Bot Name"
775
  msgstr "Nome"
776
 
777
+ #: views/settings.php:481
778
  msgid "This name will appear when the bot is typing."
779
  msgstr ""
780
 
781
  # @ wp-maintenance-mode
782
+ #: views/settings.php:485
783
  #, fuzzy
784
  msgid "Upload avatar"
785
  msgstr "Enviar Imagem de Fundo"
786
 
787
+ #: views/settings.php:489
788
  msgid "A 512 x 512 px will work just fine."
789
  msgstr ""
790
 
791
+ #: views/settings.php:495
792
  msgid "Customize Messages"
793
  msgstr ""
794
 
795
+ #: views/settings.php:500
796
  msgid "Message 1"
797
  msgstr ""
798
 
799
+ #: views/settings.php:508
800
  msgid "Message 2"
801
  msgstr ""
802
 
803
+ #: views/settings.php:516
804
  msgid "Message 3"
805
  msgstr ""
806
 
807
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
808
  msgid "Response"
809
  msgstr ""
810
 
811
+ #: views/settings.php:528 views/settings.php:590
812
  msgid "Edit the placeholder's text"
813
  msgstr ""
814
 
815
+ #: views/settings.php:532
816
  msgid "Message 4"
817
  msgstr ""
818
 
819
+ #: views/settings.php:540
820
  msgid "Message 5"
821
  msgstr ""
822
 
823
+ #: views/settings.php:548
824
  msgid "Message 6"
825
  msgstr ""
826
 
827
+ #: views/settings.php:556
828
  msgid "Message 7"
829
  msgstr ""
830
 
831
+ #: views/settings.php:568
832
  msgid "Edit button one"
833
  msgstr ""
834
 
835
+ #: views/settings.php:572
836
  msgid "Edit button two"
837
  msgstr ""
838
 
839
+ #: views/settings.php:578 views/settings.php:594
840
  msgid "Message 8"
841
  msgstr ""
842
 
843
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
844
  msgid "(click on button one)"
845
  msgstr ""
846
 
847
+ #: views/settings.php:594
848
  msgid "(click on button two)"
849
  msgstr ""
850
 
851
+ #: views/settings.php:602
852
  msgid "Message 9"
853
  msgstr ""
854
 
855
+ #: views/settings.php:610
856
  msgid "Message 10"
857
  msgstr ""
858
 
859
+ #: views/settings.php:632
860
  msgid ""
861
  "To make the plugin GDPR compliant, fill in the details and enable this "
862
  "section."
863
  msgstr ""
864
 
865
+ #: views/settings.php:633
866
  msgid ""
867
  "Here we added some generic texts that you may want to review, change or "
868
  "remove."
869
  msgstr ""
870
 
871
+ #: views/settings.php:645
872
  msgid "Link name"
873
  msgstr ""
874
 
875
+ #: views/settings.php:649
876
  msgid "Label the link that will be shown on frontend footer"
877
  msgstr ""
878
 
879
+ #: views/settings.php:654
880
  msgid "P. Policy page link"
881
  msgstr ""
882
 
883
+ #: views/settings.php:663
884
  msgid "P. Policy link target"
885
  msgstr ""
886
 
887
+ #: views/settings.php:669
888
  msgid "Choose how the link will open."
889
  msgstr ""
890
 
891
+ #: views/settings.php:674
892
  msgid "Contact form 'tail'"
893
  msgstr ""
894
 
895
+ #: views/settings.php:678 views/settings.php:687
896
  msgid "This will be shown together with the acceptance checkbox below the form"
897
  msgstr ""
898
 
899
+ #: views/settings.php:683
900
  msgid "Subscribe form 'tail'"
901
  msgstr ""
902
 
languages/wp-maintenance-mode-pt_PT.mo CHANGED
Binary file
languages/wp-maintenance-mode-pt_PT.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:16+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:16+0200\n"
6
  "Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
7
  "Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
8
  "Language: pt_PT\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"
@@ -115,12 +115,12 @@ msgid ""
115
  "your privacy policy page."
116
  msgstr ""
117
 
118
- #: includes/classes/wp-maintenance-mode.php:101
119
  #: includes/classes/wp-maintenance-mode.php:102
 
120
  msgid "Maintenance mode"
121
  msgstr "Modo de manutenção"
122
 
123
- #: includes/classes/wp-maintenance-mode.php:104
124
  msgid ""
125
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
126
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
@@ -128,96 +128,96 @@ msgstr ""
128
  "<p>Desculpe pela inconveniência.<br />O site está neste momento numa "
129
  "manutenção agendada.<br />Obrigado pela sua compreensão.</p>"
130
 
131
- #: includes/classes/wp-maintenance-mode.php:122
132
  msgid "Notify me when it's ready"
133
  msgstr "Notificar-me quando estiver disponível."
134
 
135
- #: includes/classes/wp-maintenance-mode.php:147
136
  msgid ""
137
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
138
  "your assistant here."
139
  msgstr ""
140
 
141
- #: includes/classes/wp-maintenance-mode.php:148
142
  msgid "I have just a few questions."
143
  msgstr ""
144
 
145
- #: includes/classes/wp-maintenance-mode.php:149
146
  msgid "What is your name?"
147
  msgstr ""
148
 
149
- #: includes/classes/wp-maintenance-mode.php:150
150
  msgid "Nice to meet you here, {visitor_name}!"
151
  msgstr ""
152
 
153
- #: includes/classes/wp-maintenance-mode.php:151
154
  msgid "How you can see, our website will be lauched very soon."
155
  msgstr ""
156
 
157
- #: includes/classes/wp-maintenance-mode.php:152
158
  msgid ""
159
  "I know, you are very excited to see it, but we need a few days to finish it."
160
  msgstr ""
161
 
162
- #: includes/classes/wp-maintenance-mode.php:153
163
  msgid "Would you like to be first to see it?"
164
  msgstr ""
165
 
166
- #: includes/classes/wp-maintenance-mode.php:154
167
  msgid ""
168
  "Cool! Please leave your email here and I will send you a message when it's "
169
  "ready."
170
  msgstr ""
171
 
172
- #: includes/classes/wp-maintenance-mode.php:155
173
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
174
  msgstr ""
175
 
176
- #: includes/classes/wp-maintenance-mode.php:156
177
  msgid "Got it! Thank you and see you soon here!"
178
  msgstr ""
179
 
180
- #: includes/classes/wp-maintenance-mode.php:157
181
  msgid "Have a great day!"
182
  msgstr ""
183
 
184
- #: includes/classes/wp-maintenance-mode.php:160
185
- #: includes/classes/wp-maintenance-mode.php:645
186
  msgid "Type your name here…"
187
  msgstr ""
188
 
189
- #: includes/classes/wp-maintenance-mode.php:161
190
  msgid "Tell me more"
191
  msgstr ""
192
 
193
- #: includes/classes/wp-maintenance-mode.php:162
194
  msgid "Boring"
195
  msgstr ""
196
 
197
- #: includes/classes/wp-maintenance-mode.php:163
198
- #: includes/classes/wp-maintenance-mode.php:646
199
  msgid "Type your email here…"
200
  msgstr ""
201
 
202
- #: includes/classes/wp-maintenance-mode.php:169
203
  msgid "Privacy Policy"
204
  msgstr ""
205
 
206
- #: includes/classes/wp-maintenance-mode.php:172
207
  msgid ""
208
  "This form collects your name and email so that we can reach you back. Check "
209
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
210
  "protect and manage your submitted data."
211
  msgstr ""
212
 
213
- #: includes/classes/wp-maintenance-mode.php:173
214
  msgid ""
215
  "This form collects your email so that we can add you to our newsletter list. "
216
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
217
  "we protect and manage your submitted data."
218
  msgstr ""
219
 
220
- #: includes/classes/wp-maintenance-mode.php:296
221
  #, php-format
222
  msgid ""
223
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
@@ -226,42 +226,42 @@ msgstr ""
226
  "O plugin WP Maintenance Mode foi reactivado e DEVE rever as suas <a href=\"%s"
227
  "\">definições</a>."
228
 
229
- #: includes/classes/wp-maintenance-mode.php:542
230
- #: includes/classes/wp-maintenance-mode.php:556
231
  msgid "Maintenance Mode"
232
  msgstr "Modo de manutenção"
233
 
234
- #: includes/classes/wp-maintenance-mode.php:642
235
  msgid "Please type in your name."
236
  msgstr ""
237
 
238
- #: includes/classes/wp-maintenance-mode.php:643
239
  #, fuzzy
240
  msgid "Please type in a valid email address."
241
  msgstr "Por favor introduza um endereço de email válido."
242
 
243
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
244
  msgid "Send"
245
  msgstr "Enviar"
246
 
247
- #: includes/classes/wp-maintenance-mode.php:858
248
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
249
  msgid "Please enter a valid email address."
250
  msgstr "Por favor introduza um endereço de email válido."
251
 
252
- #: includes/classes/wp-maintenance-mode.php:870
253
  msgid "You successfully subscribed. Thanks!"
254
  msgstr "Subscreveu com sucesso. Obrigado!"
255
 
256
- #: includes/classes/wp-maintenance-mode.php:888
257
  msgid "All fields required."
258
  msgstr "Todos os campos são necessários."
259
 
260
- #: includes/classes/wp-maintenance-mode.php:900
261
  msgid "Message via contact"
262
  msgstr "Mensagem via formulário de contacto"
263
 
264
- #: includes/classes/wp-maintenance-mode.php:917
265
  msgid "Your email was sent to the website administrator. Thanks!"
266
  msgstr "O seu email foi enviado ao administrador do site. Obrigado!"
267
 
@@ -362,15 +362,15 @@ msgstr ""
362
  msgid "GDPR"
363
  msgstr ""
364
 
365
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
366
  msgid "Status"
367
  msgstr "Estado"
368
 
369
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
370
  msgid "Activated"
371
  msgstr "Activado"
372
 
373
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
374
  msgid "Deactivated"
375
  msgstr "Desactivado"
376
 
@@ -483,12 +483,12 @@ msgstr ""
483
  "manutenção?"
484
 
485
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
486
- #: views/settings.php:621 views/settings.php:694
487
  msgid "Save settings"
488
  msgstr "Guardar definições"
489
 
490
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
491
- #: views/settings.php:622 views/settings.php:695
492
  msgid "Reset settings"
493
  msgstr "Repor definições"
494
 
@@ -621,11 +621,11 @@ msgstr "Mostrar redes sociais?"
621
  msgid "Links target?"
622
  msgstr "Destino das ligações?"
623
 
624
- #: views/settings.php:328 views/settings.php:665
625
  msgid "New page"
626
  msgstr "Nova página"
627
 
628
- #: views/settings.php:329 views/settings.php:666
629
  msgid "Same page"
630
  msgstr "Mesma página"
631
 
@@ -702,133 +702,139 @@ msgid ""
702
  "need to."
703
  msgstr ""
704
 
705
- #: views/settings.php:477
 
 
 
 
 
 
706
  #, fuzzy
707
  msgid "Bot Name"
708
  msgstr "Nome"
709
 
710
- #: views/settings.php:480
711
  msgid "This name will appear when the bot is typing."
712
  msgstr ""
713
 
714
- #: views/settings.php:484
715
  #, fuzzy
716
  msgid "Upload avatar"
717
  msgstr "Carregar fundo"
718
 
719
- #: views/settings.php:488
720
  msgid "A 512 x 512 px will work just fine."
721
  msgstr ""
722
 
723
- #: views/settings.php:494
724
  msgid "Customize Messages"
725
  msgstr ""
726
 
727
- #: views/settings.php:499
728
  msgid "Message 1"
729
  msgstr ""
730
 
731
- #: views/settings.php:507
732
  msgid "Message 2"
733
  msgstr ""
734
 
735
- #: views/settings.php:515
736
  msgid "Message 3"
737
  msgstr ""
738
 
739
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
740
  msgid "Response"
741
  msgstr ""
742
 
743
- #: views/settings.php:527 views/settings.php:589
744
  msgid "Edit the placeholder's text"
745
  msgstr ""
746
 
747
- #: views/settings.php:531
748
  msgid "Message 4"
749
  msgstr ""
750
 
751
- #: views/settings.php:539
752
  msgid "Message 5"
753
  msgstr ""
754
 
755
- #: views/settings.php:547
756
  msgid "Message 6"
757
  msgstr ""
758
 
759
- #: views/settings.php:555
760
  msgid "Message 7"
761
  msgstr ""
762
 
763
- #: views/settings.php:567
764
  msgid "Edit button one"
765
  msgstr ""
766
 
767
- #: views/settings.php:571
768
  msgid "Edit button two"
769
  msgstr ""
770
 
771
- #: views/settings.php:577 views/settings.php:593
772
  msgid "Message 8"
773
  msgstr ""
774
 
775
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
776
  msgid "(click on button one)"
777
  msgstr ""
778
 
779
- #: views/settings.php:593
780
  msgid "(click on button two)"
781
  msgstr ""
782
 
783
- #: views/settings.php:601
784
  msgid "Message 9"
785
  msgstr ""
786
 
787
- #: views/settings.php:609
788
  msgid "Message 10"
789
  msgstr ""
790
 
791
- #: views/settings.php:631
792
  msgid ""
793
  "To make the plugin GDPR compliant, fill in the details and enable this "
794
  "section."
795
  msgstr ""
796
 
797
- #: views/settings.php:632
798
  msgid ""
799
  "Here we added some generic texts that you may want to review, change or "
800
  "remove."
801
  msgstr ""
802
 
803
- #: views/settings.php:644
804
  msgid "Link name"
805
  msgstr ""
806
 
807
- #: views/settings.php:648
808
  msgid "Label the link that will be shown on frontend footer"
809
  msgstr ""
810
 
811
- #: views/settings.php:653
812
  msgid "P. Policy page link"
813
  msgstr ""
814
 
815
- #: views/settings.php:662
816
  msgid "P. Policy link target"
817
  msgstr ""
818
 
819
- #: views/settings.php:668
820
  msgid "Choose how the link will open."
821
  msgstr ""
822
 
823
- #: views/settings.php:673
824
  msgid "Contact form 'tail'"
825
  msgstr ""
826
 
827
- #: views/settings.php:677 views/settings.php:686
828
  msgid "This will be shown together with the acceptance checkbox below the form"
829
  msgstr ""
830
 
831
- #: views/settings.php:682
832
  msgid "Subscribe form 'tail'"
833
  msgstr ""
834
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.2.4\n"
4
+ "POT-Creation-Date: 2019-05-20 10:33+0300\n"
5
+ "PO-Revision-Date: 2019-05-20 10:33+0300\n"
6
  "Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
7
  "Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
8
  "Language: pt_PT\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"
115
  "your privacy policy page."
116
  msgstr ""
117
 
 
118
  #: includes/classes/wp-maintenance-mode.php:102
119
+ #: includes/classes/wp-maintenance-mode.php:103
120
  msgid "Maintenance mode"
121
  msgstr "Modo de manutenção"
122
 
123
+ #: includes/classes/wp-maintenance-mode.php:105
124
  msgid ""
125
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
126
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
128
  "<p>Desculpe pela inconveniência.<br />O site está neste momento numa "
129
  "manutenção agendada.<br />Obrigado pela sua compreensão.</p>"
130
 
131
+ #: includes/classes/wp-maintenance-mode.php:123
132
  msgid "Notify me when it's ready"
133
  msgstr "Notificar-me quando estiver disponível."
134
 
135
+ #: includes/classes/wp-maintenance-mode.php:148
136
  msgid ""
137
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
138
  "your assistant here."
139
  msgstr ""
140
 
141
+ #: includes/classes/wp-maintenance-mode.php:149
142
  msgid "I have just a few questions."
143
  msgstr ""
144
 
145
+ #: includes/classes/wp-maintenance-mode.php:150
146
  msgid "What is your name?"
147
  msgstr ""
148
 
149
+ #: includes/classes/wp-maintenance-mode.php:151
150
  msgid "Nice to meet you here, {visitor_name}!"
151
  msgstr ""
152
 
153
+ #: includes/classes/wp-maintenance-mode.php:152
154
  msgid "How you can see, our website will be lauched very soon."
155
  msgstr ""
156
 
157
+ #: includes/classes/wp-maintenance-mode.php:153
158
  msgid ""
159
  "I know, you are very excited to see it, but we need a few days to finish it."
160
  msgstr ""
161
 
162
+ #: includes/classes/wp-maintenance-mode.php:154
163
  msgid "Would you like to be first to see it?"
164
  msgstr ""
165
 
166
+ #: includes/classes/wp-maintenance-mode.php:155
167
  msgid ""
168
  "Cool! Please leave your email here and I will send you a message when it's "
169
  "ready."
170
  msgstr ""
171
 
172
+ #: includes/classes/wp-maintenance-mode.php:156
173
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
174
  msgstr ""
175
 
176
+ #: includes/classes/wp-maintenance-mode.php:157
177
  msgid "Got it! Thank you and see you soon here!"
178
  msgstr ""
179
 
180
+ #: includes/classes/wp-maintenance-mode.php:158
181
  msgid "Have a great day!"
182
  msgstr ""
183
 
184
+ #: includes/classes/wp-maintenance-mode.php:161
185
+ #: includes/classes/wp-maintenance-mode.php:650
186
  msgid "Type your name here…"
187
  msgstr ""
188
 
189
+ #: includes/classes/wp-maintenance-mode.php:162
190
  msgid "Tell me more"
191
  msgstr ""
192
 
193
+ #: includes/classes/wp-maintenance-mode.php:163
194
  msgid "Boring"
195
  msgstr ""
196
 
197
+ #: includes/classes/wp-maintenance-mode.php:164
198
+ #: includes/classes/wp-maintenance-mode.php:651
199
  msgid "Type your email here…"
200
  msgstr ""
201
 
202
+ #: includes/classes/wp-maintenance-mode.php:170
203
  msgid "Privacy Policy"
204
  msgstr ""
205
 
206
+ #: includes/classes/wp-maintenance-mode.php:173
207
  msgid ""
208
  "This form collects your name and email so that we can reach you back. Check "
209
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
210
  "protect and manage your submitted data."
211
  msgstr ""
212
 
213
+ #: includes/classes/wp-maintenance-mode.php:174
214
  msgid ""
215
  "This form collects your email so that we can add you to our newsletter list. "
216
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
217
  "we protect and manage your submitted data."
218
  msgstr ""
219
 
220
+ #: includes/classes/wp-maintenance-mode.php:301
221
  #, php-format
222
  msgid ""
223
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
226
  "O plugin WP Maintenance Mode foi reactivado e DEVE rever as suas <a href=\"%s"
227
  "\">definições</a>."
228
 
229
+ #: includes/classes/wp-maintenance-mode.php:547
230
+ #: includes/classes/wp-maintenance-mode.php:561
231
  msgid "Maintenance Mode"
232
  msgstr "Modo de manutenção"
233
 
234
+ #: includes/classes/wp-maintenance-mode.php:647
235
  msgid "Please type in your name."
236
  msgstr ""
237
 
238
+ #: includes/classes/wp-maintenance-mode.php:648
239
  #, fuzzy
240
  msgid "Please type in a valid email address."
241
  msgstr "Por favor introduza um endereço de email válido."
242
 
243
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
244
  msgid "Send"
245
  msgstr "Enviar"
246
 
247
+ #: includes/classes/wp-maintenance-mode.php:865
248
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
249
  msgid "Please enter a valid email address."
250
  msgstr "Por favor introduza um endereço de email válido."
251
 
252
+ #: includes/classes/wp-maintenance-mode.php:877
253
  msgid "You successfully subscribed. Thanks!"
254
  msgstr "Subscreveu com sucesso. Obrigado!"
255
 
256
+ #: includes/classes/wp-maintenance-mode.php:895
257
  msgid "All fields required."
258
  msgstr "Todos os campos são necessários."
259
 
260
+ #: includes/classes/wp-maintenance-mode.php:907
261
  msgid "Message via contact"
262
  msgstr "Mensagem via formulário de contacto"
263
 
264
+ #: includes/classes/wp-maintenance-mode.php:924
265
  msgid "Your email was sent to the website administrator. Thanks!"
266
  msgstr "O seu email foi enviado ao administrador do site. Obrigado!"
267
 
362
  msgid "GDPR"
363
  msgstr ""
364
 
365
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
366
  msgid "Status"
367
  msgstr "Estado"
368
 
369
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
370
  msgid "Activated"
371
  msgstr "Activado"
372
 
373
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
374
  msgid "Deactivated"
375
  msgstr "Desactivado"
376
 
483
  "manutenção?"
484
 
485
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
486
+ #: views/settings.php:622 views/settings.php:695
487
  msgid "Save settings"
488
  msgstr "Guardar definições"
489
 
490
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
491
+ #: views/settings.php:623 views/settings.php:696
492
  msgid "Reset settings"
493
  msgstr "Repor definições"
494
 
621
  msgid "Links target?"
622
  msgstr "Destino das ligações?"
623
 
624
+ #: views/settings.php:328 views/settings.php:666
625
  msgid "New page"
626
  msgstr "Nova página"
627
 
628
+ #: views/settings.php:329 views/settings.php:667
629
  msgid "Same page"
630
  msgstr "Mesma página"
631
 
702
  "need to."
703
  msgstr ""
704
 
705
+ #: views/settings.php:465
706
+ msgid ""
707
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
708
+ "&raquo; Export as CSV."
709
+ msgstr ""
710
+
711
+ #: views/settings.php:478
712
  #, fuzzy
713
  msgid "Bot Name"
714
  msgstr "Nome"
715
 
716
+ #: views/settings.php:481
717
  msgid "This name will appear when the bot is typing."
718
  msgstr ""
719
 
720
+ #: views/settings.php:485
721
  #, fuzzy
722
  msgid "Upload avatar"
723
  msgstr "Carregar fundo"
724
 
725
+ #: views/settings.php:489
726
  msgid "A 512 x 512 px will work just fine."
727
  msgstr ""
728
 
729
+ #: views/settings.php:495
730
  msgid "Customize Messages"
731
  msgstr ""
732
 
733
+ #: views/settings.php:500
734
  msgid "Message 1"
735
  msgstr ""
736
 
737
+ #: views/settings.php:508
738
  msgid "Message 2"
739
  msgstr ""
740
 
741
+ #: views/settings.php:516
742
  msgid "Message 3"
743
  msgstr ""
744
 
745
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
746
  msgid "Response"
747
  msgstr ""
748
 
749
+ #: views/settings.php:528 views/settings.php:590
750
  msgid "Edit the placeholder's text"
751
  msgstr ""
752
 
753
+ #: views/settings.php:532
754
  msgid "Message 4"
755
  msgstr ""
756
 
757
+ #: views/settings.php:540
758
  msgid "Message 5"
759
  msgstr ""
760
 
761
+ #: views/settings.php:548
762
  msgid "Message 6"
763
  msgstr ""
764
 
765
+ #: views/settings.php:556
766
  msgid "Message 7"
767
  msgstr ""
768
 
769
+ #: views/settings.php:568
770
  msgid "Edit button one"
771
  msgstr ""
772
 
773
+ #: views/settings.php:572
774
  msgid "Edit button two"
775
  msgstr ""
776
 
777
+ #: views/settings.php:578 views/settings.php:594
778
  msgid "Message 8"
779
  msgstr ""
780
 
781
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
782
  msgid "(click on button one)"
783
  msgstr ""
784
 
785
+ #: views/settings.php:594
786
  msgid "(click on button two)"
787
  msgstr ""
788
 
789
+ #: views/settings.php:602
790
  msgid "Message 9"
791
  msgstr ""
792
 
793
+ #: views/settings.php:610
794
  msgid "Message 10"
795
  msgstr ""
796
 
797
+ #: views/settings.php:632
798
  msgid ""
799
  "To make the plugin GDPR compliant, fill in the details and enable this "
800
  "section."
801
  msgstr ""
802
 
803
+ #: views/settings.php:633
804
  msgid ""
805
  "Here we added some generic texts that you may want to review, change or "
806
  "remove."
807
  msgstr ""
808
 
809
+ #: views/settings.php:645
810
  msgid "Link name"
811
  msgstr ""
812
 
813
+ #: views/settings.php:649
814
  msgid "Label the link that will be shown on frontend footer"
815
  msgstr ""
816
 
817
+ #: views/settings.php:654
818
  msgid "P. Policy page link"
819
  msgstr ""
820
 
821
+ #: views/settings.php:663
822
  msgid "P. Policy link target"
823
  msgstr ""
824
 
825
+ #: views/settings.php:669
826
  msgid "Choose how the link will open."
827
  msgstr ""
828
 
829
+ #: views/settings.php:674
830
  msgid "Contact form 'tail'"
831
  msgstr ""
832
 
833
+ #: views/settings.php:678 views/settings.php:687
834
  msgid "This will be shown together with the acceptance checkbox below the form"
835
  msgstr ""
836
 
837
+ #: views/settings.php:683
838
  msgid "Subscribe form 'tail'"
839
  msgstr ""
840
 
languages/wp-maintenance-mode-ro_RO.mo CHANGED
Binary file
languages/wp-maintenance-mode-ro_RO.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:17+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:17+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: ro\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=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
15
  "2:1));\n"
@@ -116,12 +116,12 @@ msgid ""
116
  "your privacy policy page."
117
  msgstr ""
118
 
119
- #: includes/classes/wp-maintenance-mode.php:101
120
  #: includes/classes/wp-maintenance-mode.php:102
 
121
  msgid "Maintenance mode"
122
  msgstr "Mentenanta"
123
 
124
- #: includes/classes/wp-maintenance-mode.php:104
125
  msgid ""
126
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
127
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
@@ -129,97 +129,97 @@ msgstr ""
129
  "<p>Ne cerem scuze pentru inconvenienta.<br />Site-ul nostru se afla in "
130
  "mentenanta.<br />Multumim pentru intelegere.</p>"
131
 
132
- #: includes/classes/wp-maintenance-mode.php:122
133
  msgid "Notify me when it's ready"
134
  msgstr "Notifica-ma atunci cand procesul de mentenanta este gata"
135
 
136
- #: includes/classes/wp-maintenance-mode.php:147
137
  msgid ""
138
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
139
  "your assistant here."
140
  msgstr ""
141
 
142
- #: includes/classes/wp-maintenance-mode.php:148
143
  msgid "I have just a few questions."
144
  msgstr ""
145
 
146
- #: includes/classes/wp-maintenance-mode.php:149
147
  msgid "What is your name?"
148
  msgstr ""
149
 
150
- #: includes/classes/wp-maintenance-mode.php:150
151
  msgid "Nice to meet you here, {visitor_name}!"
152
  msgstr ""
153
 
154
- #: includes/classes/wp-maintenance-mode.php:151
155
  msgid "How you can see, our website will be lauched very soon."
156
  msgstr ""
157
 
158
- #: includes/classes/wp-maintenance-mode.php:152
159
  msgid ""
160
  "I know, you are very excited to see it, but we need a few days to finish it."
161
  msgstr ""
162
 
163
- #: includes/classes/wp-maintenance-mode.php:153
164
  msgid "Would you like to be first to see it?"
165
  msgstr ""
166
 
167
- #: includes/classes/wp-maintenance-mode.php:154
168
  msgid ""
169
  "Cool! Please leave your email here and I will send you a message when it's "
170
  "ready."
171
  msgstr ""
172
 
173
- #: includes/classes/wp-maintenance-mode.php:155
174
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
175
  msgstr ""
176
 
177
- #: includes/classes/wp-maintenance-mode.php:156
178
  msgid "Got it! Thank you and see you soon here!"
179
  msgstr ""
180
 
181
- #: includes/classes/wp-maintenance-mode.php:157
182
  msgid "Have a great day!"
183
  msgstr ""
184
 
185
- #: includes/classes/wp-maintenance-mode.php:160
186
- #: includes/classes/wp-maintenance-mode.php:645
187
  msgid "Type your name here…"
188
  msgstr ""
189
 
190
- #: includes/classes/wp-maintenance-mode.php:161
191
  msgid "Tell me more"
192
  msgstr ""
193
 
194
- #: includes/classes/wp-maintenance-mode.php:162
195
  msgid "Boring"
196
  msgstr ""
197
 
198
- #: includes/classes/wp-maintenance-mode.php:163
199
- #: includes/classes/wp-maintenance-mode.php:646
200
  #, fuzzy
201
  msgid "Type your email here…"
202
  msgstr "Completeaza adresa de email"
203
 
204
- #: includes/classes/wp-maintenance-mode.php:169
205
  msgid "Privacy Policy"
206
  msgstr ""
207
 
208
- #: includes/classes/wp-maintenance-mode.php:172
209
  msgid ""
210
  "This form collects your name and email so that we can reach you back. Check "
211
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
212
  "protect and manage your submitted data."
213
  msgstr ""
214
 
215
- #: includes/classes/wp-maintenance-mode.php:173
216
  msgid ""
217
  "This form collects your email so that we can add you to our newsletter list. "
218
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
219
  "we protect and manage your submitted data."
220
  msgstr ""
221
 
222
- #: includes/classes/wp-maintenance-mode.php:296
223
  #, php-format
224
  msgid ""
225
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
@@ -228,42 +228,42 @@ msgstr ""
228
  "Plugin-ul WP Maintenance Mode a fost relansat si TREBUIE sa revedeti <a href="
229
  "\"%s\">setarile</a> acestuia."
230
 
231
- #: includes/classes/wp-maintenance-mode.php:542
232
- #: includes/classes/wp-maintenance-mode.php:556
233
  msgid "Maintenance Mode"
234
  msgstr "Mentenanta"
235
 
236
- #: includes/classes/wp-maintenance-mode.php:642
237
  msgid "Please type in your name."
238
  msgstr ""
239
 
240
- #: includes/classes/wp-maintenance-mode.php:643
241
  #, fuzzy
242
  msgid "Please type in a valid email address."
243
  msgstr "Te rog sa completezi o adresa de email valida."
244
 
245
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
246
  msgid "Send"
247
  msgstr "Trimite"
248
 
249
- #: includes/classes/wp-maintenance-mode.php:858
250
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
251
  msgid "Please enter a valid email address."
252
  msgstr "Te rog sa completezi o adresa de email valida."
253
 
254
- #: includes/classes/wp-maintenance-mode.php:870
255
  msgid "You successfully subscribed. Thanks!"
256
  msgstr "Te-ai inscris cu succes in lista de contacte. Multumesc!"
257
 
258
- #: includes/classes/wp-maintenance-mode.php:888
259
  msgid "All fields required."
260
  msgstr "Toate campurile sunt obligatorii."
261
 
262
- #: includes/classes/wp-maintenance-mode.php:900
263
  msgid "Message via contact"
264
  msgstr "Mesaj trimis prin formularul de contact"
265
 
266
- #: includes/classes/wp-maintenance-mode.php:917
267
  msgid "Your email was sent to the website administrator. Thanks!"
268
  msgstr "Emailul tau a fost trimis catre administratorul site-ului. Multumim!"
269
 
@@ -364,15 +364,15 @@ msgstr ""
364
  msgid "GDPR"
365
  msgstr ""
366
 
367
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
368
  msgid "Status"
369
  msgstr "Status"
370
 
371
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
372
  msgid "Activated"
373
  msgstr "Activat"
374
 
375
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
376
  msgid "Deactivated"
377
  msgstr "Dezactivat"
378
 
@@ -484,12 +484,12 @@ msgid ""
484
  msgstr "Doresti sa adaugi un link catre admin pe pagina de mentenanta?"
485
 
486
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
487
- #: views/settings.php:621 views/settings.php:694
488
  msgid "Save settings"
489
  msgstr "Salveaza setari"
490
 
491
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
492
- #: views/settings.php:622 views/settings.php:695
493
  msgid "Reset settings"
494
  msgstr "Reseteaza setari"
495
 
@@ -623,11 +623,11 @@ msgstr "Afiseaza butoane retele sociale?"
623
  msgid "Links target?"
624
  msgstr "Target-ul link-urilor"
625
 
626
- #: views/settings.php:328 views/settings.php:665
627
  msgid "New page"
628
  msgstr "Pagina noua"
629
 
630
- #: views/settings.php:329 views/settings.php:666
631
  msgid "Same page"
632
  msgstr "Aceeasi pagina"
633
 
@@ -703,133 +703,139 @@ msgid ""
703
  "need to."
704
  msgstr ""
705
 
706
- #: views/settings.php:477
 
 
 
 
 
 
707
  #, fuzzy
708
  msgid "Bot Name"
709
  msgstr "Nume"
710
 
711
- #: views/settings.php:480
712
  msgid "This name will appear when the bot is typing."
713
  msgstr ""
714
 
715
- #: views/settings.php:484
716
  #, fuzzy
717
  msgid "Upload avatar"
718
  msgstr "Incarca imagine"
719
 
720
- #: views/settings.php:488
721
  msgid "A 512 x 512 px will work just fine."
722
  msgstr ""
723
 
724
- #: views/settings.php:494
725
  msgid "Customize Messages"
726
  msgstr ""
727
 
728
- #: views/settings.php:499
729
  msgid "Message 1"
730
  msgstr ""
731
 
732
- #: views/settings.php:507
733
  msgid "Message 2"
734
  msgstr ""
735
 
736
- #: views/settings.php:515
737
  msgid "Message 3"
738
  msgstr ""
739
 
740
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
741
  msgid "Response"
742
  msgstr ""
743
 
744
- #: views/settings.php:527 views/settings.php:589
745
  msgid "Edit the placeholder's text"
746
  msgstr ""
747
 
748
- #: views/settings.php:531
749
  msgid "Message 4"
750
  msgstr ""
751
 
752
- #: views/settings.php:539
753
  msgid "Message 5"
754
  msgstr ""
755
 
756
- #: views/settings.php:547
757
  msgid "Message 6"
758
  msgstr ""
759
 
760
- #: views/settings.php:555
761
  msgid "Message 7"
762
  msgstr ""
763
 
764
- #: views/settings.php:567
765
  msgid "Edit button one"
766
  msgstr ""
767
 
768
- #: views/settings.php:571
769
  msgid "Edit button two"
770
  msgstr ""
771
 
772
- #: views/settings.php:577 views/settings.php:593
773
  msgid "Message 8"
774
  msgstr ""
775
 
776
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
777
  msgid "(click on button one)"
778
  msgstr ""
779
 
780
- #: views/settings.php:593
781
  msgid "(click on button two)"
782
  msgstr ""
783
 
784
- #: views/settings.php:601
785
  msgid "Message 9"
786
  msgstr ""
787
 
788
- #: views/settings.php:609
789
  msgid "Message 10"
790
  msgstr ""
791
 
792
- #: views/settings.php:631
793
  msgid ""
794
  "To make the plugin GDPR compliant, fill in the details and enable this "
795
  "section."
796
  msgstr ""
797
 
798
- #: views/settings.php:632
799
  msgid ""
800
  "Here we added some generic texts that you may want to review, change or "
801
  "remove."
802
  msgstr ""
803
 
804
- #: views/settings.php:644
805
  msgid "Link name"
806
  msgstr ""
807
 
808
- #: views/settings.php:648
809
  msgid "Label the link that will be shown on frontend footer"
810
  msgstr ""
811
 
812
- #: views/settings.php:653
813
  msgid "P. Policy page link"
814
  msgstr ""
815
 
816
- #: views/settings.php:662
817
  msgid "P. Policy link target"
818
  msgstr ""
819
 
820
- #: views/settings.php:668
821
  msgid "Choose how the link will open."
822
  msgstr ""
823
 
824
- #: views/settings.php:673
825
  msgid "Contact form 'tail'"
826
  msgstr ""
827
 
828
- #: views/settings.php:677 views/settings.php:686
829
  msgid "This will be shown together with the acceptance checkbox below the form"
830
  msgstr ""
831
 
832
- #: views/settings.php:682
833
  msgid "Subscribe form 'tail'"
834
  msgstr ""
835
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.2.4\n"
4
+ "POT-Creation-Date: 2019-05-20 10:33+0300\n"
5
+ "PO-Revision-Date: 2019-05-20 10:33+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: ro\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=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
15
  "2:1));\n"
116
  "your privacy policy page."
117
  msgstr ""
118
 
 
119
  #: includes/classes/wp-maintenance-mode.php:102
120
+ #: includes/classes/wp-maintenance-mode.php:103
121
  msgid "Maintenance mode"
122
  msgstr "Mentenanta"
123
 
124
+ #: includes/classes/wp-maintenance-mode.php:105
125
  msgid ""
126
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
127
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
129
  "<p>Ne cerem scuze pentru inconvenienta.<br />Site-ul nostru se afla in "
130
  "mentenanta.<br />Multumim pentru intelegere.</p>"
131
 
132
+ #: includes/classes/wp-maintenance-mode.php:123
133
  msgid "Notify me when it's ready"
134
  msgstr "Notifica-ma atunci cand procesul de mentenanta este gata"
135
 
136
+ #: includes/classes/wp-maintenance-mode.php:148
137
  msgid ""
138
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
139
  "your assistant here."
140
  msgstr ""
141
 
142
+ #: includes/classes/wp-maintenance-mode.php:149
143
  msgid "I have just a few questions."
144
  msgstr ""
145
 
146
+ #: includes/classes/wp-maintenance-mode.php:150
147
  msgid "What is your name?"
148
  msgstr ""
149
 
150
+ #: includes/classes/wp-maintenance-mode.php:151
151
  msgid "Nice to meet you here, {visitor_name}!"
152
  msgstr ""
153
 
154
+ #: includes/classes/wp-maintenance-mode.php:152
155
  msgid "How you can see, our website will be lauched very soon."
156
  msgstr ""
157
 
158
+ #: includes/classes/wp-maintenance-mode.php:153
159
  msgid ""
160
  "I know, you are very excited to see it, but we need a few days to finish it."
161
  msgstr ""
162
 
163
+ #: includes/classes/wp-maintenance-mode.php:154
164
  msgid "Would you like to be first to see it?"
165
  msgstr ""
166
 
167
+ #: includes/classes/wp-maintenance-mode.php:155
168
  msgid ""
169
  "Cool! Please leave your email here and I will send you a message when it's "
170
  "ready."
171
  msgstr ""
172
 
173
+ #: includes/classes/wp-maintenance-mode.php:156
174
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
175
  msgstr ""
176
 
177
+ #: includes/classes/wp-maintenance-mode.php:157
178
  msgid "Got it! Thank you and see you soon here!"
179
  msgstr ""
180
 
181
+ #: includes/classes/wp-maintenance-mode.php:158
182
  msgid "Have a great day!"
183
  msgstr ""
184
 
185
+ #: includes/classes/wp-maintenance-mode.php:161
186
+ #: includes/classes/wp-maintenance-mode.php:650
187
  msgid "Type your name here…"
188
  msgstr ""
189
 
190
+ #: includes/classes/wp-maintenance-mode.php:162
191
  msgid "Tell me more"
192
  msgstr ""
193
 
194
+ #: includes/classes/wp-maintenance-mode.php:163
195
  msgid "Boring"
196
  msgstr ""
197
 
198
+ #: includes/classes/wp-maintenance-mode.php:164
199
+ #: includes/classes/wp-maintenance-mode.php:651
200
  #, fuzzy
201
  msgid "Type your email here…"
202
  msgstr "Completeaza adresa de email"
203
 
204
+ #: includes/classes/wp-maintenance-mode.php:170
205
  msgid "Privacy Policy"
206
  msgstr ""
207
 
208
+ #: includes/classes/wp-maintenance-mode.php:173
209
  msgid ""
210
  "This form collects your name and email so that we can reach you back. Check "
211
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
212
  "protect and manage your submitted data."
213
  msgstr ""
214
 
215
+ #: includes/classes/wp-maintenance-mode.php:174
216
  msgid ""
217
  "This form collects your email so that we can add you to our newsletter list. "
218
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
219
  "we protect and manage your submitted data."
220
  msgstr ""
221
 
222
+ #: includes/classes/wp-maintenance-mode.php:301
223
  #, php-format
224
  msgid ""
225
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
228
  "Plugin-ul WP Maintenance Mode a fost relansat si TREBUIE sa revedeti <a href="
229
  "\"%s\">setarile</a> acestuia."
230
 
231
+ #: includes/classes/wp-maintenance-mode.php:547
232
+ #: includes/classes/wp-maintenance-mode.php:561
233
  msgid "Maintenance Mode"
234
  msgstr "Mentenanta"
235
 
236
+ #: includes/classes/wp-maintenance-mode.php:647
237
  msgid "Please type in your name."
238
  msgstr ""
239
 
240
+ #: includes/classes/wp-maintenance-mode.php:648
241
  #, fuzzy
242
  msgid "Please type in a valid email address."
243
  msgstr "Te rog sa completezi o adresa de email valida."
244
 
245
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
246
  msgid "Send"
247
  msgstr "Trimite"
248
 
249
+ #: includes/classes/wp-maintenance-mode.php:865
250
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
251
  msgid "Please enter a valid email address."
252
  msgstr "Te rog sa completezi o adresa de email valida."
253
 
254
+ #: includes/classes/wp-maintenance-mode.php:877
255
  msgid "You successfully subscribed. Thanks!"
256
  msgstr "Te-ai inscris cu succes in lista de contacte. Multumesc!"
257
 
258
+ #: includes/classes/wp-maintenance-mode.php:895
259
  msgid "All fields required."
260
  msgstr "Toate campurile sunt obligatorii."
261
 
262
+ #: includes/classes/wp-maintenance-mode.php:907
263
  msgid "Message via contact"
264
  msgstr "Mesaj trimis prin formularul de contact"
265
 
266
+ #: includes/classes/wp-maintenance-mode.php:924
267
  msgid "Your email was sent to the website administrator. Thanks!"
268
  msgstr "Emailul tau a fost trimis catre administratorul site-ului. Multumim!"
269
 
364
  msgid "GDPR"
365
  msgstr ""
366
 
367
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
368
  msgid "Status"
369
  msgstr "Status"
370
 
371
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
372
  msgid "Activated"
373
  msgstr "Activat"
374
 
375
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
376
  msgid "Deactivated"
377
  msgstr "Dezactivat"
378
 
484
  msgstr "Doresti sa adaugi un link catre admin pe pagina de mentenanta?"
485
 
486
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
487
+ #: views/settings.php:622 views/settings.php:695
488
  msgid "Save settings"
489
  msgstr "Salveaza setari"
490
 
491
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
492
+ #: views/settings.php:623 views/settings.php:696
493
  msgid "Reset settings"
494
  msgstr "Reseteaza setari"
495
 
623
  msgid "Links target?"
624
  msgstr "Target-ul link-urilor"
625
 
626
+ #: views/settings.php:328 views/settings.php:666
627
  msgid "New page"
628
  msgstr "Pagina noua"
629
 
630
+ #: views/settings.php:329 views/settings.php:667
631
  msgid "Same page"
632
  msgstr "Aceeasi pagina"
633
 
703
  "need to."
704
  msgstr ""
705
 
706
+ #: views/settings.php:465
707
+ msgid ""
708
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
709
+ "&raquo; Export as CSV."
710
+ msgstr ""
711
+
712
+ #: views/settings.php:478
713
  #, fuzzy
714
  msgid "Bot Name"
715
  msgstr "Nume"
716
 
717
+ #: views/settings.php:481
718
  msgid "This name will appear when the bot is typing."
719
  msgstr ""
720
 
721
+ #: views/settings.php:485
722
  #, fuzzy
723
  msgid "Upload avatar"
724
  msgstr "Incarca imagine"
725
 
726
+ #: views/settings.php:489
727
  msgid "A 512 x 512 px will work just fine."
728
  msgstr ""
729
 
730
+ #: views/settings.php:495
731
  msgid "Customize Messages"
732
  msgstr ""
733
 
734
+ #: views/settings.php:500
735
  msgid "Message 1"
736
  msgstr ""
737
 
738
+ #: views/settings.php:508
739
  msgid "Message 2"
740
  msgstr ""
741
 
742
+ #: views/settings.php:516
743
  msgid "Message 3"
744
  msgstr ""
745
 
746
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
747
  msgid "Response"
748
  msgstr ""
749
 
750
+ #: views/settings.php:528 views/settings.php:590
751
  msgid "Edit the placeholder's text"
752
  msgstr ""
753
 
754
+ #: views/settings.php:532
755
  msgid "Message 4"
756
  msgstr ""
757
 
758
+ #: views/settings.php:540
759
  msgid "Message 5"
760
  msgstr ""
761
 
762
+ #: views/settings.php:548
763
  msgid "Message 6"
764
  msgstr ""
765
 
766
+ #: views/settings.php:556
767
  msgid "Message 7"
768
  msgstr ""
769
 
770
+ #: views/settings.php:568
771
  msgid "Edit button one"
772
  msgstr ""
773
 
774
+ #: views/settings.php:572
775
  msgid "Edit button two"
776
  msgstr ""
777
 
778
+ #: views/settings.php:578 views/settings.php:594
779
  msgid "Message 8"
780
  msgstr ""
781
 
782
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
783
  msgid "(click on button one)"
784
  msgstr ""
785
 
786
+ #: views/settings.php:594
787
  msgid "(click on button two)"
788
  msgstr ""
789
 
790
+ #: views/settings.php:602
791
  msgid "Message 9"
792
  msgstr ""
793
 
794
+ #: views/settings.php:610
795
  msgid "Message 10"
796
  msgstr ""
797
 
798
+ #: views/settings.php:632
799
  msgid ""
800
  "To make the plugin GDPR compliant, fill in the details and enable this "
801
  "section."
802
  msgstr ""
803
 
804
+ #: views/settings.php:633
805
  msgid ""
806
  "Here we added some generic texts that you may want to review, change or "
807
  "remove."
808
  msgstr ""
809
 
810
+ #: views/settings.php:645
811
  msgid "Link name"
812
  msgstr ""
813
 
814
+ #: views/settings.php:649
815
  msgid "Label the link that will be shown on frontend footer"
816
  msgstr ""
817
 
818
+ #: views/settings.php:654
819
  msgid "P. Policy page link"
820
  msgstr ""
821
 
822
+ #: views/settings.php:663
823
  msgid "P. Policy link target"
824
  msgstr ""
825
 
826
+ #: views/settings.php:669
827
  msgid "Choose how the link will open."
828
  msgstr ""
829
 
830
+ #: views/settings.php:674
831
  msgid "Contact form 'tail'"
832
  msgstr ""
833
 
834
+ #: views/settings.php:678 views/settings.php:687
835
  msgid "This will be shown together with the acceptance checkbox below the form"
836
  msgstr ""
837
 
838
+ #: views/settings.php:683
839
  msgid "Subscribe form 'tail'"
840
  msgstr ""
841
 
languages/wp-maintenance-mode-ru_RU.mo CHANGED
Binary file
languages/wp-maintenance-mode-ru_RU.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:18+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:18+0200\n"
6
  "Last-Translator: Constantine Reeves <affectiosus@gmail.com>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: ru\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
@@ -114,12 +114,12 @@ msgid ""
114
  "your privacy policy page."
115
  msgstr ""
116
 
117
- #: includes/classes/wp-maintenance-mode.php:101
118
  #: includes/classes/wp-maintenance-mode.php:102
 
119
  msgid "Maintenance mode"
120
  msgstr "Режим технического обслуживания"
121
 
122
- #: includes/classes/wp-maintenance-mode.php:104
123
  msgid ""
124
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
125
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
@@ -127,97 +127,97 @@ msgstr ""
127
  "<p>В данный момент сайт находится на техническом обслуживании.<br />Приносим "
128
  "извинения за временные неудобства.<br />Спасибо за понимание.</p>"
129
 
130
- #: includes/classes/wp-maintenance-mode.php:122
131
  msgid "Notify me when it's ready"
132
  msgstr "Сообщить о готовности"
133
 
134
- #: includes/classes/wp-maintenance-mode.php:147
135
  msgid ""
136
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
137
  "your assistant here."
138
  msgstr ""
139
 
140
- #: includes/classes/wp-maintenance-mode.php:148
141
  msgid "I have just a few questions."
142
  msgstr ""
143
 
144
- #: includes/classes/wp-maintenance-mode.php:149
145
  msgid "What is your name?"
146
  msgstr ""
147
 
148
- #: includes/classes/wp-maintenance-mode.php:150
149
  msgid "Nice to meet you here, {visitor_name}!"
150
  msgstr ""
151
 
152
- #: includes/classes/wp-maintenance-mode.php:151
153
  msgid "How you can see, our website will be lauched very soon."
154
  msgstr ""
155
 
156
- #: includes/classes/wp-maintenance-mode.php:152
157
  msgid ""
158
  "I know, you are very excited to see it, but we need a few days to finish it."
159
  msgstr ""
160
 
161
- #: includes/classes/wp-maintenance-mode.php:153
162
  msgid "Would you like to be first to see it?"
163
  msgstr ""
164
 
165
- #: includes/classes/wp-maintenance-mode.php:154
166
  msgid ""
167
  "Cool! Please leave your email here and I will send you a message when it's "
168
  "ready."
169
  msgstr ""
170
 
171
- #: includes/classes/wp-maintenance-mode.php:155
172
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
173
  msgstr ""
174
 
175
- #: includes/classes/wp-maintenance-mode.php:156
176
  msgid "Got it! Thank you and see you soon here!"
177
  msgstr ""
178
 
179
- #: includes/classes/wp-maintenance-mode.php:157
180
  msgid "Have a great day!"
181
  msgstr ""
182
 
183
- #: includes/classes/wp-maintenance-mode.php:160
184
- #: includes/classes/wp-maintenance-mode.php:645
185
  msgid "Type your name here…"
186
  msgstr ""
187
 
188
- #: includes/classes/wp-maintenance-mode.php:161
189
  msgid "Tell me more"
190
  msgstr ""
191
 
192
- #: includes/classes/wp-maintenance-mode.php:162
193
  msgid "Boring"
194
  msgstr ""
195
 
196
- #: includes/classes/wp-maintenance-mode.php:163
197
- #: includes/classes/wp-maintenance-mode.php:646
198
  #, fuzzy
199
  msgid "Type your email here…"
200
  msgstr "Введите ваш e-mail адрес"
201
 
202
- #: includes/classes/wp-maintenance-mode.php:169
203
  msgid "Privacy Policy"
204
  msgstr ""
205
 
206
- #: includes/classes/wp-maintenance-mode.php:172
207
  msgid ""
208
  "This form collects your name and email so that we can reach you back. Check "
209
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
210
  "protect and manage your submitted data."
211
  msgstr ""
212
 
213
- #: includes/classes/wp-maintenance-mode.php:173
214
  msgid ""
215
  "This form collects your email so that we can add you to our newsletter list. "
216
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
217
  "we protect and manage your submitted data."
218
  msgstr ""
219
 
220
- #: includes/classes/wp-maintenance-mode.php:296
221
  #, php-format
222
  msgid ""
223
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
@@ -226,42 +226,42 @@ msgstr ""
226
  "Плагин технического обслуживания был перезапущен. Вам НЕОБХОДИМО "
227
  "пересмотреть <a href=\"%s\">настройки</a>."
228
 
229
- #: includes/classes/wp-maintenance-mode.php:542
230
- #: includes/classes/wp-maintenance-mode.php:556
231
  msgid "Maintenance Mode"
232
  msgstr "Режим технического обслуживания"
233
 
234
- #: includes/classes/wp-maintenance-mode.php:642
235
  msgid "Please type in your name."
236
  msgstr ""
237
 
238
- #: includes/classes/wp-maintenance-mode.php:643
239
  #, fuzzy
240
  msgid "Please type in a valid email address."
241
  msgstr "Введите корректный e-mail адрес."
242
 
243
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
244
  msgid "Send"
245
  msgstr "Отправить"
246
 
247
- #: includes/classes/wp-maintenance-mode.php:858
248
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
249
  msgid "Please enter a valid email address."
250
  msgstr "Введите корректный e-mail адрес."
251
 
252
- #: includes/classes/wp-maintenance-mode.php:870
253
  msgid "You successfully subscribed. Thanks!"
254
  msgstr ""
255
 
256
- #: includes/classes/wp-maintenance-mode.php:888
257
  msgid "All fields required."
258
  msgstr "Все поля обязательны."
259
 
260
- #: includes/classes/wp-maintenance-mode.php:900
261
  msgid "Message via contact"
262
  msgstr "Сообщение"
263
 
264
- #: includes/classes/wp-maintenance-mode.php:917
265
  msgid "Your email was sent to the website administrator. Thanks!"
266
  msgstr "Ваше сообщение отправлено администратору сайта. Спасибо!"
267
 
@@ -362,15 +362,15 @@ msgstr ""
362
  msgid "GDPR"
363
  msgstr ""
364
 
365
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
366
  msgid "Status"
367
  msgstr "Статус"
368
 
369
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
370
  msgid "Activated"
371
  msgstr "Включено"
372
 
373
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
374
  msgid "Deactivated"
375
  msgstr "Отключено"
376
 
@@ -478,12 +478,12 @@ msgstr ""
478
  "обслуживания?"
479
 
480
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
481
- #: views/settings.php:621 views/settings.php:694
482
  msgid "Save settings"
483
  msgstr "Сохранить настройки"
484
 
485
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
486
- #: views/settings.php:622 views/settings.php:695
487
  msgid "Reset settings"
488
  msgstr "Сбросить настройки"
489
 
@@ -617,11 +617,11 @@ msgstr "Отображать социальные сети?"
617
  msgid "Links target?"
618
  msgstr "Куда ведут ссылки?"
619
 
620
- #: views/settings.php:328 views/settings.php:665
621
  msgid "New page"
622
  msgstr "Новая страница"
623
 
624
- #: views/settings.php:329 views/settings.php:666
625
  msgid "Same page"
626
  msgstr "Такая же страница"
627
 
@@ -696,133 +696,139 @@ msgid ""
696
  "need to."
697
  msgstr ""
698
 
699
- #: views/settings.php:477
 
 
 
 
 
 
700
  #, fuzzy
701
  msgid "Bot Name"
702
  msgstr "Имя"
703
 
704
- #: views/settings.php:480
705
  msgid "This name will appear when the bot is typing."
706
  msgstr ""
707
 
708
- #: views/settings.php:484
709
  #, fuzzy
710
  msgid "Upload avatar"
711
  msgstr "Загрузить фон"
712
 
713
- #: views/settings.php:488
714
  msgid "A 512 x 512 px will work just fine."
715
  msgstr ""
716
 
717
- #: views/settings.php:494
718
  msgid "Customize Messages"
719
  msgstr ""
720
 
721
- #: views/settings.php:499
722
  msgid "Message 1"
723
  msgstr ""
724
 
725
- #: views/settings.php:507
726
  msgid "Message 2"
727
  msgstr ""
728
 
729
- #: views/settings.php:515
730
  msgid "Message 3"
731
  msgstr ""
732
 
733
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
734
  msgid "Response"
735
  msgstr ""
736
 
737
- #: views/settings.php:527 views/settings.php:589
738
  msgid "Edit the placeholder's text"
739
  msgstr ""
740
 
741
- #: views/settings.php:531
742
  msgid "Message 4"
743
  msgstr ""
744
 
745
- #: views/settings.php:539
746
  msgid "Message 5"
747
  msgstr ""
748
 
749
- #: views/settings.php:547
750
  msgid "Message 6"
751
  msgstr ""
752
 
753
- #: views/settings.php:555
754
  msgid "Message 7"
755
  msgstr ""
756
 
757
- #: views/settings.php:567
758
  msgid "Edit button one"
759
  msgstr ""
760
 
761
- #: views/settings.php:571
762
  msgid "Edit button two"
763
  msgstr ""
764
 
765
- #: views/settings.php:577 views/settings.php:593
766
  msgid "Message 8"
767
  msgstr ""
768
 
769
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
770
  msgid "(click on button one)"
771
  msgstr ""
772
 
773
- #: views/settings.php:593
774
  msgid "(click on button two)"
775
  msgstr ""
776
 
777
- #: views/settings.php:601
778
  msgid "Message 9"
779
  msgstr ""
780
 
781
- #: views/settings.php:609
782
  msgid "Message 10"
783
  msgstr ""
784
 
785
- #: views/settings.php:631
786
  msgid ""
787
  "To make the plugin GDPR compliant, fill in the details and enable this "
788
  "section."
789
  msgstr ""
790
 
791
- #: views/settings.php:632
792
  msgid ""
793
  "Here we added some generic texts that you may want to review, change or "
794
  "remove."
795
  msgstr ""
796
 
797
- #: views/settings.php:644
798
  msgid "Link name"
799
  msgstr ""
800
 
801
- #: views/settings.php:648
802
  msgid "Label the link that will be shown on frontend footer"
803
  msgstr ""
804
 
805
- #: views/settings.php:653
806
  msgid "P. Policy page link"
807
  msgstr ""
808
 
809
- #: views/settings.php:662
810
  msgid "P. Policy link target"
811
  msgstr ""
812
 
813
- #: views/settings.php:668
814
  msgid "Choose how the link will open."
815
  msgstr ""
816
 
817
- #: views/settings.php:673
818
  msgid "Contact form 'tail'"
819
  msgstr ""
820
 
821
- #: views/settings.php:677 views/settings.php:686
822
  msgid "This will be shown together with the acceptance checkbox below the form"
823
  msgstr ""
824
 
825
- #: views/settings.php:682
826
  msgid "Subscribe form 'tail'"
827
  msgstr ""
828
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.2.4\n"
4
+ "POT-Creation-Date: 2019-05-20 10:34+0300\n"
5
+ "PO-Revision-Date: 2019-05-20 10:34+0300\n"
6
  "Last-Translator: Constantine Reeves <affectiosus@gmail.com>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: ru\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
114
  "your privacy policy page."
115
  msgstr ""
116
 
 
117
  #: includes/classes/wp-maintenance-mode.php:102
118
+ #: includes/classes/wp-maintenance-mode.php:103
119
  msgid "Maintenance mode"
120
  msgstr "Режим технического обслуживания"
121
 
122
+ #: includes/classes/wp-maintenance-mode.php:105
123
  msgid ""
124
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
125
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
127
  "<p>В данный момент сайт находится на техническом обслуживании.<br />Приносим "
128
  "извинения за временные неудобства.<br />Спасибо за понимание.</p>"
129
 
130
+ #: includes/classes/wp-maintenance-mode.php:123
131
  msgid "Notify me when it's ready"
132
  msgstr "Сообщить о готовности"
133
 
134
+ #: includes/classes/wp-maintenance-mode.php:148
135
  msgid ""
136
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
137
  "your assistant here."
138
  msgstr ""
139
 
140
+ #: includes/classes/wp-maintenance-mode.php:149
141
  msgid "I have just a few questions."
142
  msgstr ""
143
 
144
+ #: includes/classes/wp-maintenance-mode.php:150
145
  msgid "What is your name?"
146
  msgstr ""
147
 
148
+ #: includes/classes/wp-maintenance-mode.php:151
149
  msgid "Nice to meet you here, {visitor_name}!"
150
  msgstr ""
151
 
152
+ #: includes/classes/wp-maintenance-mode.php:152
153
  msgid "How you can see, our website will be lauched very soon."
154
  msgstr ""
155
 
156
+ #: includes/classes/wp-maintenance-mode.php:153
157
  msgid ""
158
  "I know, you are very excited to see it, but we need a few days to finish it."
159
  msgstr ""
160
 
161
+ #: includes/classes/wp-maintenance-mode.php:154
162
  msgid "Would you like to be first to see it?"
163
  msgstr ""
164
 
165
+ #: includes/classes/wp-maintenance-mode.php:155
166
  msgid ""
167
  "Cool! Please leave your email here and I will send you a message when it's "
168
  "ready."
169
  msgstr ""
170
 
171
+ #: includes/classes/wp-maintenance-mode.php:156
172
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
173
  msgstr ""
174
 
175
+ #: includes/classes/wp-maintenance-mode.php:157
176
  msgid "Got it! Thank you and see you soon here!"
177
  msgstr ""
178
 
179
+ #: includes/classes/wp-maintenance-mode.php:158
180
  msgid "Have a great day!"
181
  msgstr ""
182
 
183
+ #: includes/classes/wp-maintenance-mode.php:161
184
+ #: includes/classes/wp-maintenance-mode.php:650
185
  msgid "Type your name here…"
186
  msgstr ""
187
 
188
+ #: includes/classes/wp-maintenance-mode.php:162
189
  msgid "Tell me more"
190
  msgstr ""
191
 
192
+ #: includes/classes/wp-maintenance-mode.php:163
193
  msgid "Boring"
194
  msgstr ""
195
 
196
+ #: includes/classes/wp-maintenance-mode.php:164
197
+ #: includes/classes/wp-maintenance-mode.php:651
198
  #, fuzzy
199
  msgid "Type your email here…"
200
  msgstr "Введите ваш e-mail адрес"
201
 
202
+ #: includes/classes/wp-maintenance-mode.php:170
203
  msgid "Privacy Policy"
204
  msgstr ""
205
 
206
+ #: includes/classes/wp-maintenance-mode.php:173
207
  msgid ""
208
  "This form collects your name and email so that we can reach you back. Check "
209
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
210
  "protect and manage your submitted data."
211
  msgstr ""
212
 
213
+ #: includes/classes/wp-maintenance-mode.php:174
214
  msgid ""
215
  "This form collects your email so that we can add you to our newsletter list. "
216
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
217
  "we protect and manage your submitted data."
218
  msgstr ""
219
 
220
+ #: includes/classes/wp-maintenance-mode.php:301
221
  #, php-format
222
  msgid ""
223
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
226
  "Плагин технического обслуживания был перезапущен. Вам НЕОБХОДИМО "
227
  "пересмотреть <a href=\"%s\">настройки</a>."
228
 
229
+ #: includes/classes/wp-maintenance-mode.php:547
230
+ #: includes/classes/wp-maintenance-mode.php:561
231
  msgid "Maintenance Mode"
232
  msgstr "Режим технического обслуживания"
233
 
234
+ #: includes/classes/wp-maintenance-mode.php:647
235
  msgid "Please type in your name."
236
  msgstr ""
237
 
238
+ #: includes/classes/wp-maintenance-mode.php:648
239
  #, fuzzy
240
  msgid "Please type in a valid email address."
241
  msgstr "Введите корректный e-mail адрес."
242
 
243
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
244
  msgid "Send"
245
  msgstr "Отправить"
246
 
247
+ #: includes/classes/wp-maintenance-mode.php:865
248
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
249
  msgid "Please enter a valid email address."
250
  msgstr "Введите корректный e-mail адрес."
251
 
252
+ #: includes/classes/wp-maintenance-mode.php:877
253
  msgid "You successfully subscribed. Thanks!"
254
  msgstr ""
255
 
256
+ #: includes/classes/wp-maintenance-mode.php:895
257
  msgid "All fields required."
258
  msgstr "Все поля обязательны."
259
 
260
+ #: includes/classes/wp-maintenance-mode.php:907
261
  msgid "Message via contact"
262
  msgstr "Сообщение"
263
 
264
+ #: includes/classes/wp-maintenance-mode.php:924
265
  msgid "Your email was sent to the website administrator. Thanks!"
266
  msgstr "Ваше сообщение отправлено администратору сайта. Спасибо!"
267
 
362
  msgid "GDPR"
363
  msgstr ""
364
 
365
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
366
  msgid "Status"
367
  msgstr "Статус"
368
 
369
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
370
  msgid "Activated"
371
  msgstr "Включено"
372
 
373
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
374
  msgid "Deactivated"
375
  msgstr "Отключено"
376
 
478
  "обслуживания?"
479
 
480
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
481
+ #: views/settings.php:622 views/settings.php:695
482
  msgid "Save settings"
483
  msgstr "Сохранить настройки"
484
 
485
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
486
+ #: views/settings.php:623 views/settings.php:696
487
  msgid "Reset settings"
488
  msgstr "Сбросить настройки"
489
 
617
  msgid "Links target?"
618
  msgstr "Куда ведут ссылки?"
619
 
620
+ #: views/settings.php:328 views/settings.php:666
621
  msgid "New page"
622
  msgstr "Новая страница"
623
 
624
+ #: views/settings.php:329 views/settings.php:667
625
  msgid "Same page"
626
  msgstr "Такая же страница"
627
 
696
  "need to."
697
  msgstr ""
698
 
699
+ #: views/settings.php:465
700
+ msgid ""
701
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
702
+ "&raquo; Export as CSV."
703
+ msgstr ""
704
+
705
+ #: views/settings.php:478
706
  #, fuzzy
707
  msgid "Bot Name"
708
  msgstr "Имя"
709
 
710
+ #: views/settings.php:481
711
  msgid "This name will appear when the bot is typing."
712
  msgstr ""
713
 
714
+ #: views/settings.php:485
715
  #, fuzzy
716
  msgid "Upload avatar"
717
  msgstr "Загрузить фон"
718
 
719
+ #: views/settings.php:489
720
  msgid "A 512 x 512 px will work just fine."
721
  msgstr ""
722
 
723
+ #: views/settings.php:495
724
  msgid "Customize Messages"
725
  msgstr ""
726
 
727
+ #: views/settings.php:500
728
  msgid "Message 1"
729
  msgstr ""
730
 
731
+ #: views/settings.php:508
732
  msgid "Message 2"
733
  msgstr ""
734
 
735
+ #: views/settings.php:516
736
  msgid "Message 3"
737
  msgstr ""
738
 
739
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
740
  msgid "Response"
741
  msgstr ""
742
 
743
+ #: views/settings.php:528 views/settings.php:590
744
  msgid "Edit the placeholder's text"
745
  msgstr ""
746
 
747
+ #: views/settings.php:532
748
  msgid "Message 4"
749
  msgstr ""
750
 
751
+ #: views/settings.php:540
752
  msgid "Message 5"
753
  msgstr ""
754
 
755
+ #: views/settings.php:548
756
  msgid "Message 6"
757
  msgstr ""
758
 
759
+ #: views/settings.php:556
760
  msgid "Message 7"
761
  msgstr ""
762
 
763
+ #: views/settings.php:568
764
  msgid "Edit button one"
765
  msgstr ""
766
 
767
+ #: views/settings.php:572
768
  msgid "Edit button two"
769
  msgstr ""
770
 
771
+ #: views/settings.php:578 views/settings.php:594
772
  msgid "Message 8"
773
  msgstr ""
774
 
775
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
776
  msgid "(click on button one)"
777
  msgstr ""
778
 
779
+ #: views/settings.php:594
780
  msgid "(click on button two)"
781
  msgstr ""
782
 
783
+ #: views/settings.php:602
784
  msgid "Message 9"
785
  msgstr ""
786
 
787
+ #: views/settings.php:610
788
  msgid "Message 10"
789
  msgstr ""
790
 
791
+ #: views/settings.php:632
792
  msgid ""
793
  "To make the plugin GDPR compliant, fill in the details and enable this "
794
  "section."
795
  msgstr ""
796
 
797
+ #: views/settings.php:633
798
  msgid ""
799
  "Here we added some generic texts that you may want to review, change or "
800
  "remove."
801
  msgstr ""
802
 
803
+ #: views/settings.php:645
804
  msgid "Link name"
805
  msgstr ""
806
 
807
+ #: views/settings.php:649
808
  msgid "Label the link that will be shown on frontend footer"
809
  msgstr ""
810
 
811
+ #: views/settings.php:654
812
  msgid "P. Policy page link"
813
  msgstr ""
814
 
815
+ #: views/settings.php:663
816
  msgid "P. Policy link target"
817
  msgstr ""
818
 
819
+ #: views/settings.php:669
820
  msgid "Choose how the link will open."
821
  msgstr ""
822
 
823
+ #: views/settings.php:674
824
  msgid "Contact form 'tail'"
825
  msgstr ""
826
 
827
+ #: views/settings.php:678 views/settings.php:687
828
  msgid "This will be shown together with the acceptance checkbox below the form"
829
  msgstr ""
830
 
831
+ #: views/settings.php:683
832
  msgid "Subscribe form 'tail'"
833
  msgstr ""
834
 
languages/wp-maintenance-mode-sv_SE.mo CHANGED
Binary file
languages/wp-maintenance-mode-sv_SE.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:18+0200\n"
5
- "PO-Revision-Date: 2018-11-26 19:18+0200\n"
6
  "Last-Translator: Andréas Lundgren <adevade@gmail.com>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: sv_SE\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 "Underhållsläge"
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>Ledsen för besväret.<br />Vår hemsida ligger för närvarande i "
126
  "underhållsläge.<br />Tack för att ni förstår.</p>"
127
 
128
- #: includes/classes/wp-maintenance-mode.php:122
129
  msgid "Notify me when it's ready"
130
  msgstr "Meddela mig när sidan är färdig"
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 "Fyll i din e-postadress"
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
  "Tillägget WP Underhållsläge återlanserades nyligen med massa nya <a href=\"%s"
225
  "\">inställningar</a>."
226
 
227
- #: includes/classes/wp-maintenance-mode.php:542
228
- #: includes/classes/wp-maintenance-mode.php:556
229
  msgid "Maintenance Mode"
230
  msgstr "Underhållsläge"
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 "Vänligen fyll i en giltig e-postadress. "
240
 
241
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
242
  msgid "Send"
243
  msgstr "Skicka"
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 "Vänligen fyll i en giltig e-postadress. "
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 "Vänligen fyll i alla fält."
257
 
258
- #: includes/classes/wp-maintenance-mode.php:900
259
  msgid "Message via contact"
260
  msgstr "Meddelande från underhållsläget"
261
 
262
- #: includes/classes/wp-maintenance-mode.php:917
263
  msgid "Your email was sent to the website administrator. Thanks!"
264
  msgstr "Ditt meddelande skickades till hemsidans ägare. Tack! "
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 "Status"
366
 
367
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
368
  msgid "Activated"
369
  msgstr "Aktiverad"
370
 
371
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
372
  msgid "Deactivated"
373
  msgstr "Avaktiverad"
374
 
@@ -471,12 +471,12 @@ msgid ""
471
  msgstr ""
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 "Spara"
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 "Återställ inställningar"
482
 
@@ -609,11 +609,11 @@ msgstr "Visa sociala nätverk?"
609
  msgid "Links target?"
610
  msgstr ""
611
 
612
- #: views/settings.php:328 views/settings.php:665
613
  msgid "New page"
614
  msgstr ""
615
 
616
- #: views/settings.php:329 views/settings.php:666
617
  msgid "Same page"
618
  msgstr ""
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 "Namn"
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 "Ladda upp bakgrund"
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:34+0300\n"
5
+ "PO-Revision-Date: 2019-05-20 10:34+0300\n"
6
  "Last-Translator: Andréas Lundgren <adevade@gmail.com>\n"
7
  "Language-Team: Designmodo <info@designmodo.com>\n"
8
  "Language: sv_SE\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 "Underhållsläge"
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>Ledsen för besväret.<br />Vår hemsida ligger för närvarande i "
126
  "underhållsläge.<br />Tack för att ni förstår.</p>"
127
 
128
+ #: includes/classes/wp-maintenance-mode.php:123
129
  msgid "Notify me when it's ready"
130
  msgstr "Meddela mig när sidan är färdig"
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 "Fyll i din e-postadress"
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
  "Tillägget WP Underhållsläge återlanserades nyligen med massa nya <a href=\"%s"
225
  "\">inställningar</a>."
226
 
227
+ #: includes/classes/wp-maintenance-mode.php:547
228
+ #: includes/classes/wp-maintenance-mode.php:561
229
  msgid "Maintenance Mode"
230
  msgstr "Underhållsläge"
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 "Vänligen fyll i en giltig e-postadress. "
240
 
241
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
242
  msgid "Send"
243
  msgstr "Skicka"
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 "Vänligen fyll i en giltig e-postadress. "
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 "Vänligen fyll i alla fält."
257
 
258
+ #: includes/classes/wp-maintenance-mode.php:907
259
  msgid "Message via contact"
260
  msgstr "Meddelande från underhållsläget"
261
 
262
+ #: includes/classes/wp-maintenance-mode.php:924
263
  msgid "Your email was sent to the website administrator. Thanks!"
264
  msgstr "Ditt meddelande skickades till hemsidans ägare. Tack! "
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 "Status"
366
 
367
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
368
  msgid "Activated"
369
  msgstr "Aktiverad"
370
 
371
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
372
  msgid "Deactivated"
373
  msgstr "Avaktiverad"
374
 
471
  msgstr ""
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 "Spara"
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 "Återställ inställningar"
482
 
609
  msgid "Links target?"
610
  msgstr ""
611
 
612
+ #: views/settings.php:328 views/settings.php:666
613
  msgid "New page"
614
  msgstr ""
615
 
616
+ #: views/settings.php:329 views/settings.php:667
617
  msgid "Same page"
618
  msgstr ""
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 "Namn"
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 "Ladda upp bakgrund"
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-uk_UA.mo CHANGED
Binary file
languages/wp-maintenance-mode-uk_UA.po CHANGED
@@ -1,16 +1,16 @@
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:19+0200\n"
6
- "PO-Revision-Date: 2018-11-26 19:19+0200\n"
7
  "Last-Translator: Serhii Matrunchyk <sergiy.matrunchyk@gmail.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.8\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n"
16
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
@@ -117,12 +117,12 @@ msgid ""
117
  "your privacy policy page."
118
  msgstr ""
119
 
120
- #: includes/classes/wp-maintenance-mode.php:101
121
  #: includes/classes/wp-maintenance-mode.php:102
 
122
  msgid "Maintenance mode"
123
  msgstr "Режим обслуговування"
124
 
125
- #: includes/classes/wp-maintenance-mode.php:104
126
  msgid ""
127
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
128
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
@@ -130,96 +130,96 @@ msgstr ""
130
  "<p>Вибачте за незручності.<br />Наш сайт на разі перебуває в режимі "
131
  "обслуговування.<br />Дякуємо за розуміння.</p>"
132
 
133
- #: includes/classes/wp-maintenance-mode.php:122
134
  msgid "Notify me when it's ready"
135
  msgstr "Сповістити мене, коли все буде готово"
136
 
137
- #: includes/classes/wp-maintenance-mode.php:147
138
  msgid ""
139
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
140
  "your assistant here."
141
  msgstr ""
142
 
143
- #: includes/classes/wp-maintenance-mode.php:148
144
  msgid "I have just a few questions."
145
  msgstr ""
146
 
147
- #: includes/classes/wp-maintenance-mode.php:149
148
  msgid "What is your name?"
149
  msgstr ""
150
 
151
- #: includes/classes/wp-maintenance-mode.php:150
152
  msgid "Nice to meet you here, {visitor_name}!"
153
  msgstr ""
154
 
155
- #: includes/classes/wp-maintenance-mode.php:151
156
  msgid "How you can see, our website will be lauched very soon."
157
  msgstr ""
158
 
159
- #: includes/classes/wp-maintenance-mode.php:152
160
  msgid ""
161
  "I know, you are very excited to see it, but we need a few days to finish it."
162
  msgstr ""
163
 
164
- #: includes/classes/wp-maintenance-mode.php:153
165
  msgid "Would you like to be first to see it?"
166
  msgstr ""
167
 
168
- #: includes/classes/wp-maintenance-mode.php:154
169
  msgid ""
170
  "Cool! Please leave your email here and I will send you a message when it's "
171
  "ready."
172
  msgstr ""
173
 
174
- #: includes/classes/wp-maintenance-mode.php:155
175
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
176
  msgstr ""
177
 
178
- #: includes/classes/wp-maintenance-mode.php:156
179
  msgid "Got it! Thank you and see you soon here!"
180
  msgstr ""
181
 
182
- #: includes/classes/wp-maintenance-mode.php:157
183
  msgid "Have a great day!"
184
  msgstr ""
185
 
186
- #: includes/classes/wp-maintenance-mode.php:160
187
- #: includes/classes/wp-maintenance-mode.php:645
188
  msgid "Type your name here…"
189
  msgstr ""
190
 
191
- #: includes/classes/wp-maintenance-mode.php:161
192
  msgid "Tell me more"
193
  msgstr ""
194
 
195
- #: includes/classes/wp-maintenance-mode.php:162
196
  msgid "Boring"
197
  msgstr ""
198
 
199
- #: includes/classes/wp-maintenance-mode.php:163
200
- #: includes/classes/wp-maintenance-mode.php:646
201
  msgid "Type your email here…"
202
  msgstr ""
203
 
204
- #: includes/classes/wp-maintenance-mode.php:169
205
  msgid "Privacy Policy"
206
  msgstr ""
207
 
208
- #: includes/classes/wp-maintenance-mode.php:172
209
  msgid ""
210
  "This form collects your name and email so that we can reach you back. Check "
211
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
212
  "protect and manage your submitted data."
213
  msgstr ""
214
 
215
- #: includes/classes/wp-maintenance-mode.php:173
216
  msgid ""
217
  "This form collects your email so that we can add you to our newsletter list. "
218
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
219
  "we protect and manage your submitted data."
220
  msgstr ""
221
 
222
- #: includes/classes/wp-maintenance-mode.php:296
223
  #, php-format
224
  msgid ""
225
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
@@ -228,42 +228,42 @@ msgstr ""
228
  "Плгін Режим обслуговування WP було перезавантажено, тому ви ПОВИННІ "
229
  "переглянути його <a href=\"%s\">налаштування</a>."
230
 
231
- #: includes/classes/wp-maintenance-mode.php:542
232
- #: includes/classes/wp-maintenance-mode.php:556
233
  msgid "Maintenance Mode"
234
  msgstr "Режим обслуговування"
235
 
236
- #: includes/classes/wp-maintenance-mode.php:642
237
  msgid "Please type in your name."
238
  msgstr ""
239
 
240
- #: includes/classes/wp-maintenance-mode.php:643
241
  #, fuzzy
242
  msgid "Please type in a valid email address."
243
  msgstr "Будь ласка, вкажіть правильну адресу email."
244
 
245
- #: includes/classes/wp-maintenance-mode.php:647 views/maintenance.php:161
246
  msgid "Send"
247
  msgstr "Надіслати"
248
 
249
- #: includes/classes/wp-maintenance-mode.php:858
250
- #: includes/classes/wp-maintenance-mode.php:892 views/maintenance.php:140
251
  msgid "Please enter a valid email address."
252
  msgstr "Будь ласка, вкажіть правильну адресу email."
253
 
254
- #: includes/classes/wp-maintenance-mode.php:870
255
  msgid "You successfully subscribed. Thanks!"
256
  msgstr "Дякуємо, ми сповістимо Вас відразу!"
257
 
258
- #: includes/classes/wp-maintenance-mode.php:888
259
  msgid "All fields required."
260
  msgstr "Всі поля необхідні для заповнення."
261
 
262
- #: includes/classes/wp-maintenance-mode.php:900
263
  msgid "Message via contact"
264
  msgstr "Повідомити через форму контакту"
265
 
266
- #: includes/classes/wp-maintenance-mode.php:917
267
  msgid "Your email was sent to the website administrator. Thanks!"
268
  msgstr "Ми отримали Ваше повідомлення, дякуємо!"
269
 
@@ -368,15 +368,15 @@ msgstr ""
368
  msgid "GDPR"
369
  msgstr ""
370
 
371
- #: views/settings.php:26 views/settings.php:469 views/settings.php:636
372
  msgid "Status"
373
  msgstr "Статус"
374
 
375
- #: views/settings.php:28 views/settings.php:472 views/settings.php:638
376
  msgid "Activated"
377
  msgstr "Активовано"
378
 
379
- #: views/settings.php:29 views/settings.php:473 views/settings.php:639
380
  msgid "Deactivated"
381
  msgstr "Деактивовано"
382
 
@@ -486,12 +486,12 @@ msgid ""
486
  msgstr "Чи бажаєте додати посилання на адміністративну частину?"
487
 
488
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
489
- #: views/settings.php:621 views/settings.php:694
490
  msgid "Save settings"
491
  msgstr "Зберегти налаштування"
492
 
493
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
494
- #: views/settings.php:622 views/settings.php:695
495
  msgid "Reset settings"
496
  msgstr "Скинути налаштування"
497
 
@@ -625,11 +625,11 @@ msgstr "Показувати соціальні мережі?"
625
  msgid "Links target?"
626
  msgstr "Посилання відкривати"
627
 
628
- #: views/settings.php:328 views/settings.php:665
629
  msgid "New page"
630
  msgstr "В новому вікні"
631
 
632
- #: views/settings.php:329 views/settings.php:666
633
  msgid "Same page"
634
  msgstr "В тому ж вікні"
635
 
@@ -706,133 +706,139 @@ msgid ""
706
  "need to."
707
  msgstr ""
708
 
709
- #: views/settings.php:477
 
 
 
 
 
 
710
  #, fuzzy
711
  msgid "Bot Name"
712
  msgstr "Ім'я"
713
 
714
- #: views/settings.php:480
715
  msgid "This name will appear when the bot is typing."
716
  msgstr ""
717
 
718
- #: views/settings.php:484
719
  #, fuzzy
720
  msgid "Upload avatar"
721
  msgstr "Обрати фон"
722
 
723
- #: views/settings.php:488
724
  msgid "A 512 x 512 px will work just fine."
725
  msgstr ""
726
 
727
- #: views/settings.php:494
728
  msgid "Customize Messages"
729
  msgstr ""
730
 
731
- #: views/settings.php:499
732
  msgid "Message 1"
733
  msgstr ""
734
 
735
- #: views/settings.php:507
736
  msgid "Message 2"
737
  msgstr ""
738
 
739
- #: views/settings.php:515
740
  msgid "Message 3"
741
  msgstr ""
742
 
743
- #: views/settings.php:523 views/settings.php:563 views/settings.php:585
744
  msgid "Response"
745
  msgstr ""
746
 
747
- #: views/settings.php:527 views/settings.php:589
748
  msgid "Edit the placeholder's text"
749
  msgstr ""
750
 
751
- #: views/settings.php:531
752
  msgid "Message 4"
753
  msgstr ""
754
 
755
- #: views/settings.php:539
756
  msgid "Message 5"
757
  msgstr ""
758
 
759
- #: views/settings.php:547
760
  msgid "Message 6"
761
  msgstr ""
762
 
763
- #: views/settings.php:555
764
  msgid "Message 7"
765
  msgstr ""
766
 
767
- #: views/settings.php:567
768
  msgid "Edit button one"
769
  msgstr ""
770
 
771
- #: views/settings.php:571
772
  msgid "Edit button two"
773
  msgstr ""
774
 
775
- #: views/settings.php:577 views/settings.php:593
776
  msgid "Message 8"
777
  msgstr ""
778
 
779
- #: views/settings.php:577 views/settings.php:601 views/settings.php:609
780
  msgid "(click on button one)"
781
  msgstr ""
782
 
783
- #: views/settings.php:593
784
  msgid "(click on button two)"
785
  msgstr ""
786
 
787
- #: views/settings.php:601
788
  msgid "Message 9"
789
  msgstr ""
790
 
791
- #: views/settings.php:609
792
  msgid "Message 10"
793
  msgstr ""
794
 
795
- #: views/settings.php:631
796
  msgid ""
797
  "To make the plugin GDPR compliant, fill in the details and enable this "
798
  "section."
799
  msgstr ""
800
 
801
- #: views/settings.php:632
802
  msgid ""
803
  "Here we added some generic texts that you may want to review, change or "
804
  "remove."
805
  msgstr ""
806
 
807
- #: views/settings.php:644
808
  msgid "Link name"
809
  msgstr ""
810
 
811
- #: views/settings.php:648
812
  msgid "Label the link that will be shown on frontend footer"
813
  msgstr ""
814
 
815
- #: views/settings.php:653
816
  msgid "P. Policy page link"
817
  msgstr ""
818
 
819
- #: views/settings.php:662
820
  msgid "P. Policy link target"
821
  msgstr ""
822
 
823
- #: views/settings.php:668
824
  msgid "Choose how the link will open."
825
  msgstr ""
826
 
827
- #: views/settings.php:673
828
  msgid "Contact form 'tail'"
829
  msgstr ""
830
 
831
- #: views/settings.php:677 views/settings.php:686
832
  msgid "This will be shown together with the acceptance checkbox below the form"
833
  msgstr ""
834
 
835
- #: views/settings.php:682
836
  msgid "Subscribe form 'tail'"
837
  msgstr ""
838
 
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:35+0300\n"
6
+ "PO-Revision-Date: 2019-05-20 10:35+0300\n"
7
  "Last-Translator: Serhii Matrunchyk <sergiy.matrunchyk@gmail.com>\n"
8
  "Language-Team: Ukrainian\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.2.2\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n"
16
  "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
117
  "your privacy policy page."
118
  msgstr ""
119
 
 
120
  #: includes/classes/wp-maintenance-mode.php:102
121
+ #: includes/classes/wp-maintenance-mode.php:103
122
  msgid "Maintenance mode"
123
  msgstr "Режим обслуговування"
124
 
125
+ #: includes/classes/wp-maintenance-mode.php:105
126
  msgid ""
127
  "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
128
  "scheduled maintenance.<br />Thank you for your understanding.</p>"
130
  "<p>Вибачте за незручності.<br />Наш сайт на разі перебуває в режимі "
131
  "обслуговування.<br />Дякуємо за розуміння.</p>"
132
 
133
+ #: includes/classes/wp-maintenance-mode.php:123
134
  msgid "Notify me when it's ready"
135
  msgstr "Сповістити мене, коли все буде готово"
136
 
137
+ #: includes/classes/wp-maintenance-mode.php:148
138
  msgid ""
139
  "Hey! My name is {bot_name}, I'm the owner of this website and I'd like to be "
140
  "your assistant here."
141
  msgstr ""
142
 
143
+ #: includes/classes/wp-maintenance-mode.php:149
144
  msgid "I have just a few questions."
145
  msgstr ""
146
 
147
+ #: includes/classes/wp-maintenance-mode.php:150
148
  msgid "What is your name?"
149
  msgstr ""
150
 
151
+ #: includes/classes/wp-maintenance-mode.php:151
152
  msgid "Nice to meet you here, {visitor_name}!"
153
  msgstr ""
154
 
155
+ #: includes/classes/wp-maintenance-mode.php:152
156
  msgid "How you can see, our website will be lauched very soon."
157
  msgstr ""
158
 
159
+ #: includes/classes/wp-maintenance-mode.php:153
160
  msgid ""
161
  "I know, you are very excited to see it, but we need a few days to finish it."
162
  msgstr ""
163
 
164
+ #: includes/classes/wp-maintenance-mode.php:154
165
  msgid "Would you like to be first to see it?"
166
  msgstr ""
167
 
168
+ #: includes/classes/wp-maintenance-mode.php:155
169
  msgid ""
170
  "Cool! Please leave your email here and I will send you a message when it's "
171
  "ready."
172
  msgstr ""
173
 
174
+ #: includes/classes/wp-maintenance-mode.php:156
175
  msgid "Sad to hear that, {visitor_name} :( See you next time…"
176
  msgstr ""
177
 
178
+ #: includes/classes/wp-maintenance-mode.php:157
179
  msgid "Got it! Thank you and see you soon here!"
180
  msgstr ""
181
 
182
+ #: includes/classes/wp-maintenance-mode.php:158
183
  msgid "Have a great day!"
184
  msgstr ""
185
 
186
+ #: includes/classes/wp-maintenance-mode.php:161
187
+ #: includes/classes/wp-maintenance-mode.php:650
188
  msgid "Type your name here…"
189
  msgstr ""
190
 
191
+ #: includes/classes/wp-maintenance-mode.php:162
192
  msgid "Tell me more"
193
  msgstr ""
194
 
195
+ #: includes/classes/wp-maintenance-mode.php:163
196
  msgid "Boring"
197
  msgstr ""
198
 
199
+ #: includes/classes/wp-maintenance-mode.php:164
200
+ #: includes/classes/wp-maintenance-mode.php:651
201
  msgid "Type your email here…"
202
  msgstr ""
203
 
204
+ #: includes/classes/wp-maintenance-mode.php:170
205
  msgid "Privacy Policy"
206
  msgstr ""
207
 
208
+ #: includes/classes/wp-maintenance-mode.php:173
209
  msgid ""
210
  "This form collects your name and email so that we can reach you back. Check "
211
  "out our <a href=\"#\">Privacy Policy</a> page to fully understand how we "
212
  "protect and manage your submitted data."
213
  msgstr ""
214
 
215
+ #: includes/classes/wp-maintenance-mode.php:174
216
  msgid ""
217
  "This form collects your email so that we can add you to our newsletter list. "
218
  "Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how "
219
  "we protect and manage your submitted data."
220
  msgstr ""
221
 
222
+ #: includes/classes/wp-maintenance-mode.php:301
223
  #, php-format
224
  msgid ""
225
  "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
228
  "Плгін Режим обслуговування WP було перезавантажено, тому ви ПОВИННІ "
229
  "переглянути його <a href=\"%s\">налаштування</a>."
230
 
231
+ #: includes/classes/wp-maintenance-mode.php:547
232
+ #: includes/classes/wp-maintenance-mode.php:561
233
  msgid "Maintenance Mode"
234
  msgstr "Режим обслуговування"
235
 
236
+ #: includes/classes/wp-maintenance-mode.php:647
237
  msgid "Please type in your name."
238
  msgstr ""
239
 
240
+ #: includes/classes/wp-maintenance-mode.php:648
241
  #, fuzzy
242
  msgid "Please type in a valid email address."
243
  msgstr "Будь ласка, вкажіть правильну адресу email."
244
 
245
+ #: includes/classes/wp-maintenance-mode.php:652 views/maintenance.php:161
246
  msgid "Send"
247
  msgstr "Надіслати"
248
 
249
+ #: includes/classes/wp-maintenance-mode.php:865
250
+ #: includes/classes/wp-maintenance-mode.php:899 views/maintenance.php:140
251
  msgid "Please enter a valid email address."
252
  msgstr "Будь ласка, вкажіть правильну адресу email."
253
 
254
+ #: includes/classes/wp-maintenance-mode.php:877
255
  msgid "You successfully subscribed. Thanks!"
256
  msgstr "Дякуємо, ми сповістимо Вас відразу!"
257
 
258
+ #: includes/classes/wp-maintenance-mode.php:895
259
  msgid "All fields required."
260
  msgstr "Всі поля необхідні для заповнення."
261
 
262
+ #: includes/classes/wp-maintenance-mode.php:907
263
  msgid "Message via contact"
264
  msgstr "Повідомити через форму контакту"
265
 
266
+ #: includes/classes/wp-maintenance-mode.php:924
267
  msgid "Your email was sent to the website administrator. Thanks!"
268
  msgstr "Ми отримали Ваше повідомлення, дякуємо!"
269
 
368
  msgid "GDPR"
369
  msgstr ""
370
 
371
+ #: views/settings.php:26 views/settings.php:470 views/settings.php:637
372
  msgid "Status"
373
  msgstr "Статус"
374
 
375
+ #: views/settings.php:28 views/settings.php:473 views/settings.php:639
376
  msgid "Activated"
377
  msgstr "Активовано"
378
 
379
+ #: views/settings.php:29 views/settings.php:474 views/settings.php:640
380
  msgid "Deactivated"
381
  msgstr "Деактивовано"
382
 
486
  msgstr "Чи бажаєте додати посилання на адміністративну частину?"
487
 
488
  #: views/settings.php:127 views/settings.php:231 views/settings.php:452
489
+ #: views/settings.php:622 views/settings.php:695
490
  msgid "Save settings"
491
  msgstr "Зберегти налаштування"
492
 
493
  #: views/settings.php:128 views/settings.php:232 views/settings.php:453
494
+ #: views/settings.php:623 views/settings.php:696
495
  msgid "Reset settings"
496
  msgstr "Скинути налаштування"
497
 
625
  msgid "Links target?"
626
  msgstr "Посилання відкривати"
627
 
628
+ #: views/settings.php:328 views/settings.php:666
629
  msgid "New page"
630
  msgstr "В новому вікні"
631
 
632
+ #: views/settings.php:329 views/settings.php:667
633
  msgid "Same page"
634
  msgstr "В тому ж вікні"
635
 
706
  "need to."
707
  msgstr ""
708
 
709
+ #: views/settings.php:465
710
+ msgid ""
711
+ "If you want to see the list of subscribers, go to Modules &raquo; Subscribe "
712
+ "&raquo; Export as CSV."
713
+ msgstr ""
714
+
715
+ #: views/settings.php:478
716
  #, fuzzy
717
  msgid "Bot Name"
718
  msgstr "Ім'я"
719
 
720
+ #: views/settings.php:481
721
  msgid "This name will appear when the bot is typing."
722
  msgstr ""
723
 
724
+ #: views/settings.php:485
725
  #, fuzzy
726
  msgid "Upload avatar"
727
  msgstr "Обрати фон"
728
 
729
+ #: views/settings.php:489
730
  msgid "A 512 x 512 px will work just fine."
731
  msgstr ""
732
 
733
+ #: views/settings.php:495
734
  msgid "Customize Messages"
735
  msgstr ""
736
 
737
+ #: views/settings.php:500
738
  msgid "Message 1"
739
  msgstr ""
740
 
741
+ #: views/settings.php:508
742
  msgid "Message 2"
743
  msgstr ""
744
 
745
+ #: views/settings.php:516
746
  msgid "Message 3"
747
  msgstr ""
748
 
749
+ #: views/settings.php:524 views/settings.php:564 views/settings.php:586
750
  msgid "Response"
751
  msgstr ""
752
 
753
+ #: views/settings.php:528 views/settings.php:590
754
  msgid "Edit the placeholder's text"
755
  msgstr ""
756
 
757
+ #: views/settings.php:532
758
  msgid "Message 4"
759
  msgstr ""
760
 
761
+ #: views/settings.php:540
762
  msgid "Message 5"
763
  msgstr ""
764
 
765
+ #: views/settings.php:548
766
  msgid "Message 6"
767
  msgstr ""
768
 
769
+ #: views/settings.php:556
770
  msgid "Message 7"
771
  msgstr ""
772
 
773
+ #: views/settings.php:568
774
  msgid "Edit button one"
775
  msgstr ""
776
 
777
+ #: views/settings.php:572
778
  msgid "Edit button two"
779
  msgstr ""
780
 
781
+ #: views/settings.php:578 views/settings.php:594
782
  msgid "Message 8"
783
  msgstr ""
784
 
785
+ #: views/settings.php:578 views/settings.php:602 views/settings.php:610
786
  msgid "(click on button one)"
787
  msgstr ""
788
 
789
+ #: views/settings.php:594
790
  msgid "(click on button two)"
791
  msgstr ""
792
 
793
+ #: views/settings.php:602
794
  msgid "Message 9"
795
  msgstr ""
796
 
797
+ #: views/settings.php:610
798
  msgid "Message 10"
799
  msgstr ""
800
 
801
+ #: views/settings.php:632
802
  msgid ""
803
  "To make the plugin GDPR compliant, fill in the details and enable this "
804
  "section."
805
  msgstr ""
806
 
807
+ #: views/settings.php:633
808
  msgid ""
809
  "Here we added some generic texts that you may want to review, change or "
810
  "remove."
811
  msgstr ""
812
 
813
+ #: views/settings.php:645
814
  msgid "Link name"
815
  msgstr ""
816
 
817
+ #: views/settings.php:649
818
  msgid "Label the link that will be shown on frontend footer"
819
  msgstr ""
820
 
821
+ #: views/settings.php:654
822
  msgid "P. Policy page link"
823
  msgstr ""
824
 
825
+ #: views/settings.php:663
826
  msgid "P. Policy link target"
827
  msgstr ""
828
 
829
+ #: views/settings.php:669
830
  msgid "Choose how the link will open."
831
  msgstr ""
832
 
833
+ #: views/settings.php:674
834
  msgid "Contact form 'tail'"
835
  msgstr ""
836
 
837
+ #: views/settings.php:678 views/settings.php:687
838
  msgid "This will be shown together with the acceptance checkbox below the form"
839
  msgstr ""
840
 
841
+ #: views/settings.php:683
842
  msgid "Subscribe form 'tail'"
843
  msgstr ""
844
 
readme.txt CHANGED
@@ -6,8 +6,8 @@ Author: Designmodo
6
  Author URI: https://designmodo.com/
7
  Tags: maintenance mode, admin, administration, unavailable, coming soon, multisite, landing page, under construction, contact form, subscribe, countdown
8
  Requires at least: 3.5
9
- Tested up to: 5.1.0
10
- Stable tag: 2.2.3
11
  Requires PHP: 5.6
12
  License: GPL-2.0+
13
 
@@ -77,6 +77,12 @@ If you change your login url, please add the new slug (url: http://domain.com/ne
77
 
78
  == Changelog ==
79
 
 
 
 
 
 
 
80
  = 2.2.3 (20/02/2019) =
81
  * bump "Tested up to" version to 5.1.0
82
  * replace "wpmu_new_blog" action with "wp_initialize_site" action for WP 5.1.0 users because the first one is deprecated in the new version
6
  Author URI: https://designmodo.com/
7
  Tags: maintenance mode, admin, administration, unavailable, coming soon, multisite, landing page, under construction, contact form, subscribe, countdown
8
  Requires at least: 3.5
9
+ Tested up to: 5.2.0
10
+ Stable tag: 2.2.4
11
  Requires PHP: 5.6
12
  License: GPL-2.0+
13
 
77
 
78
  == Changelog ==
79
 
80
+ = 2.2.4 (20/05/2019) =
81
+ * bump "Tested up to" to 5.2.0
82
+ * fix typo in Italian translation (it_IT)
83
+ * Bot: add a note about how you can export the list of subscribers [#195](https://github.com/Designmodocom/WP-Maintenance-Mode/issues/195)
84
+ * Bot: add client-side sanitization to the input fields [#176](https://github.com/Designmodocom/WP-Maintenance-Mode/issues/176)
85
+
86
  = 2.2.3 (20/02/2019) =
87
  * bump "Tested up to" version to 5.1.0
88
  * replace "wpmu_new_blog" action with "wp_initialize_site" action for WP 5.1.0 users because the first one is deprecated in the new version
views/settings.php CHANGED
@@ -462,6 +462,7 @@
462
  <h4><?php _e("Setup the conversation steps to capture more subscribers with this friendly way of asking email addresess.", $this->plugin_slug) ?></h4>
463
  <p><?php _e("You may also want to use these wildcards: {bot_name} and {visitor_name} to make the conversation even more realistic.", $this->plugin_slug) ?></p>
464
  <p><?php _e("It is also ok if you don't fill in all the conversation steps if you don't need to.", $this->plugin_slug) ?></p>
 
465
  </td>
466
  </tr>
467
  <tr valign="top">
462
  <h4><?php _e("Setup the conversation steps to capture more subscribers with this friendly way of asking email addresess.", $this->plugin_slug) ?></h4>
463
  <p><?php _e("You may also want to use these wildcards: {bot_name} and {visitor_name} to make the conversation even more realistic.", $this->plugin_slug) ?></p>
464
  <p><?php _e("It is also ok if you don't fill in all the conversation steps if you don't need to.", $this->plugin_slug) ?></p>
465
+ <p><?php _e("If you want to see the list of subscribers, go to Modules &raquo; Subscribe &raquo; Export as CSV.", $this->plugin_slug); ?></p>
466
  </td>
467
  </tr>
468
  <tr valign="top">
wp-maintenance-mode.php CHANGED
@@ -6,7 +6,7 @@
6
  * Plugin Name: WP Maintenance Mode
7
  * Plugin URI: https://designmodo.com/
8
  * Description: Adds a splash page to your site that lets visitors know your site is down for maintenance. It's perfect for a coming soon page.
9
- * Version: 2.2.3
10
  * Author: Designmodo
11
  * Author URI: https://designmodo.com/
12
  * Twitter: designmodo
6
  * Plugin Name: WP Maintenance Mode
7
  * Plugin URI: https://designmodo.com/
8
  * Description: Adds a splash page to your site that lets visitors know your site is down for maintenance. It's perfect for a coming soon page.
9
+ * Version: 2.2.4
10
  * Author: Designmodo
11
  * Author URI: https://designmodo.com/
12
  * Twitter: designmodo