WP Maintenance Mode - Version 2.0.3

Version Description

(07/10/2014) = * WP_Super_Cache issue was fixed * fixed "Subscribe" button issue on Safari mobile * fixed color of subscribe-success message (same color as subscribe_text) * "Social networks" module edits: settings for links target + a new social network: linkedin * new module "Google Analytics" * loginform shortcode reintroduced * dashboard link on maintenance page reintroduced * the content editor accepts new css inline properties: min-height, max-height, min-width, max-width. Use them wisely! :) * Settings & sidebar view + old translation files edited * Update from old version 1.x to 2.x issue was fixed * Translate on activation issue was fixed * de_DE translation by Frank Bltge (http://bueltge.github.io/) * pt_PT translation (100% translated) by Pedro Mendona (http://www.pedromendonca.pt) * ru_RU translation (100% translated) by affectiosus (https://github.com/affectiosus) * nl_NL translation by dhunink (https://github.com/dhunink) * es_ES translation (100% translated) by Erick Ruiz de Chavez (http://erickruizdechavez.com/) * fr_FR translation by Florian TIAR (https://github.com/Mahjouba91) * pt_BR translation by Jonatas Arajo (http://www.designworld.com.br/) * sv_SE translation by Andras Lundgren (http://adevade.com/)

Download this release

Release Info

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

Code changes from version 2.0.2 to 2.0.3

Files changed (37) hide show
  1. assets/css/style-admin.css +118 -133
  2. assets/css/style.css +462 -403
  3. assets/images/icn_sprite.png +0 -0
  4. assets/images/resources/startup-wordpress.jpg +0 -0
  5. assets/js/scripts.js +90 -79
  6. includes/classes/wp-maintenance-mode-admin.php +47 -9
  7. includes/classes/wp-maintenance-mode-shortcodes.php +76 -0
  8. includes/classes/wp-maintenance-mode.php +69 -29
  9. includes/functions/helpers.php +0 -24
  10. languages/wp-maintenance-mode-de_DE.mo +0 -0
  11. languages/wp-maintenance-mode-de_DE.po +459 -0
  12. languages/wp-maintenance-mode-en_US.mo +0 -0
  13. languages/wp-maintenance-mode-en_US.po +435 -390
  14. languages/wp-maintenance-mode-es_ES.mo +0 -0
  15. languages/wp-maintenance-mode-es_ES.po +464 -0
  16. languages/wp-maintenance-mode-fr_FR.mo +0 -0
  17. languages/wp-maintenance-mode-fr_FR.po +465 -0
  18. languages/wp-maintenance-mode-nl_NL.mo +0 -0
  19. languages/wp-maintenance-mode-nl_NL.po +460 -0
  20. languages/wp-maintenance-mode-pt_BR.mo +0 -0
  21. languages/wp-maintenance-mode-pt_BR.po +535 -0
  22. languages/wp-maintenance-mode-pt_PT.mo +0 -0
  23. languages/wp-maintenance-mode-pt_PT.po +463 -0
  24. languages/wp-maintenance-mode-ro_RO.mo +0 -0
  25. languages/wp-maintenance-mode-ro_RO.po +470 -414
  26. languages/wp-maintenance-mode-ru_RU.mo +0 -0
  27. languages/wp-maintenance-mode-ru_RU.po +463 -0
  28. languages/wp-maintenance-mode-sv_SE.mo +0 -0
  29. languages/wp-maintenance-mode-sv_SE.po +457 -0
  30. readme.md +105 -105
  31. readme.txt +364 -335
  32. uninstall.php +1 -0
  33. views/loginform.php +9 -0
  34. views/maintenance.php +17 -15
  35. views/settings.php +62 -13
  36. views/sidebar.php +8 -27
  37. wp-maintenance-mode.php +2 -1
assets/css/style-admin.css CHANGED
@@ -1,133 +1,118 @@
1
- h2.wpmm-title {
2
- background: url('../images/icon-48.png') no-repeat left center;
3
- line-height: 42px;
4
- margin-bottom: 30px;
5
- height: 48px;
6
- padding-left: 55px;
7
- }
8
-
9
- /* WRAP*/
10
- .wpmm-wrapper {
11
- display: table;
12
- width: 100%;
13
- }
14
-
15
- .wpmm-wrapper #content {
16
- min-width: 800px;
17
- }
18
-
19
- .wpmm-wrapper #sidebar {
20
- padding: 0 0 0 20px;
21
- width: 280px;
22
- }
23
-
24
- .wpmm-wrapper #sidebar .sidebar_box {
25
- background: none repeat scroll 0 0 #fff;
26
- border: 1px solid #e5e5e5;
27
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
28
- min-width: 255px;
29
- line-height: 1;
30
- margin-bottom: 20px;
31
- padding: 0;
32
- }
33
-
34
- .wpmm-wrapper #sidebar .sidebar_box h3 {
35
- margin: 0;
36
- padding: 8px 12px;
37
- border-bottom: 1px solid #ececec;
38
- }
39
-
40
- .wpmm-wrapper #sidebar .sidebar_box .inside {
41
- margin: 6px 0 0;
42
- font-size: 13px;
43
- line-height: 1.4em;
44
- padding: 0 12px 12px;
45
- }
46
-
47
- .wpmm-wrapper .wrapper-cell {
48
- display: table-cell;
49
- }
50
-
51
- .wpmm-wrapper .hidden {
52
- display: none;
53
- }
54
-
55
- /* TABS */
56
- .nav-tab-wrapper {
57
- border-bottom: 1px solid #ccc;
58
- padding-bottom: 0;
59
- padding-left: 10px;
60
- }
61
-
62
- .nav-tab-wrapper a {
63
- font-size: 15px;
64
- font-weight: 700;
65
- line-height: 24px;
66
- padding: 6px 10px;
67
- }
68
-
69
- /* TABS CONTENT */
70
- .tabs-content {
71
- margin-top: 20px;
72
- padding-left: 10px;
73
- }
74
-
75
- .tabs-content .wp-color-result {
76
- margin-bottom: -2px;
77
- }
78
-
79
- .tabs-content ul.bg_list {
80
- float: left;
81
- }
82
-
83
- .tabs-content ul.bg_list li {
84
- float: left;
85
- margin-right: 7px;
86
- opacity: 0.4;
87
- }
88
-
89
- .tabs-content ul.bg_list li.active {
90
- opacity: 1;
91
- }
92
-
93
- .tabs-content ul.bg_list li input {
94
- display: none;
95
- }
96
-
97
- .tabs-content .countdown_details input {
98
- width: 70px;
99
- }
100
-
101
- .tabs-content .countdown_details .margin_left {
102
- margin-left: 30px;
103
- }
104
-
105
- /* SIDEBARS */
106
- #sidebar .subscribe_box form {
107
- margin-top: 10px;
108
- }
109
-
110
- #sidebar .subscribe_box input {
111
- height: 40px;
112
- width: 100%;
113
- }
114
-
115
- #sidebar .subscribe_box .button {
116
- height: 30px;
117
- margin-top: 10px;
118
- width: 100%;
119
- }
120
-
121
- #sidebar .news_box ul, .info_box ul {
122
- margin-top: 10px;
123
- margin-bottom: -5px;
124
- }
125
-
126
- #sidebar .resources_box ul {
127
- margin-top: 10px;
128
- margin-bottom: -15px;
129
- }
130
-
131
- #sidebar .resources_box li {
132
- margin-bottom: 10px;
133
- }
1
+ h2.wpmm-title {
2
+ background: url('../images/icon-48.png') no-repeat left center;
3
+ line-height: 42px;
4
+ margin-bottom: 30px;
5
+ height: 48px;
6
+ padding-left: 55px;
7
+ }
8
+
9
+ /* WRAP*/
10
+ .wpmm-wrapper {
11
+ display: table;
12
+ width: 100%;
13
+ }
14
+
15
+ .wpmm-wrapper #content {
16
+ min-width: 800px;
17
+ }
18
+
19
+ .wpmm-wrapper #sidebar {
20
+ padding: 0 0 0 20px;
21
+ width: 280px;
22
+ }
23
+
24
+ .wpmm-wrapper #sidebar .sidebar_box {
25
+ background: none repeat scroll 0 0 #fff;
26
+ border: 1px solid #e5e5e5;
27
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
28
+ min-width: 255px;
29
+ line-height: 1;
30
+ margin-bottom: 20px;
31
+ padding: 0;
32
+ }
33
+
34
+ .wpmm-wrapper #sidebar .sidebar_box h3 {
35
+ margin: 0;
36
+ padding: 8px 12px;
37
+ border-bottom: 1px solid #ececec;
38
+ }
39
+
40
+ .wpmm-wrapper #sidebar .sidebar_box .inside {
41
+ margin: 6px 0 0;
42
+ font-size: 13px;
43
+ line-height: 1.4em;
44
+ padding: 0 12px 12px;
45
+ }
46
+
47
+ .wpmm-wrapper .wrapper-cell {
48
+ display: table-cell;
49
+ }
50
+
51
+ .wpmm-wrapper .hidden {
52
+ display: none;
53
+ }
54
+
55
+ /* TABS */
56
+ .nav-tab-wrapper {
57
+ border-bottom: 1px solid #ccc;
58
+ padding-bottom: 0;
59
+ padding-left: 10px;
60
+ }
61
+
62
+ .nav-tab-wrapper a {
63
+ font-size: 15px;
64
+ font-weight: 700;
65
+ line-height: 24px;
66
+ padding: 6px 10px;
67
+ }
68
+
69
+ /* TABS CONTENT */
70
+ .tabs-content {
71
+ margin-top: 20px;
72
+ padding-left: 10px;
73
+ }
74
+
75
+ .tabs-content .wp-color-result {
76
+ margin-bottom: -2px;
77
+ }
78
+
79
+ .tabs-content ul.bg_list {
80
+ float: left;
81
+ }
82
+
83
+ .tabs-content ul.bg_list li {
84
+ float: left;
85
+ margin-right: 7px;
86
+ opacity: 0.4;
87
+ }
88
+
89
+ .tabs-content ul.bg_list li.active {
90
+ opacity: 1;
91
+ }
92
+
93
+ .tabs-content ul.bg_list li input {
94
+ display: none;
95
+ }
96
+
97
+ .tabs-content .countdown_details input {
98
+ width: 70px;
99
+ }
100
+
101
+ .tabs-content .countdown_details .margin_left {
102
+ margin-left: 30px;
103
+ }
104
+
105
+ /* SIDEBARS */
106
+ #sidebar .info_box ul {
107
+ margin-top: 10px;
108
+ margin-bottom: -5px;
109
+ }
110
+
111
+ #sidebar .resources_box ul, #sidebar .themes_box ul {
112
+ margin-top: 10px;
113
+ margin-bottom: -15px;
114
+ }
115
+
116
+ #sidebar .resources_box li, #sidebar .themes_box li {
117
+ margin-bottom: 10px;
118
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/style.css CHANGED
@@ -1,403 +1,462 @@
1
- html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
2
- margin: 0;
3
- padding: 0;
4
- border: 0;
5
- font-size: 100%;
6
- font: inherit;
7
- vertical-align: baseline;
8
- text-decoration: none;
9
- }
10
- article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
11
- display: block;
12
- }
13
- body {
14
- line-height: 1;
15
- }
16
- ol, ul {
17
- list-style: none;
18
- }
19
- blockquote, q {
20
- display: block;
21
- width: 400px;
22
- margin: 0 auto;
23
- text-align: left;
24
- position: relative;
25
- font-style: italic;
26
- }
27
- blockquote:before, blockquote:after, q:before, q:after {
28
- content: '"';
29
- content: none;
30
- }
31
- table {
32
- border-collapse: collapse;
33
- border-spacing: 0;
34
- }
35
- em, i {
36
- font-style: italic;
37
- }
38
- del {
39
- text-decoration: line-through;
40
- }
41
- strong, b {
42
- font-weight: bold;
43
- }
44
- ol {
45
- width: 500px;
46
- margin: 0 auto;
47
- text-align: left;
48
- }
49
- ol li {
50
- list-style-type:decimal;
51
- }
52
- ul {
53
- width: 500px;
54
- margin: 0 auto;
55
- text-align: left;
56
- }
57
- ul li {
58
- list-style:disc;
59
- }
60
- a {
61
- color: inherit;
62
- text-decoration: underline;
63
- }
64
- body, html {
65
- min-height: 100%;
66
- /*height: 100%;*/
67
- }
68
- body {
69
- background-color: #fff;
70
- color: #1b1f23;
71
- font-family: Helvetica Neue, Arial, sans-serif;
72
- }
73
- .wrap {
74
- width: 500xp;
75
- margin: 100px auto 0;
76
- text-align: center;
77
- }
78
- .wrap h1 {
79
- font-size: 30px;
80
- font-weight: 700;
81
- margin: 0 0 90px;
82
- }
83
- .wrap h2 {
84
- font-size: 24px;
85
- font-weight: 400;
86
- line-height: 45px;
87
- margin: 0 0 80px;
88
- }
89
- .wrap h3 {
90
- font-size: 24px;
91
- font-weight: 400px;
92
- margin: 0 0 45px;
93
- }
94
-
95
- .wrap .author_link {
96
- margin-top: 15px;
97
- color: #616161;
98
- margin: 0 0 50px;
99
- }
100
-
101
- .wrap .author_link a {
102
- color: #000;
103
- }
104
-
105
- /**
106
- * COUNTDOWN
107
- **/
108
- .wrap .countdown {
109
- margin: 0 0 85px;
110
- }
111
- .wrap .countdown span {
112
- font-size: 30px;
113
- }
114
-
115
- /**
116
- * SUBSCRIBE FORM
117
- **/
118
- .wrap form.subscribe_form {
119
- width: 465px;
120
- margin: 0 0 75px;
121
- display: inline-block;
122
- border: 3px solid #e0e0e0;
123
- box-sizing: border-box;
124
- }
125
- .wrap form.subscribe_form input {
126
- margin: 0;
127
- outline: 0;
128
- border: 0;
129
- float: left;
130
- font-size: 18px;
131
- padding: 20px 25px;
132
- box-sizing: content-box;
133
- }
134
- .wrap form.subscribe_form input[type="text"] {
135
- width: 245px;
136
- }
137
- .wrap form.subscribe_form input[type="submit"] {
138
- background: #000;
139
- color: #fff;
140
- float: right;
141
- cursor: pointer;
142
- padding: 20px 30px;
143
- border-left: 3px solid #e0e0e0;
144
- }
145
- .wrap form.subscribe_form input[type="submit"]:hover {
146
- background: #fff;
147
- color: #000;
148
- border-left: 3px solid #e0e0e0;
149
-
150
- }
151
- .wrap form.subscribe_form input[type="submit"]:active {
152
- background: #1e1e1e;
153
- color: #fff;
154
- }
155
- .wrap form.subscribe_form .error {
156
- color: red;
157
- }
158
- .wrap form.subscribe_form label.error {
159
- display: none !important;
160
- }
161
-
162
- /**
163
- * SOCIAL NETWORKS
164
- **/
165
- .wrap .social {
166
- margin: 0 0 70px;
167
- }
168
- .wrap .social a {
169
- width: 22px;
170
- height: 22px;
171
- margin: 0 0 20px 60px;
172
- background-image: url('../images/icn_sprite.png');
173
- background-repeat: no-repeat;
174
- display: inline-block;
175
- text-indent: -999em;
176
- }
177
- .wrap .social a:first-of-type {
178
- margin: 0 0 20px 0;
179
- }
180
- .wrap .social .git {
181
- background-position: 0 0;
182
- }
183
- .wrap .social .fb {
184
- background-position: -240px 0;
185
- }
186
- .wrap .social .tw {
187
- background-position: -162px 0px;
188
- }
189
- .wrap .social .rss {
190
- background-position: -402px 0;
191
- }
192
- .wrap .social .mail {
193
- background-position: -560px 0;
194
- }
195
- .wrap .social .pin {
196
- background-position: -322px 0;
197
- }
198
- .wrap .social .dribbble {
199
- background-position: -82px 0;
200
- }
201
- .wrap .social .gplus {
202
- background-position: -486px 0;
203
- }
204
-
205
- /**
206
- * CONTACT FORM
207
- **/
208
- .wrap .contact_us {
209
- color: #000;
210
- border: 3px solid #000;
211
- font-size: 18px;
212
- padding: 15px 40px;
213
- display: inline-block;
214
- margin: 0 0 70px;
215
- }
216
-
217
- .wrap .contact_us:hover {
218
- background: #000;
219
- color: #fff;
220
-
221
- }
222
-
223
- .contact_us {
224
- text-decoration: none;
225
- }
226
-
227
- .contact {
228
- position: fixed;
229
- display: none;
230
- top: 0;
231
- bottom: 0;
232
- left: 0;
233
- right: 0;
234
- background: rgba(27, 31, 35, 0.95);
235
- }
236
- .contact label.error {
237
- color: red;
238
- float: left;
239
- font-size: 11px;
240
- padding-top: 10px;
241
- }
242
- .contact .form {
243
- width: 520px;
244
- text-align: center;
245
- padding: 40px;
246
- background: #f9f9f9;
247
- box-sizing: border-box;
248
- margin: 100px auto;
249
- transition: 0.2s transform ease-in-out;
250
- }
251
- .contact .form input, .contact .form textarea {
252
- padding: 15px 20px;
253
- margin: 0;
254
- outline: 0;
255
- width: 100%;
256
- background: #f9f9f9;
257
- border: 3px solid #e0e0e0;
258
- font-size: 18px;
259
- font-family: Helvetica Neue, Arial, sans-serif;
260
- box-sizing: border-box;
261
- resize: none;
262
- }
263
- .contact .form textarea {
264
- height: 175px;
265
- padding: 20px;
266
- }
267
- .contact .form input[type="text"]::-webkit-input-placeholder, .contact .form textarea::-webkit-input-placeholder {
268
- color: #dadada;
269
- }
270
- .contact .form input[type="text"]::-moz-input-placeholder, .contact .form textarea::-moz-input-placeholder {
271
- color: #dadada;
272
- }
273
- .contact .form input[type="text"]::-ms-input-placeholder, .contact .form textarea::-ms-input-placeholder {
274
- color: #dadada;
275
- }
276
- .contact .form .col {
277
- width: 205px;
278
- margin: 0 0 30px;
279
- display: inline-block;
280
- float: left;
281
- }
282
- .contact .form .col.last {
283
- float: right;
284
- }
285
- .contact .form .submit {
286
- margin: 30px 0 0;
287
- text-align: center;
288
- clear: left;
289
- }
290
- .contact .form .submit input {
291
- cursor: pointer;
292
- display: inline-block;
293
- background: #1b1f24;
294
- color: #fff;
295
- border: 0;
296
- padding: 20px 45px;
297
- width: auto;
298
- }
299
-
300
- /*======= MOVE ANIMATION =======*/
301
- .contact .move_top {
302
- transform: perspective(1000px) translateY(-200px);
303
- }
304
- .contact .move_bottom {
305
- transform: perspective(1000px) translateY(0);
306
-
307
- }
308
-
309
- /*======= ZOOM ANIMATION =======*/
310
- .contact .zoom {
311
- transform: perspective(1000px) scale(0.5);
312
- transition: 0.3s transform ease-in-out;
313
- }
314
- .contact .zoomed {
315
- transform: perspective(1000px) scale(1);
316
- }
317
-
318
- /*======= FOLD ANIMATION =======*/
319
- .contact .fold {
320
- transform: perspective(1000px) rotateY(90deg);
321
- }
322
- .contact .unfold {
323
- transform: perspective(1000px) rotateY(0);
324
- }
325
-
326
- /**
327
- * EDITS WHEN HAVE BACKGROUND CLASS
328
- **/
329
- .background {
330
- background: url('../images/backgrounds/bg1.jpg') no-repeat center top fixed;
331
- background-size: cover;
332
- }
333
- .background .countdown span {
334
- color: #fff;
335
- }
336
- .background form.subscribe_form input[type="submit"] {
337
- color: #000;
338
- background: #fff;
339
- }
340
- .background form.subscribe_form input[type="text"] {
341
- background: transparent;
342
- color: #fff;
343
- }
344
- .background form.subscribe_form input.error[type="text"] {
345
- color: red;
346
- }
347
- .background form.subscribe_form input[type="text"]::-webkit-input-placeholder {
348
- color: #fff;
349
- }
350
- .background form.subscribe_form input[type="text"]::-moz-input-placeholder {
351
- color: #fff;
352
- }
353
- .background form.subscribe_form input[type="text"]::-ms-input-placeholder {
354
- color: #fff;
355
- }
356
- .background .contact_us {
357
- color: #fff;
358
- border-color: #fff;
359
- }
360
-
361
- /**
362
- * MEDIA QUERIES (RESPONSIVE)
363
- **/
364
- @media only screen and (max-width: 550px) {
365
- .wrap {
366
- width: 90%;
367
- margin: 50px auto 0;
368
- }
369
- .wrap h1 {
370
- margin: 0 0 50px;
371
- }
372
- .wrap h2, .wrap h3 {
373
- font-size: 18px;
374
- }
375
- .wrap form {
376
- box-sizing: border-box;
377
- width: 100%;
378
- }
379
- .wrap form input {
380
- box-sizing: border-box;
381
- }
382
- .wrap form input[type="text"], .wrap form input[type="submit"] {
383
- width: 100%;
384
- }
385
- .wrap .contact_us {
386
- margin: 0 0 50px;
387
- }
388
- .contact .form {
389
- width: 90%;
390
- }
391
- .contact .form p.col {
392
- width: 100%;
393
- }
394
- .contact .form input[type="submit"] {
395
- width: 100%;
396
- }
397
- ul, ol {
398
- width: 80%;
399
- }
400
- blockquote, q {
401
- width: 70%;
402
- }
403
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
2
+ margin: 0;
3
+ padding: 0;
4
+ border: 0;
5
+ font-size: 100%;
6
+ font: inherit;
7
+ vertical-align: baseline;
8
+ text-decoration: none;
9
+ }
10
+ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
11
+ display: block;
12
+ }
13
+ body {
14
+ line-height: 1;
15
+ }
16
+ ol, ul {
17
+ list-style: none;
18
+ }
19
+ blockquote, q {
20
+ display: block;
21
+ width: 500px;
22
+ margin: 0 auto;
23
+ text-align: left;
24
+ position: relative;
25
+ font-style: italic;
26
+ }
27
+ blockquote:before, blockquote:after, q:before, q:after {
28
+ content: '"';
29
+ content: none;
30
+ }
31
+ input, button {
32
+ -webkit-appearance: none;
33
+ border-radius: 0;
34
+ }
35
+ table {
36
+ border-collapse: collapse;
37
+ border-spacing: 0;
38
+ }
39
+ em, i {
40
+ font-style: italic;
41
+ }
42
+ del {
43
+ text-decoration: line-through;
44
+ }
45
+ strong, b {
46
+ font-weight: bold;
47
+ }
48
+ ol {
49
+ width: 600px;
50
+ margin: 0 auto;
51
+ text-align: left;
52
+ }
53
+ ol li {
54
+ list-style-type: decimal;
55
+ }
56
+ ul {
57
+ width: 600px;
58
+ margin: 0 auto;
59
+ text-align: left;
60
+ }
61
+ ul li {
62
+ list-style: disc;
63
+ }
64
+ a {
65
+ color: inherit;
66
+ text-decoration: underline;
67
+ }
68
+ body, html {
69
+ min-height: 100%;
70
+ /*height: 100%;*/
71
+ }
72
+ body {
73
+ background-color: #fff;
74
+ color: #1b1f23;
75
+ font-family: Helvetica Neue, Arial, sans-serif;
76
+ }
77
+ .wrap {
78
+ width: 605px;
79
+ margin: 100px auto 0;
80
+ text-align: center;
81
+ }
82
+ .wrap h1 {
83
+ font-size: 30px;
84
+ font-weight: 700;
85
+ margin: 0 0 90px;
86
+ }
87
+ .wrap h2 {
88
+ font-size: 24px;
89
+ font-weight: 400;
90
+ line-height: 45px;
91
+ margin: 0 0 80px;
92
+ }
93
+ .wrap h3 {
94
+ font-size: 24px;
95
+ font-weight: 400px;
96
+ margin: 0 0 45px;
97
+ }
98
+ .wrap .author_link {
99
+ margin-top: 15px;
100
+ color: #616161;
101
+ margin: 0 0 50px;
102
+ }
103
+ .wrap .author_link a {
104
+ color: #000;
105
+ }
106
+ /**
107
+ * COUNTDOWN
108
+ **/
109
+
110
+ .wrap .countdown {
111
+ margin: 0 0 85px;
112
+ }
113
+ .wrap .countdown span {
114
+ font-size: 30px;
115
+ }
116
+ /**
117
+ * SUBSCRIBE FORM
118
+ **/
119
+
120
+ .wrap form.subscribe_form {
121
+ width: 465px;
122
+ margin: 0 0 75px;
123
+ display: inline-block;
124
+ border: 3px solid #e0e0e0;
125
+ box-sizing: border-box;
126
+ }
127
+ .wrap form.subscribe_form input {
128
+ margin: 0;
129
+ outline: 0;
130
+ border: 0;
131
+ float: left;
132
+ font-size: 18px;
133
+ padding: 20px 25px;
134
+ box-sizing: content-box;
135
+ }
136
+ .wrap form.subscribe_form input[type="text"] {
137
+ width: 245px;
138
+ }
139
+ .wrap form.subscribe_form input[type="submit"] {
140
+ background: #000;
141
+ color: #fff;
142
+ float: right;
143
+ cursor: pointer;
144
+ padding: 20px 30px;
145
+ border-left: 3px solid #e0e0e0;
146
+ }
147
+ .wrap form.subscribe_form input[type="submit"]:hover {
148
+ background: #fff;
149
+ color: #000;
150
+ border-left: 3px solid #e0e0e0;
151
+ }
152
+ .wrap form.subscribe_form input[type="submit"]:active {
153
+ background: #1e1e1e;
154
+ color: #fff;
155
+ }
156
+ .wrap form.subscribe_form .error {
157
+ color: red;
158
+ }
159
+ .wrap form.subscribe_form label.error {
160
+ display: none !important;
161
+ }
162
+ /**
163
+ * LOGIN FORM
164
+ **/
165
+
166
+ .wrap form.login_form {
167
+ width: 100%;
168
+ margin: 15px 0 0;
169
+ }
170
+ .wrap form.login_form input {
171
+ display: inline-block;
172
+ box-sizing: border-box;
173
+ -moz-box-sizing: border-box;
174
+ -webkit-box-sizing: border-box;
175
+ border: 3px solid #E2E2E2;
176
+ font-family: Helvetica Neue, Arial, sans-serif;
177
+ font-size: 16px;
178
+ margin: 0 10px 0 0;
179
+ outline: 0;
180
+ padding: 15px;
181
+ }
182
+ .wrap form.login_form input[type="submit"] {
183
+ background: #000;
184
+ color: #fff;
185
+ margin: 0;
186
+ border-color: #000;
187
+ font-weight: bold;
188
+ padding: 15px 30px;
189
+ cursor: pointer;
190
+ }
191
+ .wrap form.login_form input[type="submit"]:active {
192
+ position: relative;
193
+ top: 1px;
194
+ }
195
+ /**
196
+ * SOCIAL NETWORKS
197
+ **/
198
+
199
+ .wrap .social {
200
+ margin: 0 0 70px;
201
+ }
202
+ .wrap .social a {
203
+ width: 22px;
204
+ height: 22px;
205
+ margin: 0 0 20px 55px;
206
+ background-image: url('../images/icn_sprite.png');
207
+ background-repeat: no-repeat;
208
+ display: inline-block;
209
+ text-indent: -999em;
210
+ }
211
+ .wrap .social a:first-of-type {
212
+ margin: 0 0 20px 0;
213
+ }
214
+ .wrap .social .git {
215
+ background-position: 0 0;
216
+ }
217
+ .wrap .social .fb {
218
+ background-position: -240px 0;
219
+ }
220
+ .wrap .social .tw {
221
+ background-position: -162px 0px;
222
+ }
223
+ .wrap .social .rss {
224
+ background-position: -402px 0;
225
+ }
226
+ .wrap .social .mail {
227
+ background-position: -560px 0;
228
+ }
229
+ .wrap .social .pin {
230
+ background-position: -322px 0;
231
+ }
232
+ .wrap .social .dribbble {
233
+ background-position: -82px 0;
234
+ }
235
+ .wrap .social .gplus {
236
+ background-position: -486px 0;
237
+ }
238
+ .wrap .social .linkedin {
239
+ background-position: -633px 0;
240
+ }
241
+ /**
242
+ * CONTACT FORM
243
+ **/
244
+
245
+ .wrap .contact_us {
246
+ color: #000;
247
+ border: 3px solid #000;
248
+ font-size: 18px;
249
+ padding: 15px 40px;
250
+ display: inline-block;
251
+ margin: 0 0 70px;
252
+ }
253
+ .wrap .contact_us:hover {
254
+ background: #000;
255
+ color: #fff;
256
+ }
257
+ .contact_us {
258
+ text-decoration: none;
259
+ }
260
+ .contact {
261
+ position: fixed;
262
+ display: none;
263
+ top: 0;
264
+ bottom: 0;
265
+ left: 0;
266
+ right: 0;
267
+ background: rgba(27, 31, 35, 0.95);
268
+ }
269
+ .contact label.error {
270
+ color: red;
271
+ float: left;
272
+ font-size: 11px;
273
+ padding-top: 10px;
274
+ }
275
+ .contact .form {
276
+ width: 520px;
277
+ text-align: center;
278
+ padding: 40px;
279
+ background: #f9f9f9;
280
+ box-sizing: border-box;
281
+ margin: 100px auto;
282
+ transition: 0.2s transform ease-in-out;
283
+ }
284
+ .contact .form input, .contact .form textarea {
285
+ padding: 15px 20px;
286
+ margin: 0;
287
+ outline: 0;
288
+ width: 100%;
289
+ background: #f9f9f9;
290
+ border: 3px solid #e0e0e0;
291
+ font-size: 18px;
292
+ font-family: Helvetica Neue, Arial, sans-serif;
293
+ box-sizing: border-box;
294
+ resize: none;
295
+ }
296
+ .contact .form textarea {
297
+ height: 175px;
298
+ padding: 20px;
299
+ }
300
+ .contact .form input[type="text"]::-webkit-input-placeholder, .contact .form textarea::-webkit-input-placeholder {
301
+ color: #dadada;
302
+ }
303
+ .contact .form input[type="text"]::-moz-input-placeholder, .contact .form textarea::-moz-input-placeholder {
304
+ color: #dadada;
305
+ }
306
+ .contact .form input[type="text"]::-ms-input-placeholder, .contact .form textarea::-ms-input-placeholder {
307
+ color: #dadada;
308
+ }
309
+ .contact .form .col {
310
+ width: 205px;
311
+ margin: 0 0 30px;
312
+ display: inline-block;
313
+ float: left;
314
+ }
315
+ .contact .form .col.last {
316
+ float: right;
317
+ }
318
+ .contact .form .submit {
319
+ margin: 30px 0 0;
320
+ text-align: center;
321
+ clear: left;
322
+ }
323
+ .contact .form .submit input {
324
+ cursor: pointer;
325
+ display: inline-block;
326
+ background: #1b1f24;
327
+ color: #fff;
328
+ border: 0;
329
+ padding: 20px 45px;
330
+ width: auto;
331
+ }
332
+ /*======= MOVE ANIMATION =======*/
333
+
334
+ .contact .move_top {
335
+ transform: perspective(1000px) translateY(-200px);
336
+ }
337
+ .contact .move_bottom {
338
+ transform: perspective(1000px) translateY(0);
339
+ }
340
+ /*======= ZOOM ANIMATION =======*/
341
+
342
+ .contact .zoom {
343
+ transform: perspective(1000px) scale(0.5);
344
+ transition: 0.3s transform ease-in-out;
345
+ }
346
+ .contact .zoomed {
347
+ transform: perspective(1000px) scale(1);
348
+ }
349
+ /*======= FOLD ANIMATION =======*/
350
+
351
+ .contact .fold {
352
+ transform: perspective(1000px) rotateY(90deg);
353
+ }
354
+ .contact .unfold {
355
+ transform: perspective(1000px) rotateY(0);
356
+ }
357
+ /**
358
+ * EDITS WHEN HAVE BACKGROUND CLASS
359
+ **/
360
+
361
+ .background {
362
+ background: url('../images/backgrounds/bg1.jpg') no-repeat center top fixed;
363
+ background-size: cover;
364
+ }
365
+ .background .countdown span {
366
+ color: #fff;
367
+ }
368
+ .background form.subscribe_form input[type="submit"] {
369
+ color: #000;
370
+ background: #fff;
371
+ }
372
+ .background form.subscribe_form input[type="text"] {
373
+ background: transparent;
374
+ color: #fff;
375
+ }
376
+ .background form.subscribe_form input.error[type="text"] {
377
+ color: red;
378
+ }
379
+ .background form.subscribe_form input[type="text"]::-webkit-input-placeholder {
380
+ color: #fff;
381
+ }
382
+ .background form.subscribe_form input[type="text"]::-moz-input-placeholder {
383
+ color: #fff;
384
+ }
385
+ .background form.subscribe_form input[type="text"]::-ms-input-placeholder {
386
+ color: #fff;
387
+ }
388
+ .background .contact_us {
389
+ color: #fff;
390
+ border-color: #fff;
391
+ }
392
+ /**
393
+ * MEDIA QUERIES (RESPONSIVE)
394
+ **/
395
+
396
+ @media only screen and (max-width: 700px) {
397
+ .wrap form.login_form {
398
+ width: 80%;
399
+ margin: 15px auto 0;
400
+ }
401
+ .wrap form.login_form input {
402
+ width: 49%;
403
+ margin: 0 2% 0 0;
404
+ }
405
+ .wrap form.login_form input[type="password"] {
406
+ margin: 0;
407
+ }
408
+ .wrap form.login_form input[type="submit"] {
409
+ width: 100%;
410
+ margin: 15px 0 0;
411
+ }
412
+ }
413
+ @media only screen and (max-width: 550px) {
414
+ .wrap {
415
+ width: 90%;
416
+ margin: 50px auto 0;
417
+ }
418
+ .wrap h1 {
419
+ margin: 0 0 50px;
420
+ }
421
+ .wrap h2, .wrap h3 {
422
+ font-size: 18px;
423
+ }
424
+ .wrap form {
425
+ box-sizing: border-box;
426
+ width: 100%;
427
+ }
428
+ .wrap form input {
429
+ box-sizing: border-box;
430
+ }
431
+ .wrap form input[type="text"], .wrap form input[type="submit"] {
432
+ width: 100%;
433
+ }
434
+ .wrap .contact_us {
435
+ margin: 0 0 50px;
436
+ }
437
+ .contact .form {
438
+ width: 90%;
439
+ }
440
+ .contact .form p.col {
441
+ width: 100%;
442
+ }
443
+ .contact .form input[type="submit"] {
444
+ width: 100%;
445
+ }
446
+ .wrap form.login_form {
447
+ width: 90%;
448
+ }
449
+ .wrap form.login_form input {
450
+ width: 100%;
451
+ margin: 0 0 10px 0;
452
+ }
453
+ .wrap form.login_form input[type="submit"] {
454
+ margin: 10px 0 0;
455
+ }
456
+ ul, ol {
457
+ width: 80%;
458
+ }
459
+ blockquote, q {
460
+ width: 70%;
461
+ }
462
+ }
assets/images/icn_sprite.png CHANGED
Binary file
assets/images/resources/startup-wordpress.jpg ADDED
Binary file
assets/js/scripts.js CHANGED
@@ -1,80 +1,91 @@
1
- jQuery(function($) {
2
- /**
3
- * COUNTDOWN
4
- */
5
- if ($('.countdown').length > 0) {
6
- var countDate = new Date($('.countdown').data('start'));
7
- countDate = new Date($('.countdown').data('end'));
8
- $('.countdown').countdown({
9
- until: countDate,
10
- compact: true,
11
- layout: '<span class="day">{dn}</span> <span class="separator">:</span> <span class="hour">{hnn}</span> <span class="separator">:</span> <span class="minutes">{mnn}</span> <span class="separator">:</span> <span class="seconds">{snn}</span>'
12
- });
13
- }
14
-
15
- /**
16
- * SUBSCRIBE FORM
17
- */
18
- if ($('.subscribe_form').length > 0) {
19
- // validate form
20
- $('.subscribe_form').validate({
21
- submitHandler: function(form) {
22
- $.post(wpmm_vars.ajax_url, {
23
- action: 'wpmm_add_subscriber',
24
- email: $('.email_input', $('.subscribe_form')).val()
25
- }, function(data) {
26
- $('.subscribe_wrapper').html(data.response);
27
- }, 'json');
28
-
29
- return false;
30
- }
31
- });
32
- }
33
-
34
- /**
35
- * CONTACT FORM
36
- */
37
- if ($('.contact').length > 0) {
38
- // show form
39
- $('.contact_us').click(function() {
40
- var open_contact = $(this).data('open'),
41
- close_contact = $(this).data('close');
42
-
43
- $('.contact').fadeIn(200);
44
- $('.' + open_contact).addClass(close_contact);
45
- });
46
-
47
- // validate form
48
- $('.contact_form').validate({
49
- submitHandler: function(form) {
50
- $.post(wpmm_vars.ajax_url, {
51
- action: 'wpmm_send_contact',
52
- name: $('.name_input', $('.contact_form')).val(),
53
- email: $('.email_input', $('.contact_form')).val(),
54
- content: $('.content_textarea', $('.contact_form')).val()
55
- }, function(data) {
56
- $('.contact .form').append('<div class="response">' + data.response + '</div>');
57
- $('.contact .form .contact_form').hide();
58
- setTimeout(function() {
59
- $('.contact').hide();
60
- $('.contact .form .response').remove();
61
- $('.contact .form .contact_form').trigger('reset');
62
- $('.contact .form .contact_form').show();
63
- }, 2000);
64
- }, 'json');
65
-
66
- return false;
67
- }
68
- });
69
-
70
- // hide form
71
- $('body').on('click', '.contact', function(e) {
72
- if ($(e.target).hasClass('contact')) {
73
- var close_contact = $('.contact_us').data('close');
74
- $('.form', $(this)).removeClass(close_contact);
75
-
76
- $(this).hide();
77
- }
78
- });
79
- }
 
 
 
 
 
 
 
 
 
 
 
80
  });
1
+ jQuery(function($) {
2
+ /**
3
+ * COUNTDOWN
4
+ */
5
+ if ($('.countdown').length > 0) {
6
+ var countDate = new Date($('.countdown').data('start'));
7
+ countDate = new Date($('.countdown').data('end'));
8
+ $('.countdown').countdown({
9
+ until: countDate,
10
+ compact: true,
11
+ layout: '<span class="day">{dn}</span> <span class="separator">:</span> <span class="hour">{hnn}</span> <span class="separator">:</span> <span class="minutes">{mnn}</span> <span class="separator">:</span> <span class="seconds">{snn}</span>'
12
+ });
13
+ }
14
+
15
+ /**
16
+ * SOCIAL LINKS
17
+ */
18
+ if ($('.social').length > 0) {
19
+ var link_target = $('.social').data('target');
20
+
21
+ if (link_target == 1) {
22
+ $('.social a').attr('target', '_blank');
23
+ }
24
+ }
25
+
26
+ /**
27
+ * SUBSCRIBE FORM
28
+ */
29
+ if ($('.subscribe_form').length > 0) {
30
+ // validate form
31
+ $('.subscribe_form').validate({
32
+ submitHandler: function(form) {
33
+ $.post(wpmm_vars.ajax_url, {
34
+ action: 'wpmm_add_subscriber',
35
+ email: $('.email_input', $('.subscribe_form')).val()
36
+ }, function(data) {
37
+ $('.subscribe_wrapper').html(data.response);
38
+ }, 'json');
39
+
40
+ return false;
41
+ }
42
+ });
43
+ }
44
+
45
+ /**
46
+ * CONTACT FORM
47
+ */
48
+ if ($('.contact').length > 0) {
49
+ // show form
50
+ $('.contact_us').click(function() {
51
+ var open_contact = $(this).data('open'),
52
+ close_contact = $(this).data('close');
53
+
54
+ $('.contact').fadeIn(200);
55
+ $('.' + open_contact).addClass(close_contact);
56
+ });
57
+
58
+ // validate form
59
+ $('.contact_form').validate({
60
+ submitHandler: function(form) {
61
+ $.post(wpmm_vars.ajax_url, {
62
+ action: 'wpmm_send_contact',
63
+ name: $('.name_input', $('.contact_form')).val(),
64
+ email: $('.email_input', $('.contact_form')).val(),
65
+ content: $('.content_textarea', $('.contact_form')).val()
66
+ }, function(data) {
67
+ $('.contact .form').append('<div class="response">' + data.response + '</div>');
68
+ $('.contact .form .contact_form').hide();
69
+ setTimeout(function() {
70
+ $('.contact').hide();
71
+ $('.contact .form .response').remove();
72
+ $('.contact .form .contact_form').trigger('reset');
73
+ $('.contact .form .contact_form').show();
74
+ }, 2000);
75
+ }, 'json');
76
+
77
+ return false;
78
+ }
79
+ });
80
+
81
+ // hide form
82
+ $('body').on('click', '.contact', function(e) {
83
+ if ($(e.target).hasClass('contact')) {
84
+ var close_contact = $('.contact_us').data('close');
85
+ $('.form', $(this)).removeClass(close_contact);
86
+
87
+ $(this).hide();
88
+ }
89
+ });
90
+ }
91
  });
includes/classes/wp-maintenance-mode-admin.php CHANGED
@@ -8,6 +8,7 @@ if (!class_exists('WP_Maintenance_Mode_Admin')) {
8
  protected $plugin_slug;
9
  protected $plugin_settings;
10
  protected $plugin_default_settings;
 
11
  protected $plugin_screen_hook_suffix = null;
12
 
13
  private function __construct() {
@@ -15,6 +16,7 @@ if (!class_exists('WP_Maintenance_Mode_Admin')) {
15
  $this->plugin_slug = $plugin->get_plugin_slug();
16
  $this->plugin_settings = $plugin->get_plugin_settings();
17
  $this->plugin_default_settings = $plugin->default_settings();
 
18
 
19
  // Load admin style sheet and JavaScript.
20
  add_action('admin_enqueue_scripts', array($this, 'enqueue_admin_styles'));
@@ -24,12 +26,11 @@ if (!class_exists('WP_Maintenance_Mode_Admin')) {
24
  add_action('admin_menu', array($this, 'add_plugin_menu'));
25
 
26
  // Add an action link pointing to the options page
27
- $plugin_basename = plugin_basename(WPMM_PATH . $this->plugin_slug . '.php');
28
- if (is_multisite() && is_plugin_active_for_network($plugin_basename)) {
29
  // settings link will point to admin_url of the main blog, not to network_admin_url
30
- add_filter('network_admin_plugin_action_links_' . $plugin_basename, array($this, 'add_settings_link'));
31
  } else {
32
- add_filter('plugin_action_links_' . $plugin_basename, array($this, 'add_settings_link'));
33
  }
34
 
35
  // Add admin notices
@@ -201,9 +202,18 @@ if (!class_exists('WP_Maintenance_Mode_Admin')) {
201
  $_POST['options']['general']['exclude'] = array();
202
  }
203
  $_POST['options']['general']['notice'] = (int) $_POST['options']['general']['notice'];
204
-
205
- // delete cache everytime
206
- $this->delete_cache();
 
 
 
 
 
 
 
 
 
207
  break;
208
  case 'design':
209
  $custom_css = array();
@@ -215,7 +225,10 @@ if (!class_exists('WP_Maintenance_Mode_Admin')) {
215
  $_POST['options']['design']['heading_color'] = sanitize_text_field($_POST['options']['design']['heading_color']);
216
  $custom_css['heading_color'] = '.wrap h1 { color: ' . $_POST['options']['design']['heading_color'] . '; }';
217
  }
 
218
  $_POST['options']['design']['text'] = wp_kses_post($_POST['options']['design']['text']);
 
 
219
  if (!empty($_POST['options']['design']['text_color'])) {
220
  $_POST['options']['design']['text_color'] = sanitize_text_field($_POST['options']['design']['text_color']);
221
  $custom_css['text_color'] = '.wrap h2 { color: ' . $_POST['options']['design']['text_color'] . '; }';
@@ -268,23 +281,29 @@ if (!class_exists('WP_Maintenance_Mode_Admin')) {
268
  $_POST['options']['modules']['subscribe_text'] = sanitize_text_field($_POST['options']['modules']['subscribe_text']);
269
  if (!empty($_POST['options']['modules']['subscribe_text_color'])) {
270
  $_POST['options']['modules']['subscribe_text_color'] = sanitize_text_field($_POST['options']['modules']['subscribe_text_color']);
271
- $custom_css['subscribe_text_color'] = '.wrap h3 { color: ' . $_POST['options']['modules']['subscribe_text_color'] . '; }';
272
  }
273
 
274
  // SOCIAL NETWORKS
275
  $_POST['options']['modules']['social_status'] = (int) $_POST['options']['modules']['social_status'];
 
276
  $_POST['options']['modules']['social_github'] = sanitize_text_field($_POST['options']['modules']['social_github']);
277
  $_POST['options']['modules']['social_dribbble'] = sanitize_text_field($_POST['options']['modules']['social_dribbble']);
278
  $_POST['options']['modules']['social_twitter'] = sanitize_text_field($_POST['options']['modules']['social_twitter']);
279
  $_POST['options']['modules']['social_facebook'] = sanitize_text_field($_POST['options']['modules']['social_facebook']);
280
  $_POST['options']['modules']['social_pinterest'] = sanitize_text_field($_POST['options']['modules']['social_pinterest']);
281
  $_POST['options']['modules']['social_google+'] = sanitize_text_field($_POST['options']['modules']['social_google+']);
 
282
 
283
  // CONTACT
284
  $_POST['options']['modules']['contact_status'] = (int) $_POST['options']['modules']['contact_status'];
285
  $_POST['options']['modules']['contact_email'] = sanitize_text_field($_POST['options']['modules']['contact_email']);
286
  $_POST['options']['modules']['contact_effects'] = sanitize_text_field($_POST['options']['modules']['contact_effects']);
287
 
 
 
 
 
288
  $_POST['options']['modules']['custom_css'] = $custom_css;
289
 
290
  // delete cache when is activated
@@ -299,6 +318,25 @@ if (!class_exists('WP_Maintenance_Mode_Admin')) {
299
  }
300
  }
301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  /**
303
  * Delete cache if any cache plugin (wp_cache or w3tc) is activated
304
  *
@@ -307,7 +345,7 @@ if (!class_exists('WP_Maintenance_Mode_Admin')) {
307
  public function delete_cache() {
308
  // Super Cache Plugin
309
  if (function_exists('wp_cache_clear_cache')) {
310
- wp_cache_clear_cache(get_current_blog_id());
311
  }
312
 
313
  // W3 Total Cache Plugin
8
  protected $plugin_slug;
9
  protected $plugin_settings;
10
  protected $plugin_default_settings;
11
+ protected $plugin_basename;
12
  protected $plugin_screen_hook_suffix = null;
13
 
14
  private function __construct() {
16
  $this->plugin_slug = $plugin->get_plugin_slug();
17
  $this->plugin_settings = $plugin->get_plugin_settings();
18
  $this->plugin_default_settings = $plugin->default_settings();
19
+ $this->plugin_basename = plugin_basename(WPMM_PATH . $this->plugin_slug . '.php');
20
 
21
  // Load admin style sheet and JavaScript.
22
  add_action('admin_enqueue_scripts', array($this, 'enqueue_admin_styles'));
26
  add_action('admin_menu', array($this, 'add_plugin_menu'));
27
 
28
  // Add an action link pointing to the options page
29
+ if (is_multisite() && is_plugin_active_for_network($this->plugin_basename)) {
 
30
  // settings link will point to admin_url of the main blog, not to network_admin_url
31
+ add_filter('network_admin_plugin_action_links_' . $this->plugin_basename, array($this, 'add_settings_link'));
32
  } else {
33
+ add_filter('plugin_action_links_' . $this->plugin_basename, array($this, 'add_settings_link'));
34
  }
35
 
36
  // Add admin notices
202
  $_POST['options']['general']['exclude'] = array();
203
  }
204
  $_POST['options']['general']['notice'] = (int) $_POST['options']['general']['notice'];
205
+ $_POST['options']['general']['admin_link'] = (int) $_POST['options']['general']['admin_link'];
206
+
207
+ // delete cache when is already activated, when is activated and when is deactivated
208
+ if (
209
+ isset($this->plugin_settings['general']['status']) && isset($_POST['options']['general']['status']) &&
210
+ (
211
+ ($this->plugin_settings['general']['status'] == 1 && in_array($_POST['options']['general']['status'], array(0, 1))) ||
212
+ ($this->plugin_settings['general']['status'] == 0 && $_POST['options']['general']['status'] == 1)
213
+ )
214
+ ) {
215
+ $this->delete_cache();
216
+ }
217
  break;
218
  case 'design':
219
  $custom_css = array();
225
  $_POST['options']['design']['heading_color'] = sanitize_text_field($_POST['options']['design']['heading_color']);
226
  $custom_css['heading_color'] = '.wrap h1 { color: ' . $_POST['options']['design']['heading_color'] . '; }';
227
  }
228
+ add_filter('safe_style_css', array($this, 'add_safe_style_css')); // add before we save
229
  $_POST['options']['design']['text'] = wp_kses_post($_POST['options']['design']['text']);
230
+ remove_filter('safe_style_css', array($this, 'add_safe_style_css')); // remove after we save
231
+
232
  if (!empty($_POST['options']['design']['text_color'])) {
233
  $_POST['options']['design']['text_color'] = sanitize_text_field($_POST['options']['design']['text_color']);
234
  $custom_css['text_color'] = '.wrap h2 { color: ' . $_POST['options']['design']['text_color'] . '; }';
281
  $_POST['options']['modules']['subscribe_text'] = sanitize_text_field($_POST['options']['modules']['subscribe_text']);
282
  if (!empty($_POST['options']['modules']['subscribe_text_color'])) {
283
  $_POST['options']['modules']['subscribe_text_color'] = sanitize_text_field($_POST['options']['modules']['subscribe_text_color']);
284
+ $custom_css['subscribe_text_color'] = '.wrap h3, .wrap .subscribe_wrapper { color: ' . $_POST['options']['modules']['subscribe_text_color'] . '; }';
285
  }
286
 
287
  // SOCIAL NETWORKS
288
  $_POST['options']['modules']['social_status'] = (int) $_POST['options']['modules']['social_status'];
289
+ $_POST['options']['modules']['social_target'] = (int) $_POST['options']['modules']['social_target'];
290
  $_POST['options']['modules']['social_github'] = sanitize_text_field($_POST['options']['modules']['social_github']);
291
  $_POST['options']['modules']['social_dribbble'] = sanitize_text_field($_POST['options']['modules']['social_dribbble']);
292
  $_POST['options']['modules']['social_twitter'] = sanitize_text_field($_POST['options']['modules']['social_twitter']);
293
  $_POST['options']['modules']['social_facebook'] = sanitize_text_field($_POST['options']['modules']['social_facebook']);
294
  $_POST['options']['modules']['social_pinterest'] = sanitize_text_field($_POST['options']['modules']['social_pinterest']);
295
  $_POST['options']['modules']['social_google+'] = sanitize_text_field($_POST['options']['modules']['social_google+']);
296
+ $_POST['options']['modules']['social_linkedin'] = sanitize_text_field($_POST['options']['modules']['social_linkedin']);
297
 
298
  // CONTACT
299
  $_POST['options']['modules']['contact_status'] = (int) $_POST['options']['modules']['contact_status'];
300
  $_POST['options']['modules']['contact_email'] = sanitize_text_field($_POST['options']['modules']['contact_email']);
301
  $_POST['options']['modules']['contact_effects'] = sanitize_text_field($_POST['options']['modules']['contact_effects']);
302
 
303
+ // GOOGLE ANALYTICS
304
+ $_POST['options']['modules']['ga_status'] = (int) $_POST['options']['modules']['ga_status'];
305
+ $_POST['options']['modules']['ga_code'] = wp_kses(trim($_POST['options']['modules']['ga_code']), array('script' => array()));
306
+
307
  $_POST['options']['modules']['custom_css'] = $custom_css;
308
 
309
  // delete cache when is activated
318
  }
319
  }
320
 
321
+ /**
322
+ * Add new safe inline style css (use by wp_kses_attr in wp_kses_post)
323
+ * - bug discovered by cokemorgan: https://github.com/Designmodocom/WP-Maintenance-Mode/issues/56
324
+ *
325
+ * @since 2.0.3
326
+ * @param array $properties
327
+ * @return array
328
+ */
329
+ public function add_safe_style_css($properties) {
330
+ $new_properties = array(
331
+ 'min-height',
332
+ 'max-height',
333
+ 'min-width',
334
+ 'max-width'
335
+ );
336
+
337
+ return array_merge($new_properties, $properties);
338
+ }
339
+
340
  /**
341
  * Delete cache if any cache plugin (wp_cache or w3tc) is activated
342
  *
345
  public function delete_cache() {
346
  // Super Cache Plugin
347
  if (function_exists('wp_cache_clear_cache')) {
348
+ wp_cache_clear_cache(is_multisite() && is_plugin_active_for_network($this->plugin_basename) ? get_current_blog_id() : '');
349
  }
350
 
351
  // W3 Total Cache Plugin
includes/classes/wp-maintenance-mode-shortcodes.php ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if (!class_exists('WP_Maintenance_Mode_Shortcodes')) {
4
+ class WP_Maintenance_Mode_Shortcodes {
5
+
6
+ /**
7
+ * Add shortcodes
8
+ *
9
+ * @since 2.0.3
10
+ */
11
+ public static function init() {
12
+ $shortcodes = array(
13
+ 'loginform' => __CLASS__ . '::loginform'
14
+ );
15
+
16
+ foreach ($shortcodes as $shortcode => $method) {
17
+ add_shortcode($shortcode, $method);
18
+ }
19
+ }
20
+
21
+ /**
22
+ * Shortcode Wrapper
23
+ *
24
+ * @since 2.0.3
25
+ * @param string $function
26
+ * @param array $atts
27
+ * @param array $wrapper
28
+ * @return string
29
+ */
30
+ public static function shortcode_wrapper($function, $atts = array(), $wrapper = array('before' => null, 'after' => null)) {
31
+ ob_start();
32
+
33
+ echo $wrapper['before'];
34
+ call_user_func($function, $atts);
35
+ echo $wrapper['after'];
36
+
37
+ return ob_get_clean();
38
+ }
39
+
40
+ /**
41
+ * Login form shortcode.
42
+ *
43
+ * @since 2.0.3
44
+ * @param array $atts
45
+ * @return string
46
+ */
47
+ public static function loginform($atts) {
48
+ return self::shortcode_wrapper(array('WP_Maintenance_Mode_Shortcode_Login', 'display'), $atts);
49
+ }
50
+
51
+ }
52
+
53
+ }
54
+
55
+ if (!class_exists('WP_Maintenance_Mode_Shortcode_Login')) {
56
+
57
+ class WP_Maintenance_Mode_Shortcode_Login {
58
+
59
+ public function __construct() { }
60
+
61
+ /**
62
+ * Show login form
63
+ *
64
+ * @since 2.0.3
65
+ * @param array $atts
66
+ * @param string $content
67
+ */
68
+ public static function display($atts) {
69
+ extract(shortcode_atts(array('redirect' => ''), $atts));
70
+
71
+ include_once(WPMM_VIEWS_PATH . 'loginform.php');
72
+ }
73
+
74
+ }
75
+
76
+ }
includes/classes/wp-maintenance-mode.php CHANGED
@@ -3,21 +3,29 @@ if (!class_exists('WP_Maintenance_Mode')) {
3
 
4
  class WP_Maintenance_Mode {
5
 
6
- const VERSION = '2.0.2';
7
 
8
  protected $plugin_slug = 'wp-maintenance-mode';
9
  protected $plugin_settings;
 
10
  protected static $instance = null;
11
 
12
  private function __construct() {
13
  $this->plugin_settings = get_option('wpmm_settings');
 
14
 
15
  // Load plugin text domain
16
  add_action('init', array($this, 'load_plugin_textdomain'));
17
 
 
 
 
18
  // Activate plugin when new blog is added
19
  add_action('wpmu_new_blog', array($this, 'activate_new_site'));
20
 
 
 
 
21
  if (!empty($this->plugin_settings['general']['status']) && $this->plugin_settings['general']['status'] == 1) {
22
  // INIT
23
  add_action('init', array($this, 'init'));
@@ -30,6 +38,11 @@ if (!class_exists('WP_Maintenance_Mode')) {
30
 
31
  // Redirect
32
  add_action('admin_init', array($this, 'redirect'));
 
 
 
 
 
33
  }
34
  }
35
 
@@ -78,14 +91,12 @@ if (!class_exists('WP_Maintenance_Mode')) {
78
  'meta_robots' => 0,
79
  'redirection' => '',
80
  'exclude' => array(
81
- 0 => 'wp-cron',
82
- 1 => 'feed',
83
- 2 => 'wp-login',
84
- 3 => 'login',
85
- 4 => 'wp-admin',
86
- 5 => 'wp-admin/admin-ajax.php'
87
  ),
88
- 'notice' => 1
 
89
  ),
90
  'design' => array(
91
  'title' => __('Maintenance mode', $this->plugin_slug),
@@ -112,15 +123,19 @@ if (!class_exists('WP_Maintenance_Mode')) {
112
  'subscribe_text' => __('Notify me when it\'s ready', $this->plugin_slug),
113
  'subscribe_text_color' => '',
114
  'social_status' => 0,
 
115
  'social_github' => '',
116
  'social_dribbble' => '',
117
  'social_twitter' => '',
118
  'social_facebook' => '',
119
  'social_pinterest' => '',
120
  'social_google+' => '',
 
121
  'contact_status' => 0,
122
  'contact_email' => get_option('admin_email') ? get_option('admin_email') : '',
123
  'contact_effects' => 'move_top|move_bottom',
 
 
124
  'custom_css' => array()
125
  )
126
  );
@@ -133,6 +148,10 @@ if (!class_exists('WP_Maintenance_Mode')) {
133
  * @param boolean $network_wide
134
  */
135
  public static function activate($network_wide) {
 
 
 
 
136
  if (function_exists('is_multisite') && is_multisite()) {
137
  if ($network_wide) {
138
  // Get all blog ids
@@ -142,23 +161,28 @@ if (!class_exists('WP_Maintenance_Mode')) {
142
  self::single_activate($network_wide);
143
  restore_current_blog();
144
  }
145
-
146
- // delete old options
147
- delete_site_option('wp-maintenance-mode');
148
- delete_site_option('wp-maintenance-mode-msqld');
149
  } else {
150
  self::single_activate();
151
-
152
- // delete old options
153
- delete_option('wp-maintenance-mode');
154
- delete_option('wp-maintenance-mode-msqld');
155
  }
156
  } else {
157
  self::single_activate();
 
 
 
 
 
 
158
 
159
- // delete old options
160
- delete_option('wp-maintenance-mode');
161
- delete_option('wp-maintenance-mode-msqld');
 
 
 
 
 
 
 
162
  }
163
  }
164
 
@@ -222,15 +246,13 @@ if (!class_exists('WP_Maintenance_Mode')) {
222
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
223
  dbDelta($sql);
224
 
225
- // set notice if the plugin was installed before & set default settings
 
 
226
  $default_options = self::get_instance()->default_settings();
227
- if (is_multisite() && $network_wide) {
228
- $old_options = get_site_option('wp-maintenance-mode');
229
- } else {
230
- $old_options = get_option('wp-maintenance-mode');
231
- }
232
 
233
- if (!empty($old_options)) {
 
234
  add_option('wpmm_notice', array(
235
  'class' => 'updated',
236
  'msg' => sprintf(__('WP Maintenance Mode plugin was relaunched and you MUST revise <a href="%s">settings</a>.', self::get_instance()->plugin_slug), admin_url('options-general.php?page=' . self::get_instance()->plugin_slug))
@@ -268,6 +290,10 @@ if (!class_exists('WP_Maintenance_Mode')) {
268
  $default_options['general']['notice'] = $old_options['notice'];
269
  }
270
 
 
 
 
 
271
  if (!empty($old_options['title'])) {
272
  $default_options['design']['title'] = $old_options['title'];
273
  }
@@ -344,8 +370,11 @@ if (!class_exists('WP_Maintenance_Mode')) {
344
  }
345
  }
346
 
347
- // set default settings
348
  add_option('wpmm_settings', $default_options);
 
 
 
349
  }
350
 
351
  /**
@@ -384,6 +413,8 @@ if (!class_exists('WP_Maintenance_Mode')) {
384
 
385
  /**
386
  * Initialize when plugin is activated
 
 
387
  */
388
  public function init() {
389
  /**
@@ -391,6 +422,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
391
  */
392
  if (
393
  (!$this->check_user_role()) &&
 
394
  !strstr($_SERVER['PHP_SELF'], 'wp-login.php') &&
395
  !strstr($_SERVER['PHP_SELF'], 'wp-admin/') &&
396
  !strstr($_SERVER['PHP_SELF'], 'async-upload.php') &&
@@ -439,7 +471,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
439
  $heading = apply_filters('wpmm_heading', $heading);
440
 
441
  $text = !empty($this->plugin_settings['design']['text']) ? $this->plugin_settings['design']['text'] : '';
442
- $text = apply_filters('wpmm_text', $text);
443
 
444
  // COUNTDOWN
445
  $countdown_start = !empty($this->plugin_settings['modules']['countdown_start']) ? $this->plugin_settings['modules']['countdown_start'] : $this->plugin_settings['general']['status_data'];
@@ -475,7 +507,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
475
  if (file_exists(WP_CONTENT_DIR . '/wp-maintenance-mode.php')) {
476
  include_once(WP_CONTENT_DIR . '/wp-maintenance-mode.php');
477
  } else {
478
- include(WPMM_VIEWS_PATH . 'maintenance.php');
479
  }
480
  ob_flush();
481
 
@@ -486,6 +518,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
486
  /**
487
  * Check if the current user has access to backend / frontend based on his role compared with role from settings
488
  *
 
489
  * @return boolean
490
  */
491
  public function check_user_role() {
@@ -511,6 +544,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
511
  /**
512
  * Calculate backtime based on countdown remaining time if it is activated
513
  *
 
514
  * @return int
515
  */
516
  public function calculate_backtime() {
@@ -526,6 +560,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
526
  /**
527
  * Check if the visitor is a bot (using useragent)
528
  *
 
529
  * @return boolean
530
  */
531
  public function check_search_bots() {
@@ -568,6 +603,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
568
  /**
569
  * Check if slug / ip address exists in exclude list
570
  *
 
571
  * @return boolean
572
  */
573
  public function check_exclude() {
@@ -588,6 +624,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
588
  /**
589
  * Redirect if "Redirection" option is used and users don't have access to WordPress dashboard
590
  *
 
591
  * @return null
592
  */
593
  public function redirect() {
@@ -608,6 +645,7 @@ if (!class_exists('WP_Maintenance_Mode')) {
608
  /**
609
  * Save subscriber into database
610
  *
 
611
  * @global object $wpdb
612
  */
613
  public function add_subscriber() {
@@ -633,6 +671,8 @@ if (!class_exists('WP_Maintenance_Mode')) {
633
 
634
  /**
635
  * Send email via contact form
 
 
636
  */
637
  public function send_contact() {
638
  $errors = array();
3
 
4
  class WP_Maintenance_Mode {
5
 
6
+ const VERSION = '2.0.3';
7
 
8
  protected $plugin_slug = 'wp-maintenance-mode';
9
  protected $plugin_settings;
10
+ protected $plugin_basename;
11
  protected static $instance = null;
12
 
13
  private function __construct() {
14
  $this->plugin_settings = get_option('wpmm_settings');
15
+ $this->plugin_basename = plugin_basename(WPMM_PATH . $this->plugin_slug . '.php');
16
 
17
  // Load plugin text domain
18
  add_action('init', array($this, 'load_plugin_textdomain'));
19
 
20
+ // Add shortcodes
21
+ add_action('init', array('WP_Maintenance_Mode_Shortcodes', 'init'));
22
+
23
  // Activate plugin when new blog is added
24
  add_action('wpmu_new_blog', array($this, 'activate_new_site'));
25
 
26
+ // Check update
27
+ add_action('admin_init', array($this, 'check_update'));
28
+
29
  if (!empty($this->plugin_settings['general']['status']) && $this->plugin_settings['general']['status'] == 1) {
30
  // INIT
31
  add_action('init', array($this, 'init'));
38
 
39
  // Redirect
40
  add_action('admin_init', array($this, 'redirect'));
41
+
42
+ // Google Analytics tracking script
43
+ if (!empty($this->plugin_settings['modules']['ga_status']) && $this->plugin_settings['modules']['ga_status'] == 1 && !empty($this->plugin_settings['modules']['ga_code'])) {
44
+ add_action('wpmm_head', create_function('', 'echo "' . stripslashes($this->plugin_settings['modules']['ga_code']) . '";'));
45
+ }
46
  }
47
  }
48
 
91
  'meta_robots' => 0,
92
  'redirection' => '',
93
  'exclude' => array(
94
+ 0 => 'feed',
95
+ 1 => 'wp-login',
96
+ 2 => 'login'
 
 
 
97
  ),
98
+ 'notice' => 1,
99
+ 'admin_link' => 0
100
  ),
101
  'design' => array(
102
  'title' => __('Maintenance mode', $this->plugin_slug),
123
  'subscribe_text' => __('Notify me when it\'s ready', $this->plugin_slug),
124
  'subscribe_text_color' => '',
125
  'social_status' => 0,
126
+ 'social_target' => 1,
127
  'social_github' => '',
128
  'social_dribbble' => '',
129
  'social_twitter' => '',
130
  'social_facebook' => '',
131
  'social_pinterest' => '',
132
  'social_google+' => '',
133
+ 'social_linkedin' => '',
134
  'contact_status' => 0,
135
  'contact_email' => get_option('admin_email') ? get_option('admin_email') : '',
136
  'contact_effects' => 'move_top|move_bottom',
137
+ 'ga_status' => 0,
138
+ 'ga_code' => '',
139
  'custom_css' => array()
140
  )
141
  );
148
  * @param boolean $network_wide
149
  */
150
  public static function activate($network_wide) {
151
+ // because we need translated items when activate :)
152
+ load_plugin_textdomain(self::get_instance()->plugin_slug, FALSE, WPMM_LANGUAGES_PATH);
153
+
154
+ // do the job
155
  if (function_exists('is_multisite') && is_multisite()) {
156
  if ($network_wide) {
157
  // Get all blog ids
161
  self::single_activate($network_wide);
162
  restore_current_blog();
163
  }
 
 
 
 
164
  } else {
165
  self::single_activate();
 
 
 
 
166
  }
167
  } else {
168
  self::single_activate();
169
+ }
170
+
171
+ // delete old options
172
+ delete_option('wp-maintenance-mode');
173
+ delete_option('wp-maintenance-mode-msqld');
174
+ }
175
 
176
+ /**
177
+ * Check plugin version for updating process
178
+ *
179
+ * @since 2.0.3
180
+ */
181
+ public function check_update() {
182
+ $version = get_option('wpmm_version', '0');
183
+
184
+ if (!version_compare($version, WP_Maintenance_Mode::VERSION, '=')) {
185
+ self::activate(is_multisite() && is_plugin_active_for_network($this->plugin_basename) ? true : false);
186
  }
187
  }
188
 
246
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
247
  dbDelta($sql);
248
 
249
+ // get all options for different versions of the plugin
250
+ $v2_options = get_option('wpmm_settings');
251
+ $old_options = (is_multisite() && $network_wide) ? get_site_option('wp-maintenance-mode') : get_option('wp-maintenance-mode');
252
  $default_options = self::get_instance()->default_settings();
 
 
 
 
 
253
 
254
+ // set notice if the plugin was installed before & set default settings
255
+ if (!empty($old_options) && empty($v2_options)) {
256
  add_option('wpmm_notice', array(
257
  'class' => 'updated',
258
  'msg' => sprintf(__('WP Maintenance Mode plugin was relaunched and you MUST revise <a href="%s">settings</a>.', self::get_instance()->plugin_slug), admin_url('options-general.php?page=' . self::get_instance()->plugin_slug))
290
  $default_options['general']['notice'] = $old_options['notice'];
291
  }
292
 
293
+ if (isset($old_options['admin_link'])) {
294
+ $default_options['general']['admin_link'] = $old_options['admin_link'];
295
+ }
296
+
297
  if (!empty($old_options['title'])) {
298
  $default_options['design']['title'] = $old_options['title'];
299
  }
370
  }
371
  }
372
 
373
+ // set options
374
  add_option('wpmm_settings', $default_options);
375
+
376
+ // set current version
377
+ update_option('wpmm_version', WP_Maintenance_Mode::VERSION);
378
  }
379
 
380
  /**
413
 
414
  /**
415
  * Initialize when plugin is activated
416
+ *
417
+ * @since 2.0.0
418
  */
419
  public function init() {
420
  /**
422
  */
423
  if (
424
  (!$this->check_user_role()) &&
425
+ !strstr($_SERVER['PHP_SELF'], 'wp-cron.php') &&
426
  !strstr($_SERVER['PHP_SELF'], 'wp-login.php') &&
427
  !strstr($_SERVER['PHP_SELF'], 'wp-admin/') &&
428
  !strstr($_SERVER['PHP_SELF'], 'async-upload.php') &&
471
  $heading = apply_filters('wpmm_heading', $heading);
472
 
473
  $text = !empty($this->plugin_settings['design']['text']) ? $this->plugin_settings['design']['text'] : '';
474
+ $text = apply_filters('wpmm_text', do_shortcode($text));
475
 
476
  // COUNTDOWN
477
  $countdown_start = !empty($this->plugin_settings['modules']['countdown_start']) ? $this->plugin_settings['modules']['countdown_start'] : $this->plugin_settings['general']['status_data'];
507
  if (file_exists(WP_CONTENT_DIR . '/wp-maintenance-mode.php')) {
508
  include_once(WP_CONTENT_DIR . '/wp-maintenance-mode.php');
509
  } else {
510
+ include_once(WPMM_VIEWS_PATH . 'maintenance.php');
511
  }
512
  ob_flush();
513
 
518
  /**
519
  * Check if the current user has access to backend / frontend based on his role compared with role from settings
520
  *
521
+ * @since 2.0.0
522
  * @return boolean
523
  */
524
  public function check_user_role() {
544
  /**
545
  * Calculate backtime based on countdown remaining time if it is activated
546
  *
547
+ * @since 2.0.0
548
  * @return int
549
  */
550
  public function calculate_backtime() {
560
  /**
561
  * Check if the visitor is a bot (using useragent)
562
  *
563
+ * @since 2.0.0
564
  * @return boolean
565
  */
566
  public function check_search_bots() {
603
  /**
604
  * Check if slug / ip address exists in exclude list
605
  *
606
+ * @since 2.0.0
607
  * @return boolean
608
  */
609
  public function check_exclude() {
624
  /**
625
  * Redirect if "Redirection" option is used and users don't have access to WordPress dashboard
626
  *
627
+ * @since 2.0.0
628
  * @return null
629
  */
630
  public function redirect() {
645
  /**
646
  * Save subscriber into database
647
  *
648
+ * @since 2.0.0
649
  * @global object $wpdb
650
  */
651
  public function add_subscriber() {
671
 
672
  /**
673
  * Send email via contact form
674
+ *
675
+ * @since 2.0.0
676
  */
677
  public function send_contact() {
678
  $errors = array();
includes/functions/helpers.php CHANGED
@@ -1,29 +1,5 @@
1
  <?php
2
 
3
- /**
4
- * Get Designmodo posts
5
- *
6
- * @param array $args
7
- * @return array
8
- */
9
- function get_designmodo_posts($args = array()) {
10
- $args = wp_parse_args($args, array(
11
- 'feed' => 'http://feeds.feedburner.com/designmodo',
12
- 'posts_no' => 5
13
- ));
14
-
15
- // GET POSTS
16
- $feed = fetch_feed($args['feed']);
17
- if (!is_wp_error($feed)) {
18
- $max_items = $feed->get_item_quantity($args['posts_no']);
19
- $items = $feed->get_items(0, $max_items);
20
-
21
- return $items;
22
- }
23
-
24
- return array();
25
- }
26
-
27
  /**
28
  * Get plugin info
29
  *
1
  <?php
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  /**
4
  * Get plugin info
5
  *
languages/wp-maintenance-mode-de_DE.mo ADDED
Binary file
languages/wp-maintenance-mode-de_DE.po ADDED
@@ -0,0 +1,459 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.0.3\n"
4
+ "POT-Creation-Date: 2014-09-26 19:03+0200\n"
5
+ "PO-Revision-Date: 2014-09-26 19:03+0200\n"
6
+ "Last-Translator: Frank Bültge <frank@bueltge.de>\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.6.7\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: includes/classes\n"
19
+ "X-Poedit-SearchPath-2: views\n"
20
+
21
+ #: includes/classes/wp-maintenance-mode-admin.php:154
22
+ msgid "WP Maintenance Mode"
23
+ msgstr "WP Wartungsmodus"
24
+
25
+ #: includes/classes/wp-maintenance-mode-admin.php:358
26
+ msgid "Settings"
27
+ msgstr "Einstellungen"
28
+
29
+ #: includes/classes/wp-maintenance-mode-admin.php:377
30
+ #, php-format
31
+ msgid ""
32
+ "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
33
+ "href=\"%s\">deactivate</a> as soon as you are done."
34
+ msgstr ""
35
+ "Der Wartungsmodus ist <strong>aktiv</strong>. Bitte vergiss nicht ihn zu <a "
36
+ "href=\"%s\">deaktivieren</a>, wenn er nicht mehr benötigt wird."
37
+
38
+ #: includes/classes/wp-maintenance-mode.php:100
39
+ #: includes/classes/wp-maintenance-mode.php:101
40
+ msgid "Maintenance mode"
41
+ msgstr "Wartungsmodus"
42
+
43
+ #: includes/classes/wp-maintenance-mode.php:103
44
+ msgid ""
45
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
46
+ "scheduled maintenance.<br />Thank you for your understanding.</p>"
47
+ msgstr ""
48
+ "<p>Enschuldige die Unannehmlichkeiten,<br />unsere Website is aktuell in "
49
+ "Wartungsarbeiten.<br />Vielen Dank für das Verständis.</p>"
50
+
51
+ #: includes/classes/wp-maintenance-mode.php:121
52
+ msgid "Notify me when it's ready"
53
+ msgstr "Informiere mich, wenn die Arbeiten abgeschlossen sind."
54
+
55
+ #: includes/classes/wp-maintenance-mode.php:249
56
+ #, php-format
57
+ msgid ""
58
+ "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
59
+ "\">settings</a>."
60
+ msgstr ""
61
+ "Das WP Wartungsmodus Plugin wurde neu erstellt und du MUSST die <a href=\"%s"
62
+ "\"></a> Einstellungen bearbeiten."
63
+
64
+ #: includes/classes/wp-maintenance-mode.php:425
65
+ #: includes/classes/wp-maintenance-mode.php:439
66
+ msgid "Maintenance Mode"
67
+ msgstr "Wartungsmodus"
68
+
69
+ #: includes/classes/wp-maintenance-mode.php:630
70
+ #: includes/classes/wp-maintenance-mode.php:658
71
+ msgid "Please enter a valid email address."
72
+ msgstr "Bitte gib eine valide E-Mail-Adresse an."
73
+
74
+ #: includes/classes/wp-maintenance-mode.php:641
75
+ msgid "You successfuly subscribed. Thanks!"
76
+ msgstr "Erfolgreich abonniert, Danke!"
77
+
78
+ #: includes/classes/wp-maintenance-mode.php:654
79
+ msgid "All fields required."
80
+ msgstr "Alle Felder sind notwendig."
81
+
82
+ #: includes/classes/wp-maintenance-mode.php:675
83
+ msgid "Message via contact"
84
+ msgstr "Mitteilung via Kontakt"
85
+
86
+ #: includes/classes/wp-maintenance-mode.php:679
87
+ msgid "Your email was sent to the website administrator. Thanks!"
88
+ msgstr "Deine E-Mail wurde an den Administrator der Webiste gesandt. Danke!"
89
+
90
+ #: views/loginform.php:8
91
+ msgid "Login"
92
+ msgstr ""
93
+
94
+ #: views/maintenance.php:41
95
+ msgid "your e-mail..."
96
+ msgstr "deine E-Mail..."
97
+
98
+ #: views/maintenance.php:42 views/settings.php:260
99
+ msgid "Subscribe"
100
+ msgstr "Abonniere"
101
+
102
+ #: views/maintenance.php:83 views/sidebar.php:7
103
+ msgid "Name"
104
+ msgstr "Name"
105
+
106
+ #: views/maintenance.php:84
107
+ msgid "E-mail"
108
+ msgstr "E-Mail"
109
+
110
+ #: views/maintenance.php:86
111
+ msgid "Your message"
112
+ msgstr "Deine Mitteilung"
113
+
114
+ #: views/maintenance.php:87
115
+ msgid "Send"
116
+ msgstr "Senden"
117
+
118
+ #: views/maintenance.php:92
119
+ msgid "Contact us"
120
+ msgstr "Kontaktiere uns"
121
+
122
+ #: views/maintenance.php:97
123
+ msgid "Dashboard"
124
+ msgstr ""
125
+
126
+ #: views/settings.php:6
127
+ msgid "Settings saved."
128
+ msgstr "Einstellungen gespeichert."
129
+
130
+ #: views/settings.php:13
131
+ msgid "General"
132
+ msgstr "Allgemein"
133
+
134
+ #: views/settings.php:14
135
+ msgid "Design"
136
+ msgstr "Design"
137
+
138
+ #: views/settings.php:15
139
+ msgid "Modules"
140
+ msgstr "Module"
141
+
142
+ #: views/settings.php:24
143
+ msgid "Status"
144
+ msgstr "Status"
145
+
146
+ #: views/settings.php:26
147
+ msgid "Activated"
148
+ msgstr "Aktiv"
149
+
150
+ #: views/settings.php:27
151
+ msgid "Deactivated"
152
+ msgstr "Inaktiv"
153
+
154
+ #: views/settings.php:31
155
+ msgid "Bypass for Search Bots"
156
+ msgstr "bypass für Such-Bots"
157
+
158
+ #: views/settings.php:34 views/settings.php:94 views/settings.php:104
159
+ #: views/settings.php:232 views/settings.php:268 views/settings.php:305
160
+ #: views/settings.php:373 views/settings.php:405
161
+ msgid "Yes"
162
+ msgstr "Ja"
163
+
164
+ #: views/settings.php:35 views/settings.php:95 views/settings.php:105
165
+ #: views/settings.php:233 views/settings.php:269 views/settings.php:306
166
+ #: views/settings.php:374 views/settings.php:406
167
+ msgid "No"
168
+ msgstr "Nein"
169
+
170
+ #: views/settings.php:37
171
+ msgid "Allow Search Bots to bypass maintenance mode?"
172
+ msgstr "Erlaube Such-Bots den Zugang via Bypass?"
173
+
174
+ #: views/settings.php:41
175
+ msgid "Backend Role"
176
+ msgstr "Backend-Rolle"
177
+
178
+ #: views/settings.php:48
179
+ msgid "Which user role is allowed to access the backend of this blog?"
180
+ msgstr "Mit welcher Rolle soll man Zugang zum Backend der Website erhalten?"
181
+
182
+ #: views/settings.php:52
183
+ msgid "Frontend Role"
184
+ msgstr "Frontend-Rolle"
185
+
186
+ #: views/settings.php:59
187
+ msgid "Which user role is allowed to access the frontend of this blog?"
188
+ msgstr "Mit welcher Rolle soll man Zugang zum Frontend der Website erhalten?"
189
+
190
+ #: views/settings.php:63
191
+ msgid "Robots Meta Tag"
192
+ msgstr "Robots Meta Tag"
193
+
194
+ #: views/settings.php:69
195
+ msgid ""
196
+ "The robots meta tag lets you use a granular, page-specific approach to "
197
+ "control how an individual page should be indexed and served to users in "
198
+ "search results."
199
+ msgstr ""
200
+ "Mit dem Robots Meta Tag kannst du steuern, wie die Seite während des "
201
+ "Wartungsmodus indiziert werden soll."
202
+
203
+ #: views/settings.php:73
204
+ msgid "Redirection"
205
+ msgstr "Weiterleitung"
206
+
207
+ #: views/settings.php:76
208
+ msgid ""
209
+ "If you want to redirect a user to a URL (which is not the WordPress "
210
+ "dashboard) after login, then define a URL (incl. http://)"
211
+ msgstr ""
212
+ "Willst du eine Weiterleitung nach dem Login zu einer URL, dann definiere "
213
+ "eine URL (inkl. http://)?"
214
+
215
+ #: views/settings.php:80
216
+ msgid "Exclude"
217
+ msgstr "Auschluss"
218
+
219
+ #: views/settings.php:87
220
+ msgid ""
221
+ "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
222
+ "IP per line!"
223
+ msgstr ""
224
+ "Auschluss vom Wartungsmodus von Feed, Seiten, Archiven oder IPs möglich. "
225
+ "Ergänze einen Slug oder die IP pro Zeile."
226
+
227
+ #: views/settings.php:91
228
+ msgid "Notice"
229
+ msgstr "Hinweis"
230
+
231
+ #: views/settings.php:97
232
+ msgid "Do you want to see notices when maintenance mode is activated?"
233
+ msgstr "Willst du den Hinweis sehen, wenn der Wartungsmodus aktiv ist?"
234
+
235
+ #: views/settings.php:101
236
+ msgid "Dashboard link"
237
+ msgstr ""
238
+
239
+ #: views/settings.php:107
240
+ msgid ""
241
+ "Do you want to add a link to the dashboard on your maintenance mode page?"
242
+ msgstr ""
243
+
244
+ #: views/settings.php:115 views/settings.php:218 views/settings.php:421
245
+ msgid "Save settings"
246
+ msgstr "Einstellungen speichern"
247
+
248
+ #: views/settings.php:116 views/settings.php:219 views/settings.php:422
249
+ msgid "Reset settings"
250
+ msgstr "Einstellungen zurücksetzen"
251
+
252
+ #: views/settings.php:121
253
+ msgid "Content"
254
+ msgstr "Inhalt"
255
+
256
+ #: views/settings.php:126
257
+ msgid "Title (HTML tag)"
258
+ msgstr "Title (html Tag)"
259
+
260
+ #: views/settings.php:132
261
+ msgid "Heading"
262
+ msgstr "Überschrift"
263
+
264
+ #: views/settings.php:139 views/settings.php:274
265
+ msgid "Text"
266
+ msgstr "Text"
267
+
268
+ #: views/settings.php:159
269
+ msgid "Background"
270
+ msgstr "Hintergrund"
271
+
272
+ #: views/settings.php:164
273
+ msgid "Choose type"
274
+ msgstr "Type wählen"
275
+
276
+ #: views/settings.php:167
277
+ msgid "Custom color"
278
+ msgstr "Benutzerdefinierte Farbe"
279
+
280
+ #: views/settings.php:168
281
+ msgid "Uploaded background"
282
+ msgstr "Hochgeladene Hintergründe"
283
+
284
+ #: views/settings.php:169
285
+ msgid "Predefined background"
286
+ msgstr "Vordefinierte Hintergründe"
287
+
288
+ #: views/settings.php:174
289
+ msgid "Choose color"
290
+ msgstr "Farbe wählen"
291
+
292
+ #: views/settings.php:180
293
+ msgid "Upload background"
294
+ msgstr "Hintergund laden"
295
+
296
+ #: views/settings.php:184
297
+ msgid "Backgrounds should have 1920x1280 px size."
298
+ msgstr "Hintergründe sollten eine Größe von 1920x1280 px haben."
299
+
300
+ #: views/settings.php:189
301
+ msgid "Choose background"
302
+ msgstr "Hintergrund wählen"
303
+
304
+ #: views/settings.php:191
305
+ msgid "source <a href=\"%\" target=\"_blank\">Free Photos</a>"
306
+ msgstr "oorsprong <a href=\"%\" target=\"_blank\">Free Photos</a>"
307
+
308
+ #: views/settings.php:224
309
+ msgid "Countdown"
310
+ msgstr "Countdown"
311
+
312
+ #: views/settings.php:229
313
+ msgid "Show countdown?"
314
+ msgstr "Zeige Countdown?"
315
+
316
+ #: views/settings.php:238
317
+ msgid "Start date"
318
+ msgstr "Start-Datum"
319
+
320
+ #: views/settings.php:244
321
+ msgid "Countdown (remaining time)"
322
+ msgstr "Countdown (Restzeit)"
323
+
324
+ #: views/settings.php:246
325
+ msgid "Days"
326
+ msgstr "Tage"
327
+
328
+ #: views/settings.php:247
329
+ msgid "Hours"
330
+ msgstr "Stunden"
331
+
332
+ #: views/settings.php:248
333
+ msgid "Minutes"
334
+ msgstr "Minuten"
335
+
336
+ #: views/settings.php:252
337
+ msgid "Color"
338
+ msgstr "Farbe"
339
+
340
+ #: views/settings.php:265
341
+ msgid "Show subscribe?"
342
+ msgstr "Zeige Abonnenten?"
343
+
344
+ #: views/settings.php:281
345
+ msgid "Stats"
346
+ msgstr "Statistik"
347
+
348
+ #: views/settings.php:285
349
+ #, php-format
350
+ msgid "You have %d subscriber(s)"
351
+ msgstr "Du hast %d Abonnenten"
352
+
353
+ #: views/settings.php:290
354
+ msgid "Export as CSV"
355
+ msgstr "Export als CSV"
356
+
357
+ #: views/settings.php:297
358
+ msgid "Social Networks"
359
+ msgstr "Soziale Netzwerke"
360
+
361
+ #: views/settings.php:302
362
+ msgid "Show social networks?"
363
+ msgstr "Zeige soziale Netzwerke?"
364
+
365
+ #: views/settings.php:311
366
+ msgid "Links target?"
367
+ msgstr ""
368
+
369
+ #: views/settings.php:314
370
+ msgid "New page"
371
+ msgstr ""
372
+
373
+ #: views/settings.php:315
374
+ msgid "Same page"
375
+ msgstr ""
376
+
377
+ #: views/settings.php:317
378
+ msgid "Choose how the links will open."
379
+ msgstr ""
380
+
381
+ #: views/settings.php:365
382
+ msgid "Contact"
383
+ msgstr "Kontakt"
384
+
385
+ #: views/settings.php:370
386
+ msgid "Show contact?"
387
+ msgstr "Zeige Kontakt?"
388
+
389
+ #: views/settings.php:379
390
+ msgid "Email address"
391
+ msgstr "E-Mail-Adresse"
392
+
393
+ #: views/settings.php:385
394
+ msgid "Effects"
395
+ msgstr "Effekte"
396
+
397
+ #: views/settings.php:388
398
+ msgid "Move top - Move bottom"
399
+ msgstr "Bewegung nach oben - nach untern"
400
+
401
+ #: views/settings.php:389
402
+ msgid "Zoom - Zoomed"
403
+ msgstr "Zoom - Vergrößern"
404
+
405
+ #: views/settings.php:390
406
+ msgid "Fold - Unfold"
407
+ msgstr "Falten - Klappen"
408
+
409
+ #: views/settings.php:397
410
+ msgid "Google Analytics"
411
+ msgstr ""
412
+
413
+ #: views/settings.php:402
414
+ msgid "Use Google Analytics?"
415
+ msgstr ""
416
+
417
+ #: views/settings.php:411
418
+ msgid "Tracking code"
419
+ msgstr ""
420
+
421
+ #: views/sidebar.php:3
422
+ msgid "Plugin Info"
423
+ msgstr "Plugin Info"
424
+
425
+ #: views/sidebar.php:13
426
+ msgid "Author"
427
+ msgstr "Autor"
428
+
429
+ #: views/sidebar.php:14
430
+ msgid "Website"
431
+ msgstr "Website"
432
+
433
+ #: views/sidebar.php:15
434
+ msgid "Twitter"
435
+ msgstr "Twitter"
436
+
437
+ #: views/sidebar.php:16
438
+ msgid "GitHub"
439
+ msgstr "GitHub"
440
+
441
+ #: views/sidebar.php:22
442
+ msgid "WordPress Themes"
443
+ msgstr ""
444
+
445
+ #: views/sidebar.php:31
446
+ msgid "Resources"
447
+ msgstr "Ressourcen"
448
+
449
+ #~ msgid "Subscribe now for early access to new WordPress themes."
450
+ #~ msgstr "Abonniere jetzt für frühen Zugang zu neuen WordPress Themes."
451
+
452
+ #~ msgid "Enter your email address"
453
+ #~ msgstr "Gib deine E-Mail-Adresse an"
454
+
455
+ #~ msgid "News"
456
+ #~ msgstr "News"
457
+
458
+ #~ msgid "Developed by <a href=\"%s\">Designmodo</a>"
459
+ #~ msgstr "Entwickelt durch <a href=\"%s\">Designmodo</a>"
languages/wp-maintenance-mode-en_US.mo CHANGED
Binary file
languages/wp-maintenance-mode-en_US.po CHANGED
@@ -1,390 +1,435 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Maintenance Mode 2.0.0\n"
4
- "POT-Creation-Date: 2014-08-28 21:10+0200\n"
5
- "PO-Revision-Date: 2014-08-28 21:10+0200\n"
6
- "Last-Translator: \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.6.7\n"
13
- "X-Poedit-Basepath: ../\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
- "X-Poedit-SearchPath-1: includes/classes\n"
19
- "X-Poedit-SearchPath-2: views\n"
20
-
21
- #: includes/classes/wp-maintenance-mode-admin.php:146
22
- msgid "WP Maintenance Mode"
23
- msgstr ""
24
-
25
- #: includes/classes/wp-maintenance-mode-admin.php:296
26
- msgid "Settings"
27
- msgstr ""
28
-
29
- #: includes/classes/wp-maintenance-mode-admin.php:315
30
- #, php-format
31
- msgid ""
32
- "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
33
- "href=\"%s\">deactivate</a> as soon as you are done."
34
- msgstr ""
35
-
36
- #: includes/classes/wp-maintenance-mode.php:92
37
- #: includes/classes/wp-maintenance-mode.php:93
38
- msgid "Maintenance mode"
39
- msgstr ""
40
-
41
- #: includes/classes/wp-maintenance-mode.php:95
42
- msgid ""
43
- "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
44
- "scheduled maintenance.<br />Thank you for your understanding.</p>"
45
- msgstr ""
46
-
47
- #: includes/classes/wp-maintenance-mode.php:113
48
- msgid "Notify me when it's ready"
49
- msgstr ""
50
-
51
- #: includes/classes/wp-maintenance-mode.php:220
52
- #, php-format
53
- msgid ""
54
- "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
55
- "\">settings</a>."
56
- msgstr ""
57
-
58
- #: includes/classes/wp-maintenance-mode.php:418
59
- #: includes/classes/wp-maintenance-mode.php:432
60
- msgid "Maintenance Mode"
61
- msgstr ""
62
-
63
- #: includes/classes/wp-maintenance-mode.php:620
64
- #: includes/classes/wp-maintenance-mode.php:648
65
- msgid "Please enter a valid email address."
66
- msgstr ""
67
-
68
- #: includes/classes/wp-maintenance-mode.php:631
69
- msgid "You successfuly subscribed. Thanks!"
70
- msgstr ""
71
-
72
- #: includes/classes/wp-maintenance-mode.php:644
73
- msgid "All fields required."
74
- msgstr ""
75
-
76
- #: includes/classes/wp-maintenance-mode.php:665
77
- msgid "Message via contact"
78
- msgstr ""
79
-
80
- #: includes/classes/wp-maintenance-mode.php:669
81
- msgid "Your email was sent to the website administrator. Thanks!"
82
- msgstr ""
83
-
84
- #: views/maintenance.php:45
85
- msgid "your e-mail..."
86
- msgstr ""
87
-
88
- #: views/maintenance.php:46 views/settings.php:258 views/sidebar.php:22
89
- #: views/sidebar.php:28
90
- msgid "Subscribe"
91
- msgstr ""
92
-
93
- #: views/maintenance.php:83
94
- msgid "Name"
95
- msgstr ""
96
-
97
- #: views/maintenance.php:84
98
- msgid "E-mail"
99
- msgstr ""
100
-
101
- #: views/maintenance.php:86
102
- msgid "Your message"
103
- msgstr ""
104
-
105
- #: views/maintenance.php:87
106
- msgid "Send"
107
- msgstr ""
108
-
109
- #: views/maintenance.php:92
110
- msgid "Contact us"
111
- msgstr ""
112
-
113
- #: views/maintenance.php:97
114
- #, php-format
115
- msgid "Developed by <a href=\"%s\">Designmodo</a>"
116
- msgstr ""
117
-
118
- #: views/settings.php:6
119
- msgid "Settings saved."
120
- msgstr ""
121
-
122
- #: views/settings.php:13
123
- msgid "General"
124
- msgstr ""
125
-
126
- #: views/settings.php:14
127
- msgid "Design"
128
- msgstr ""
129
-
130
- #: views/settings.php:15
131
- msgid "Modules"
132
- msgstr ""
133
-
134
- #: views/settings.php:24
135
- msgid "Status"
136
- msgstr ""
137
-
138
- #: views/settings.php:26
139
- msgid "Activated"
140
- msgstr ""
141
-
142
- #: views/settings.php:27
143
- msgid "Deactivated"
144
- msgstr ""
145
-
146
- #: views/settings.php:31
147
- msgid "Bypass for Search Bots"
148
- msgstr ""
149
-
150
- #: views/settings.php:34 views/settings.php:94 views/settings.php:104
151
- #: views/settings.php:230 views/settings.php:266 views/settings.php:303
152
- #: views/settings.php:356
153
- msgid "Yes"
154
- msgstr ""
155
-
156
- #: views/settings.php:35 views/settings.php:95 views/settings.php:105
157
- #: views/settings.php:231 views/settings.php:267 views/settings.php:304
158
- #: views/settings.php:357
159
- msgid "No"
160
- msgstr ""
161
-
162
- #: views/settings.php:37
163
- msgid "Allow Search Bots to bypass maintenance mode?"
164
- msgstr ""
165
-
166
- #: views/settings.php:41
167
- msgid "Backend Role"
168
- msgstr ""
169
-
170
- #: views/settings.php:48
171
- msgid "Which user role is allowed to access the backend of this blog?"
172
- msgstr ""
173
-
174
- #: views/settings.php:52
175
- msgid "Frontend Role"
176
- msgstr ""
177
-
178
- #: views/settings.php:59
179
- msgid "Which user role is allowed to access the frontend of this blog?"
180
- msgstr ""
181
-
182
- #: views/settings.php:63
183
- msgid "Robots Meta Tag"
184
- msgstr ""
185
-
186
- #: views/settings.php:69
187
- msgid ""
188
- "The robots meta tag lets you use a granular, page-specific approach to "
189
- "control how an individual page should be indexed and served to users in "
190
- "search results."
191
- msgstr ""
192
-
193
- #: views/settings.php:73
194
- msgid "Redirection"
195
- msgstr ""
196
-
197
- #: views/settings.php:76
198
- msgid ""
199
- "If you want to redirect a user to a URL (which is not the WordPress "
200
- "dashboard) after login, then define a URL (incl. http://)"
201
- msgstr ""
202
-
203
- #: views/settings.php:80
204
- msgid "Exclude"
205
- msgstr ""
206
-
207
- #: views/settings.php:87
208
- msgid ""
209
- "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
210
- "IP per line!"
211
- msgstr ""
212
-
213
- #: views/settings.php:91
214
- msgid "Notice"
215
- msgstr ""
216
-
217
- #: views/settings.php:97
218
- msgid "Do you want to see notices when maintenance mode is activated?"
219
- msgstr ""
220
-
221
- #: views/settings.php:101
222
- msgid "Author link"
223
- msgstr ""
224
-
225
- #: views/settings.php:107
226
- msgid ""
227
- "Do you want to leave a link to the plugin author on your maintenance mode "
228
- "page?"
229
- msgstr ""
230
-
231
- #: views/settings.php:121
232
- msgid "Content"
233
- msgstr ""
234
-
235
- #: views/settings.php:126
236
- msgid "Title (HTML tag)"
237
- msgstr ""
238
-
239
- #: views/settings.php:132
240
- msgid "Heading"
241
- msgstr ""
242
-
243
- #: views/settings.php:139 views/settings.php:272
244
- msgid "Text"
245
- msgstr ""
246
-
247
- #: views/settings.php:159
248
- msgid "Background"
249
- msgstr ""
250
-
251
- #: views/settings.php:164
252
- msgid "Choose type"
253
- msgstr ""
254
-
255
- #: views/settings.php:167
256
- msgid "Custom color"
257
- msgstr ""
258
-
259
- #: views/settings.php:168
260
- msgid "Uploaded background"
261
- msgstr ""
262
-
263
- #: views/settings.php:169
264
- msgid "Predefined background"
265
- msgstr ""
266
-
267
- #: views/settings.php:174
268
- msgid "Choose color"
269
- msgstr ""
270
-
271
- #: views/settings.php:180
272
- msgid "Upload background"
273
- msgstr ""
274
-
275
- #: views/settings.php:184
276
- msgid "Backgrounds should have 1920x1280 px size."
277
- msgstr ""
278
-
279
- #: views/settings.php:189
280
- msgid "Choose background"
281
- msgstr ""
282
-
283
- #: views/settings.php:222
284
- msgid "Countdown"
285
- msgstr ""
286
-
287
- #: views/settings.php:227
288
- msgid "Show countdown?"
289
- msgstr ""
290
-
291
- #: views/settings.php:236
292
- msgid "Start date"
293
- msgstr ""
294
-
295
- #: views/settings.php:242
296
- msgid "Countdown (remaining time)"
297
- msgstr ""
298
-
299
- #: views/settings.php:244
300
- msgid "Days"
301
- msgstr ""
302
-
303
- #: views/settings.php:245
304
- msgid "Hours"
305
- msgstr ""
306
-
307
- #: views/settings.php:246
308
- msgid "Minutes"
309
- msgstr ""
310
-
311
- #: views/settings.php:250
312
- msgid "Color"
313
- msgstr ""
314
-
315
- #: views/settings.php:263
316
- msgid "Show subscribe?"
317
- msgstr ""
318
-
319
- #: views/settings.php:279
320
- msgid "Stats"
321
- msgstr ""
322
-
323
- #: views/settings.php:283
324
- #, php-format
325
- msgid "You have %d subscriber(s)"
326
- msgstr ""
327
-
328
- #: views/settings.php:288
329
- msgid "Export as CSV"
330
- msgstr ""
331
-
332
- #: views/settings.php:295
333
- msgid "Social Networks"
334
- msgstr ""
335
-
336
- #: views/settings.php:300
337
- msgid "Show social networks?"
338
- msgstr ""
339
-
340
- #: views/settings.php:348
341
- msgid "Contact"
342
- msgstr ""
343
-
344
- #: views/settings.php:353
345
- msgid "Show contact?"
346
- msgstr ""
347
-
348
- #: views/settings.php:362
349
- msgid "Email address"
350
- msgstr ""
351
-
352
- #: views/settings.php:368
353
- msgid "Effects"
354
- msgstr ""
355
-
356
- #: views/sidebar.php:3
357
- msgid "Plugin Info"
358
- msgstr ""
359
-
360
- #: views/sidebar.php:13
361
- msgid "Author"
362
- msgstr ""
363
-
364
- #: views/sidebar.php:14
365
- msgid "Website"
366
- msgstr ""
367
-
368
- #: views/sidebar.php:15
369
- msgid "Twitter"
370
- msgstr ""
371
-
372
- #: views/sidebar.php:16
373
- msgid "GitHub"
374
- msgstr ""
375
-
376
- #: views/sidebar.php:24
377
- msgid "Subscribe now for early access to new WordPress themes."
378
- msgstr ""
379
-
380
- #: views/sidebar.php:27
381
- msgid "Enter your email address"
382
- msgstr ""
383
-
384
- #: views/sidebar.php:34
385
- msgid "News"
386
- msgstr ""
387
-
388
- #: views/sidebar.php:50
389
- msgid "Resources"
390
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.0.3\n"
4
+ "POT-Creation-Date: 2014-09-26 19:03+0200\n"
5
+ "PO-Revision-Date: 2014-09-26 19:03+0200\n"
6
+ "Last-Translator: \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.6.7\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: includes/classes\n"
19
+ "X-Poedit-SearchPath-2: views\n"
20
+
21
+ #: includes/classes/wp-maintenance-mode-admin.php:154
22
+ msgid "WP Maintenance Mode"
23
+ msgstr ""
24
+
25
+ #: includes/classes/wp-maintenance-mode-admin.php:358
26
+ msgid "Settings"
27
+ msgstr ""
28
+
29
+ #: includes/classes/wp-maintenance-mode-admin.php:377
30
+ #, php-format
31
+ msgid ""
32
+ "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
33
+ "href=\"%s\">deactivate</a> as soon as you are done."
34
+ msgstr ""
35
+
36
+ #: includes/classes/wp-maintenance-mode.php:100
37
+ #: includes/classes/wp-maintenance-mode.php:101
38
+ msgid "Maintenance mode"
39
+ msgstr ""
40
+
41
+ #: includes/classes/wp-maintenance-mode.php:103
42
+ msgid ""
43
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
44
+ "scheduled maintenance.<br />Thank you for your understanding.</p>"
45
+ msgstr ""
46
+
47
+ #: includes/classes/wp-maintenance-mode.php:121
48
+ msgid "Notify me when it's ready"
49
+ msgstr ""
50
+
51
+ #: includes/classes/wp-maintenance-mode.php:249
52
+ #, php-format
53
+ msgid ""
54
+ "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
55
+ "\">settings</a>."
56
+ msgstr ""
57
+
58
+ #: includes/classes/wp-maintenance-mode.php:425
59
+ #: includes/classes/wp-maintenance-mode.php:439
60
+ msgid "Maintenance Mode"
61
+ msgstr ""
62
+
63
+ #: includes/classes/wp-maintenance-mode.php:630
64
+ #: includes/classes/wp-maintenance-mode.php:658
65
+ msgid "Please enter a valid email address."
66
+ msgstr ""
67
+
68
+ #: includes/classes/wp-maintenance-mode.php:641
69
+ msgid "You successfuly subscribed. Thanks!"
70
+ msgstr ""
71
+
72
+ #: includes/classes/wp-maintenance-mode.php:654
73
+ msgid "All fields required."
74
+ msgstr ""
75
+
76
+ #: includes/classes/wp-maintenance-mode.php:675
77
+ msgid "Message via contact"
78
+ msgstr ""
79
+
80
+ #: includes/classes/wp-maintenance-mode.php:679
81
+ msgid "Your email was sent to the website administrator. Thanks!"
82
+ msgstr ""
83
+
84
+ #: views/loginform.php:8
85
+ msgid "Login"
86
+ msgstr ""
87
+
88
+ #: views/maintenance.php:41
89
+ msgid "your e-mail..."
90
+ msgstr ""
91
+
92
+ #: views/maintenance.php:42 views/settings.php:260
93
+ msgid "Subscribe"
94
+ msgstr ""
95
+
96
+ #: views/maintenance.php:83 views/sidebar.php:7
97
+ msgid "Name"
98
+ msgstr ""
99
+
100
+ #: views/maintenance.php:84
101
+ msgid "E-mail"
102
+ msgstr ""
103
+
104
+ #: views/maintenance.php:86
105
+ msgid "Your message"
106
+ msgstr ""
107
+
108
+ #: views/maintenance.php:87
109
+ msgid "Send"
110
+ msgstr ""
111
+
112
+ #: views/maintenance.php:92
113
+ msgid "Contact us"
114
+ msgstr ""
115
+
116
+ #: views/maintenance.php:97
117
+ msgid "Dashboard"
118
+ msgstr ""
119
+
120
+ #: views/settings.php:6
121
+ msgid "Settings saved."
122
+ msgstr ""
123
+
124
+ #: views/settings.php:13
125
+ msgid "General"
126
+ msgstr ""
127
+
128
+ #: views/settings.php:14
129
+ msgid "Design"
130
+ msgstr ""
131
+
132
+ #: views/settings.php:15
133
+ msgid "Modules"
134
+ msgstr ""
135
+
136
+ #: views/settings.php:24
137
+ msgid "Status"
138
+ msgstr ""
139
+
140
+ #: views/settings.php:26
141
+ msgid "Activated"
142
+ msgstr ""
143
+
144
+ #: views/settings.php:27
145
+ msgid "Deactivated"
146
+ msgstr ""
147
+
148
+ #: views/settings.php:31
149
+ msgid "Bypass for Search Bots"
150
+ msgstr ""
151
+
152
+ #: views/settings.php:34 views/settings.php:94 views/settings.php:104
153
+ #: views/settings.php:232 views/settings.php:268 views/settings.php:305
154
+ #: views/settings.php:373 views/settings.php:405
155
+ msgid "Yes"
156
+ msgstr ""
157
+
158
+ #: views/settings.php:35 views/settings.php:95 views/settings.php:105
159
+ #: views/settings.php:233 views/settings.php:269 views/settings.php:306
160
+ #: views/settings.php:374 views/settings.php:406
161
+ msgid "No"
162
+ msgstr ""
163
+
164
+ #: views/settings.php:37
165
+ msgid "Allow Search Bots to bypass maintenance mode?"
166
+ msgstr ""
167
+
168
+ #: views/settings.php:41
169
+ msgid "Backend Role"
170
+ msgstr ""
171
+
172
+ #: views/settings.php:48
173
+ msgid "Which user role is allowed to access the backend of this blog?"
174
+ msgstr ""
175
+
176
+ #: views/settings.php:52
177
+ msgid "Frontend Role"
178
+ msgstr ""
179
+
180
+ #: views/settings.php:59
181
+ msgid "Which user role is allowed to access the frontend of this blog?"
182
+ msgstr ""
183
+
184
+ #: views/settings.php:63
185
+ msgid "Robots Meta Tag"
186
+ msgstr ""
187
+
188
+ #: views/settings.php:69
189
+ msgid ""
190
+ "The robots meta tag lets you use a granular, page-specific approach to "
191
+ "control how an individual page should be indexed and served to users in "
192
+ "search results."
193
+ msgstr ""
194
+
195
+ #: views/settings.php:73
196
+ msgid "Redirection"
197
+ msgstr ""
198
+
199
+ #: views/settings.php:76
200
+ msgid ""
201
+ "If you want to redirect a user to a URL (which is not the WordPress "
202
+ "dashboard) after login, then define a URL (incl. http://)"
203
+ msgstr ""
204
+
205
+ #: views/settings.php:80
206
+ msgid "Exclude"
207
+ msgstr ""
208
+
209
+ #: views/settings.php:87
210
+ msgid ""
211
+ "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
212
+ "IP per line!"
213
+ msgstr ""
214
+
215
+ #: views/settings.php:91
216
+ msgid "Notice"
217
+ msgstr ""
218
+
219
+ #: views/settings.php:97
220
+ msgid "Do you want to see notices when maintenance mode is activated?"
221
+ msgstr ""
222
+
223
+ #: views/settings.php:101
224
+ msgid "Dashboard link"
225
+ msgstr ""
226
+
227
+ #: views/settings.php:107
228
+ msgid ""
229
+ "Do you want to add a link to the dashboard on your maintenance mode page?"
230
+ msgstr ""
231
+
232
+ #: views/settings.php:115 views/settings.php:218 views/settings.php:421
233
+ msgid "Save settings"
234
+ msgstr ""
235
+
236
+ #: views/settings.php:116 views/settings.php:219 views/settings.php:422
237
+ msgid "Reset settings"
238
+ msgstr ""
239
+
240
+ #: views/settings.php:121
241
+ msgid "Content"
242
+ msgstr ""
243
+
244
+ #: views/settings.php:126
245
+ msgid "Title (HTML tag)"
246
+ msgstr ""
247
+
248
+ #: views/settings.php:132
249
+ msgid "Heading"
250
+ msgstr ""
251
+
252
+ #: views/settings.php:139 views/settings.php:274
253
+ msgid "Text"
254
+ msgstr ""
255
+
256
+ #: views/settings.php:159
257
+ msgid "Background"
258
+ msgstr ""
259
+
260
+ #: views/settings.php:164
261
+ msgid "Choose type"
262
+ msgstr ""
263
+
264
+ #: views/settings.php:167
265
+ msgid "Custom color"
266
+ msgstr ""
267
+
268
+ #: views/settings.php:168
269
+ msgid "Uploaded background"
270
+ msgstr ""
271
+
272
+ #: views/settings.php:169
273
+ msgid "Predefined background"
274
+ msgstr ""
275
+
276
+ #: views/settings.php:174
277
+ msgid "Choose color"
278
+ msgstr ""
279
+
280
+ #: views/settings.php:180
281
+ msgid "Upload background"
282
+ msgstr ""
283
+
284
+ #: views/settings.php:184
285
+ msgid "Backgrounds should have 1920x1280 px size."
286
+ msgstr ""
287
+
288
+ #: views/settings.php:189
289
+ msgid "Choose background"
290
+ msgstr ""
291
+
292
+ #: views/settings.php:191
293
+ msgid "source <a href=\"%\" target=\"_blank\">Free Photos</a>"
294
+ msgstr ""
295
+
296
+ #: views/settings.php:224
297
+ msgid "Countdown"
298
+ msgstr ""
299
+
300
+ #: views/settings.php:229
301
+ msgid "Show countdown?"
302
+ msgstr ""
303
+
304
+ #: views/settings.php:238
305
+ msgid "Start date"
306
+ msgstr ""
307
+
308
+ #: views/settings.php:244
309
+ msgid "Countdown (remaining time)"
310
+ msgstr ""
311
+
312
+ #: views/settings.php:246
313
+ msgid "Days"
314
+ msgstr ""
315
+
316
+ #: views/settings.php:247
317
+ msgid "Hours"
318
+ msgstr ""
319
+
320
+ #: views/settings.php:248
321
+ msgid "Minutes"
322
+ msgstr ""
323
+
324
+ #: views/settings.php:252
325
+ msgid "Color"
326
+ msgstr ""
327
+
328
+ #: views/settings.php:265
329
+ msgid "Show subscribe?"
330
+ msgstr ""
331
+
332
+ #: views/settings.php:281
333
+ msgid "Stats"
334
+ msgstr ""
335
+
336
+ #: views/settings.php:285
337
+ #, php-format
338
+ msgid "You have %d subscriber(s)"
339
+ msgstr ""
340
+
341
+ #: views/settings.php:290
342
+ msgid "Export as CSV"
343
+ msgstr ""
344
+
345
+ #: views/settings.php:297
346
+ msgid "Social Networks"
347
+ msgstr ""
348
+
349
+ #: views/settings.php:302
350
+ msgid "Show social networks?"
351
+ msgstr ""
352
+
353
+ #: views/settings.php:311
354
+ msgid "Links target?"
355
+ msgstr ""
356
+
357
+ #: views/settings.php:314
358
+ msgid "New page"
359
+ msgstr ""
360
+
361
+ #: views/settings.php:315
362
+ msgid "Same page"
363
+ msgstr ""
364
+
365
+ #: views/settings.php:317
366
+ msgid "Choose how the links will open."
367
+ msgstr ""
368
+
369
+ #: views/settings.php:365
370
+ msgid "Contact"
371
+ msgstr ""
372
+
373
+ #: views/settings.php:370
374
+ msgid "Show contact?"
375
+ msgstr ""
376
+
377
+ #: views/settings.php:379
378
+ msgid "Email address"
379
+ msgstr ""
380
+
381
+ #: views/settings.php:385
382
+ msgid "Effects"
383
+ msgstr ""
384
+
385
+ #: views/settings.php:388
386
+ msgid "Move top - Move bottom"
387
+ msgstr ""
388
+
389
+ #: views/settings.php:389
390
+ msgid "Zoom - Zoomed"
391
+ msgstr ""
392
+
393
+ #: views/settings.php:390
394
+ msgid "Fold - Unfold"
395
+ msgstr ""
396
+
397
+ #: views/settings.php:397
398
+ msgid "Google Analytics"
399
+ msgstr ""
400
+
401
+ #: views/settings.php:402
402
+ msgid "Use Google Analytics?"
403
+ msgstr ""
404
+
405
+ #: views/settings.php:411
406
+ msgid "Tracking code"
407
+ msgstr ""
408
+
409
+ #: views/sidebar.php:3
410
+ msgid "Plugin Info"
411
+ msgstr ""
412
+
413
+ #: views/sidebar.php:13
414
+ msgid "Author"
415
+ msgstr ""
416
+
417
+ #: views/sidebar.php:14
418
+ msgid "Website"
419
+ msgstr ""
420
+
421
+ #: views/sidebar.php:15
422
+ msgid "Twitter"
423
+ msgstr ""
424
+
425
+ #: views/sidebar.php:16
426
+ msgid "GitHub"
427
+ msgstr ""
428
+
429
+ #: views/sidebar.php:22
430
+ msgid "WordPress Themes"
431
+ msgstr ""
432
+
433
+ #: views/sidebar.php:31
434
+ msgid "Resources"
435
+ msgstr ""
languages/wp-maintenance-mode-es_ES.mo ADDED
Binary file
languages/wp-maintenance-mode-es_ES.po ADDED
@@ -0,0 +1,464 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.0.0\n"
4
+ "POT-Creation-Date: 2014-09-27 07:52-0500\n"
5
+ "PO-Revision-Date: 2014-09-27 07:52-0500\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.6.9\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: includes/classes\n"
19
+ "X-Poedit-SearchPath-2: views\n"
20
+
21
+ #: includes/classes/wp-maintenance-mode-admin.php:154
22
+ msgid "WP Maintenance Mode"
23
+ msgstr "Modo de Mantenimiento WP"
24
+
25
+ #: includes/classes/wp-maintenance-mode-admin.php:358
26
+ msgid "Settings"
27
+ msgstr "Ajustes"
28
+
29
+ #: includes/classes/wp-maintenance-mode-admin.php:377
30
+ #, php-format
31
+ msgid ""
32
+ "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
33
+ "href=\"%s\">deactivate</a> as soon as you are done."
34
+ msgstr ""
35
+ "El modo de mantenimiento está <strong>activo</strong>. Por favor no olvides "
36
+ "<a href=\"%s\">desactivarlo</a> tan pronto como termines."
37
+
38
+ #: includes/classes/wp-maintenance-mode.php:100
39
+ #: includes/classes/wp-maintenance-mode.php:101
40
+ msgid "Maintenance mode"
41
+ msgstr "Modo de mantenimiento"
42
+
43
+ #: includes/classes/wp-maintenance-mode.php:103
44
+ msgid ""
45
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
46
+ "scheduled maintenance.<br />Thank you for your understanding.</p>"
47
+ msgstr ""
48
+ "<p>Disculpa las molestias.<br />Nuestro sitio esta actualmente bajo "
49
+ "mantenimiento programado.<br />Agradecemos tu comprensión.</p>"
50
+
51
+ #: includes/classes/wp-maintenance-mode.php:121
52
+ msgid "Notify me when it's ready"
53
+ msgstr "Notifícame cuanto este listo"
54
+
55
+ #: includes/classes/wp-maintenance-mode.php:249
56
+ #, php-format
57
+ msgid ""
58
+ "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
59
+ "\">settings</a>."
60
+ msgstr ""
61
+ "El plugin Modo de Mantenimiento WP fue reactivado y es NECESARIO que revises "
62
+ "los <a href=\"%s\">ajustes</a>."
63
+
64
+ #: includes/classes/wp-maintenance-mode.php:425
65
+ #: includes/classes/wp-maintenance-mode.php:439
66
+ msgid "Maintenance Mode"
67
+ msgstr "Modo de Mantenimiento"
68
+
69
+ #: includes/classes/wp-maintenance-mode.php:630
70
+ #: includes/classes/wp-maintenance-mode.php:658
71
+ msgid "Please enter a valid email address."
72
+ msgstr "Por favor usa una dirección de correo electrónico valida."
73
+
74
+ #: includes/classes/wp-maintenance-mode.php:641
75
+ msgid "You successfuly subscribed. Thanks!"
76
+ msgstr "Te has suscrito exitosamente. ¡Muchas gracias!"
77
+
78
+ #: includes/classes/wp-maintenance-mode.php:654
79
+ msgid "All fields required."
80
+ msgstr "Todos los campos son obligatorios."
81
+
82
+ #: includes/classes/wp-maintenance-mode.php:675
83
+ msgid "Message via contact"
84
+ msgstr "Mensaje vía formulario de contacto."
85
+
86
+ #: includes/classes/wp-maintenance-mode.php:679
87
+ msgid "Your email was sent to the website administrator. Thanks!"
88
+ msgstr "Tu mensaje ha sido enviado al administrador. ¡Muchas gracias!"
89
+
90
+ #: views/loginform.php:8
91
+ msgid "Login"
92
+ msgstr "Iniciar sesión"
93
+
94
+ #: views/maintenance.php:41
95
+ msgid "your e-mail..."
96
+ msgstr "dirección de correo electrónico ..."
97
+
98
+ #: views/maintenance.php:42 views/settings.php:260
99
+ msgid "Subscribe"
100
+ msgstr "Suscribirse"
101
+
102
+ #: views/maintenance.php:83 views/sidebar.php:7
103
+ msgid "Name"
104
+ msgstr "Nombre"
105
+
106
+ #: views/maintenance.php:84
107
+ msgid "E-mail"
108
+ msgstr "Correo electrónico"
109
+
110
+ #: views/maintenance.php:86
111
+ msgid "Your message"
112
+ msgstr "Mensaje"
113
+
114
+ #: views/maintenance.php:87
115
+ msgid "Send"
116
+ msgstr "Enviar"
117
+
118
+ #: views/maintenance.php:92
119
+ msgid "Contact us"
120
+ msgstr "Contáctanos"
121
+
122
+ #: views/maintenance.php:97
123
+ msgid "Dashboard"
124
+ msgstr "Escritorio"
125
+
126
+ #: views/settings.php:6
127
+ msgid "Settings saved."
128
+ msgstr "Ajustes guardados."
129
+
130
+ #: views/settings.php:13
131
+ msgid "General"
132
+ msgstr "General"
133
+
134
+ #: views/settings.php:14
135
+ msgid "Design"
136
+ msgstr "Diseño"
137
+
138
+ #: views/settings.php:15
139
+ msgid "Modules"
140
+ msgstr "Módulos"
141
+
142
+ #: views/settings.php:24
143
+ msgid "Status"
144
+ msgstr "Estado"
145
+
146
+ #: views/settings.php:26
147
+ msgid "Activated"
148
+ msgstr "Activado"
149
+
150
+ #: views/settings.php:27
151
+ msgid "Deactivated"
152
+ msgstr "Desactivado"
153
+
154
+ #: views/settings.php:31
155
+ msgid "Bypass for Search Bots"
156
+ msgstr "Evitar Robots de Búsqueda"
157
+
158
+ #: views/settings.php:34 views/settings.php:94 views/settings.php:104
159
+ #: views/settings.php:232 views/settings.php:268 views/settings.php:305
160
+ #: views/settings.php:373 views/settings.php:405
161
+ msgid "Yes"
162
+ msgstr "Si"
163
+
164
+ #: views/settings.php:35 views/settings.php:95 views/settings.php:105
165
+ #: views/settings.php:233 views/settings.php:269 views/settings.php:306
166
+ #: views/settings.php:374 views/settings.php:406
167
+ msgid "No"
168
+ msgstr "No"
169
+
170
+ #: views/settings.php:37
171
+ msgid "Allow Search Bots to bypass maintenance mode?"
172
+ msgstr "¿Permitir a los Robots de Búsqueda evitar el modo de mantenimiento?"
173
+
174
+ #: views/settings.php:41
175
+ msgid "Backend Role"
176
+ msgstr "Rol de administración"
177
+
178
+ #: views/settings.php:48
179
+ msgid "Which user role is allowed to access the backend of this blog?"
180
+ msgstr ""
181
+ "¿Que rol de usuario se requiere para acceder a la administración de este "
182
+ "blog?"
183
+
184
+ #: views/settings.php:52
185
+ msgid "Frontend Role"
186
+ msgstr "Rol de sitio"
187
+
188
+ #: views/settings.php:59
189
+ msgid "Which user role is allowed to access the frontend of this blog?"
190
+ msgstr "¿Que rol de usuario se requiere para acceder a este blog?"
191
+
192
+ #: views/settings.php:63
193
+ msgid "Robots Meta Tag"
194
+ msgstr "Meta Etiqueta Robots"
195
+
196
+ #: views/settings.php:69
197
+ msgid ""
198
+ "The robots meta tag lets you use a granular, page-specific approach to "
199
+ "control how an individual page should be indexed and served to users in "
200
+ "search results."
201
+ msgstr ""
202
+ "La meta etiqueta robots le permite definir de manera mas granular como deben "
203
+ "ser indexadas y servidas las paginas a los usuarios en los resultados de "
204
+ "búsqueda. "
205
+
206
+ #: views/settings.php:73
207
+ msgid "Redirection"
208
+ msgstr "Redirección"
209
+
210
+ #: views/settings.php:76
211
+ msgid ""
212
+ "If you want to redirect a user to a URL (which is not the WordPress "
213
+ "dashboard) after login, then define a URL (incl. http://)"
214
+ msgstr ""
215
+ "Si deseas enviar a un usuario a una URL (que no forma parte de su sitio "
216
+ "WordPress) después de iniciar sesión, define dicha URL (incluya http://)"
217
+
218
+ #: views/settings.php:80
219
+ msgid "Exclude"
220
+ msgstr "Excluir"
221
+
222
+ #: views/settings.php:87
223
+ msgid ""
224
+ "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
225
+ "IP per line!"
226
+ msgstr ""
227
+ "Excluye feed, paginas, archivos o direcciones IP del modo de mantenimiento. "
228
+ "Agregua un slug por linea!"
229
+
230
+ #: views/settings.php:91
231
+ msgid "Notice"
232
+ msgstr "Aviso"
233
+
234
+ #: views/settings.php:97
235
+ msgid "Do you want to see notices when maintenance mode is activated?"
236
+ msgstr "¿Deseas ver avisos cuando el modo de mantenimiento esta activo?"
237
+
238
+ #: views/settings.php:101
239
+ msgid "Dashboard link"
240
+ msgstr "Enlace al escritorio"
241
+
242
+ #: views/settings.php:107
243
+ msgid ""
244
+ "Do you want to add a link to the dashboard on your maintenance mode page?"
245
+ msgstr "¿Deseas agregar un enlace al escritorio en tu página de mantenimiento?"
246
+
247
+ #: views/settings.php:115 views/settings.php:218 views/settings.php:421
248
+ msgid "Save settings"
249
+ msgstr "Guardar ajustes"
250
+
251
+ #: views/settings.php:116 views/settings.php:219 views/settings.php:422
252
+ msgid "Reset settings"
253
+ msgstr "Restablecer ajustes"
254
+
255
+ #: views/settings.php:121
256
+ msgid "Content"
257
+ msgstr "Contenido"
258
+
259
+ #: views/settings.php:126
260
+ msgid "Title (HTML tag)"
261
+ msgstr "Título (Etiqueta HTML)"
262
+
263
+ #: views/settings.php:132
264
+ msgid "Heading"
265
+ msgstr "Encabezado"
266
+
267
+ #: views/settings.php:139 views/settings.php:274
268
+ msgid "Text"
269
+ msgstr "Texto"
270
+
271
+ #: views/settings.php:159
272
+ msgid "Background"
273
+ msgstr "Fondo"
274
+
275
+ #: views/settings.php:164
276
+ msgid "Choose type"
277
+ msgstr "Seleccionar tipo"
278
+
279
+ #: views/settings.php:167
280
+ msgid "Custom color"
281
+ msgstr "Color personalizado"
282
+
283
+ #: views/settings.php:168
284
+ msgid "Uploaded background"
285
+ msgstr "Fondo cargado"
286
+
287
+ #: views/settings.php:169
288
+ msgid "Predefined background"
289
+ msgstr "Fondo predefinido"
290
+
291
+ #: views/settings.php:174
292
+ msgid "Choose color"
293
+ msgstr "Elige un color"
294
+
295
+ #: views/settings.php:180
296
+ msgid "Upload background"
297
+ msgstr "Sube un fondo"
298
+
299
+ #: views/settings.php:184
300
+ msgid "Backgrounds should have 1920x1280 px size."
301
+ msgstr "El fondo debe medir 1920x1280 pixeles."
302
+
303
+ #: views/settings.php:189
304
+ msgid "Choose background"
305
+ msgstr "Elige el fondo"
306
+
307
+ #: views/settings.php:191
308
+ msgid "source <a href=\"%\" target=\"_blank\">Free Photos</a>"
309
+ msgstr "fuente <a href=\"%\" target=\"_blank\">Fotos Gratis</a>"
310
+
311
+ #: views/settings.php:224
312
+ msgid "Countdown"
313
+ msgstr "Contador"
314
+
315
+ #: views/settings.php:229
316
+ msgid "Show countdown?"
317
+ msgstr "¿Mostrar contador?"
318
+
319
+ #: views/settings.php:238
320
+ msgid "Start date"
321
+ msgstr "Fecha de inicio"
322
+
323
+ #: views/settings.php:244
324
+ msgid "Countdown (remaining time)"
325
+ msgstr "Contador (tiempo restante)"
326
+
327
+ #: views/settings.php:246
328
+ msgid "Days"
329
+ msgstr "Días"
330
+
331
+ #: views/settings.php:247
332
+ msgid "Hours"
333
+ msgstr "Horas"
334
+
335
+ #: views/settings.php:248
336
+ msgid "Minutes"
337
+ msgstr "Minutos"
338
+
339
+ #: views/settings.php:252
340
+ msgid "Color"
341
+ msgstr "Color"
342
+
343
+ #: views/settings.php:265
344
+ msgid "Show subscribe?"
345
+ msgstr "¿Mostrar suscribirse?"
346
+
347
+ #: views/settings.php:281
348
+ msgid "Stats"
349
+ msgstr "Estadísticas"
350
+
351
+ #: views/settings.php:285
352
+ #, php-format
353
+ msgid "You have %d subscriber(s)"
354
+ msgstr "Hay %d suscriptor(es)"
355
+
356
+ #: views/settings.php:290
357
+ msgid "Export as CSV"
358
+ msgstr "Exportar como CSV"
359
+
360
+ #: views/settings.php:297
361
+ msgid "Social Networks"
362
+ msgstr "Redes Sociales"
363
+
364
+ #: views/settings.php:302
365
+ msgid "Show social networks?"
366
+ msgstr "¿Mostrar redes sociales?"
367
+
368
+ #: views/settings.php:311
369
+ msgid "Links target?"
370
+ msgstr "¿Destino de enlaces?"
371
+
372
+ #: views/settings.php:314
373
+ msgid "New page"
374
+ msgstr "Página nueva"
375
+
376
+ #: views/settings.php:315
377
+ msgid "Same page"
378
+ msgstr "Misma página"
379
+
380
+ #: views/settings.php:317
381
+ msgid "Choose how the links will open."
382
+ msgstr "Selecciona como se abrirán los enlaces."
383
+
384
+ #: views/settings.php:365
385
+ msgid "Contact"
386
+ msgstr "Contacto"
387
+
388
+ #: views/settings.php:370
389
+ msgid "Show contact?"
390
+ msgstr "¿Mostrar contacto?"
391
+
392
+ #: views/settings.php:379
393
+ msgid "Email address"
394
+ msgstr "Dirección de correo electrónico"
395
+
396
+ #: views/settings.php:385
397
+ msgid "Effects"
398
+ msgstr "Efectos"
399
+
400
+ #: views/settings.php:388
401
+ msgid "Move top - Move bottom"
402
+ msgstr "Mover al inicio - Mover al final"
403
+
404
+ #: views/settings.php:389
405
+ msgid "Zoom - Zoomed"
406
+ msgstr "Ampliar - Ampliado"
407
+
408
+ #: views/settings.php:390
409
+ msgid "Fold - Unfold"
410
+ msgstr "Colapsar - Expandir"
411
+
412
+ #: views/settings.php:397
413
+ msgid "Google Analytics"
414
+ msgstr "Google Analytics"
415
+
416
+ #: views/settings.php:402
417
+ msgid "Use Google Analytics?"
418
+ msgstr "¿Usar Google Analytics?"
419
+
420
+ #: views/settings.php:411
421
+ msgid "Tracking code"
422
+ msgstr "Código de rastreo"
423
+
424
+ #: views/sidebar.php:3
425
+ msgid "Plugin Info"
426
+ msgstr "Información del plugin"
427
+
428
+ #: views/sidebar.php:13
429
+ msgid "Author"
430
+ msgstr "Autor"
431
+
432
+ #: views/sidebar.php:14
433
+ msgid "Website"
434
+ msgstr "Pagina web"
435
+
436
+ #: views/sidebar.php:15
437
+ msgid "Twitter"
438
+ msgstr "Twitter"
439
+
440
+ #: views/sidebar.php:16
441
+ msgid "GitHub"
442
+ msgstr "GitHub"
443
+
444
+ #: views/sidebar.php:22
445
+ msgid "WordPress Themes"
446
+ msgstr "Temas WordPress"
447
+
448
+ #: views/sidebar.php:31
449
+ msgid "Resources"
450
+ msgstr "Recursos"
451
+
452
+ #~ msgid "Developed by <a href=\"%s\">Designmodo</a>"
453
+ #~ msgstr "Desarrollado por <a href=\"%s\">Designmodo</a>"
454
+
455
+ #~ msgid "Subscribe now for early access to new WordPress themes."
456
+ #~ msgstr ""
457
+ #~ "Suscríbete ahora para obtener acceso preferencial a nuevos temas "
458
+ #~ "WordPress."
459
+
460
+ #~ msgid "Enter your email address"
461
+ #~ msgstr "Introduce tu dirección de correo electrónico"
462
+
463
+ #~ msgid "News"
464
+ #~ msgstr "Noticias"
languages/wp-maintenance-mode-fr_FR.mo ADDED
Binary file
languages/wp-maintenance-mode-fr_FR.po ADDED
@@ -0,0 +1,465 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.0.0\n"
4
+ "POT-Creation-Date: 2014-09-26 19:03+0200\n"
5
+ "PO-Revision-Date: 2014-09-26 19:03+0200\n"
6
+ "Last-Translator: Florian TIAR <tflorian91@hotmail.fr>\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.6.7\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: includes/classes\n"
19
+ "X-Poedit-SearchPath-2: views\n"
20
+
21
+ #: includes/classes/wp-maintenance-mode-admin.php:154
22
+ msgid "WP Maintenance Mode"
23
+ msgstr "WP Maintenance Mode"
24
+
25
+ #: includes/classes/wp-maintenance-mode-admin.php:358
26
+ msgid "Settings"
27
+ msgstr "Options"
28
+
29
+ #: includes/classes/wp-maintenance-mode-admin.php:377
30
+ #, php-format
31
+ msgid ""
32
+ "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
33
+ "href=\"%s\">deactivate</a> as soon as you are done."
34
+ msgstr ""
35
+ "Le mode Maintenance est <strong>actif</strong>. N'oubliez pas de le <a href="
36
+ "\"%s\">désactiver</a> dès que vous avez terminé."
37
+
38
+ #: includes/classes/wp-maintenance-mode.php:100
39
+ #: includes/classes/wp-maintenance-mode.php:101
40
+ msgid "Maintenance mode"
41
+ msgstr "Mode Maintenance"
42
+
43
+ #: includes/classes/wp-maintenance-mode.php:103
44
+ msgid ""
45
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
46
+ "scheduled maintenance.<br />Thank you for your understanding.</p>"
47
+ msgstr ""
48
+ "<p>Excusez-nous pour la gêne occasionnée.<br />Notre site web est "
49
+ "actuellement en maintenance.<br />Merci de votre compréhension.</p>"
50
+
51
+ #: includes/classes/wp-maintenance-mode.php:121
52
+ msgid "Notify me when it's ready"
53
+ msgstr "Me notifier quand c'est prêt"
54
+
55
+ #: includes/classes/wp-maintenance-mode.php:249
56
+ #, php-format
57
+ msgid ""
58
+ "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
59
+ "\">settings</a>."
60
+ msgstr ""
61
+ "Le plugin WP Maintenance Mode a été relancé et vous devez redéfinir les <a "
62
+ "href=\"%s\">options</a>."
63
+
64
+ #: includes/classes/wp-maintenance-mode.php:425
65
+ #: includes/classes/wp-maintenance-mode.php:439
66
+ msgid "Maintenance Mode"
67
+ msgstr "Maintenance Mode"
68
+
69
+ #: includes/classes/wp-maintenance-mode.php:630
70
+ #: includes/classes/wp-maintenance-mode.php:658
71
+ msgid "Please enter a valid email address."
72
+ msgstr "Veuillez entrer une adresse email valide s'il vous plait."
73
+
74
+ #: includes/classes/wp-maintenance-mode.php:641
75
+ msgid "You successfuly subscribed. Thanks!"
76
+ msgstr "Merci ! Vous vous êtes abonné avec succès."
77
+
78
+ #: includes/classes/wp-maintenance-mode.php:654
79
+ msgid "All fields required."
80
+ msgstr "Tous les champs requis."
81
+
82
+ #: includes/classes/wp-maintenance-mode.php:675
83
+ msgid "Message via contact"
84
+ msgstr "Message via contact"
85
+
86
+ #: includes/classes/wp-maintenance-mode.php:679
87
+ msgid "Your email was sent to the website administrator. Thanks!"
88
+ msgstr "Merci ! Votre email a été envoyé au webmaster du site."
89
+
90
+ #: views/loginform.php:8
91
+ msgid "Login"
92
+ msgstr ""
93
+
94
+ #: views/maintenance.php:41
95
+ msgid "your e-mail..."
96
+ msgstr "votre e-mail"
97
+
98
+ #: views/maintenance.php:42 views/settings.php:260
99
+ msgid "Subscribe"
100
+ msgstr "Abonnement Newsletter"
101
+
102
+ #: views/maintenance.php:83 views/sidebar.php:7
103
+ msgid "Name"
104
+ msgstr "Nom"
105
+
106
+ #: views/maintenance.php:84
107
+ msgid "E-mail"
108
+ msgstr "E-mail"
109
+
110
+ #: views/maintenance.php:86
111
+ msgid "Your message"
112
+ msgstr "Votre message"
113
+
114
+ #: views/maintenance.php:87
115
+ msgid "Send"
116
+ msgstr "Envoyer"
117
+
118
+ #: views/maintenance.php:92
119
+ msgid "Contact us"
120
+ msgstr "Contactez-nous"
121
+
122
+ #: views/maintenance.php:97
123
+ msgid "Dashboard"
124
+ msgstr ""
125
+
126
+ #: views/settings.php:6
127
+ msgid "Settings saved."
128
+ msgstr "Options sauvegardés"
129
+
130
+ #: views/settings.php:13
131
+ msgid "General"
132
+ msgstr "Général"
133
+
134
+ #: views/settings.php:14
135
+ msgid "Design"
136
+ msgstr "Design"
137
+
138
+ #: views/settings.php:15
139
+ msgid "Modules"
140
+ msgstr "Modules"
141
+
142
+ #: views/settings.php:24
143
+ msgid "Status"
144
+ msgstr "Etat"
145
+
146
+ #: views/settings.php:26
147
+ msgid "Activated"
148
+ msgstr "Activé"
149
+
150
+ #: views/settings.php:27
151
+ msgid "Deactivated"
152
+ msgstr "Désactivé"
153
+
154
+ #: views/settings.php:31
155
+ msgid "Bypass for Search Bots"
156
+ msgstr "Contournement pour les Robots"
157
+
158
+ #: views/settings.php:34 views/settings.php:94 views/settings.php:104
159
+ #: views/settings.php:232 views/settings.php:268 views/settings.php:305
160
+ #: views/settings.php:373 views/settings.php:405
161
+ msgid "Yes"
162
+ msgstr "Oui"
163
+
164
+ #: views/settings.php:35 views/settings.php:95 views/settings.php:105
165
+ #: views/settings.php:233 views/settings.php:269 views/settings.php:306
166
+ #: views/settings.php:374 views/settings.php:406
167
+ msgid "No"
168
+ msgstr "Non"
169
+
170
+ #: views/settings.php:37
171
+ msgid "Allow Search Bots to bypass maintenance mode?"
172
+ msgstr "Autoriser les robots à contourner le mode maintenance ?"
173
+
174
+ #: views/settings.php:41
175
+ msgid "Backend Role"
176
+ msgstr "Rôle utilisateur du Panel d'Administration"
177
+
178
+ #: views/settings.php:48
179
+ msgid "Which user role is allowed to access the backend of this blog?"
180
+ msgstr ""
181
+ "Quel rôle d'utilisateur est autorisé à avoir accès au panel "
182
+ "d'administration ?"
183
+
184
+ #: views/settings.php:52
185
+ msgid "Frontend Role"
186
+ msgstr "Rôle utilisateur du Site Web"
187
+
188
+ #: views/settings.php:59
189
+ msgid "Which user role is allowed to access the frontend of this blog?"
190
+ msgstr "Quel rôle d'utilisateur est autorisé à avoir accès au Site Web ?"
191
+
192
+ #: views/settings.php:63
193
+ msgid "Robots Meta Tag"
194
+ msgstr "Balise Meta de Robots"
195
+
196
+ #: views/settings.php:69
197
+ msgid ""
198
+ "The robots meta tag lets you use a granular, page-specific approach to "
199
+ "control how an individual page should be indexed and served to users in "
200
+ "search results."
201
+ msgstr ""
202
+ "La balise meta de robots vous permet d'utiliser un granulaire, chemin de "
203
+ "page spécifique pour contrôler comment une page individuelle peut être "
204
+ "indexé et servi aux utilisateurs dans les résultats de recherche."
205
+
206
+ #: views/settings.php:73
207
+ msgid "Redirection"
208
+ msgstr "Redirection"
209
+
210
+ #: views/settings.php:76
211
+ msgid ""
212
+ "If you want to redirect a user to a URL (which is not the WordPress "
213
+ "dashboard) after login, then define a URL (incl. http://)"
214
+ msgstr ""
215
+ "Si vous souhaitez rediriger un utilisateur vers une URL spécifique (qui "
216
+ "n'est pas celle de votre site) après connexion (inclure : http://)"
217
+
218
+ #: views/settings.php:80
219
+ msgid "Exclude"
220
+ msgstr "Exclure"
221
+
222
+ #: views/settings.php:87
223
+ msgid ""
224
+ "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
225
+ "IP per line!"
226
+ msgstr ""
227
+ "Exclure les flux, pages, archives ou adresses IP du mode maintenance. "
228
+ "Ajouter une exclusion par ligne."
229
+
230
+ #: views/settings.php:91
231
+ msgid "Notice"
232
+ msgstr "Notification"
233
+
234
+ #: views/settings.php:97
235
+ msgid "Do you want to see notices when maintenance mode is activated?"
236
+ msgstr ""
237
+ "Souhaitez-vous voir une notification quand le mode maintenance est activé ?"
238
+
239
+ #: views/settings.php:101
240
+ msgid "Dashboard link"
241
+ msgstr ""
242
+
243
+ #: views/settings.php:107
244
+ msgid ""
245
+ "Do you want to add a link to the dashboard on your maintenance mode page?"
246
+ msgstr ""
247
+
248
+ #: views/settings.php:115 views/settings.php:218 views/settings.php:421
249
+ msgid "Save settings"
250
+ msgstr ""
251
+
252
+ #: views/settings.php:116 views/settings.php:219 views/settings.php:422
253
+ msgid "Reset settings"
254
+ msgstr ""
255
+
256
+ #: views/settings.php:121
257
+ msgid "Content"
258
+ msgstr "Contenu"
259
+
260
+ #: views/settings.php:126
261
+ msgid "Title (HTML tag)"
262
+ msgstr "Title (balise meta HTML)"
263
+
264
+ #: views/settings.php:132
265
+ msgid "Heading"
266
+ msgstr "En-tête (titre)"
267
+
268
+ #: views/settings.php:139 views/settings.php:274
269
+ msgid "Text"
270
+ msgstr "Texte"
271
+
272
+ #: views/settings.php:159
273
+ msgid "Background"
274
+ msgstr "Fond d'écran"
275
+
276
+ #: views/settings.php:164
277
+ msgid "Choose type"
278
+ msgstr "Choix du type"
279
+
280
+ #: views/settings.php:167
281
+ msgid "Custom color"
282
+ msgstr "Couleur personnalisée"
283
+
284
+ #: views/settings.php:168
285
+ msgid "Uploaded background"
286
+ msgstr "Fond d'écran uploadé"
287
+
288
+ #: views/settings.php:169
289
+ msgid "Predefined background"
290
+ msgstr "Fond d'écran prédéfini"
291
+
292
+ #: views/settings.php:174
293
+ msgid "Choose color"
294
+ msgstr "Choix de la couleur"
295
+
296
+ #: views/settings.php:180
297
+ msgid "Upload background"
298
+ msgstr "Uploader le fond d'écran"
299
+
300
+ #: views/settings.php:184
301
+ msgid "Backgrounds should have 1920x1280 px size."
302
+ msgstr "Le fond d'écran doit avoir une taille de 1920x1280px."
303
+
304
+ #: views/settings.php:189
305
+ msgid "Choose background"
306
+ msgstr "Choix du fond d'écran"
307
+
308
+ #: views/settings.php:191
309
+ msgid "source <a href=\"%\" target=\"_blank\">Free Photos</a>"
310
+ msgstr ""
311
+
312
+ #: views/settings.php:224
313
+ msgid "Countdown"
314
+ msgstr "Compte à rebours"
315
+
316
+ #: views/settings.php:229
317
+ msgid "Show countdown?"
318
+ msgstr "Afficher le compte à rebours ?"
319
+
320
+ #: views/settings.php:238
321
+ msgid "Start date"
322
+ msgstr "Date de départ"
323
+
324
+ #: views/settings.php:244
325
+ msgid "Countdown (remaining time)"
326
+ msgstr "Compte à rebours (temps restant)"
327
+
328
+ #: views/settings.php:246
329
+ msgid "Days"
330
+ msgstr "Jours"
331
+
332
+ #: views/settings.php:247
333
+ msgid "Hours"
334
+ msgstr "Heures"
335
+
336
+ #: views/settings.php:248
337
+ msgid "Minutes"
338
+ msgstr "Minutes"
339
+
340
+ #: views/settings.php:252
341
+ msgid "Color"
342
+ msgstr "Couleur"
343
+
344
+ #: views/settings.php:265
345
+ msgid "Show subscribe?"
346
+ msgstr "Afficher l'abonnement (newsletter) ?"
347
+
348
+ #: views/settings.php:281
349
+ msgid "Stats"
350
+ msgstr "Statistiques"
351
+
352
+ #: views/settings.php:285
353
+ #, php-format
354
+ msgid "You have %d subscriber(s)"
355
+ msgstr "Vous avez %d abonné(s)"
356
+
357
+ #: views/settings.php:290
358
+ msgid "Export as CSV"
359
+ msgstr "Exporter en CSV"
360
+
361
+ #: views/settings.php:297
362
+ msgid "Social Networks"
363
+ msgstr "Réseaux Sociaux"
364
+
365
+ #: views/settings.php:302
366
+ msgid "Show social networks?"
367
+ msgstr "Afficher les réseaux sociaux ?"
368
+
369
+ #: views/settings.php:311
370
+ msgid "Links target?"
371
+ msgstr ""
372
+
373
+ #: views/settings.php:314
374
+ msgid "New page"
375
+ msgstr ""
376
+
377
+ #: views/settings.php:315
378
+ msgid "Same page"
379
+ msgstr ""
380
+
381
+ #: views/settings.php:317
382
+ msgid "Choose how the links will open."
383
+ msgstr ""
384
+
385
+ #: views/settings.php:365
386
+ msgid "Contact"
387
+ msgstr "Contact"
388
+
389
+ #: views/settings.php:370
390
+ msgid "Show contact?"
391
+ msgstr "Afficher le formulaire de contact ?"
392
+
393
+ #: views/settings.php:379
394
+ msgid "Email address"
395
+ msgstr "Adresse email"
396
+
397
+ #: views/settings.php:385
398
+ msgid "Effects"
399
+ msgstr "Animation"
400
+
401
+ #: views/settings.php:388
402
+ msgid "Move top - Move bottom"
403
+ msgstr ""
404
+
405
+ #: views/settings.php:389
406
+ msgid "Zoom - Zoomed"
407
+ msgstr ""
408
+
409
+ #: views/settings.php:390
410
+ msgid "Fold - Unfold"
411
+ msgstr ""
412
+
413
+ #: views/settings.php:397
414
+ msgid "Google Analytics"
415
+ msgstr ""
416
+
417
+ #: views/settings.php:402
418
+ msgid "Use Google Analytics?"
419
+ msgstr ""
420
+
421
+ #: views/settings.php:411
422
+ msgid "Tracking code"
423
+ msgstr ""
424
+
425
+ #: views/sidebar.php:3
426
+ msgid "Plugin Info"
427
+ msgstr "Informations sur le Plugin"
428
+
429
+ #: views/sidebar.php:13
430
+ msgid "Author"
431
+ msgstr "Auteur"
432
+
433
+ #: views/sidebar.php:14
434
+ msgid "Website"
435
+ msgstr "Site Web"
436
+
437
+ #: views/sidebar.php:15
438
+ msgid "Twitter"
439
+ msgstr "Twitter"
440
+
441
+ #: views/sidebar.php:16
442
+ msgid "GitHub"
443
+ msgstr "GitHub"
444
+
445
+ #: views/sidebar.php:22
446
+ msgid "WordPress Themes"
447
+ msgstr ""
448
+
449
+ #: views/sidebar.php:31
450
+ msgid "Resources"
451
+ msgstr "Resources"
452
+
453
+ #~ msgid "Developed by <a href=\"%s\">Designmodo</a>"
454
+ #~ msgstr "Développé par <a href=\"%s\">Designmodo</a>"
455
+
456
+ #~ msgid "Subscribe now for early access to new WordPress themes."
457
+ #~ msgstr ""
458
+ #~ "Abonnez-vous maintenant pour avoir facilement accès aux nouveaux thèmes "
459
+ #~ "WordPress."
460
+
461
+ #~ msgid "Enter your email address"
462
+ #~ msgstr "Entrez votre adresse email"
463
+
464
+ #~ msgid "News"
465
+ #~ msgstr "Actualités"
languages/wp-maintenance-mode-nl_NL.mo ADDED
Binary file
languages/wp-maintenance-mode-nl_NL.po ADDED
@@ -0,0 +1,460 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.0.0\n"
4
+ "POT-Creation-Date: 2014-09-26 19:03+0200\n"
5
+ "PO-Revision-Date: 2014-09-26 19:03+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.6.7\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: includes/classes\n"
19
+ "X-Poedit-SearchPath-2: views\n"
20
+
21
+ #: includes/classes/wp-maintenance-mode-admin.php:154
22
+ msgid "WP Maintenance Mode"
23
+ msgstr "WP Maintenance Mode"
24
+
25
+ #: includes/classes/wp-maintenance-mode-admin.php:358
26
+ msgid "Settings"
27
+ msgstr "Instellingen"
28
+
29
+ #: includes/classes/wp-maintenance-mode-admin.php:377
30
+ #, php-format
31
+ msgid ""
32
+ "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
33
+ "href=\"%s\">deactivate</a> as soon as you are done."
34
+ msgstr ""
35
+ "De Onderhoudsmodus is <strong>actief</strong>. Vergeet niet om hem <a href="
36
+ "\"%s\">uit te schakelen</a> wanneer je klaar bent."
37
+
38
+ #: includes/classes/wp-maintenance-mode.php:100
39
+ #: includes/classes/wp-maintenance-mode.php:101
40
+ msgid "Maintenance mode"
41
+ msgstr "Onderhoudsmodus"
42
+
43
+ #: includes/classes/wp-maintenance-mode.php:103
44
+ msgid ""
45
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
46
+ "scheduled maintenance.<br />Thank you for your understanding.</p>"
47
+ msgstr ""
48
+ "<p>Excuus voor het ongemak.<br />Onze website ondergaat op dit moment "
49
+ "gepland onderhoud.<br/>Bedankt voor uw begrip.</p>"
50
+
51
+ #: includes/classes/wp-maintenance-mode.php:121
52
+ msgid "Notify me when it's ready"
53
+ msgstr "Informeer mij wanneer het is afgerond"
54
+
55
+ #: includes/classes/wp-maintenance-mode.php:249
56
+ #, php-format
57
+ msgid ""
58
+ "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
59
+ "\">settings</a>."
60
+ msgstr ""
61
+ "De WP Maintenance Mode Plugin is opnieuw opgestart en je MOET de <a href=\"%s"
62
+ "\">instellingen</a> opnieuw bekijken."
63
+
64
+ #: includes/classes/wp-maintenance-mode.php:425
65
+ #: includes/classes/wp-maintenance-mode.php:439
66
+ msgid "Maintenance Mode"
67
+ msgstr "Onderhousmodus"
68
+
69
+ #: includes/classes/wp-maintenance-mode.php:630
70
+ #: includes/classes/wp-maintenance-mode.php:658
71
+ msgid "Please enter a valid email address."
72
+ msgstr "Voer een geldig e-mailadres in."
73
+
74
+ #: includes/classes/wp-maintenance-mode.php:641
75
+ msgid "You successfuly subscribed. Thanks!"
76
+ msgstr "Je bent succesvol aangemeld, dankjewel!"
77
+
78
+ #: includes/classes/wp-maintenance-mode.php:654
79
+ msgid "All fields required."
80
+ msgstr "Alle velden zijn verplicht."
81
+
82
+ #: includes/classes/wp-maintenance-mode.php:675
83
+ msgid "Message via contact"
84
+ msgstr "Bericht via contact"
85
+
86
+ #: includes/classes/wp-maintenance-mode.php:679
87
+ msgid "Your email was sent to the website administrator. Thanks!"
88
+ msgstr "Je bericht is verstuurd naar de beheerder. Dankjewel!"
89
+
90
+ #: views/loginform.php:8
91
+ msgid "Login"
92
+ msgstr ""
93
+
94
+ #: views/maintenance.php:41
95
+ msgid "your e-mail..."
96
+ msgstr "e-mailadres..."
97
+
98
+ #: views/maintenance.php:42 views/settings.php:260
99
+ msgid "Subscribe"
100
+ msgstr "Aanmelden"
101
+
102
+ #: views/maintenance.php:83 views/sidebar.php:7
103
+ msgid "Name"
104
+ msgstr "Naam"
105
+
106
+ #: views/maintenance.php:84
107
+ msgid "E-mail"
108
+ msgstr "E-mailadres"
109
+
110
+ #: views/maintenance.php:86
111
+ msgid "Your message"
112
+ msgstr "Je bericht"
113
+
114
+ #: views/maintenance.php:87
115
+ msgid "Send"
116
+ msgstr "Verstuur"
117
+
118
+ #: views/maintenance.php:92
119
+ msgid "Contact us"
120
+ msgstr "Neem contact met ons op"
121
+
122
+ #: views/maintenance.php:97
123
+ msgid "Dashboard"
124
+ msgstr ""
125
+
126
+ #: views/settings.php:6
127
+ msgid "Settings saved."
128
+ msgstr "Instellingen opgeslagen"
129
+
130
+ #: views/settings.php:13
131
+ msgid "General"
132
+ msgstr "Algemeen"
133
+
134
+ #: views/settings.php:14
135
+ msgid "Design"
136
+ msgstr "Ontwerp"
137
+
138
+ #: views/settings.php:15
139
+ msgid "Modules"
140
+ msgstr "Modules"
141
+
142
+ #: views/settings.php:24
143
+ msgid "Status"
144
+ msgstr "Status"
145
+
146
+ #: views/settings.php:26
147
+ msgid "Activated"
148
+ msgstr "Geactiveerd"
149
+
150
+ #: views/settings.php:27
151
+ msgid "Deactivated"
152
+ msgstr "Gedeactiveerd"
153
+
154
+ #: views/settings.php:31
155
+ msgid "Bypass for Search Bots"
156
+ msgstr "Omleiding voor zoekmachine robots"
157
+
158
+ #: views/settings.php:34 views/settings.php:94 views/settings.php:104
159
+ #: views/settings.php:232 views/settings.php:268 views/settings.php:305
160
+ #: views/settings.php:373 views/settings.php:405
161
+ msgid "Yes"
162
+ msgstr "Ja"
163
+
164
+ #: views/settings.php:35 views/settings.php:95 views/settings.php:105
165
+ #: views/settings.php:233 views/settings.php:269 views/settings.php:306
166
+ #: views/settings.php:374 views/settings.php:406
167
+ msgid "No"
168
+ msgstr "Nee"
169
+
170
+ #: views/settings.php:37
171
+ msgid "Allow Search Bots to bypass maintenance mode?"
172
+ msgstr "Mogen zoekmachine robots de onderhoudsmodus omzeilen?"
173
+
174
+ #: views/settings.php:41
175
+ msgid "Backend Role"
176
+ msgstr "Backend rol"
177
+
178
+ #: views/settings.php:48
179
+ msgid "Which user role is allowed to access the backend of this blog?"
180
+ msgstr "Welke gebruikersrollen mogen de backend van dit blog bereiken?"
181
+
182
+ #: views/settings.php:52
183
+ msgid "Frontend Role"
184
+ msgstr "Frontend rol"
185
+
186
+ #: views/settings.php:59
187
+ msgid "Which user role is allowed to access the frontend of this blog?"
188
+ msgstr "Welke gebruikersrollen mogen de voorkant van dit blog bereiken?"
189
+
190
+ #: views/settings.php:63
191
+ msgid "Robots Meta Tag"
192
+ msgstr "Robots Meta Tag"
193
+
194
+ #: views/settings.php:69
195
+ msgid ""
196
+ "The robots meta tag lets you use a granular, page-specific approach to "
197
+ "control how an individual page should be indexed and served to users in "
198
+ "search results."
199
+ msgstr ""
200
+ "De Robots Meta Tag maakt het mogelijk om per pagina te bepalen hoe deze "
201
+ "pagina's geïndexeerd en getoond moeten worden in zoekresultaten."
202
+
203
+ #: views/settings.php:73
204
+ msgid "Redirection"
205
+ msgstr "Doorverwijzing"
206
+
207
+ #: views/settings.php:76
208
+ msgid ""
209
+ "If you want to redirect a user to a URL (which is not the WordPress "
210
+ "dashboard) after login, then define a URL (incl. http://)"
211
+ msgstr ""
212
+ "Als je gebruikers na het inloggen wilt doorverwijzen naar een URL (anders "
213
+ "dan het WordPress Dashboard), stel deze dan hier in (inclusief http://)."
214
+
215
+ #: views/settings.php:80
216
+ msgid "Exclude"
217
+ msgstr "Uitsluiten"
218
+
219
+ #: views/settings.php:87
220
+ msgid ""
221
+ "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
222
+ "IP per line!"
223
+ msgstr ""
224
+ "Sluit Feeds, pagina's, archieven of IP-adressen uit van de Onderhoudsmodus. "
225
+ "Voer één slug of IP in per regel!"
226
+
227
+ #: views/settings.php:91
228
+ msgid "Notice"
229
+ msgstr "Kennisgeving"
230
+
231
+ #: views/settings.php:97
232
+ msgid "Do you want to see notices when maintenance mode is activated?"
233
+ msgstr "Wil je een bericht zien wanneer de onderhoudsmodus actief is?"
234
+
235
+ #: views/settings.php:101
236
+ msgid "Dashboard link"
237
+ msgstr ""
238
+
239
+ #: views/settings.php:107
240
+ msgid ""
241
+ "Do you want to add a link to the dashboard on your maintenance mode page?"
242
+ msgstr ""
243
+
244
+ #: views/settings.php:115 views/settings.php:218 views/settings.php:421
245
+ msgid "Save settings"
246
+ msgstr "Instellingen opslaan"
247
+
248
+ #: views/settings.php:116 views/settings.php:219 views/settings.php:422
249
+ msgid "Reset settings"
250
+ msgstr "Instellingen herstellen"
251
+
252
+ #: views/settings.php:121
253
+ msgid "Content"
254
+ msgstr "Inhoud"
255
+
256
+ #: views/settings.php:126
257
+ msgid "Title (HTML tag)"
258
+ msgstr "Titel (HTML tag)"
259
+
260
+ #: views/settings.php:132
261
+ msgid "Heading"
262
+ msgstr "Titel"
263
+
264
+ #: views/settings.php:139 views/settings.php:274
265
+ msgid "Text"
266
+ msgstr "Tekst"
267
+
268
+ #: views/settings.php:159
269
+ msgid "Background"
270
+ msgstr "Achtergrond"
271
+
272
+ #: views/settings.php:164
273
+ msgid "Choose type"
274
+ msgstr "Kies type"
275
+
276
+ #: views/settings.php:167
277
+ msgid "Custom color"
278
+ msgstr "Aangepaste kleur"
279
+
280
+ #: views/settings.php:168
281
+ msgid "Uploaded background"
282
+ msgstr "Upload achtergrond"
283
+
284
+ #: views/settings.php:169
285
+ msgid "Predefined background"
286
+ msgstr "Vooraf gedefineerde achtergrond"
287
+
288
+ #: views/settings.php:174
289
+ msgid "Choose color"
290
+ msgstr "Kies kleur"
291
+
292
+ #: views/settings.php:180
293
+ msgid "Upload background"
294
+ msgstr "Upload achtergrond"
295
+
296
+ #: views/settings.php:184
297
+ msgid "Backgrounds should have 1920x1280 px size."
298
+ msgstr "Achtergronden moeten een afmeting van 1920x1280 px hebben."
299
+
300
+ #: views/settings.php:189
301
+ msgid "Choose background"
302
+ msgstr "Kies achtergrond"
303
+
304
+ #: views/settings.php:191
305
+ msgid "source <a href=\"%\" target=\"_blank\">Free Photos</a>"
306
+ msgstr "bron <a href=\"%\" target=\"_blank\">Free Photos</a>"
307
+
308
+ #: views/settings.php:224
309
+ msgid "Countdown"
310
+ msgstr "Countdown"
311
+
312
+ #: views/settings.php:229
313
+ msgid "Show countdown?"
314
+ msgstr "Countdown tonen?"
315
+
316
+ #: views/settings.php:238
317
+ msgid "Start date"
318
+ msgstr "Start datum"
319
+
320
+ #: views/settings.php:244
321
+ msgid "Countdown (remaining time)"
322
+ msgstr "Countdown (resterende tijd)"
323
+
324
+ #: views/settings.php:246
325
+ msgid "Days"
326
+ msgstr "Dagen"
327
+
328
+ #: views/settings.php:247
329
+ msgid "Hours"
330
+ msgstr "Uren"
331
+
332
+ #: views/settings.php:248
333
+ msgid "Minutes"
334
+ msgstr "Minuten"
335
+
336
+ #: views/settings.php:252
337
+ msgid "Color"
338
+ msgstr "Kleur"
339
+
340
+ #: views/settings.php:265
341
+ msgid "Show subscribe?"
342
+ msgstr "Toon aanmelden e-mail?"
343
+
344
+ #: views/settings.php:281
345
+ msgid "Stats"
346
+ msgstr "Statistieken"
347
+
348
+ #: views/settings.php:285
349
+ #, php-format
350
+ msgid "You have %d subscriber(s)"
351
+ msgstr "Je hebt %d abonnee(s)"
352
+
353
+ #: views/settings.php:290
354
+ msgid "Export as CSV"
355
+ msgstr "Exporteren als CSV"
356
+
357
+ #: views/settings.php:297
358
+ msgid "Social Networks"
359
+ msgstr "Sociale netwerken"
360
+
361
+ #: views/settings.php:302
362
+ msgid "Show social networks?"
363
+ msgstr "Toon sociale netwerken?"
364
+
365
+ #: views/settings.php:311
366
+ msgid "Links target?"
367
+ msgstr ""
368
+
369
+ #: views/settings.php:314
370
+ msgid "New page"
371
+ msgstr ""
372
+
373
+ #: views/settings.php:315
374
+ msgid "Same page"
375
+ msgstr ""
376
+
377
+ #: views/settings.php:317
378
+ msgid "Choose how the links will open."
379
+ msgstr ""
380
+
381
+ #: views/settings.php:365
382
+ msgid "Contact"
383
+ msgstr "Contact"
384
+
385
+ #: views/settings.php:370
386
+ msgid "Show contact?"
387
+ msgstr "Toon contact?"
388
+
389
+ #: views/settings.php:379
390
+ msgid "Email address"
391
+ msgstr "E-mailadres"
392
+
393
+ #: views/settings.php:385
394
+ msgid "Effects"
395
+ msgstr "Effecten"
396
+
397
+ #: views/settings.php:388
398
+ msgid "Move top - Move bottom"
399
+ msgstr "Naar top - Naar beneden"
400
+
401
+ #: views/settings.php:389
402
+ msgid "Zoom - Zoomed"
403
+ msgstr "Zoom - Ingezoomd"
404
+
405
+ #: views/settings.php:390
406
+ msgid "Fold - Unfold"
407
+ msgstr "Vouwen - Opvouwen"
408
+
409
+ #: views/settings.php:397
410
+ msgid "Google Analytics"
411
+ msgstr ""
412
+
413
+ #: views/settings.php:402
414
+ msgid "Use Google Analytics?"
415
+ msgstr ""
416
+
417
+ #: views/settings.php:411
418
+ msgid "Tracking code"
419
+ msgstr ""
420
+
421
+ #: views/sidebar.php:3
422
+ msgid "Plugin Info"
423
+ msgstr "Plugin Info"
424
+
425
+ #: views/sidebar.php:13
426
+ msgid "Author"
427
+ msgstr "Auteur"
428
+
429
+ #: views/sidebar.php:14
430
+ msgid "Website"
431
+ msgstr "Website"
432
+
433
+ #: views/sidebar.php:15
434
+ msgid "Twitter"
435
+ msgstr "Twitter"
436
+
437
+ #: views/sidebar.php:16
438
+ msgid "GitHub"
439
+ msgstr "GitHub"
440
+
441
+ #: views/sidebar.php:22
442
+ msgid "WordPress Themes"
443
+ msgstr ""
444
+
445
+ #: views/sidebar.php:31
446
+ msgid "Resources"
447
+ msgstr "Ondersteuning"
448
+
449
+ #~ msgid "Subscribe now for early access to new WordPress themes."
450
+ #~ msgstr ""
451
+ #~ "Meld je nu aan om eerder toegang te krijgen tot nieuw WordPress thema's."
452
+
453
+ #~ msgid "Enter your email address"
454
+ #~ msgstr "Voer je e-mailadres in"
455
+
456
+ #~ msgid "News"
457
+ #~ msgstr "Nieuws"
458
+
459
+ #~ msgid "Developed by <a href=\"%s\">Designmodo</a>"
460
+ #~ msgstr "Ontwikkeld door <a href=\"%s\">Designmodo</a>"
languages/wp-maintenance-mode-pt_BR.mo ADDED
Binary file
languages/wp-maintenance-mode-pt_BR.po ADDED
@@ -0,0 +1,535 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode v2.0.2\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-09-26 19:04+0200\n"
6
+ "PO-Revision-Date: 2014-09-26 19:04+0200\n"
7
+ "Last-Translator: Jônatas Araújo <jonatasaraujos@live.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: pt_BR\n"
10
+ "MIME-Version: 1.0\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 1.6.7\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\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Textdomain-Support: yes\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ # @ wp-maintenance-mode
23
+ #: includes/classes/wp-maintenance-mode-admin.php:154
24
+ msgid "WP Maintenance Mode"
25
+ msgstr "Manutenção Site"
26
+
27
+ # @ wp-maintenance-mode
28
+ #: includes/classes/wp-maintenance-mode-admin.php:358
29
+ msgid "Settings"
30
+ msgstr "Configurações"
31
+
32
+ # @ wp-maintenance-mode
33
+ #: includes/classes/wp-maintenance-mode-admin.php:377
34
+ #, php-format
35
+ msgid ""
36
+ "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
37
+ "href=\"%s\">deactivate</a> as soon as you are done."
38
+ msgstr ""
39
+ "O modo de manutenção está <strong>ativo</strong>. Por favor, não se esqueça "
40
+ "de<a href=\"%s\"> desativar</a> assim que estiver pronto."
41
+
42
+ # @ wp-maintenance-mode
43
+ #: includes/classes/wp-maintenance-mode.php:100
44
+ #: includes/classes/wp-maintenance-mode.php:101
45
+ msgid "Maintenance mode"
46
+ msgstr "Modo manutenção"
47
+
48
+ # @ wp-maintenance-mode
49
+ #: includes/classes/wp-maintenance-mode.php:103
50
+ msgid ""
51
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
52
+ "scheduled maintenance.<br />Thank you for your understanding.</p>"
53
+ msgstr ""
54
+ "<p>Desculpe pela inconveniência.<br/>Nosso site está passando por manutenção "
55
+ "programada.<br/>Obrigado por sua compreensão.</p>"
56
+
57
+ # @ wp-maintenance-mode
58
+ #: includes/classes/wp-maintenance-mode.php:121
59
+ msgid "Notify me when it's ready"
60
+ msgstr "Notifique-me quando estiver pronto"
61
+
62
+ # @ wp-maintenance-mode
63
+ #: includes/classes/wp-maintenance-mode.php:249
64
+ #, php-format
65
+ msgid ""
66
+ "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
67
+ "\">settings</a>."
68
+ msgstr ""
69
+ "Plugin WP Modo de Manutenção foi relançada e você deve rever as <a href=\"%s"
70
+ "\">configurações</a>."
71
+
72
+ # @ wp-maintenance-mode
73
+ #: includes/classes/wp-maintenance-mode.php:425
74
+ #: includes/classes/wp-maintenance-mode.php:439
75
+ msgid "Maintenance Mode"
76
+ msgstr "Modo de Manutenção"
77
+
78
+ # @ wp-maintenance-mode
79
+ #: includes/classes/wp-maintenance-mode.php:630
80
+ #: includes/classes/wp-maintenance-mode.php:658
81
+ msgid "Please enter a valid email address."
82
+ msgstr "Por favor insira um endereço de e-mail válido."
83
+
84
+ # @ wp-maintenance-mode
85
+ #: includes/classes/wp-maintenance-mode.php:641
86
+ msgid "You successfuly subscribed. Thanks!"
87
+ msgstr "Você foi inscrito com sucesso. Obrigado!"
88
+
89
+ # @ wp-maintenance-mode
90
+ #: includes/classes/wp-maintenance-mode.php:654
91
+ msgid "All fields required."
92
+ msgstr "Todos os campos são obrigatórios."
93
+
94
+ # @ wp-maintenance-mode
95
+ #: includes/classes/wp-maintenance-mode.php:675
96
+ msgid "Message via contact"
97
+ msgstr "Mensagem via contato"
98
+
99
+ # @ wp-maintenance-mode
100
+ #: includes/classes/wp-maintenance-mode.php:679
101
+ msgid "Your email was sent to the website administrator. Thanks!"
102
+ msgstr "Seu e-mail foi enviado ao administrador do site. Obrigado!"
103
+
104
+ #: views/loginform.php:8
105
+ msgid "Login"
106
+ msgstr ""
107
+
108
+ # @ wp-maintenance-mode
109
+ #: views/maintenance.php:41
110
+ msgid "your e-mail..."
111
+ msgstr "digite seu e-mail..."
112
+
113
+ # @ wp-maintenance-mode
114
+ #: views/maintenance.php:42 views/settings.php:260
115
+ msgid "Subscribe"
116
+ msgstr "Assinante"
117
+
118
+ # @ wp-maintenance-mode
119
+ #: views/maintenance.php:83 views/sidebar.php:7
120
+ msgid "Name"
121
+ msgstr "Nome"
122
+
123
+ # @ wp-maintenance-mode
124
+ #: views/maintenance.php:84
125
+ msgid "E-mail"
126
+ msgstr "E-mail"
127
+
128
+ # @ wp-maintenance-mode
129
+ #: views/maintenance.php:86
130
+ msgid "Your message"
131
+ msgstr "Sua mensagem"
132
+
133
+ # @ wp-maintenance-mode
134
+ #: views/maintenance.php:87
135
+ msgid "Send"
136
+ msgstr "Enviar"
137
+
138
+ # @ wp-maintenance-mode
139
+ #: views/maintenance.php:92
140
+ msgid "Contact us"
141
+ msgstr "Contato"
142
+
143
+ #: views/maintenance.php:97
144
+ msgid "Dashboard"
145
+ msgstr ""
146
+
147
+ # @ wp-maintenance-mode
148
+ #: views/settings.php:6
149
+ msgid "Settings saved."
150
+ msgstr "Configurações salva."
151
+
152
+ # @ wp-maintenance-mode
153
+ #: views/settings.php:13
154
+ msgid "General"
155
+ msgstr "Geral"
156
+
157
+ # @ wp-maintenance-mode
158
+ #: views/settings.php:14
159
+ msgid "Design"
160
+ msgstr "Visual"
161
+
162
+ # @ wp-maintenance-mode
163
+ #: views/settings.php:15
164
+ msgid "Modules"
165
+ msgstr "Módulos"
166
+
167
+ # @ wp-maintenance-mode
168
+ #: views/settings.php:24
169
+ msgid "Status"
170
+ msgstr "Status"
171
+
172
+ # @ wp-maintenance-mode
173
+ #: views/settings.php:26
174
+ msgid "Activated"
175
+ msgstr "Ativado"
176
+
177
+ # @ wp-maintenance-mode
178
+ #: views/settings.php:27
179
+ msgid "Deactivated"
180
+ msgstr "Desativado"
181
+
182
+ # @ wp-maintenance-mode
183
+ #: views/settings.php:31
184
+ msgid "Bypass for Search Bots"
185
+ msgstr "Bypass para robôs de busca"
186
+
187
+ # @ wp-maintenance-mode
188
+ #: views/settings.php:34 views/settings.php:94 views/settings.php:104
189
+ #: views/settings.php:232 views/settings.php:268 views/settings.php:305
190
+ #: views/settings.php:373 views/settings.php:405
191
+ msgid "Yes"
192
+ msgstr "Sim"
193
+
194
+ # @ wp-maintenance-mode
195
+ #: views/settings.php:35 views/settings.php:95 views/settings.php:105
196
+ #: views/settings.php:233 views/settings.php:269 views/settings.php:306
197
+ #: views/settings.php:374 views/settings.php:406
198
+ msgid "No"
199
+ msgstr "Não"
200
+
201
+ # @ wp-maintenance-mode
202
+ #: views/settings.php:37
203
+ msgid "Allow Search Bots to bypass maintenance mode?"
204
+ msgstr "Deixe que os robôs para ignorar o modo de manutenção?"
205
+
206
+ # @ wp-maintenance-mode
207
+ #: views/settings.php:41
208
+ msgid "Backend Role"
209
+ msgstr ""
210
+
211
+ # @ wp-maintenance-mode
212
+ #: views/settings.php:48
213
+ msgid "Which user role is allowed to access the backend of this blog?"
214
+ msgstr ""
215
+ "Qual o papel do usuário tem permissão para acessar o backend deste blog?"
216
+
217
+ # @ wp-maintenance-mode
218
+ #: views/settings.php:52
219
+ msgid "Frontend Role"
220
+ msgstr ""
221
+
222
+ # @ wp-maintenance-mode
223
+ #: views/settings.php:59
224
+ msgid "Which user role is allowed to access the frontend of this blog?"
225
+ msgstr ""
226
+ "Qual o papel do usuário tem permissão para acessar a interface deste blog?"
227
+
228
+ # @ wp-maintenance-mode
229
+ #: views/settings.php:63
230
+ msgid "Robots Meta Tag"
231
+ msgstr "Meta Tag Robots "
232
+
233
+ # @ wp-maintenance-mode
234
+ #: views/settings.php:69
235
+ msgid ""
236
+ "The robots meta tag lets you use a granular, page-specific approach to "
237
+ "control how an individual page should be indexed and served to users in "
238
+ "search results."
239
+ msgstr ""
240
+ "A meta tag robots permite que você use um granular, abordagem específica "
241
+ "páginas para controlar como uma página individual devem ser indexados e "
242
+ "serviu para os usuários em resultados de pesquisa."
243
+
244
+ # @ wp-maintenance-mode
245
+ #: views/settings.php:73
246
+ msgid "Redirection"
247
+ msgstr "Redirecionamento"
248
+
249
+ # @ wp-maintenance-mode
250
+ #: views/settings.php:76
251
+ msgid ""
252
+ "If you want to redirect a user to a URL (which is not the WordPress "
253
+ "dashboard) after login, then define a URL (incl. http://)"
254
+ msgstr ""
255
+ "Se você deseja redirecionar o usuário para uma URL (que não é o painel "
256
+ "administrativo) após o login, em seguida, definir uma URL (incluindo "
257
+ "http:. //)"
258
+
259
+ # @ wp-maintenance-mode
260
+ #: views/settings.php:80
261
+ msgid "Exclude"
262
+ msgstr "Excluir"
263
+
264
+ # @ wp-maintenance-mode
265
+ #: views/settings.php:87
266
+ msgid ""
267
+ "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
268
+ "IP per line!"
269
+ msgstr ""
270
+ "Excluir alimentação, páginas, arquivos ou IPs a partir do modo de "
271
+ "manutenção. Adicionar uma lesma / IP por linha!"
272
+
273
+ # @ wp-maintenance-mode
274
+ #: views/settings.php:91
275
+ msgid "Notice"
276
+ msgstr "Aviso"
277
+
278
+ # @ wp-maintenance-mode
279
+ #: views/settings.php:97
280
+ msgid "Do you want to see notices when maintenance mode is activated?"
281
+ msgstr "Você quer ver os avisos de quando o modo de manutenção está ativado?"
282
+
283
+ #: views/settings.php:101
284
+ msgid "Dashboard link"
285
+ msgstr ""
286
+
287
+ # @ wp-maintenance-mode
288
+ #: views/settings.php:107
289
+ msgid ""
290
+ "Do you want to add a link to the dashboard on your maintenance mode page?"
291
+ msgstr ""
292
+
293
+ # @ wp-maintenance-mode
294
+ #: views/settings.php:115 views/settings.php:218 views/settings.php:421
295
+ msgid "Save settings"
296
+ msgstr ""
297
+
298
+ # @ wp-maintenance-mode
299
+ #: views/settings.php:116 views/settings.php:219 views/settings.php:422
300
+ msgid "Reset settings"
301
+ msgstr ""
302
+
303
+ # @ wp-maintenance-mode
304
+ #: views/settings.php:121
305
+ msgid "Content"
306
+ msgstr "Conteúdo"
307
+
308
+ # @ wp-maintenance-mode
309
+ #: views/settings.php:126
310
+ msgid "Title (HTML tag)"
311
+ msgstr "Título (HTML Tag)"
312
+
313
+ # @ wp-maintenance-mode
314
+ #: views/settings.php:132
315
+ msgid "Heading"
316
+ msgstr "Título H1 da Página"
317
+
318
+ # @ wp-maintenance-mode
319
+ #: views/settings.php:139 views/settings.php:274
320
+ msgid "Text"
321
+ msgstr "Mensagem"
322
+
323
+ # @ wp-maintenance-mode
324
+ #: views/settings.php:159
325
+ msgid "Background"
326
+ msgstr "Fundo"
327
+
328
+ # @ wp-maintenance-mode
329
+ #: views/settings.php:164
330
+ msgid "Choose type"
331
+ msgstr "Escolha o tipo de"
332
+
333
+ # @ wp-maintenance-mode
334
+ #: views/settings.php:167
335
+ msgid "Custom color"
336
+ msgstr "Cor personalizada"
337
+
338
+ # @ wp-maintenance-mode
339
+ #: views/settings.php:168
340
+ msgid "Uploaded background"
341
+ msgstr "Enviar Imagem Fundo"
342
+
343
+ # @ wp-maintenance-mode
344
+ #: views/settings.php:169
345
+ msgid "Predefined background"
346
+ msgstr "Imagem Pré-definida"
347
+
348
+ # @ wp-maintenance-mode
349
+ #: views/settings.php:174
350
+ msgid "Choose color"
351
+ msgstr "Escolha cor"
352
+
353
+ # @ wp-maintenance-mode
354
+ #: views/settings.php:180
355
+ msgid "Upload background"
356
+ msgstr "Enviar Imagem de Fundo"
357
+
358
+ # @ wp-maintenance-mode
359
+ #: views/settings.php:184
360
+ msgid "Backgrounds should have 1920x1280 px size."
361
+ msgstr "A Imagem devem ter tamanho 1920x1280px."
362
+
363
+ # @ wp-maintenance-mode
364
+ #: views/settings.php:189
365
+ msgid "Choose background"
366
+ msgstr "Escolha o fundo"
367
+
368
+ #: views/settings.php:191
369
+ msgid "source <a href=\"%\" target=\"_blank\">Free Photos</a>"
370
+ msgstr ""
371
+
372
+ # @ wp-maintenance-mode
373
+ #: views/settings.php:224
374
+ msgid "Countdown"
375
+ msgstr "Contagem Regressiva"
376
+
377
+ # @ wp-maintenance-mode
378
+ #: views/settings.php:229
379
+ msgid "Show countdown?"
380
+ msgstr "Mostrar contagem regressiva?"
381
+
382
+ # @ wp-maintenance-mode
383
+ #: views/settings.php:238
384
+ msgid "Start date"
385
+ msgstr "Data Inicial"
386
+
387
+ # @ wp-maintenance-mode
388
+ #: views/settings.php:244
389
+ msgid "Countdown (remaining time)"
390
+ msgstr "Contagem regressiva (tempo restante)"
391
+
392
+ # @ wp-maintenance-mode
393
+ #: views/settings.php:246
394
+ msgid "Days"
395
+ msgstr "Dias"
396
+
397
+ # @ wp-maintenance-mode
398
+ #: views/settings.php:247
399
+ msgid "Hours"
400
+ msgstr "Horas"
401
+
402
+ # @ wp-maintenance-mode
403
+ #: views/settings.php:248
404
+ msgid "Minutes"
405
+ msgstr "Minutos"
406
+
407
+ # @ wp-maintenance-mode
408
+ #: views/settings.php:252
409
+ msgid "Color"
410
+ msgstr "Cor"
411
+
412
+ # @ wp-maintenance-mode
413
+ #: views/settings.php:265
414
+ msgid "Show subscribe?"
415
+ msgstr "Mostrar Assinatura?"
416
+
417
+ # @ wp-maintenance-mode
418
+ #: views/settings.php:281
419
+ msgid "Stats"
420
+ msgstr "Estatísticas"
421
+
422
+ # @ wp-maintenance-mode
423
+ #: views/settings.php:285
424
+ #, php-format
425
+ msgid "You have %d subscriber(s)"
426
+ msgstr "Você tem %d assinante(s)"
427
+
428
+ # @ wp-maintenance-mode
429
+ #: views/settings.php:290
430
+ msgid "Export as CSV"
431
+ msgstr "Exportar para CSV"
432
+
433
+ # @ wp-maintenance-mode
434
+ #: views/settings.php:297
435
+ msgid "Social Networks"
436
+ msgstr "Rede Sociais"
437
+
438
+ # @ wp-maintenance-mode
439
+ #: views/settings.php:302
440
+ msgid "Show social networks?"
441
+ msgstr "Mostrar Rede Sociais?"
442
+
443
+ #: views/settings.php:311
444
+ msgid "Links target?"
445
+ msgstr ""
446
+
447
+ #: views/settings.php:314
448
+ msgid "New page"
449
+ msgstr ""
450
+
451
+ #: views/settings.php:315
452
+ msgid "Same page"
453
+ msgstr ""
454
+
455
+ #: views/settings.php:317
456
+ msgid "Choose how the links will open."
457
+ msgstr ""
458
+
459
+ # @ wp-maintenance-mode
460
+ #: views/settings.php:365
461
+ msgid "Contact"
462
+ msgstr "Contato"
463
+
464
+ # @ wp-maintenance-mode
465
+ #: views/settings.php:370
466
+ msgid "Show contact?"
467
+ msgstr "Mostrar Contato?"
468
+
469
+ # @ wp-maintenance-mode
470
+ #: views/settings.php:379
471
+ msgid "Email address"
472
+ msgstr "Endereço de E-mail"
473
+
474
+ # @ wp-maintenance-mode
475
+ #: views/settings.php:385
476
+ msgid "Effects"
477
+ msgstr "Efeitos"
478
+
479
+ #: views/settings.php:388
480
+ msgid "Move top - Move bottom"
481
+ msgstr ""
482
+
483
+ #: views/settings.php:389
484
+ msgid "Zoom - Zoomed"
485
+ msgstr ""
486
+
487
+ #: views/settings.php:390
488
+ msgid "Fold - Unfold"
489
+ msgstr ""
490
+
491
+ #: views/settings.php:397
492
+ msgid "Google Analytics"
493
+ msgstr ""
494
+
495
+ #: views/settings.php:402
496
+ msgid "Use Google Analytics?"
497
+ msgstr ""
498
+
499
+ #: views/settings.php:411
500
+ msgid "Tracking code"
501
+ msgstr ""
502
+
503
+ # @ wp-maintenance-mode
504
+ #: views/sidebar.php:3
505
+ msgid "Plugin Info"
506
+ msgstr "Informações do Plugin"
507
+
508
+ # @ wp-maintenance-mode
509
+ #: views/sidebar.php:13
510
+ msgid "Author"
511
+ msgstr "Autor"
512
+
513
+ # @ wp-maintenance-mode
514
+ #: views/sidebar.php:14
515
+ msgid "Website"
516
+ msgstr "Site"
517
+
518
+ # @ wp-maintenance-mode
519
+ #: views/sidebar.php:15
520
+ msgid "Twitter"
521
+ msgstr "Twitter"
522
+
523
+ # @ wp-maintenance-mode
524
+ #: views/sidebar.php:16
525
+ msgid "GitHub"
526
+ msgstr "GitHub"
527
+
528
+ #: views/sidebar.php:22
529
+ msgid "WordPress Themes"
530
+ msgstr ""
531
+
532
+ # @ wp-maintenance-mode
533
+ #: views/sidebar.php:31
534
+ msgid "Resources"
535
+ msgstr "Recursos"
languages/wp-maintenance-mode-pt_PT.mo ADDED
Binary file
languages/wp-maintenance-mode-pt_PT.po ADDED
@@ -0,0 +1,463 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.0.3\n"
4
+ "POT-Creation-Date: 2014-09-26 19:03+0200\n"
5
+ "PO-Revision-Date: 2014-09-26 19:52-0000\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.6.4\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+
18
+ #: includes/classes/wp-maintenance-mode-admin.php:154
19
+ msgid "WP Maintenance Mode"
20
+ msgstr "WP Maintenance Mode"
21
+
22
+ #: includes/classes/wp-maintenance-mode-admin.php:358
23
+ msgid "Settings"
24
+ msgstr "Configurações"
25
+
26
+ #: includes/classes/wp-maintenance-mode-admin.php:377
27
+ #, php-format
28
+ msgid ""
29
+ "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
30
+ "href=\"%s\">deactivate</a> as soon as you are done."
31
+ msgstr ""
32
+ "O Modo de Manutenção está <strong>activo</strong>. Por favor não se esqueça "
33
+ "de <a href=\"%s\">desactivar</a> assim que termine."
34
+
35
+ #: includes/classes/wp-maintenance-mode.php:100
36
+ #: includes/classes/wp-maintenance-mode.php:101
37
+ msgid "Maintenance mode"
38
+ msgstr "Modo de manutenção"
39
+
40
+ #: includes/classes/wp-maintenance-mode.php:103
41
+ msgid ""
42
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
43
+ "scheduled maintenance.<br />Thank you for your understanding.</p>"
44
+ msgstr ""
45
+ "<p>Pedimos desculpa pela inconveniência.<br />O site está neste momento numa "
46
+ "manutenção agendada.<br />Obrigado pela sua compreensão.</p>"
47
+
48
+ #: includes/classes/wp-maintenance-mode.php:121
49
+ msgid "Notify me when it's ready"
50
+ msgstr "Notificar-me quando estiver disponível."
51
+
52
+ #: includes/classes/wp-maintenance-mode.php:249
53
+ #, php-format
54
+ msgid ""
55
+ "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
56
+ "\">settings</a>."
57
+ msgstr ""
58
+ "O plugin WP Maintenance Mode foi reactivado e DEVE rever as suas <a href=\"%s"
59
+ "\">configurações</a>."
60
+
61
+ #: includes/classes/wp-maintenance-mode.php:425
62
+ #: includes/classes/wp-maintenance-mode.php:439
63
+ msgid "Maintenance Mode"
64
+ msgstr "Modo de Manutenção"
65
+
66
+ #: includes/classes/wp-maintenance-mode.php:630
67
+ #: includes/classes/wp-maintenance-mode.php:658
68
+ msgid "Please enter a valid email address."
69
+ msgstr "Por favor insira um endereço de email válido."
70
+
71
+ #: includes/classes/wp-maintenance-mode.php:641
72
+ msgid "You successfuly subscribed. Thanks!"
73
+ msgstr "Subscrito com sucesso. Obrigado!"
74
+
75
+ #: includes/classes/wp-maintenance-mode.php:654
76
+ msgid "All fields required."
77
+ msgstr "Todos os campos necessários."
78
+
79
+ #: includes/classes/wp-maintenance-mode.php:675
80
+ msgid "Message via contact"
81
+ msgstr "Mensagem via contacto"
82
+
83
+ #: includes/classes/wp-maintenance-mode.php:679
84
+ msgid "Your email was sent to the website administrator. Thanks!"
85
+ msgstr "O email foi enviado ao administrador do site. Obrigado!"
86
+
87
+ #: views/loginform.php:8
88
+ msgid "Login"
89
+ msgstr "Login"
90
+
91
+ #: views/maintenance.php:41
92
+ msgid "your e-mail..."
93
+ msgstr "o seu email..."
94
+
95
+ #: views/maintenance.php:42 views/settings.php:260
96
+ msgid "Subscribe"
97
+ msgstr "Subscrever"
98
+
99
+ #: views/maintenance.php:83 views/sidebar.php:7
100
+ msgid "Name"
101
+ msgstr "Nome"
102
+
103
+ #: views/maintenance.php:84
104
+ msgid "E-mail"
105
+ msgstr "Email"
106
+
107
+ #: views/maintenance.php:86
108
+ msgid "Your message"
109
+ msgstr "A sua mensagem"
110
+
111
+ #: views/maintenance.php:87
112
+ msgid "Send"
113
+ msgstr "Enviar"
114
+
115
+ #: views/maintenance.php:92
116
+ msgid "Contact us"
117
+ msgstr "Contacte-nos"
118
+
119
+ #: views/maintenance.php:97
120
+ msgid "Dashboard"
121
+ msgstr "Painel de Administração"
122
+
123
+ #: views/settings.php:6
124
+ msgid "Settings saved."
125
+ msgstr "Configurações guardadas."
126
+
127
+ #: views/settings.php:13
128
+ msgid "General"
129
+ msgstr "Geral"
130
+
131
+ #: views/settings.php:14
132
+ msgid "Design"
133
+ msgstr "Design"
134
+
135
+ #: views/settings.php:15
136
+ msgid "Modules"
137
+ msgstr "Módulos"
138
+
139
+ #: views/settings.php:24
140
+ msgid "Status"
141
+ msgstr "Estado"
142
+
143
+ #: views/settings.php:26
144
+ msgid "Activated"
145
+ msgstr "Activado"
146
+
147
+ #: views/settings.php:27
148
+ msgid "Deactivated"
149
+ msgstr "Desactivado"
150
+
151
+ #: views/settings.php:31
152
+ msgid "Bypass for Search Bots"
153
+ msgstr "Bypass para Robôs de Pesquisa"
154
+
155
+ #: views/settings.php:34 views/settings.php:94 views/settings.php:104
156
+ #: views/settings.php:232 views/settings.php:268 views/settings.php:305
157
+ #: views/settings.php:373 views/settings.php:405
158
+ msgid "Yes"
159
+ msgstr "Sim"
160
+
161
+ #: views/settings.php:35 views/settings.php:95 views/settings.php:105
162
+ #: views/settings.php:233 views/settings.php:269 views/settings.php:306
163
+ #: views/settings.php:374 views/settings.php:406
164
+ msgid "No"
165
+ msgstr "Não"
166
+
167
+ #: views/settings.php:37
168
+ msgid "Allow Search Bots to bypass maintenance mode?"
169
+ msgstr "Permitir que os Robôs de Pesquisa ultrapassem o modo de manutenção?"
170
+
171
+ #: views/settings.php:41
172
+ msgid "Backend Role"
173
+ msgstr "Perfil de utilizador do backend"
174
+
175
+ #: views/settings.php:48
176
+ msgid "Which user role is allowed to access the backend of this blog?"
177
+ msgstr ""
178
+ "Que perfil de utilizador tem permissão de acesso ao backend deste site?"
179
+
180
+ #: views/settings.php:52
181
+ msgid "Frontend Role"
182
+ msgstr "Perfil de utilizador do frontend"
183
+
184
+ #: views/settings.php:59
185
+ msgid "Which user role is allowed to access the frontend of this blog?"
186
+ msgstr ""
187
+ "Que perfil de utilizador tem permissão de acesso ao frontend deste site?"
188
+
189
+ #: views/settings.php:63
190
+ msgid "Robots Meta Tag"
191
+ msgstr "Meta Tag Robots"
192
+
193
+ #: views/settings.php:69
194
+ msgid ""
195
+ "The robots meta tag lets you use a granular, page-specific approach to "
196
+ "control how an individual page should be indexed and served to users in "
197
+ "search results."
198
+ msgstr ""
199
+ "A meta tag Robots permite usar uma abordagem por página específica para "
200
+ "controlar como cada página individual deve ser indexada e disponibilizada "
201
+ "aos utilizadores nos seus resultados de pesquisa."
202
+
203
+ #: views/settings.php:73
204
+ msgid "Redirection"
205
+ msgstr "Redireccionar"
206
+
207
+ #: views/settings.php:76
208
+ msgid ""
209
+ "If you want to redirect a user to a URL (which is not the WordPress "
210
+ "dashboard) after login, then define a URL (incl. http://)"
211
+ msgstr ""
212
+ "Se pretende redireccionar um utilizador para um URL (que não seja o painel "
213
+ "do WordPress) após login, insira um URL (incluindo http://)"
214
+
215
+ #: views/settings.php:80
216
+ msgid "Exclude"
217
+ msgstr "Excluir"
218
+
219
+ #: views/settings.php:87
220
+ msgid ""
221
+ "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
222
+ "IP per line!"
223
+ msgstr ""
224
+ "Excluir feeds, páginas, arquivos ou IPs do modo de manutenção. Adicionar um "
225
+ "URL / IP por cada linha!"
226
+
227
+ #: views/settings.php:91
228
+ msgid "Notice"
229
+ msgstr "Notificações"
230
+
231
+ #: views/settings.php:97
232
+ msgid "Do you want to see notices when maintenance mode is activated?"
233
+ msgstr ""
234
+ "Pretende ver notificações enquanto o modo de manutenção estiver activo?"
235
+
236
+ #: views/settings.php:101
237
+ msgid "Dashboard link"
238
+ msgstr "Ligação para o Painel de Administração"
239
+
240
+ #: views/settings.php:107
241
+ msgid ""
242
+ "Do you want to add a link to the dashboard on your maintenance mode page?"
243
+ msgstr ""
244
+ "Pretende deixar uma ligação para o painel de administração no seu mode de "
245
+ "manutenção?"
246
+
247
+ #: views/settings.php:115 views/settings.php:218 views/settings.php:421
248
+ msgid "Save settings"
249
+ msgstr "Guardar configurações"
250
+
251
+ #: views/settings.php:116 views/settings.php:219 views/settings.php:422
252
+ msgid "Reset settings"
253
+ msgstr "Repor configurações"
254
+
255
+ #: views/settings.php:121
256
+ msgid "Content"
257
+ msgstr "Conteúdo"
258
+
259
+ #: views/settings.php:126
260
+ msgid "Title (HTML tag)"
261
+ msgstr "Título (etiqueta HTML)"
262
+
263
+ #: views/settings.php:132
264
+ msgid "Heading"
265
+ msgstr "Cabeçalho"
266
+
267
+ #: views/settings.php:139 views/settings.php:274
268
+ msgid "Text"
269
+ msgstr "Texto"
270
+
271
+ #: views/settings.php:159
272
+ msgid "Background"
273
+ msgstr "Fundo"
274
+
275
+ #: views/settings.php:164
276
+ msgid "Choose type"
277
+ msgstr "Escolher tipo"
278
+
279
+ #: views/settings.php:167
280
+ msgid "Custom color"
281
+ msgstr "Cor personalizada"
282
+
283
+ #: views/settings.php:168
284
+ msgid "Uploaded background"
285
+ msgstr "Fundo carregado"
286
+
287
+ #: views/settings.php:169
288
+ msgid "Predefined background"
289
+ msgstr "Fundo predefinido"
290
+
291
+ #: views/settings.php:174
292
+ msgid "Choose color"
293
+ msgstr "Escolher cor"
294
+
295
+ #: views/settings.php:180
296
+ msgid "Upload background"
297
+ msgstr "Carregar fundo"
298
+
299
+ #: views/settings.php:184
300
+ msgid "Backgrounds should have 1920x1280 px size."
301
+ msgstr "Fundos deverão ter 1920x1280 px de tamanho."
302
+
303
+ #: views/settings.php:189
304
+ msgid "Choose background"
305
+ msgstr "Escolher fundo"
306
+
307
+ #: views/settings.php:191
308
+ msgid "source <a href=\"%\" target=\"_blank\">Free Photos</a>"
309
+ msgstr "fonte <a href=\"%\" target=\"_blank\">Fotos Gratuitas</a>"
310
+
311
+ #: views/settings.php:224
312
+ msgid "Countdown"
313
+ msgstr "Contagem decrescente"
314
+
315
+ #: views/settings.php:229
316
+ msgid "Show countdown?"
317
+ msgstr "Mostrar contagem decrescente?"
318
+
319
+ #: views/settings.php:238
320
+ msgid "Start date"
321
+ msgstr "Data de início"
322
+
323
+ #: views/settings.php:244
324
+ msgid "Countdown (remaining time)"
325
+ msgstr "Contagem decrescente (tempo que falta)"
326
+
327
+ #: views/settings.php:246
328
+ msgid "Days"
329
+ msgstr "Dias"
330
+
331
+ #: views/settings.php:247
332
+ msgid "Hours"
333
+ msgstr "Horas"
334
+
335
+ #: views/settings.php:248
336
+ msgid "Minutes"
337
+ msgstr "Minutos"
338
+
339
+ #: views/settings.php:252
340
+ msgid "Color"
341
+ msgstr "Cor"
342
+
343
+ #: views/settings.php:265
344
+ msgid "Show subscribe?"
345
+ msgstr "Mostrar subscrição?"
346
+
347
+ #: views/settings.php:281
348
+ msgid "Stats"
349
+ msgstr "Estatísticas"
350
+
351
+ #: views/settings.php:285
352
+ #, php-format
353
+ msgid "You have %d subscriber(s)"
354
+ msgstr "Tem %d subscritor(es)"
355
+
356
+ #: views/settings.php:290
357
+ msgid "Export as CSV"
358
+ msgstr "Exportar como CSV"
359
+
360
+ #: views/settings.php:297
361
+ msgid "Social Networks"
362
+ msgstr "Redes Sociais"
363
+
364
+ #: views/settings.php:302
365
+ msgid "Show social networks?"
366
+ msgstr "Mostrar redes sociais?"
367
+
368
+ #: views/settings.php:311
369
+ msgid "Links target?"
370
+ msgstr "Destino das ligações?"
371
+
372
+ #: views/settings.php:314
373
+ msgid "New page"
374
+ msgstr "Nova página"
375
+
376
+ #: views/settings.php:315
377
+ msgid "Same page"
378
+ msgstr "Mesma página"
379
+
380
+ #: views/settings.php:317
381
+ msgid "Choose how the links will open."
382
+ msgstr "Escolher como abrir as ligações."
383
+
384
+ #: views/settings.php:365
385
+ msgid "Contact"
386
+ msgstr "Contacto"
387
+
388
+ #: views/settings.php:370
389
+ msgid "Show contact?"
390
+ msgstr "Mostrar contacto?"
391
+
392
+ #: views/settings.php:379
393
+ msgid "Email address"
394
+ msgstr "Endereço de email"
395
+
396
+ #: views/settings.php:385
397
+ msgid "Effects"
398
+ msgstr "Efeitos"
399
+
400
+ #: views/settings.php:388
401
+ msgid "Move top - Move bottom"
402
+ msgstr "Subir - Descer"
403
+
404
+ #: views/settings.php:389
405
+ msgid "Zoom - Zoomed"
406
+ msgstr "Zoom"
407
+
408
+ #: views/settings.php:390
409
+ msgid "Fold - Unfold"
410
+ msgstr "Dobrar - Desdrobrar"
411
+
412
+ #: views/settings.php:397
413
+ msgid "Google Analytics"
414
+ msgstr "Google Analytics"
415
+
416
+ #: views/settings.php:402
417
+ msgid "Use Google Analytics?"
418
+ msgstr "Usar Google Analytics?"
419
+
420
+ #: views/settings.php:411
421
+ msgid "Tracking code"
422
+ msgstr "Código de acompanhamento"
423
+
424
+ #: views/sidebar.php:3
425
+ msgid "Plugin Info"
426
+ msgstr "Informação do Plugin"
427
+
428
+ #: views/sidebar.php:13
429
+ msgid "Author"
430
+ msgstr "Autor"
431
+
432
+ #: views/sidebar.php:14
433
+ msgid "Website"
434
+ msgstr "Site"
435
+
436
+ #: views/sidebar.php:15
437
+ msgid "Twitter"
438
+ msgstr "Twitter"
439
+
440
+ #: views/sidebar.php:16
441
+ msgid "GitHub"
442
+ msgstr "GitHub"
443
+
444
+ #: views/sidebar.php:22
445
+ msgid "WordPress Themes"
446
+ msgstr "Temas WordPress"
447
+
448
+ #: views/sidebar.php:31
449
+ msgid "Resources"
450
+ msgstr "Recursos"
451
+
452
+ #~ msgid "Subscribe now for early access to new WordPress themes."
453
+ #~ msgstr ""
454
+ #~ "Subscreva agora para ter acesso prioritário aos novos temas do WordPress."
455
+
456
+ #~ msgid "Enter your email address"
457
+ #~ msgstr "Insira o seu endereço de email"
458
+
459
+ #~ msgid "News"
460
+ #~ msgstr "Notícias"
461
+
462
+ #~ msgid "Developed by <a href=\"%s\">Designmodo</a>"
463
+ #~ msgstr "Desenvolvido por <a href=\"%s\">Designmodo</a>"
languages/wp-maintenance-mode-ro_RO.mo CHANGED
Binary file
languages/wp-maintenance-mode-ro_RO.po CHANGED
@@ -1,414 +1,470 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP Maintenance Mode 2.0.0\n"
4
- "POT-Creation-Date: 2014-08-28 21:09+0200\n"
5
- "PO-Revision-Date: 2014-08-28 21:10+0200\n"
6
- "Last-Translator: \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.6.7\n"
13
- "X-Poedit-Basepath: ../\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
- "X-Poedit-SearchPath-1: includes/classes\n"
19
- "X-Poedit-SearchPath-2: views\n"
20
-
21
- #: includes/classes/wp-maintenance-mode-admin.php:146
22
- msgid "WP Maintenance Mode"
23
- msgstr "WP Maintenance Mode"
24
-
25
- #: includes/classes/wp-maintenance-mode-admin.php:296
26
- msgid "Settings"
27
- msgstr "Setari"
28
-
29
- #: includes/classes/wp-maintenance-mode-admin.php:315
30
- #, php-format
31
- msgid ""
32
- "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
33
- "href=\"%s\">deactivate</a> as soon as you are done."
34
- msgstr ""
35
- "Modul de mentenanta este <strong>activ</strong>. Nu uita sa-l <a href=\"%s"
36
- "\">dezactivezi</a> imediat dupa ce termini."
37
-
38
- #: includes/classes/wp-maintenance-mode.php:92
39
- #: includes/classes/wp-maintenance-mode.php:93
40
- msgid "Maintenance mode"
41
- msgstr "Mentenanta"
42
-
43
- #: includes/classes/wp-maintenance-mode.php:95
44
- msgid ""
45
- "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
46
- "scheduled maintenance.<br />Thank you for your understanding.</p>"
47
- msgstr ""
48
- "<p>Ne cerem scuze pentru inconvenienta.<br />Site-ul nostru se afla in "
49
- "mentenanta.<br />Multumim pentru intelegere.</p>"
50
-
51
- #: includes/classes/wp-maintenance-mode.php:113
52
- msgid "Notify me when it's ready"
53
- msgstr "Notifica-ma atunci cand procesul de mentenanta este gata"
54
-
55
- #: includes/classes/wp-maintenance-mode.php:220
56
- #, php-format
57
- msgid ""
58
- "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
59
- "\">settings</a>."
60
- msgstr ""
61
- "Plugin-ul WP Maintenance Mode a fost relansat si TREBUIE sa revedeti <a href="
62
- "\"%s\">setarile</a> acestuia."
63
-
64
- #: includes/classes/wp-maintenance-mode.php:418
65
- #: includes/classes/wp-maintenance-mode.php:432
66
- msgid "Maintenance Mode"
67
- msgstr "Mentenanta"
68
-
69
- #: includes/classes/wp-maintenance-mode.php:620
70
- #: includes/classes/wp-maintenance-mode.php:648
71
- msgid "Please enter a valid email address."
72
- msgstr "Te rog sa completezi o adresa de email valida."
73
-
74
- #: includes/classes/wp-maintenance-mode.php:631
75
- msgid "You successfuly subscribed. Thanks!"
76
- msgstr "Ai fost abonat cu succes. Multumim!"
77
-
78
- #: includes/classes/wp-maintenance-mode.php:644
79
- msgid "All fields required."
80
- msgstr "Toate campurile sunt obligatorii."
81
-
82
- #: includes/classes/wp-maintenance-mode.php:665
83
- msgid "Message via contact"
84
- msgstr "Mesaj trimis prin formularul de contact"
85
-
86
- #: includes/classes/wp-maintenance-mode.php:669
87
- msgid "Your email was sent to the website administrator. Thanks!"
88
- msgstr "Emailul tau a fost trimis catre administratorul site-ului. Multumim!"
89
-
90
- #: views/maintenance.php:45
91
- msgid "your e-mail..."
92
- msgstr "emailul tau..."
93
-
94
- #: views/maintenance.php:46 views/settings.php:258 views/sidebar.php:22
95
- #: views/sidebar.php:28
96
- msgid "Subscribe"
97
- msgstr "Aboneaza-ma"
98
-
99
- #: views/maintenance.php:83
100
- msgid "Name"
101
- msgstr "Nume"
102
-
103
- #: views/maintenance.php:84
104
- msgid "E-mail"
105
- msgstr "E-Mail"
106
-
107
- #: views/maintenance.php:86
108
- msgid "Your message"
109
- msgstr "Mesajul tau"
110
-
111
- #: views/maintenance.php:87
112
- msgid "Send"
113
- msgstr "Trimite"
114
-
115
- #: views/maintenance.php:92
116
- msgid "Contact us"
117
- msgstr "Contacteaza-ne"
118
-
119
- #: views/maintenance.php:97
120
- #, php-format
121
- msgid "Developed by <a href=\"%s\">Designmodo</a>"
122
- msgstr "Dezvoltat de <a href=\"%s\">Designmodo</a>"
123
-
124
- #: views/settings.php:6
125
- msgid "Settings saved."
126
- msgstr "Setarile au fost salvate."
127
-
128
- #: views/settings.php:13
129
- msgid "General"
130
- msgstr "General"
131
-
132
- #: views/settings.php:14
133
- msgid "Design"
134
- msgstr "Design"
135
-
136
- #: views/settings.php:15
137
- msgid "Modules"
138
- msgstr "Module"
139
-
140
- #: views/settings.php:24
141
- msgid "Status"
142
- msgstr "Status"
143
-
144
- #: views/settings.php:26
145
- msgid "Activated"
146
- msgstr "Activat"
147
-
148
- #: views/settings.php:27
149
- msgid "Deactivated"
150
- msgstr "Dezactivat"
151
-
152
- #: views/settings.php:31
153
- msgid "Bypass for Search Bots"
154
- msgstr "Nu afisa pagina de mentenanta robotilor motoarelor de cautare"
155
-
156
- #: views/settings.php:34 views/settings.php:94 views/settings.php:104
157
- #: views/settings.php:230 views/settings.php:266 views/settings.php:303
158
- #: views/settings.php:356
159
- msgid "Yes"
160
- msgstr "Da"
161
-
162
- #: views/settings.php:35 views/settings.php:95 views/settings.php:105
163
- #: views/settings.php:231 views/settings.php:267 views/settings.php:304
164
- #: views/settings.php:357
165
- msgid "No"
166
- msgstr "Nu"
167
-
168
- #: views/settings.php:37
169
- msgid "Allow Search Bots to bypass maintenance mode?"
170
- msgstr ""
171
- "Dai voie robotilor motoarelor de cautare sa acceseze site-ul, fara a vedea "
172
- "pagina de mentenanta?"
173
-
174
- #: views/settings.php:41
175
- msgid "Backend Role"
176
- msgstr "Rol interfata administrare"
177
-
178
- #: views/settings.php:48
179
- msgid "Which user role is allowed to access the backend of this blog?"
180
- msgstr ""
181
- "Ce rol trebuie sa aiba utilizatorul pentru a putea accesa interfata de "
182
- "administrare acestui blog?"
183
-
184
- #: views/settings.php:52
185
- msgid "Frontend Role"
186
- msgstr "Rol interfata publica"
187
-
188
- #: views/settings.php:59
189
- msgid "Which user role is allowed to access the frontend of this blog?"
190
- msgstr ""
191
- "Ce rol trebuie sa aiba utilizatorul pentru a putea accesa interfata publica "
192
- "acestui blog?"
193
-
194
- #: views/settings.php:63
195
- msgid "Robots Meta Tag"
196
- msgstr "Meta Tag-ul \"robots\""
197
-
198
- #: views/settings.php:69
199
- msgid ""
200
- "The robots meta tag lets you use a granular, page-specific approach to "
201
- "control how an individual page should be indexed and served to users in "
202
- "search results."
203
- msgstr ""
204
- "Meta tag-ul \"robots\" permite controlul asupra felului in care motoarele de "
205
- "cautare indexeaza si servesc rezultatele pentru o anumita pagina."
206
-
207
- #: views/settings.php:73
208
- msgid "Redirection"
209
- msgstr "Redirectionare"
210
-
211
- #: views/settings.php:76
212
- msgid ""
213
- "If you want to redirect a user to a URL (which is not the WordPress "
214
- "dashboard) after login, then define a URL (incl. http://)"
215
- msgstr ""
216
- "Daca doresti sa redirectionezi un utilizator catre un URL (diferit de "
217
- "WordPress dashboard) dupa ce acesta s-a autentificat, atunci defineste un "
218
- "URL (include http://). "
219
-
220
- #: views/settings.php:80
221
- msgid "Exclude"
222
- msgstr "Exclude"
223
-
224
- #: views/settings.php:87
225
- msgid ""
226
- "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
227
- "IP per line!"
228
- msgstr ""
229
- "Exclude rss feed, pagini, arhive ori IP-uri din modul de mentenanta. Adauga "
230
- "cate slug/IP pe linie."
231
-
232
- #: views/settings.php:91
233
- msgid "Notice"
234
- msgstr "Atentionare"
235
-
236
- #: views/settings.php:97
237
- msgid "Do you want to see notices when maintenance mode is activated?"
238
- msgstr ""
239
- "Doresti sa vezi atentionarea atunci cand modul de mentenanta este activat?"
240
-
241
- #: views/settings.php:101
242
- msgid "Author link"
243
- msgstr "Link autor"
244
-
245
- #: views/settings.php:107
246
- msgid ""
247
- "Do you want to leave a link to the plugin author on your maintenance mode "
248
- "page?"
249
- msgstr ""
250
- "Doresti sa lasi un link catre site-ul autorului pe pagina de mentenanta?"
251
-
252
- #: views/settings.php:121
253
- msgid "Content"
254
- msgstr "Continut"
255
-
256
- #: views/settings.php:126
257
- msgid "Title (HTML tag)"
258
- msgstr "Titlu (tag HTML)"
259
-
260
- #: views/settings.php:132
261
- msgid "Heading"
262
- msgstr "Subtitlu"
263
-
264
- #: views/settings.php:139 views/settings.php:272
265
- msgid "Text"
266
- msgstr "Text"
267
-
268
- #: views/settings.php:159
269
- msgid "Background"
270
- msgstr "Fundal"
271
-
272
- #: views/settings.php:164
273
- msgid "Choose type"
274
- msgstr "Alege tip"
275
-
276
- #: views/settings.php:167
277
- msgid "Custom color"
278
- msgstr "Culoare"
279
-
280
- #: views/settings.php:168
281
- msgid "Uploaded background"
282
- msgstr "Imagine de fundal urcata de utilizator"
283
-
284
- #: views/settings.php:169
285
- msgid "Predefined background"
286
- msgstr "Imagine de fundal predefinita"
287
-
288
- #: views/settings.php:174
289
- msgid "Choose color"
290
- msgstr "Alege culoare"
291
-
292
- #: views/settings.php:180
293
- msgid "Upload background"
294
- msgstr "Incarca imagine"
295
-
296
- #: views/settings.php:184
297
- msgid "Backgrounds should have 1920x1280 px size."
298
- msgstr "Imaginea ar trebui sa fie 1920x1280 px"
299
-
300
- #: views/settings.php:189
301
- msgid "Choose background"
302
- msgstr "Alege imagine"
303
-
304
- #: views/settings.php:222
305
- msgid "Countdown"
306
- msgstr "Countdown"
307
-
308
- #: views/settings.php:227
309
- msgid "Show countdown?"
310
- msgstr "Afiseaza countdown?"
311
-
312
- #: views/settings.php:236
313
- msgid "Start date"
314
- msgstr "Data de inceput"
315
-
316
- #: views/settings.php:242
317
- msgid "Countdown (remaining time)"
318
- msgstr "Countdown (timpul ramas)"
319
-
320
- #: views/settings.php:244
321
- msgid "Days"
322
- msgstr "Zile"
323
-
324
- #: views/settings.php:245
325
- msgid "Hours"
326
- msgstr "Ore"
327
-
328
- #: views/settings.php:246
329
- msgid "Minutes"
330
- msgstr "Minute"
331
-
332
- #: views/settings.php:250
333
- msgid "Color"
334
- msgstr "Culoare"
335
-
336
- #: views/settings.php:263
337
- msgid "Show subscribe?"
338
- msgstr "Afiseaza formular abonare?"
339
-
340
- #: views/settings.php:279
341
- msgid "Stats"
342
- msgstr "Statistici"
343
-
344
- #: views/settings.php:283
345
- #, php-format
346
- msgid "You have %d subscriber(s)"
347
- msgstr "Lista contine %d abonati"
348
-
349
- #: views/settings.php:288
350
- msgid "Export as CSV"
351
- msgstr "Exporta lista in format CSV"
352
-
353
- #: views/settings.php:295
354
- msgid "Social Networks"
355
- msgstr "Retele sociale"
356
-
357
- #: views/settings.php:300
358
- msgid "Show social networks?"
359
- msgstr "Afiseaza butoane retele sociale?"
360
-
361
- #: views/settings.php:348
362
- msgid "Contact"
363
- msgstr "Contact"
364
-
365
- #: views/settings.php:353
366
- msgid "Show contact?"
367
- msgstr "Afiseaza contact ?"
368
-
369
- #: views/settings.php:362
370
- msgid "Email address"
371
- msgstr "Adresa de email"
372
-
373
- #: views/settings.php:368
374
- msgid "Effects"
375
- msgstr "Efecte"
376
-
377
- #: views/sidebar.php:3
378
- msgid "Plugin Info"
379
- msgstr "Informatii plugin"
380
-
381
- #: views/sidebar.php:13
382
- msgid "Author"
383
- msgstr "Autor"
384
-
385
- #: views/sidebar.php:14
386
- msgid "Website"
387
- msgstr "Website"
388
-
389
- #: views/sidebar.php:15
390
- msgid "Twitter"
391
- msgstr "Twitter"
392
-
393
- #: views/sidebar.php:16
394
- msgid "GitHub"
395
- msgstr "GitHub"
396
-
397
- #: views/sidebar.php:24
398
- msgid "Subscribe now for early access to new WordPress themes."
399
- msgstr "Aboneaza-te acum pentru a avea acces la noi teme WordPress"
400
-
401
- #: views/sidebar.php:27
402
- msgid "Enter your email address"
403
- msgstr "Completeaza adresa de email"
404
-
405
- #: views/sidebar.php:34
406
- msgid "News"
407
- msgstr "Stiri"
408
-
409
- #: views/sidebar.php:50
410
- msgid "Resources"
411
- msgstr "Resurse"
412
-
413
- #~ msgid "Title"
414
- #~ msgstr "Titlu"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.0.3\n"
4
+ "POT-Creation-Date: 2014-09-26 19:04+0200\n"
5
+ "PO-Revision-Date: 2014-09-26 19:07+0200\n"
6
+ "Last-Translator: \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.6.7\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: includes/classes\n"
19
+ "X-Poedit-SearchPath-2: views\n"
20
+
21
+ #: includes/classes/wp-maintenance-mode-admin.php:154
22
+ msgid "WP Maintenance Mode"
23
+ msgstr "WP Maintenance Mode"
24
+
25
+ #: includes/classes/wp-maintenance-mode-admin.php:358
26
+ msgid "Settings"
27
+ msgstr "Setari"
28
+
29
+ #: includes/classes/wp-maintenance-mode-admin.php:377
30
+ #, php-format
31
+ msgid ""
32
+ "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
33
+ "href=\"%s\">deactivate</a> as soon as you are done."
34
+ msgstr ""
35
+ "Modul de mentenanta este <strong>activ</strong>. Nu uita sa-l <a href=\"%s"
36
+ "\">dezactivezi</a> imediat dupa ce termini."
37
+
38
+ #: includes/classes/wp-maintenance-mode.php:100
39
+ #: includes/classes/wp-maintenance-mode.php:101
40
+ msgid "Maintenance mode"
41
+ msgstr "Mentenanta"
42
+
43
+ #: includes/classes/wp-maintenance-mode.php:103
44
+ msgid ""
45
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
46
+ "scheduled maintenance.<br />Thank you for your understanding.</p>"
47
+ msgstr ""
48
+ "<p>Ne cerem scuze pentru inconvenienta.<br />Site-ul nostru se afla in "
49
+ "mentenanta.<br />Multumim pentru intelegere.</p>"
50
+
51
+ #: includes/classes/wp-maintenance-mode.php:121
52
+ msgid "Notify me when it's ready"
53
+ msgstr "Notifica-ma atunci cand procesul de mentenanta este gata"
54
+
55
+ #: includes/classes/wp-maintenance-mode.php:249
56
+ #, php-format
57
+ msgid ""
58
+ "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
59
+ "\">settings</a>."
60
+ msgstr ""
61
+ "Plugin-ul WP Maintenance Mode a fost relansat si TREBUIE sa revedeti <a href="
62
+ "\"%s\">setarile</a> acestuia."
63
+
64
+ #: includes/classes/wp-maintenance-mode.php:425
65
+ #: includes/classes/wp-maintenance-mode.php:439
66
+ msgid "Maintenance Mode"
67
+ msgstr "Mentenanta"
68
+
69
+ #: includes/classes/wp-maintenance-mode.php:630
70
+ #: includes/classes/wp-maintenance-mode.php:658
71
+ msgid "Please enter a valid email address."
72
+ msgstr "Te rog sa completezi o adresa de email valida."
73
+
74
+ #: includes/classes/wp-maintenance-mode.php:641
75
+ msgid "You successfuly subscribed. Thanks!"
76
+ msgstr "Ai fost abonat cu succes. Multumim!"
77
+
78
+ #: includes/classes/wp-maintenance-mode.php:654
79
+ msgid "All fields required."
80
+ msgstr "Toate campurile sunt obligatorii."
81
+
82
+ #: includes/classes/wp-maintenance-mode.php:675
83
+ msgid "Message via contact"
84
+ msgstr "Mesaj trimis prin formularul de contact"
85
+
86
+ #: includes/classes/wp-maintenance-mode.php:679
87
+ msgid "Your email was sent to the website administrator. Thanks!"
88
+ msgstr "Emailul tau a fost trimis catre administratorul site-ului. Multumim!"
89
+
90
+ #: views/loginform.php:8
91
+ msgid "Login"
92
+ msgstr "Autentificare"
93
+
94
+ #: views/maintenance.php:41
95
+ msgid "your e-mail..."
96
+ msgstr "emailul tau..."
97
+
98
+ #: views/maintenance.php:42 views/settings.php:260
99
+ msgid "Subscribe"
100
+ msgstr "Aboneaza-ma"
101
+
102
+ #: views/maintenance.php:83 views/sidebar.php:7
103
+ msgid "Name"
104
+ msgstr "Nume"
105
+
106
+ #: views/maintenance.php:84
107
+ msgid "E-mail"
108
+ msgstr "E-Mail"
109
+
110
+ #: views/maintenance.php:86
111
+ msgid "Your message"
112
+ msgstr "Mesajul tau"
113
+
114
+ #: views/maintenance.php:87
115
+ msgid "Send"
116
+ msgstr "Trimite"
117
+
118
+ #: views/maintenance.php:92
119
+ msgid "Contact us"
120
+ msgstr "Contacteaza-ne"
121
+
122
+ #: views/maintenance.php:97
123
+ msgid "Dashboard"
124
+ msgstr "Admin"
125
+
126
+ #: views/settings.php:6
127
+ msgid "Settings saved."
128
+ msgstr "Setarile au fost salvate."
129
+
130
+ #: views/settings.php:13
131
+ msgid "General"
132
+ msgstr "General"
133
+
134
+ #: views/settings.php:14
135
+ msgid "Design"
136
+ msgstr "Design"
137
+
138
+ #: views/settings.php:15
139
+ msgid "Modules"
140
+ msgstr "Module"
141
+
142
+ #: views/settings.php:24
143
+ msgid "Status"
144
+ msgstr "Status"
145
+
146
+ #: views/settings.php:26
147
+ msgid "Activated"
148
+ msgstr "Activat"
149
+
150
+ #: views/settings.php:27
151
+ msgid "Deactivated"
152
+ msgstr "Dezactivat"
153
+
154
+ #: views/settings.php:31
155
+ msgid "Bypass for Search Bots"
156
+ msgstr "Nu afisa pagina de mentenanta robotilor motoarelor de cautare"
157
+
158
+ #: views/settings.php:34 views/settings.php:94 views/settings.php:104
159
+ #: views/settings.php:232 views/settings.php:268 views/settings.php:305
160
+ #: views/settings.php:373 views/settings.php:405
161
+ msgid "Yes"
162
+ msgstr "Da"
163
+
164
+ #: views/settings.php:35 views/settings.php:95 views/settings.php:105
165
+ #: views/settings.php:233 views/settings.php:269 views/settings.php:306
166
+ #: views/settings.php:374 views/settings.php:406
167
+ msgid "No"
168
+ msgstr "Nu"
169
+
170
+ #: views/settings.php:37
171
+ msgid "Allow Search Bots to bypass maintenance mode?"
172
+ msgstr ""
173
+ "Dai voie robotilor motoarelor de cautare sa acceseze site-ul, fara a vedea "
174
+ "pagina de mentenanta?"
175
+
176
+ #: views/settings.php:41
177
+ msgid "Backend Role"
178
+ msgstr "Rol interfata administrare"
179
+
180
+ #: views/settings.php:48
181
+ msgid "Which user role is allowed to access the backend of this blog?"
182
+ msgstr ""
183
+ "Ce rol trebuie sa aiba utilizatorul pentru a putea accesa interfata de "
184
+ "administrare acestui blog?"
185
+
186
+ #: views/settings.php:52
187
+ msgid "Frontend Role"
188
+ msgstr "Rol interfata publica"
189
+
190
+ #: views/settings.php:59
191
+ msgid "Which user role is allowed to access the frontend of this blog?"
192
+ msgstr ""
193
+ "Ce rol trebuie sa aiba utilizatorul pentru a putea accesa interfata publica "
194
+ "acestui blog?"
195
+
196
+ #: views/settings.php:63
197
+ msgid "Robots Meta Tag"
198
+ msgstr "Meta Tag-ul \"robots\""
199
+
200
+ #: views/settings.php:69
201
+ msgid ""
202
+ "The robots meta tag lets you use a granular, page-specific approach to "
203
+ "control how an individual page should be indexed and served to users in "
204
+ "search results."
205
+ msgstr ""
206
+ "Meta tag-ul \"robots\" permite controlul asupra felului in care motoarele de "
207
+ "cautare indexeaza si servesc rezultatele pentru o anumita pagina."
208
+
209
+ #: views/settings.php:73
210
+ msgid "Redirection"
211
+ msgstr "Redirectionare"
212
+
213
+ #: views/settings.php:76
214
+ msgid ""
215
+ "If you want to redirect a user to a URL (which is not the WordPress "
216
+ "dashboard) after login, then define a URL (incl. http://)"
217
+ msgstr ""
218
+ "Daca doresti sa redirectionezi un utilizator catre un URL (diferit de "
219
+ "WordPress dashboard) dupa ce acesta s-a autentificat, atunci defineste un "
220
+ "URL (include http://). "
221
+
222
+ #: views/settings.php:80
223
+ msgid "Exclude"
224
+ msgstr "Exclude"
225
+
226
+ #: views/settings.php:87
227
+ msgid ""
228
+ "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
229
+ "IP per line!"
230
+ msgstr ""
231
+ "Exclude rss feed, pagini, arhive ori IP-uri din modul de mentenanta. Adauga "
232
+ "cate slug/IP pe linie."
233
+
234
+ #: views/settings.php:91
235
+ msgid "Notice"
236
+ msgstr "Atentionare"
237
+
238
+ #: views/settings.php:97
239
+ msgid "Do you want to see notices when maintenance mode is activated?"
240
+ msgstr ""
241
+ "Doresti sa vezi atentionarea atunci cand modul de mentenanta este activat?"
242
+
243
+ #: views/settings.php:101
244
+ msgid "Dashboard link"
245
+ msgstr "Link catre admin"
246
+
247
+ #: views/settings.php:107
248
+ msgid ""
249
+ "Do you want to add a link to the dashboard on your maintenance mode page?"
250
+ msgstr "Doresti sa adaugi un link catre admin pe pagina de mentenanta?"
251
+
252
+ #: views/settings.php:115 views/settings.php:218 views/settings.php:421
253
+ msgid "Save settings"
254
+ msgstr "Salveaza setari"
255
+
256
+ #: views/settings.php:116 views/settings.php:219 views/settings.php:422
257
+ msgid "Reset settings"
258
+ msgstr "Reseteaza setari"
259
+
260
+ #: views/settings.php:121
261
+ msgid "Content"
262
+ msgstr "Continut"
263
+
264
+ #: views/settings.php:126
265
+ msgid "Title (HTML tag)"
266
+ msgstr "Titlu (tag HTML)"
267
+
268
+ #: views/settings.php:132
269
+ msgid "Heading"
270
+ msgstr "Subtitlu"
271
+
272
+ #: views/settings.php:139 views/settings.php:274
273
+ msgid "Text"
274
+ msgstr "Text"
275
+
276
+ #: views/settings.php:159
277
+ msgid "Background"
278
+ msgstr "Fundal"
279
+
280
+ #: views/settings.php:164
281
+ msgid "Choose type"
282
+ msgstr "Alege tip"
283
+
284
+ #: views/settings.php:167
285
+ msgid "Custom color"
286
+ msgstr "Culoare"
287
+
288
+ #: views/settings.php:168
289
+ msgid "Uploaded background"
290
+ msgstr "Imagine de fundal urcata de utilizator"
291
+
292
+ #: views/settings.php:169
293
+ msgid "Predefined background"
294
+ msgstr "Imagine de fundal predefinita"
295
+
296
+ #: views/settings.php:174
297
+ msgid "Choose color"
298
+ msgstr "Alege culoare"
299
+
300
+ #: views/settings.php:180
301
+ msgid "Upload background"
302
+ msgstr "Incarca imagine"
303
+
304
+ #: views/settings.php:184
305
+ msgid "Backgrounds should have 1920x1280 px size."
306
+ msgstr "Imaginea ar trebui sa fie 1920x1280 px"
307
+
308
+ #: views/settings.php:189
309
+ msgid "Choose background"
310
+ msgstr "Alege imagine"
311
+
312
+ #: views/settings.php:191
313
+ msgid "source <a href=\"%\" target=\"_blank\">Free Photos</a>"
314
+ msgstr "sursa <a href=\"%\" target=\"_blank\">Free Photos</a>"
315
+
316
+ #: views/settings.php:224
317
+ msgid "Countdown"
318
+ msgstr "Countdown"
319
+
320
+ #: views/settings.php:229
321
+ msgid "Show countdown?"
322
+ msgstr "Afiseaza countdown?"
323
+
324
+ #: views/settings.php:238
325
+ msgid "Start date"
326
+ msgstr "Data de inceput"
327
+
328
+ #: views/settings.php:244
329
+ msgid "Countdown (remaining time)"
330
+ msgstr "Countdown (timpul ramas)"
331
+
332
+ #: views/settings.php:246
333
+ msgid "Days"
334
+ msgstr "Zile"
335
+
336
+ #: views/settings.php:247
337
+ msgid "Hours"
338
+ msgstr "Ore"
339
+
340
+ #: views/settings.php:248
341
+ msgid "Minutes"
342
+ msgstr "Minute"
343
+
344
+ #: views/settings.php:252
345
+ msgid "Color"
346
+ msgstr "Culoare"
347
+
348
+ #: views/settings.php:265
349
+ msgid "Show subscribe?"
350
+ msgstr "Afiseaza formular abonare?"
351
+
352
+ #: views/settings.php:281
353
+ msgid "Stats"
354
+ msgstr "Statistici"
355
+
356
+ #: views/settings.php:285
357
+ #, php-format
358
+ msgid "You have %d subscriber(s)"
359
+ msgstr "Lista contine %d abonati"
360
+
361
+ #: views/settings.php:290
362
+ msgid "Export as CSV"
363
+ msgstr "Exporta lista in format CSV"
364
+
365
+ #: views/settings.php:297
366
+ msgid "Social Networks"
367
+ msgstr "Retele sociale"
368
+
369
+ #: views/settings.php:302
370
+ msgid "Show social networks?"
371
+ msgstr "Afiseaza butoane retele sociale?"
372
+
373
+ #: views/settings.php:311
374
+ msgid "Links target?"
375
+ msgstr "Target-ul link-urilor"
376
+
377
+ #: views/settings.php:314
378
+ msgid "New page"
379
+ msgstr "Pagina noua"
380
+
381
+ #: views/settings.php:315
382
+ msgid "Same page"
383
+ msgstr "Aceeasi pagina"
384
+
385
+ #: views/settings.php:317
386
+ msgid "Choose how the links will open."
387
+ msgstr "Alege felul in care link-urile se vor deschide."
388
+
389
+ #: views/settings.php:365
390
+ msgid "Contact"
391
+ msgstr "Contact"
392
+
393
+ #: views/settings.php:370
394
+ msgid "Show contact?"
395
+ msgstr "Afiseaza contact ?"
396
+
397
+ #: views/settings.php:379
398
+ msgid "Email address"
399
+ msgstr "Adresa de email"
400
+
401
+ #: views/settings.php:385
402
+ msgid "Effects"
403
+ msgstr "Efecte"
404
+
405
+ #: views/settings.php:388
406
+ msgid "Move top - Move bottom"
407
+ msgstr "Move top - Move bottom"
408
+
409
+ #: views/settings.php:389
410
+ msgid "Zoom - Zoomed"
411
+ msgstr "Zoom - Zoomed"
412
+
413
+ #: views/settings.php:390
414
+ msgid "Fold - Unfold"
415
+ msgstr "Fold - Unfold"
416
+
417
+ #: views/settings.php:397
418
+ msgid "Google Analytics"
419
+ msgstr "Google Analytics"
420
+
421
+ #: views/settings.php:402
422
+ msgid "Use Google Analytics?"
423
+ msgstr "Folosesti Google Analytics?"
424
+
425
+ #: views/settings.php:411
426
+ msgid "Tracking code"
427
+ msgstr "Cod de monitorizare"
428
+
429
+ #: views/sidebar.php:3
430
+ msgid "Plugin Info"
431
+ msgstr "Informatii plugin"
432
+
433
+ #: views/sidebar.php:13
434
+ msgid "Author"
435
+ msgstr "Autor"
436
+
437
+ #: views/sidebar.php:14
438
+ msgid "Website"
439
+ msgstr "Website"
440
+
441
+ #: views/sidebar.php:15
442
+ msgid "Twitter"
443
+ msgstr "Twitter"
444
+
445
+ #: views/sidebar.php:16
446
+ msgid "GitHub"
447
+ msgstr "GitHub"
448
+
449
+ #: views/sidebar.php:22
450
+ msgid "WordPress Themes"
451
+ msgstr "Teme WordPress"
452
+
453
+ #: views/sidebar.php:31
454
+ msgid "Resources"
455
+ msgstr "Resurse"
456
+
457
+ #~ msgid "Subscribe now for early access to new WordPress themes."
458
+ #~ msgstr "Aboneaza-te acum pentru a avea acces la noi teme WordPress"
459
+
460
+ #~ msgid "Enter your email address"
461
+ #~ msgstr "Completeaza adresa de email"
462
+
463
+ #~ msgid "News"
464
+ #~ msgstr "Stiri"
465
+
466
+ #~ msgid "Developed by <a href=\"%s\">Designmodo</a>"
467
+ #~ msgstr "Dezvoltat de <a href=\"%s\">Designmodo</a>"
468
+
469
+ #~ msgid "Title"
470
+ #~ msgstr "Titlu"
languages/wp-maintenance-mode-ru_RU.mo ADDED
Binary file
languages/wp-maintenance-mode-ru_RU.po ADDED
@@ -0,0 +1,463 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.0.3\n"
4
+ "POT-Creation-Date: 2014-09-26 19:07+0200\n"
5
+ "PO-Revision-Date: 2014-09-28 11:24+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.6.9\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"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPath-1: includes/classes\n"
20
+ "X-Poedit-SearchPath-2: views\n"
21
+
22
+ #: includes/classes/wp-maintenance-mode-admin.php:154
23
+ msgid "WP Maintenance Mode"
24
+ msgstr "Техническое обслуживание"
25
+
26
+ #: includes/classes/wp-maintenance-mode-admin.php:358
27
+ msgid "Settings"
28
+ msgstr "Настройки"
29
+
30
+ #: includes/classes/wp-maintenance-mode-admin.php:377
31
+ #, php-format
32
+ msgid ""
33
+ "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
34
+ "href=\"%s\">deactivate</a> as soon as you are done."
35
+ msgstr ""
36
+ "Режим технического обслуживания <strong>включён</strong>. Не забудьте <a "
37
+ "href=\"%s\">выключить</a> его, как только закончите."
38
+
39
+ #: includes/classes/wp-maintenance-mode.php:100
40
+ #: includes/classes/wp-maintenance-mode.php:101
41
+ msgid "Maintenance mode"
42
+ msgstr "Режим технического обслуживания"
43
+
44
+ #: includes/classes/wp-maintenance-mode.php:103
45
+ msgid ""
46
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
47
+ "scheduled maintenance.<br />Thank you for your understanding.</p>"
48
+ msgstr ""
49
+ "<p>В данный момент сайт находится на техническом обслуживании.<br />Приносим "
50
+ "извинения за временные неудобства.<br />Спасибо за понимание.</p>"
51
+
52
+ #: includes/classes/wp-maintenance-mode.php:121
53
+ msgid "Notify me when it's ready"
54
+ msgstr "Сообщить о готовности"
55
+
56
+ #: includes/classes/wp-maintenance-mode.php:249
57
+ #, php-format
58
+ msgid ""
59
+ "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
60
+ "\">settings</a>."
61
+ msgstr ""
62
+ "Плагин технического обслуживания был перезапущен. Вам НЕОБХОДИМО "
63
+ "пересмотреть <a href=\"%s\">настройки</a>."
64
+
65
+ #: includes/classes/wp-maintenance-mode.php:425
66
+ #: includes/classes/wp-maintenance-mode.php:439
67
+ msgid "Maintenance Mode"
68
+ msgstr "Режим технического обслуживания"
69
+
70
+ #: includes/classes/wp-maintenance-mode.php:630
71
+ #: includes/classes/wp-maintenance-mode.php:658
72
+ msgid "Please enter a valid email address."
73
+ msgstr "Введите корректный e-mail адрес."
74
+
75
+ #: includes/classes/wp-maintenance-mode.php:641
76
+ msgid "You successfuly subscribed. Thanks!"
77
+ msgstr "Вы успешно подписались."
78
+
79
+ #: includes/classes/wp-maintenance-mode.php:654
80
+ msgid "All fields required."
81
+ msgstr "Все поля обязательны."
82
+
83
+ #: includes/classes/wp-maintenance-mode.php:675
84
+ msgid "Message via contact"
85
+ msgstr "Сообщение"
86
+
87
+ #: includes/classes/wp-maintenance-mode.php:679
88
+ msgid "Your email was sent to the website administrator. Thanks!"
89
+ msgstr "Ваше сообщение отправлено администратору сайта. Спасибо!"
90
+
91
+ #: views/loginform.php:8
92
+ msgid "Login"
93
+ msgstr "Войти"
94
+
95
+ #: views/maintenance.php:41
96
+ msgid "your e-mail..."
97
+ msgstr "ваш e-mail..."
98
+
99
+ #: views/maintenance.php:42 views/settings.php:260
100
+ msgid "Subscribe"
101
+ msgstr "Подписаться"
102
+
103
+ #: views/maintenance.php:83 views/sidebar.php:7
104
+ msgid "Name"
105
+ msgstr "Имя"
106
+
107
+ #: views/maintenance.php:84
108
+ msgid "E-mail"
109
+ msgstr "E-mail"
110
+
111
+ #: views/maintenance.php:86
112
+ msgid "Your message"
113
+ msgstr "Ваше сообщение"
114
+
115
+ #: views/maintenance.php:87
116
+ msgid "Send"
117
+ msgstr "Отправить"
118
+
119
+ #: views/maintenance.php:92
120
+ msgid "Contact us"
121
+ msgstr "Свяжитесь с нами"
122
+
123
+ #: views/maintenance.php:97
124
+ msgid "Dashboard"
125
+ msgstr "Панель управления"
126
+
127
+ #: views/settings.php:6
128
+ msgid "Settings saved."
129
+ msgstr "Настройки сохранены."
130
+
131
+ #: views/settings.php:13
132
+ msgid "General"
133
+ msgstr "Общие"
134
+
135
+ #: views/settings.php:14
136
+ msgid "Design"
137
+ msgstr "Дизайн"
138
+
139
+ #: views/settings.php:15
140
+ msgid "Modules"
141
+ msgstr "Модули"
142
+
143
+ #: views/settings.php:24
144
+ msgid "Status"
145
+ msgstr "Статус"
146
+
147
+ #: views/settings.php:26
148
+ msgid "Activated"
149
+ msgstr "Включено"
150
+
151
+ #: views/settings.php:27
152
+ msgid "Deactivated"
153
+ msgstr "Отключено"
154
+
155
+ #: views/settings.php:31
156
+ msgid "Bypass for Search Bots"
157
+ msgstr "Индексация роботами"
158
+
159
+ #: views/settings.php:34 views/settings.php:94 views/settings.php:104
160
+ #: views/settings.php:232 views/settings.php:268 views/settings.php:305
161
+ #: views/settings.php:373 views/settings.php:405
162
+ msgid "Yes"
163
+ msgstr "Да"
164
+
165
+ #: views/settings.php:35 views/settings.php:95 views/settings.php:105
166
+ #: views/settings.php:233 views/settings.php:269 views/settings.php:306
167
+ #: views/settings.php:374 views/settings.php:406
168
+ msgid "No"
169
+ msgstr "Нет"
170
+
171
+ #: views/settings.php:37
172
+ msgid "Allow Search Bots to bypass maintenance mode?"
173
+ msgstr ""
174
+ "Разрешить поисковым роботам индексацию сайта во время технического "
175
+ "обслуживания?"
176
+
177
+ #: views/settings.php:41
178
+ msgid "Backend Role"
179
+ msgstr "Доступ к панели управления"
180
+
181
+ #: views/settings.php:48
182
+ msgid "Which user role is allowed to access the backend of this blog?"
183
+ msgstr "Кому разрешён доступ к backend сайта?"
184
+
185
+ #: views/settings.php:52
186
+ msgid "Frontend Role"
187
+ msgstr "Доступ к сайту"
188
+
189
+ #: views/settings.php:59
190
+ msgid "Which user role is allowed to access the frontend of this blog?"
191
+ msgstr "Кому разрешён доступ к frontend сайта?"
192
+
193
+ #: views/settings.php:63
194
+ msgid "Robots Meta Tag"
195
+ msgstr "Метатэг для роботов"
196
+
197
+ #: views/settings.php:69
198
+ msgid ""
199
+ "The robots meta tag lets you use a granular, page-specific approach to "
200
+ "control how an individual page should be indexed and served to users in "
201
+ "search results."
202
+ msgstr ""
203
+ "Метатэг для роботов позволяет Вам определить специфическое для каждой "
204
+ "страницы индексирование и отображение пользователям в результатах поиска."
205
+
206
+ #: views/settings.php:73
207
+ msgid "Redirection"
208
+ msgstr "Перенаправление"
209
+
210
+ #: views/settings.php:76
211
+ msgid ""
212
+ "If you want to redirect a user to a URL (which is not the WordPress "
213
+ "dashboard) after login, then define a URL (incl. http://)"
214
+ msgstr ""
215
+ "Если вы хотите перенаправить пользователей на другой сайт (и это не панель "
216
+ "управления WordPress) после входа, укажите ссылку (включая http://)"
217
+
218
+ #: views/settings.php:80
219
+ msgid "Exclude"
220
+ msgstr "Исключения"
221
+
222
+ #: views/settings.php:87
223
+ msgid ""
224
+ "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
225
+ "IP per line!"
226
+ msgstr ""
227
+ "Разрешите доступ к новостям (ленте), страницам, архивам или по IP во время "
228
+ "технического обслуживания. Одна страница/IP на строке!"
229
+
230
+ #: views/settings.php:91
231
+ msgid "Notice"
232
+ msgstr "Предупреждение"
233
+
234
+ #: views/settings.php:97
235
+ msgid "Do you want to see notices when maintenance mode is activated?"
236
+ msgstr ""
237
+ "Вы хотите видеть предупреждения, когда режим технического обслуживания "
238
+ "включён?"
239
+
240
+ #: views/settings.php:101
241
+ msgid "Dashboard link"
242
+ msgstr "Ссылка на панель управления"
243
+
244
+ #: views/settings.php:107
245
+ msgid ""
246
+ "Do you want to add a link to the dashboard on your maintenance mode page?"
247
+ msgstr ""
248
+ "Вы хотите добавить ссылку на панель управления на странице технического "
249
+ "обслуживания?"
250
+
251
+ #: views/settings.php:115 views/settings.php:218 views/settings.php:421
252
+ msgid "Save settings"
253
+ msgstr "Сохранить настройки"
254
+
255
+ #: views/settings.php:116 views/settings.php:219 views/settings.php:422
256
+ msgid "Reset settings"
257
+ msgstr "Сбросить настройки"
258
+
259
+ #: views/settings.php:121
260
+ msgid "Content"
261
+ msgstr "Содержимое"
262
+
263
+ #: views/settings.php:126
264
+ msgid "Title (HTML tag)"
265
+ msgstr "Название (тэг HTML)"
266
+
267
+ #: views/settings.php:132
268
+ msgid "Heading"
269
+ msgstr "Заголовок"
270
+
271
+ #: views/settings.php:139 views/settings.php:274
272
+ msgid "Text"
273
+ msgstr "Текст"
274
+
275
+ #: views/settings.php:159
276
+ msgid "Background"
277
+ msgstr "Фон"
278
+
279
+ #: views/settings.php:164
280
+ msgid "Choose type"
281
+ msgstr "Выберите тип"
282
+
283
+ #: views/settings.php:167
284
+ msgid "Custom color"
285
+ msgstr "Другой цвет"
286
+
287
+ #: views/settings.php:168
288
+ msgid "Uploaded background"
289
+ msgstr "Загруженный фон"
290
+
291
+ #: views/settings.php:169
292
+ msgid "Predefined background"
293
+ msgstr "Предустановленный фон"
294
+
295
+ #: views/settings.php:174
296
+ msgid "Choose color"
297
+ msgstr "Выберите цвет"
298
+
299
+ #: views/settings.php:180
300
+ msgid "Upload background"
301
+ msgstr "Загрузить фон"
302
+
303
+ #: views/settings.php:184
304
+ msgid "Backgrounds should have 1920x1280 px size."
305
+ msgstr "Фоновое изображение должно быть размера 1920x1080."
306
+
307
+ #: views/settings.php:189
308
+ msgid "Choose background"
309
+ msgstr "Выберите фон"
310
+
311
+ #: views/settings.php:191
312
+ msgid "source <a href=\"%\" target=\"_blank\">Free Photos</a>"
313
+ msgstr "источник: <a href=\"%\" target=\"_blank\">Free Photos</a>"
314
+
315
+ #: views/settings.php:224
316
+ msgid "Countdown"
317
+ msgstr "Обратный отсчёт"
318
+
319
+ #: views/settings.php:229
320
+ msgid "Show countdown?"
321
+ msgstr "Показывать обратный отсчёт?"
322
+
323
+ #: views/settings.php:238
324
+ msgid "Start date"
325
+ msgstr "Дата начала"
326
+
327
+ #: views/settings.php:244
328
+ msgid "Countdown (remaining time)"
329
+ msgstr "Обратный отсчёт (оставшееся время)"
330
+
331
+ #: views/settings.php:246
332
+ msgid "Days"
333
+ msgstr "Дни"
334
+
335
+ #: views/settings.php:247
336
+ msgid "Hours"
337
+ msgstr "Часы"
338
+
339
+ #: views/settings.php:248
340
+ msgid "Minutes"
341
+ msgstr "Минуты"
342
+
343
+ #: views/settings.php:252
344
+ msgid "Color"
345
+ msgstr "Цвет"
346
+
347
+ #: views/settings.php:265
348
+ msgid "Show subscribe?"
349
+ msgstr "Отображать возможность подписки?"
350
+
351
+ #: views/settings.php:281
352
+ msgid "Stats"
353
+ msgstr "Статистика"
354
+
355
+ #: views/settings.php:285
356
+ #, php-format
357
+ msgid "You have %d subscriber(s)"
358
+ msgstr "Подписчиков: %d"
359
+
360
+ #: views/settings.php:290
361
+ msgid "Export as CSV"
362
+ msgstr "Экспорт в .csv"
363
+
364
+ #: views/settings.php:297
365
+ msgid "Social Networks"
366
+ msgstr "Социальные сети"
367
+
368
+ #: views/settings.php:302
369
+ msgid "Show social networks?"
370
+ msgstr "Отображать социальные сети?"
371
+
372
+ #: views/settings.php:311
373
+ msgid "Links target?"
374
+ msgstr "Куда ведут ссылки?"
375
+
376
+ #: views/settings.php:314
377
+ msgid "New page"
378
+ msgstr "Новая страница"
379
+
380
+ #: views/settings.php:315
381
+ msgid "Same page"
382
+ msgstr "Такая же страница"
383
+
384
+ #: views/settings.php:317
385
+ msgid "Choose how the links will open."
386
+ msgstr "Как будут открываться ссылки?"
387
+
388
+ #: views/settings.php:365
389
+ msgid "Contact"
390
+ msgstr "Обратная связь"
391
+
392
+ #: views/settings.php:370
393
+ msgid "Show contact?"
394
+ msgstr "Включить обратную связь?"
395
+
396
+ #: views/settings.php:379
397
+ msgid "Email address"
398
+ msgstr "E-mail адрес"
399
+
400
+ #: views/settings.php:385
401
+ msgid "Effects"
402
+ msgstr "Эффекты"
403
+
404
+ #: views/settings.php:388
405
+ msgid "Move top - Move bottom"
406
+ msgstr "Сверху вниз"
407
+
408
+ #: views/settings.php:389
409
+ msgid "Zoom - Zoomed"
410
+ msgstr "Увеличение"
411
+
412
+ #: views/settings.php:390
413
+ msgid "Fold - Unfold"
414
+ msgstr "Поворот"
415
+
416
+ #: views/settings.php:397
417
+ msgid "Google Analytics"
418
+ msgstr "Google Analytics"
419
+
420
+ #: views/settings.php:402
421
+ msgid "Use Google Analytics?"
422
+ msgstr "Использовать Google Analytics?"
423
+
424
+ #: views/settings.php:411
425
+ msgid "Tracking code"
426
+ msgstr "Код слежения"
427
+
428
+ #: views/sidebar.php:3
429
+ msgid "Plugin Info"
430
+ msgstr "Информация о плагине"
431
+
432
+ #: views/sidebar.php:13
433
+ msgid "Author"
434
+ msgstr "Автор"
435
+
436
+ #: views/sidebar.php:14
437
+ msgid "Website"
438
+ msgstr "Веб-сайт"
439
+
440
+ #: views/sidebar.php:15
441
+ msgid "Twitter"
442
+ msgstr "Twitter"
443
+
444
+ #: views/sidebar.php:16
445
+ msgid "GitHub"
446
+ msgstr "GitHub"
447
+
448
+ #: views/sidebar.php:22
449
+ msgid "WordPress Themes"
450
+ msgstr "Темы WordPress"
451
+
452
+ #: views/sidebar.php:31
453
+ msgid "Resources"
454
+ msgstr "Ресурсы"
455
+
456
+ #~ msgid "Subscribe now for early access to new WordPress themes."
457
+ #~ msgstr "Подпишитесь, чтобы заранее узнать о новых темах для WordPress."
458
+
459
+ #~ msgid "Enter your email address"
460
+ #~ msgstr "Введите ваш e-mail адрес"
461
+
462
+ #~ msgid "News"
463
+ #~ msgstr "Новости"
languages/wp-maintenance-mode-sv_SE.mo ADDED
Binary file
languages/wp-maintenance-mode-sv_SE.po ADDED
@@ -0,0 +1,457 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Maintenance Mode 2.0.3\n"
4
+ "POT-Creation-Date: 2014-09-26 19:07+0200\n"
5
+ "PO-Revision-Date: 2014-09-26 19:07+0200\n"
6
+ "Last-Translator: Andréas Lundgren <adevade@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.6.7\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: includes/classes\n"
19
+ "X-Poedit-SearchPath-2: views\n"
20
+
21
+ #: includes/classes/wp-maintenance-mode-admin.php:154
22
+ msgid "WP Maintenance Mode"
23
+ msgstr "WP Underhållsläge"
24
+
25
+ #: includes/classes/wp-maintenance-mode-admin.php:358
26
+ msgid "Settings"
27
+ msgstr "Inställningar"
28
+
29
+ #: includes/classes/wp-maintenance-mode-admin.php:377
30
+ #, php-format
31
+ msgid ""
32
+ "The Maintenance Mode is <strong>active</strong>. Please don't forget to <a "
33
+ "href=\"%s\">deactivate</a> as soon as you are done."
34
+ msgstr ""
35
+ "Underhållsläget är <strong>aktiverat</strong>. Glöm inte att <a href=\"%s"
36
+ "\">avaktivera</a> det när du är klar."
37
+
38
+ #: includes/classes/wp-maintenance-mode.php:100
39
+ #: includes/classes/wp-maintenance-mode.php:101
40
+ msgid "Maintenance mode"
41
+ msgstr "Underhållsläge"
42
+
43
+ #: includes/classes/wp-maintenance-mode.php:103
44
+ msgid ""
45
+ "<p>Sorry for the inconvenience.<br />Our website is currently undergoing "
46
+ "scheduled maintenance.<br />Thank you for your understanding.</p>"
47
+ msgstr ""
48
+ "<p>Ledsen för besväret.<br />Vår hemsida ligger för närvarande i "
49
+ "underhållsläge.<br />Tack för att ni förstår.</p>"
50
+
51
+ #: includes/classes/wp-maintenance-mode.php:121
52
+ msgid "Notify me when it's ready"
53
+ msgstr "Meddela mig när sidan är färdig"
54
+
55
+ #: includes/classes/wp-maintenance-mode.php:249
56
+ #, php-format
57
+ msgid ""
58
+ "WP Maintenance Mode plugin was relaunched and you MUST revise <a href=\"%s"
59
+ "\">settings</a>."
60
+ msgstr ""
61
+ "Tillägget WP Underhållsläge återlanserades nyligen med massa nya <a href=\"%s"
62
+ "\">inställningar</a>."
63
+
64
+ #: includes/classes/wp-maintenance-mode.php:425
65
+ #: includes/classes/wp-maintenance-mode.php:439
66
+ msgid "Maintenance Mode"
67
+ msgstr "Underhållsläge"
68
+
69
+ #: includes/classes/wp-maintenance-mode.php:630
70
+ #: includes/classes/wp-maintenance-mode.php:658
71
+ msgid "Please enter a valid email address."
72
+ msgstr "Vänligen fyll i en giltig e-postadress. "
73
+
74
+ #: includes/classes/wp-maintenance-mode.php:641
75
+ msgid "You successfuly subscribed. Thanks!"
76
+ msgstr "Din e-post registrerades. Tack! "
77
+
78
+ #: includes/classes/wp-maintenance-mode.php:654
79
+ msgid "All fields required."
80
+ msgstr "Vänligen fyll i alla fält."
81
+
82
+ #: includes/classes/wp-maintenance-mode.php:675
83
+ msgid "Message via contact"
84
+ msgstr "Meddelande från underhållsläget"
85
+
86
+ #: includes/classes/wp-maintenance-mode.php:679
87
+ msgid "Your email was sent to the website administrator. Thanks!"
88
+ msgstr "Ditt meddelande skickades till hemsidans ägare. Tack! "
89
+
90
+ #: views/loginform.php:8
91
+ msgid "Login"
92
+ msgstr ""
93
+
94
+ #: views/maintenance.php:41
95
+ msgid "your e-mail..."
96
+ msgstr "Din e-postadress..."
97
+
98
+ #: views/maintenance.php:42 views/settings.php:260
99
+ msgid "Subscribe"
100
+ msgstr "Prenumerera"
101
+
102
+ #: views/maintenance.php:83 views/sidebar.php:7
103
+ msgid "Name"
104
+ msgstr "Namn"
105
+
106
+ #: views/maintenance.php:84
107
+ msgid "E-mail"
108
+ msgstr "E-post"
109
+
110
+ #: views/maintenance.php:86
111
+ msgid "Your message"
112
+ msgstr "Ditt meddelande"
113
+
114
+ #: views/maintenance.php:87
115
+ msgid "Send"
116
+ msgstr "Skicka"
117
+
118
+ #: views/maintenance.php:92
119
+ msgid "Contact us"
120
+ msgstr "Kontakta oss"
121
+
122
+ #: views/maintenance.php:97
123
+ msgid "Dashboard"
124
+ msgstr ""
125
+
126
+ #: views/settings.php:6
127
+ msgid "Settings saved."
128
+ msgstr "Inställningarna sparades."
129
+
130
+ #: views/settings.php:13
131
+ msgid "General"
132
+ msgstr "Allmänt"
133
+
134
+ #: views/settings.php:14
135
+ msgid "Design"
136
+ msgstr "Design"
137
+
138
+ #: views/settings.php:15
139
+ msgid "Modules"
140
+ msgstr "Moduler"
141
+
142
+ #: views/settings.php:24
143
+ msgid "Status"
144
+ msgstr "Status"
145
+
146
+ #: views/settings.php:26
147
+ msgid "Activated"
148
+ msgstr "Aktiverad"
149
+
150
+ #: views/settings.php:27
151
+ msgid "Deactivated"
152
+ msgstr "Avaktiverad"
153
+
154
+ #: views/settings.php:31
155
+ msgid "Bypass for Search Bots"
156
+ msgstr "Låt sökrobotar gå förbi"
157
+
158
+ #: views/settings.php:34 views/settings.php:94 views/settings.php:104
159
+ #: views/settings.php:232 views/settings.php:268 views/settings.php:305
160
+ #: views/settings.php:373 views/settings.php:405
161
+ msgid "Yes"
162
+ msgstr "Ja"
163
+
164
+ #: views/settings.php:35 views/settings.php:95 views/settings.php:105
165
+ #: views/settings.php:233 views/settings.php:269 views/settings.php:306
166
+ #: views/settings.php:374 views/settings.php:406
167
+ msgid "No"
168
+ msgstr "Nej"
169
+
170
+ #: views/settings.php:37
171
+ msgid "Allow Search Bots to bypass maintenance mode?"
172
+ msgstr "Tillåt sökrobotar att gå förbi underhållsläget? "
173
+
174
+ #: views/settings.php:41
175
+ msgid "Backend Role"
176
+ msgstr "Back end-roll"
177
+
178
+ #: views/settings.php:48
179
+ msgid "Which user role is allowed to access the backend of this blog?"
180
+ msgstr "Vilken användarroll får tillgång till back end av denna hemsidan?"
181
+
182
+ #: views/settings.php:52
183
+ msgid "Frontend Role"
184
+ msgstr "Front end-roll"
185
+
186
+ #: views/settings.php:59
187
+ msgid "Which user role is allowed to access the frontend of this blog?"
188
+ msgstr "Vilken användarroll får tillgång till front end av denna hemsidan?"
189
+
190
+ #: views/settings.php:63
191
+ msgid "Robots Meta Tag"
192
+ msgstr "Robots meta-tagg"
193
+
194
+ #: views/settings.php:69
195
+ msgid ""
196
+ "The robots meta tag lets you use a granular, page-specific approach to "
197
+ "control how an individual page should be indexed and served to users in "
198
+ "search results."
199
+ msgstr ""
200
+ "Metataggen för sökrobotar låter dig använda ett granulärt, sidspecifikt "
201
+ "tillvägagångssätt för att kontrollera hur en enskild sida ska indexeras och "
202
+ "visas för användare i sökresultat. "
203
+
204
+ #: views/settings.php:73
205
+ msgid "Redirection"
206
+ msgstr "Omdirigering"
207
+
208
+ #: views/settings.php:76
209
+ msgid ""
210
+ "If you want to redirect a user to a URL (which is not the WordPress "
211
+ "dashboard) after login, then define a URL (incl. http://)"
212
+ msgstr ""
213
+ "Om du vill omdirigera en användare till en URL (förutom WordPresspanelen) "
214
+ "efter att de har loggat in, fyll i en URL (inkl. http://)"
215
+
216
+ #: views/settings.php:80
217
+ msgid "Exclude"
218
+ msgstr "Exkludera"
219
+
220
+ #: views/settings.php:87
221
+ msgid ""
222
+ "Exclude feed, pages, archives or IPs from maintenance mode. Add one slug / "
223
+ "IP per line!"
224
+ msgstr ""
225
+ "Exkludera flöde, sidor, arkiv eller IP-adresser från underhållsläget. Lägg "
226
+ "max till en permalänk/IP per rad! "
227
+
228
+ #: views/settings.php:91
229
+ msgid "Notice"
230
+ msgstr "Meddelande"
231
+
232
+ #: views/settings.php:97
233
+ msgid "Do you want to see notices when maintenance mode is activated?"
234
+ msgstr "Vill du se ett meddelande när underhållsläget är aktiverat?"
235
+
236
+ #: views/settings.php:101
237
+ msgid "Dashboard link"
238
+ msgstr ""
239
+
240
+ #: views/settings.php:107
241
+ msgid ""
242
+ "Do you want to add a link to the dashboard on your maintenance mode page?"
243
+ msgstr ""
244
+
245
+ #: views/settings.php:115 views/settings.php:218 views/settings.php:421
246
+ msgid "Save settings"
247
+ msgstr "Spara"
248
+
249
+ #: views/settings.php:116 views/settings.php:219 views/settings.php:422
250
+ msgid "Reset settings"
251
+ msgstr "Återställ inställningar"
252
+
253
+ #: views/settings.php:121
254
+ msgid "Content"
255
+ msgstr "Innehåll"
256
+
257
+ #: views/settings.php:126
258
+ msgid "Title (HTML tag)"
259
+ msgstr "Titel (HTML-tagg)"
260
+
261
+ #: views/settings.php:132
262
+ msgid "Heading"
263
+ msgstr "Rubrik"
264
+
265
+ #: views/settings.php:139 views/settings.php:274
266
+ msgid "Text"
267
+ msgstr "Text"
268
+
269
+ #: views/settings.php:159
270
+ msgid "Background"
271
+ msgstr "Bakgrund"
272
+
273
+ #: views/settings.php:164
274
+ msgid "Choose type"
275
+ msgstr "Välj typ"
276
+
277
+ #: views/settings.php:167
278
+ msgid "Custom color"
279
+ msgstr "Egen färg"
280
+
281
+ #: views/settings.php:168
282
+ msgid "Uploaded background"
283
+ msgstr "Uppladdad bakgrund"
284
+
285
+ #: views/settings.php:169
286
+ msgid "Predefined background"
287
+ msgstr "Fördefinierad bakgrund"
288
+
289
+ #: views/settings.php:174
290
+ msgid "Choose color"
291
+ msgstr "Välj färg"
292
+
293
+ #: views/settings.php:180
294
+ msgid "Upload background"
295
+ msgstr "Ladda upp bakgrund"
296
+
297
+ #: views/settings.php:184
298
+ msgid "Backgrounds should have 1920x1280 px size."
299
+ msgstr "En bakgrund bör vara minst 1920x1280px. "
300
+
301
+ #: views/settings.php:189
302
+ msgid "Choose background"
303
+ msgstr "Välj bakgrund"
304
+
305
+ #: views/settings.php:191
306
+ msgid "source <a href=\"%\" target=\"_blank\">Free Photos</a>"
307
+ msgstr "källa <a href=\"%\" target=\"_blank\">Free Photos</a>"
308
+
309
+ #: views/settings.php:224
310
+ msgid "Countdown"
311
+ msgstr "Nedräkning"
312
+
313
+ #: views/settings.php:229
314
+ msgid "Show countdown?"
315
+ msgstr "Visa nedräkning?"
316
+
317
+ #: views/settings.php:238
318
+ msgid "Start date"
319
+ msgstr "Startdatum"
320
+
321
+ #: views/settings.php:244
322
+ msgid "Countdown (remaining time)"
323
+ msgstr "Nedräkning (återstående tid)"
324
+
325
+ #: views/settings.php:246
326
+ msgid "Days"
327
+ msgstr "Dagar"
328
+
329
+ #: views/settings.php:247
330
+ msgid "Hours"
331
+ msgstr "Timmar"
332
+
333
+ #: views/settings.php:248
334
+ msgid "Minutes"
335
+ msgstr "Minuter"
336
+
337
+ #: views/settings.php:252
338
+ msgid "Color"
339
+ msgstr "Färg"
340
+
341
+ #: views/settings.php:265
342
+ msgid "Show subscribe?"
343
+ msgstr "Visa prenumerationsknapp?"
344
+
345
+ #: views/settings.php:281
346
+ msgid "Stats"
347
+ msgstr "Statistik"
348
+
349
+ #: views/settings.php:285
350
+ #, php-format
351
+ msgid "You have %d subscriber(s)"
352
+ msgstr "Du har %d prenumeranter"
353
+
354
+ #: views/settings.php:290
355
+ msgid "Export as CSV"
356
+ msgstr "Exportera som CSV"
357
+
358
+ #: views/settings.php:297
359
+ msgid "Social Networks"
360
+ msgstr "Sociala nätverk"
361
+
362
+ #: views/settings.php:302
363
+ msgid "Show social networks?"
364
+ msgstr "Visa sociala nätverk?"
365
+
366
+ #: views/settings.php:311
367
+ msgid "Links target?"
368
+ msgstr ""
369
+
370
+ #: views/settings.php:314
371
+ msgid "New page"
372
+ msgstr ""
373
+
374
+ #: views/settings.php:315
375
+ msgid "Same page"
376
+ msgstr ""
377
+
378
+ #: views/settings.php:317
379
+ msgid "Choose how the links will open."
380
+ msgstr ""
381
+
382
+ #: views/settings.php:365
383
+ msgid "Contact"
384
+ msgstr "Kontakt"
385
+
386
+ #: views/settings.php:370
387
+ msgid "Show contact?"
388
+ msgstr "Visa kontaktknapp?"
389
+
390
+ #: views/settings.php:379
391
+ msgid "Email address"
392
+ msgstr "E-postadress"
393
+
394
+ #: views/settings.php:385
395
+ msgid "Effects"
396
+ msgstr "Effekter"
397
+
398
+ #: views/settings.php:388
399
+ msgid "Move top - Move bottom"
400
+ msgstr "Glid"
401
+
402
+ #: views/settings.php:389
403
+ msgid "Zoom - Zoomed"
404
+ msgstr "Zoom"
405
+
406
+ #: views/settings.php:390
407
+ msgid "Fold - Unfold"
408
+ msgstr "Vik"
409
+
410
+ #: views/settings.php:397
411
+ msgid "Google Analytics"
412
+ msgstr ""
413
+
414
+ #: views/settings.php:402
415
+ msgid "Use Google Analytics?"
416
+ msgstr ""
417
+
418
+ #: views/settings.php:411
419
+ msgid "Tracking code"
420
+ msgstr ""
421
+
422
+ #: views/sidebar.php:3
423
+ msgid "Plugin Info"
424
+ msgstr "Information om tillägg"
425
+
426
+ #: views/sidebar.php:13
427
+ msgid "Author"
428
+ msgstr "Författare"
429
+
430
+ #: views/sidebar.php:14
431
+ msgid "Website"
432
+ msgstr "Hemsida"
433
+
434
+ #: views/sidebar.php:15
435
+ msgid "Twitter"
436
+ msgstr "Twitter"
437
+
438
+ #: views/sidebar.php:16
439
+ msgid "GitHub"
440
+ msgstr "GitHub"
441
+
442
+ #: views/sidebar.php:22
443
+ msgid "WordPress Themes"
444
+ msgstr ""
445
+
446
+ #: views/sidebar.php:31
447
+ msgid "Resources"
448
+ msgstr "Resurser"
449
+
450
+ #~ msgid "Subscribe now for early access to new WordPress themes."
451
+ #~ msgstr "Prenumerera nu för tidig tillgång till nya WordPress-teman."
452
+
453
+ #~ msgid "Enter your email address"
454
+ #~ msgstr "Fyll i din e-postadress"
455
+
456
+ #~ msgid "News"
457
+ #~ msgstr "Nyheter"
readme.md CHANGED
@@ -1,105 +1,105 @@
1
- # WP Maintenance Mode
2
-
3
- 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.
4
-
5
- ## Description
6
- Add a maintenance page to your blog that lets visitors know your blog is down for maintenance, or add a coming soon page for a new website. User with admin rights gets full access to the blog including the front end.
7
-
8
- Activate the plugin and your blog is in maintenance-mode, works and only registered users with enough rights can see the front end. You can use a date with a countdown timer for visitor information or set a value and unit for information.
9
- Also works with WordPress Multisite installs (each blog from the network has it's own maintenance settings).
10
-
11
- **Features**
12
-
13
- * Fully customizable (change colors, texts and backgrounds);
14
- * Subscription form (export emails to .csv file);
15
- * Countdown timer (remaining time);
16
- * Contact form (receive emails from visitors);
17
- * Coming soon page;
18
- * Landing page templates;
19
- * WordPress multisite;
20
- * Responsive design;
21
- * Social media icons;
22
- * Works with any WordPress theme;
23
- * SEO options;
24
- * Exclude URLs from maintenance.
25
-
26
- ## F.A.Q.
27
-
28
- **How to use plugin filters**
29
-
30
- `wpmm_backtime` - can be used to change the backtime from page `Retry-After` header
31
-
32
- ```php
33
- function new_backtime() {
34
- return 1800;
35
- }
36
-
37
- add_filter('wpmm_backtime', 'new_backtime');
38
- ```
39
-
40
- Now... the search bots will retry to visit the page after 1800 seconds.
41
-
42
- `wpmm_search_bots` - if you have `Bypass for Search Bots` option (from General) activated, it can be used to add / delete bots (useragents)
43
-
44
- ```php
45
- function new_search_bots($bots) {
46
- // we delete a bot from array
47
- if(!empty($bots['AcoiRobot'])){
48
- unset($bots['AcoiRobot']);
49
- }
50
-
51
- // we add a new bot into array
52
- if(empty($bots['new_robot'])){
53
- $bots['new_robot'] = 'NewRobot'; // NewRobot is the user agent
54
- }
55
-
56
- return $bots;
57
- }
58
-
59
- add_filter('wpmm_search_bots', 'new_search_bots');
60
- ```
61
-
62
- We deleted a bot from list and added a new one.
63
-
64
- `wpmm_text` - can be used to change `Text` option
65
-
66
- ```php
67
- function new_text($text) {
68
- $text = str_replace('http://www.designmodo.com', 'http://designmodo.com', $text);
69
-
70
-
71
- return $text;
72
- }
73
-
74
- add_filter('wpmm_text', 'new_text');
75
- ```
76
-
77
- We replaced a string with another string. We can also add another text, add some extra html, etc.
78
-
79
- `wpmm_styles` - can be used to embed new css files
80
-
81
- ```php
82
- function new_css_styles($styles) {
83
- $styles['new-style'] = 'path_to_css_file/style.css'; // replace with the real path :)
84
-
85
- return $styles;
86
- }
87
-
88
- add_filter('wpmm_styles', 'new_css_styles');
89
- ```
90
-
91
- We embedded a new css style on maintenance page. Same mechanism can be used for javascript files (see `wpmm_scripts` filter).
92
-
93
- **Cache Plugin Support**
94
-
95
- WP Maintenance Mode can be unstable due the cache plugins, we recommend to deactivate any cache plugin when maintenance mode is active.
96
-
97
- ## Other Notes
98
- ### License
99
- Good news, this plugin is free for everyone! Since it's released under the GPL, you can use it free of charge on your personal or commercial blog.
100
-
101
- ### Translations
102
- The plugin comes with various translations, please refer to the [WordPress Codex](http://codex.wordpress.org/Installing_WordPress_in_Your_Language "Installing WordPress in Your Language") for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the .pot file which contains all defintions and may be used with a [gettext](http://www.gnu.org/software/gettext/) editor like [Poedit](http://www.poedit.net/) (Linux, Mac OS X, Windows).
103
-
104
- ### Contact & Feedback
105
- Please let me know if you like the plugin or you hate it or whatever... Please fork it, add an issue for ideas and bugs.
1
+ # WP Maintenance Mode
2
+
3
+ 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.
4
+
5
+ **Features**
6
+
7
+ * Fully customizable (change colors, texts and backgrounds);
8
+ * Subscription form (export emails to .csv file);
9
+ * Countdown timer (remaining time);
10
+ * Contact form (receive emails from visitors);
11
+ * Coming soon page;
12
+ * Landing page templates;
13
+ * WordPress multisite;
14
+ * Responsive design;
15
+ * Social media icons;
16
+ * Works with any WordPress theme;
17
+ * SEO options;
18
+ * Exclude URLs from maintenance.
19
+
20
+ **Credits**
21
+
22
+ Developed by [Designmodo](http://designmodo.com)
23
+
24
+ WordPress Theme: [Startup Framework for WordPress](http://designmodo.com/startup-wordpress/)
25
+
26
+ ## F.A.Q.
27
+
28
+ **How to use plugin filters**
29
+
30
+ `wpmm_backtime` - can be used to change the backtime from page `Retry-After` header
31
+
32
+ ```php
33
+ function new_backtime() {
34
+ return 1800;
35
+ }
36
+
37
+ add_filter('wpmm_backtime', 'new_backtime');
38
+ ```
39
+
40
+ Now... the search bots will retry to visit the page after 1800 seconds.
41
+
42
+ `wpmm_search_bots` - if you have `Bypass for Search Bots` option (from General) activated, it can be used to add / delete bots (useragents)
43
+
44
+ ```php
45
+ function new_search_bots($bots) {
46
+ // we delete a bot from array
47
+ if(!empty($bots['AcoiRobot'])){
48
+ unset($bots['AcoiRobot']);
49
+ }
50
+
51
+ // we add a new bot into array
52
+ if(empty($bots['new_robot'])){
53
+ $bots['new_robot'] = 'NewRobot'; // NewRobot is the user agent
54
+ }
55
+
56
+ return $bots;
57
+ }
58
+
59
+ add_filter('wpmm_search_bots', 'new_search_bots');
60
+ ```
61
+
62
+ We deleted a bot from list and added a new one.
63
+
64
+ `wpmm_text` - can be used to change `Text` option
65
+
66
+ ```php
67
+ function new_text($text) {
68
+ $text = str_replace('http://www.designmodo.com', 'http://designmodo.com', $text);
69
+
70
+
71
+ return $text;
72
+ }
73
+
74
+ add_filter('wpmm_text', 'new_text');
75
+ ```
76
+
77
+ We replaced a string with another string. We can also add another text, add some extra html, etc.
78
+
79
+ `wpmm_styles` - can be used to embed new css files
80
+
81
+ ```php
82
+ function new_css_styles($styles) {
83
+ $styles['new-style'] = 'path_to_css_file/style.css'; // replace with the real path :)
84
+
85
+ return $styles;
86
+ }
87
+
88
+ add_filter('wpmm_styles', 'new_css_styles');
89
+ ```
90
+
91
+ We embedded a new css style on maintenance page. Same mechanism can be used for javascript files (see `wpmm_scripts` filter).
92
+
93
+ **Cache Plugin Support**
94
+
95
+ WP Maintenance Mode can be unstable due the cache plugins, we recommend to deactivate any cache plugin when maintenance mode is active.
96
+
97
+ ## Other Notes
98
+ ### License
99
+ Good news, this plugin is free for everyone! Since it's released under the GPL, you can use it free of charge on your personal or commercial blog.
100
+
101
+ ### Translations
102
+ The plugin comes with various translations, please refer to the [WordPress Codex](http://codex.wordpress.org/Installing_WordPress_in_Your_Language "Installing WordPress in Your Language") for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the .pot file which contains all defintions and may be used with a [gettext](http://www.gnu.org/software/gettext/) editor like [Poedit](http://www.poedit.net/) (Linux, Mac OS X, Windows).
103
+
104
+ ### Contact & Feedback
105
+ Please let me know if you like the plugin or you hate it or whatever... Please fork it, add an issue for ideas and bugs.
readme.txt CHANGED
@@ -1,335 +1,364 @@
1
- === WP Maintenance Mode ===
2
- Contributors: Designmodo, GeorgeJipa
3
- Plugin Name: WP Maintenance Mode
4
- Plugin URI: http://designmodo.com/
5
- Author: Designmodo
6
- Author URI: http://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: 3.9.2
10
- Stable tag: 2.0.2
11
- License: GPL-2.0+
12
-
13
- 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.
14
-
15
- == Description ==
16
-
17
- Add a maintenance page to your blog that lets visitors know your blog is down for maintenance, or add a coming soon page for a new website. User with admin rights gets full access to the blog including the front end.
18
-
19
- Activate the plugin and your blog is in maintenance-mode, works and only registered users with enough rights can see the front end. You can use a date with a countdown timer for visitor information or set a value and unit for information.
20
- Also works with WordPress Multisite installs (each blog from the network has it's own maintenance settings).
21
-
22
- = Features =
23
-
24
- * Fully customizable (change colors, texts and backgrounds);
25
- * Subscription form (export emails to .csv file);
26
- * Countdown timer (remaining time);
27
- * Contact form (receive emails from visitors);
28
- * Coming soon page;
29
- * Landing page templates;
30
- * WordPress multisite;
31
- * Responsive design;
32
- * Social media icons;
33
- * Works with any WordPress theme;
34
- * SEO options;
35
- * Exclude URLs from maintenance.
36
-
37
- = Bugs, technical hints or contribute =
38
-
39
- Please give us feedback, contribute and file technical bugs on [GitHub Repo](https://github.com/Designmodocom/WP-Maintenance-Mode).
40
-
41
- == Installation ==
42
-
43
- 1. Unpack the download package
44
- 2. Upload all files to the `/wp-content/plugins/` directory, include folders
45
- 3. Activate the plugin through the 'Plugins' menu in WordPress
46
- 4. Go to `Settings` page, where you can change what settings you need (pay attention to **Exclude** option!)
47
-
48
- == Screenshots ==
49
-
50
- 1. Maintenance Mode example
51
- 2. Maintenance Mode example #2
52
- 3. Contact form
53
- 4. Dashboard General settings
54
- 5. Dashboard Design settings
55
- 6. Dashboard Modules settings
56
-
57
- == Frequently Asked Questions ==
58
-
59
- = How to use plugin filters =
60
- See [GitHub Repo] (https://github.com/Designmodocom/WP-Maintenance-Mode) FAQ.
61
-
62
- = Cache Plugin Support =
63
- WP Maintenance Mode can be unstable due the cache plugins, we recommend to deactivate any cache plugin when maintenance mode is active.
64
-
65
- == Changelog ==
66
-
67
- = 2.0.2 (04/09/2014) =
68
- * Removed "Author Link" option from General
69
- * Countdown - save details fix
70
-
71
- = 2.0.1 (02/09/2014) =
72
- * Reintroduced some deprecated actions from old version (but still available in next 4 releases, after that will be removed) and replaced with new ones:
73
- - `wm_head` -> `wpmm_head`
74
- - `wm_footer` -> `wpmm_footer`
75
- * Multisite settings link fix
76
- * WP_Maintenance_Mode: init (array checking for custom_css arrays, move delete cache part into a helper, etc.), add_subscriber, send_contact, redirect fixes & optimizations
77
- * WP_Maintenance_Mode_Admin: save_plugin_settings fixes, delete_cache (new method)
78
- * Settings & Maintenance views fixes
79
- * Readme.txt changes
80
-
81
- = 2.0.0 (01/09/2014) =
82
- * Changed design and functionality, new features
83
- * Changed multisite behaviour: now you can activate maintenance individually (each blog from the network has it's own maintenance settings)
84
- * Removed actions: `wm_header`, `wm_footer`, `wm_content`
85
- * Removed filters: `wm_header`
86
- * Removed [loginform] shortcode
87
- * Some filters are deprecated (but still available in next 4 releases, after that will be removed) and replaced with new ones:
88
- - `wm_heading` -> `wpmm_heading`,
89
- - `wp_maintenance_mode_status_code` -> `wpmm_status_code`
90
- - `wm_title` -> `wpmm_meta_title`
91
- - `wm_meta_author` -> `wpmm_meta_author`
92
- - `wm_meta_description` -> `wpmm_meta_description`
93
- - `wm_meta_keywords` -> `wpmm_meta_keywords`
94
- * Added new filters:
95
- - `wpmm_backtime` - can be used to change the backtime from page header
96
- - `wpmm_meta_robots` - can be used to change `Robots Meta Tag` option (from General)
97
- - `wpmm_text` - can be used to change `Text` option (from Design > Content)
98
- - `wpmm_scripts` - can be used to embed new javascripts files
99
- - `wpmm_styles` - can be used to embed new css files
100
- - `wpmm_search_bots` - if you have `Bypass for Search Bots` option (from General) activated, it can be used to add new bots (useragents)
101
- * Removed themes and now we have a "Design" & "Modules" tabs, where the look and functionality of the maintenance page can be changed as you need
102
-
103
- = 07/07/2014 =
104
- * Switch to new owner, contributor
105
-
106
- = 1.8.11 (07/25/2013) =
107
- * Fixes for php notices in scrict mode
108
- * Alternative for check url, if curl is not installed
109
-
110
- = 1.8.10 (07/18/2013) =
111
- * Add check for urls, Performance topics
112
- * Change default setting of 'Support Link' to false
113
- * Fix network settings php notices
114
-
115
- = 1.8.9 (06/20/2013) =
116
- * Allow empty header, title, heading string
117
- * Small code changes
118
- * Add Support function
119
- * Remove preview, will include later in a new release with extra settings page
120
-
121
- = 1.8.8 (06/05/2013) =
122
- * Fix path to localized flash content
123
- * Fix preview function
124
- * Add ukrainian translation
125
- * Add czech translation
126
- * Fix exclude function for IP
127
- * Security fix for save status via Ajax
128
-
129
- = 1.8.7 (04/07/2013) =
130
- * Add RTL support for splash page
131
- * Add Filter Hook `wp_maintenance_mode_status_code` Status Code; default is 503
132
- * Add support for custom splash page; leave a file with this name `wp-maintenance-mode.php` in the wp-content; the plugin use this file
133
- The plugin checks in `WP_CONTENT_DIR . '/wp-maintenance-mode.php'`
134
- * Small minor changes
135
- * Add filter for more date on splash page
136
-
137
- = 1.8.6 (02/22/2013) =
138
- * Remove log inside console for JS
139
- * Add support for time inside the countdown
140
- * Add filter hook `wm_meta_author`for the meta data author
141
- * Add filter hook `wm_meta_description` for custom description
142
- * Add filter hook `wm_meta_keywords`for custom meta keys
143
-
144
- = 1.8.5 (01/24/2013) =
145
- * Added new settings for hide, view notices about the active maintenance mode
146
- * Changes on source, codex
147
- * Fix PHP Notices [Support Thread](http://wordpress.org/support/topic/error-message-in-settings-1)
148
- * Change default settings, added ajax
149
- * Fix Preview function
150
- * Fix uninstall in WPMU
151
- * Small updates on styles for login form
152
-
153
- = 1.8.4 (12/06/2012) =
154
- * Fix for include JS in frontend to use countdown
155
- * Small mini fix for a php notice
156
- * Add charset on spalsh page for strange databases
157
- * Enhanced default exclude adresses
158
- * Add shortcode `[loginform]` for easy use a login form in splash page
159
- * Test with WordPress 3.5
160
-
161
- = 1.8.3 =
162
- * Fix for the forgotten update of JS-files; slow SVN :(
163
- * Minor Fixes
164
-
165
- = 1.8.2 =
166
- * Add different access for Frontend and Backend
167
- * Add Rewrite after Login for Frontend Access
168
- * Different small changes
169
- * Test for WP 3.5
170
-
171
- = 1.8.1 =
172
- * Add option for value of robots meta tag
173
- * Add option for optional admin login
174
-
175
- = 1.8.0 =
176
- * Include all scripts in backend via function
177
- * Update datepicker and countdown js
178
- * Supportet IP as exclude for see the frontend
179
- * Add support for flish cache od WP Super Cache and W3 Total Cache plugins
180
- * Fix for changes in WP 3.3 Multisite
181
-
182
- = 1.7.1 (12/05/2011) =
183
- * fix for WP smaller 3.2* on Network
184
-
185
- = 1.7.0 (12/02/2011) =
186
- * add functionalities to use in WP Multisite
187
- * remove message in header, current is not fixed the ticked in core and the message on Admin Bar an Notice is enough
188
- * check on WP 3.3RC1
189
-
190
- = 1.6.10 (08/30/2011) =
191
- * add hint in Admin Bar, if active
192
- * small changes for WP Codex
193
-
194
- = 1.6.9 (06/13/2011) =
195
- * Small fix for empty string on custom design
196
-
197
- = 1.6.8 (04/05/2011) =
198
- * Small changes on check for datepicker
199
- * Fix for Design monster
200
-
201
- = 1.6.7 (01/05/2011) =
202
- * Bugfix: new check for files for different themes; hope this fix the server errors
203
- * Bugfix: fix add default settings
204
- * Maintenance: different changes on the syntax
205
- * Feature: add check for Super Admin on WP Multisite; has allways the rights for access
206
- * Feature: now it is possible to exclude feed from maintenance mode
207
- * Maintenance: check with 3.0.4 and 3.1-RC2
208
- * Maintenance: update language file: .pot, de_DE
209
- * Bugfix: JavaScript error on Bulk Actions on plugins fixed
210
- * Maintenance: fix all notice, if set no values
211
-
212
- = 1.6.6. (10/09/2010) =
213
- * Maintenance: many changes on the code; $locale and hook in side frontend
214
- * Maintenance: change attribute_escaped to esc_attr with custom method for WP smaller 2.8
215
- * Maintenance: Update german language files
216
- * Feature: Shortcodes is now possible in the "Text" option
217
- * Feature: no cache header rewrite
218
-
219
- = 1.6.5 (09/16/2010) =
220
- * add new design "Chemistry" by [elmastudio.de](http://www.elmastudio.de/ "elmastudio.de")
221
- * changes for include methods od class for preview
222
- * changes the possibility for include of language specific flash files
223
-
224
- = 1.6.4 (09/13/2010) =
225
- * add preview functions
226
- * bugfix for list in wp-admin/plugins.php
227
- * remove datepicker.regional - dont work fine
228
- * different small changes
229
- * new language file .pot
230
- * add flash file and change on plugin for style "Animate" for spanish language
231
-
232
- = 1.6.3 (07/27/2010) =
233
- * bugfix to include stylesheet on maintenance mode message
234
-
235
- = 1.6.2 (07/08/2010) =
236
- * add functions for hint in the new UI of WP 3.0
237
- * add more WP Codex standard source
238
- * fix strings in the language and languages files
239
- * add datetimepicker-de
240
-
241
- = 1.6.1 (06/18/2010) =
242
- * fix a problem with https://; see [Ticket #13941](http://core.trac.wordpress.org/ticket/13941)
243
-
244
- = 1.6 (05/17/2010) =
245
- * bugfix for exclude sites
246
-
247
- = 1.5.9 (05/07/2010) =
248
- * change different points
249
- * add possibility to wotk with MySQLDumper
250
-
251
- = 1.5.8 (21/03/2010)=
252
- * fix exclude error
253
- * add textareas for heading and header fields
254
-
255
- = 1.5.7 (03/18/2010) =
256
- * block admin-area via role
257
- * add message for registered users with not enough rights
258
- * add message on login-page
259
- * different changes
260
-
261
- = 1.5.6 (02/25/2010) =
262
- * changes on css, site.php and different syntax on the plugin
263
-
264
- = 1.5.5 (02/23/2010) =
265
- * SORRY, small bug for the url to jQuery
266
-
267
- = 1.5.4 (02/23/2010) =
268
- * add time for countdown
269
- * changes for WP 3.0
270
- * changees on rights to see frontend
271
-
272
- = 1.5.3 (01/05/2010) =
273
- * Fix for JavaScript with WordPress 2.9
274
- * Add new custom fields for fronted: title, header, heading
275
- * Fix for setting userrole to see frontend
276
- * Change laguage files
277
-
278
- = 1.5.2 (01/04/2010) =
279
- * add user-role setting
280
- * correctly the de_DE language file
281
-
282
- = 1.5.1 (10/04/2009) =
283
- * add small fix
284
- * add language files (en_ES, ro_RO)
285
-
286
- = 1.5.0 (09/28/2009) =
287
- * add countdown
288
- * change options
289
- * change default options
290
- * add field for own adress to excerpt of the maintenance mode
291
- * etc.
292
-
293
- = 1.4.9 (07/09/2009) =
294
- * also ready for WordPress 2.6
295
- * add romanian language files
296
- * add italian language file by [Gianni Diurno](http://gidibao.net/ "Gianni Diurno")
297
-
298
- = 1.4.8 (03/09/2009) =
299
- * add design "Damask" by [Fabian Letscher](http://fabianletscher.de/ "Fabian Letscher")
300
- * add design "Lego" by [Alex Frison](http://www.afrison.com/ "Alex Frison")
301
-
302
- = 1.4.7 (26/08/2009) =
303
- * change doc-type to utf-8 without BOM
304
-
305
- = v1.4.6 (24/08/2009) =
306
- * add design "Animate (Flash)" by [Sebastian Schmiedel](http://www.cayou-media.de/ "Sebastian Schmiedel")
307
- * add new hook for add content `wm_content` to include flash on content
308
- * add frensh language files
309
-
310
- = v1.4.5 (19/08/2009) =
311
- * fix html string in text on frontend
312
- * add design "Paint" by [Marvin Labod](http://bugeyes.de/ "Marvin Labod")
313
- * add turkey language files
314
-
315
- = v1.4.4 (18/08/2009) =
316
- * add design "Chastely" by [Florian Andreas Vogelmaier](http://fv-web.de/ "Florian Andreas Vogelmaier")
317
- * add design "Only Typo" by [Robert Pfotenhauer](http://krautsuppe.de/ "Robert Pfotenhauer")
318
-
319
- = v1.4.3 (13/08/2009) =
320
- * add option for the Text
321
- * add option for active maintenance mode
322
- * add design "The FF Error" by [Thomas Meschke](http://www.lokalnetz.com/ "Thomas Meschke")
323
- * add design "Monster" by [Sebastian Sebald](http://www.backseatsurfer.de "Sebastian Sebald")
324
-
325
- = v1.4.2 (10/08/2009) =
326
- * add design "The Sun" by [Nicki Steiger](http://mynicki.net/ "Nicki Steiger")
327
- * now it is possible to add own css and add in settings the url to the css-file
328
-
329
- = v1.4.1 (07/08/2009) =
330
- * small html-fix
331
-
332
- = v1.4 (06/08/2009) =
333
- * complety new code
334
- * options menu
335
- * new designs by [David Hellmann](http://www.davidhellmann.com/ "David Hellmann")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === WP Maintenance Mode ===
2
+ Contributors: Designmodo, GeorgeJipa
3
+ Plugin Name: WP Maintenance Mode
4
+ Plugin URI: http://designmodo.com/
5
+ Author: Designmodo
6
+ Author URI: http://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: 4.0.0
10
+ Stable tag: 2.0.3
11
+ License: GPL-2.0+
12
+
13
+ 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.
14
+
15
+ == Description ==
16
+
17
+ Add a maintenance page to your blog that lets visitors know your blog is down for maintenance, or add a coming soon page for a new website. User with admin rights gets full access to the blog including the front end.
18
+
19
+ Activate the plugin and your blog is in maintenance-mode, works and only registered users with enough rights can see the front end. You can use a date with a countdown timer for visitor information or set a value and unit for information.
20
+ Also works with WordPress Multisite installs (each blog from the network has it's own maintenance settings).
21
+
22
+ = Features =
23
+
24
+ * Fully customizable (change colors, texts and backgrounds);
25
+ * Subscription form (export emails to .csv file);
26
+ * Countdown timer (remaining time);
27
+ * Contact form (receive emails from visitors);
28
+ * Coming soon page;
29
+ * Landing page templates;
30
+ * WordPress multisite;
31
+ * Responsive design;
32
+ * Social media icons;
33
+ * Works with any WordPress theme;
34
+ * SEO options;
35
+ * Exclude URLs from maintenance.
36
+
37
+ = Bugs, technical hints or contribute =
38
+
39
+ Please give us feedback, contribute and file technical bugs on [GitHub Repo](https://github.com/Designmodocom/WP-Maintenance-Mode).
40
+
41
+ = Credits =
42
+ Developed by [Designmodo](http://designmodo.com)
43
+
44
+ WordPress Theme: [Startup Framework for WordPress](http://designmodo.com/startup-wordpress/)
45
+
46
+ == Installation ==
47
+
48
+ 1. Unpack the download package
49
+ 2. Upload all files to the `/wp-content/plugins/` directory, include folders
50
+ 3. Activate the plugin through the 'Plugins' menu in WordPress
51
+ 4. Go to `Settings` page, where you can change what settings you need (pay attention to **Exclude** option!)
52
+
53
+ == Screenshots ==
54
+
55
+ 1. Maintenance Mode example
56
+ 2. Maintenance Mode example #2
57
+ 3. Contact form
58
+ 4. Dashboard General settings
59
+ 5. Dashboard Design settings
60
+ 6. Dashboard Modules settings
61
+
62
+ == Frequently Asked Questions ==
63
+
64
+ = How to use plugin filters =
65
+ See [GitHub Repo] (https://github.com/Designmodocom/WP-Maintenance-Mode) FAQ.
66
+
67
+ = Cache Plugin Support =
68
+ WP Maintenance Mode can be unstable due the cache plugins, we recommend to deactivate any cache plugin when maintenance mode is active.
69
+
70
+ = Exclude list =
71
+ If you change your login url, please add the new slug (url: http://domain.com/newlogin, then you should add: newlogin) to Exclude list from plugin settings -> General Tab.
72
+
73
+ == Changelog ==
74
+
75
+ = 2.0.3 (07/10/2014) =
76
+ * WP_Super_Cache issue was fixed
77
+ * fixed "Subscribe" button issue on Safari mobile
78
+ * fixed color of subscribe-success message (same color as subscribe_text)
79
+ * "Social networks" module edits: settings for links target + a new social network: linkedin
80
+ * new module "Google Analytics"
81
+ * loginform shortcode reintroduced
82
+ * dashboard link on maintenance page reintroduced
83
+ * the content editor accepts new css inline properties: min-height, max-height, min-width, max-width. Use them wisely! :)
84
+ * Settings & sidebar view + old translation files edited
85
+ * Update from old version 1.x to 2.x issue was fixed
86
+ * Translate on activation issue was fixed
87
+ * de_DE translation by Frank Bültge (http://bueltge.github.io/)
88
+ * pt_PT translation (100% translated) by Pedro Mendonça (http://www.pedromendonca.pt)
89
+ * ru_RU translation (100% translated) by affectiosus (https://github.com/affectiosus)
90
+ * nl_NL translation by dhunink (https://github.com/dhunink)
91
+ * es_ES translation (100% translated) by Erick Ruiz de Chavez (http://erickruizdechavez.com/)
92
+ * fr_FR translation by Florian TIAR (https://github.com/Mahjouba91)
93
+ * pt_BR translation by Jonatas Araújo (http://www.designworld.com.br/)
94
+ * sv_SE translation by Andréas Lundgren (http://adevade.com/)
95
+
96
+ = 2.0.2 (04/09/2014) =
97
+ * Removed "Author Link" option from General
98
+ * Countdown - save details fix
99
+
100
+ = 2.0.1 (02/09/2014) =
101
+ * Reintroduced some deprecated actions from old version (but still available in next 4 releases, after that will be removed) and replaced with new ones:
102
+ - `wm_head` -> `wpmm_head`
103
+ - `wm_footer` -> `wpmm_footer`
104
+ * Multisite settings link fix
105
+ * WP_Maintenance_Mode: init (array checking for custom_css arrays, move delete cache part into a helper, etc.), add_subscriber, send_contact, redirect fixes & optimizations
106
+ * WP_Maintenance_Mode_Admin: save_plugin_settings fixes, delete_cache (new method)
107
+ * Settings & Maintenance views fixes
108
+ * Readme.txt changes
109
+
110
+ = 2.0.0 (01/09/2014) =
111
+ * Changed design and functionality, new features
112
+ * Changed multisite behaviour: now you can activate maintenance individually (each blog from the network has it's own maintenance settings)
113
+ * Removed actions: `wm_header`, `wm_footer`, `wm_content`
114
+ * Removed filters: `wm_header`
115
+ * Removed [loginform] shortcode
116
+ * Some filters are deprecated (but still available in next 4 releases, after that will be removed) and replaced with new ones:
117
+ - `wm_heading` -> `wpmm_heading`,
118
+ - `wp_maintenance_mode_status_code` -> `wpmm_status_code`
119
+ - `wm_title` -> `wpmm_meta_title`
120
+ - `wm_meta_author` -> `wpmm_meta_author`
121
+ - `wm_meta_description` -> `wpmm_meta_description`
122
+ - `wm_meta_keywords` -> `wpmm_meta_keywords`
123
+ * Added new filters:
124
+ - `wpmm_backtime` - can be used to change the backtime from page header
125
+ - `wpmm_meta_robots` - can be used to change `Robots Meta Tag` option (from General)
126
+ - `wpmm_text` - can be used to change `Text` option (from Design > Content)
127
+ - `wpmm_scripts` - can be used to embed new javascripts files
128
+ - `wpmm_styles` - can be used to embed new css files
129
+ - `wpmm_search_bots` - if you have `Bypass for Search Bots` option (from General) activated, it can be used to add new bots (useragents)
130
+ * Removed themes and now we have a "Design" & "Modules" tabs, where the look and functionality of the maintenance page can be changed as you need
131
+
132
+ = 07/07/2014 =
133
+ * Switch to new owner, contributor
134
+
135
+ = 1.8.11 (07/25/2013) =
136
+ * Fixes for php notices in scrict mode
137
+ * Alternative for check url, if curl is not installed
138
+
139
+ = 1.8.10 (07/18/2013) =
140
+ * Add check for urls, Performance topics
141
+ * Change default setting of 'Support Link' to false
142
+ * Fix network settings php notices
143
+
144
+ = 1.8.9 (06/20/2013) =
145
+ * Allow empty header, title, heading string
146
+ * Small code changes
147
+ * Add Support function
148
+ * Remove preview, will include later in a new release with extra settings page
149
+
150
+ = 1.8.8 (06/05/2013) =
151
+ * Fix path to localized flash content
152
+ * Fix preview function
153
+ * Add ukrainian translation
154
+ * Add czech translation
155
+ * Fix exclude function for IP
156
+ * Security fix for save status via Ajax
157
+
158
+ = 1.8.7 (04/07/2013) =
159
+ * Add RTL support for splash page
160
+ * Add Filter Hook `wp_maintenance_mode_status_code` Status Code; default is 503
161
+ * Add support for custom splash page; leave a file with this name `wp-maintenance-mode.php` in the wp-content; the plugin use this file
162
+ The plugin checks in `WP_CONTENT_DIR . '/wp-maintenance-mode.php'`
163
+ * Small minor changes
164
+ * Add filter for more date on splash page
165
+
166
+ = 1.8.6 (02/22/2013) =
167
+ * Remove log inside console for JS
168
+ * Add support for time inside the countdown
169
+ * Add filter hook `wm_meta_author`for the meta data author
170
+ * Add filter hook `wm_meta_description` for custom description
171
+ * Add filter hook `wm_meta_keywords`for custom meta keys
172
+
173
+ = 1.8.5 (01/24/2013) =
174
+ * Added new settings for hide, view notices about the active maintenance mode
175
+ * Changes on source, codex
176
+ * Fix PHP Notices [Support Thread](http://wordpress.org/support/topic/error-message-in-settings-1)
177
+ * Change default settings, added ajax
178
+ * Fix Preview function
179
+ * Fix uninstall in WPMU
180
+ * Small updates on styles for login form
181
+
182
+ = 1.8.4 (12/06/2012) =
183
+ * Fix for include JS in frontend to use countdown
184
+ * Small mini fix for a php notice
185
+ * Add charset on spalsh page for strange databases
186
+ * Enhanced default exclude adresses
187
+ * Add shortcode `[loginform]` for easy use a login form in splash page
188
+ * Test with WordPress 3.5
189
+
190
+ = 1.8.3 =
191
+ * Fix for the forgotten update of JS-files; slow SVN :(
192
+ * Minor Fixes
193
+
194
+ = 1.8.2 =
195
+ * Add different access for Frontend and Backend
196
+ * Add Rewrite after Login for Frontend Access
197
+ * Different small changes
198
+ * Test for WP 3.5
199
+
200
+ = 1.8.1 =
201
+ * Add option for value of robots meta tag
202
+ * Add option for optional admin login
203
+
204
+ = 1.8.0 =
205
+ * Include all scripts in backend via function
206
+ * Update datepicker and countdown js
207
+ * Supportet IP as exclude for see the frontend
208
+ * Add support for flish cache od WP Super Cache and W3 Total Cache plugins
209
+ * Fix for changes in WP 3.3 Multisite
210
+
211
+ = 1.7.1 (12/05/2011) =
212
+ * fix for WP smaller 3.2* on Network
213
+
214
+ = 1.7.0 (12/02/2011) =
215
+ * add functionalities to use in WP Multisite
216
+ * remove message in header, current is not fixed the ticked in core and the message on Admin Bar an Notice is enough
217
+ * check on WP 3.3RC1
218
+
219
+ = 1.6.10 (08/30/2011) =
220
+ * add hint in Admin Bar, if active
221
+ * small changes for WP Codex
222
+
223
+ = 1.6.9 (06/13/2011) =
224
+ * Small fix for empty string on custom design
225
+
226
+ = 1.6.8 (04/05/2011) =
227
+ * Small changes on check for datepicker
228
+ * Fix for Design monster
229
+
230
+ = 1.6.7 (01/05/2011) =
231
+ * Bugfix: new check for files for different themes; hope this fix the server errors
232
+ * Bugfix: fix add default settings
233
+ * Maintenance: different changes on the syntax
234
+ * Feature: add check for Super Admin on WP Multisite; has allways the rights for access
235
+ * Feature: now it is possible to exclude feed from maintenance mode
236
+ * Maintenance: check with 3.0.4 and 3.1-RC2
237
+ * Maintenance: update language file: .pot, de_DE
238
+ * Bugfix: JavaScript error on Bulk Actions on plugins fixed
239
+ * Maintenance: fix all notice, if set no values
240
+
241
+ = 1.6.6. (10/09/2010) =
242
+ * Maintenance: many changes on the code; $locale and hook in side frontend
243
+ * Maintenance: change attribute_escaped to esc_attr with custom method for WP smaller 2.8
244
+ * Maintenance: Update german language files
245
+ * Feature: Shortcodes is now possible in the "Text" option
246
+ * Feature: no cache header rewrite
247
+
248
+ = 1.6.5 (09/16/2010) =
249
+ * add new design "Chemistry" by [elmastudio.de](http://www.elmastudio.de/ "elmastudio.de")
250
+ * changes for include methods od class for preview
251
+ * changes the possibility for include of language specific flash files
252
+
253
+ = 1.6.4 (09/13/2010) =
254
+ * add preview functions
255
+ * bugfix for list in wp-admin/plugins.php
256
+ * remove datepicker.regional - dont work fine
257
+ * different small changes
258
+ * new language file .pot
259
+ * add flash file and change on plugin for style "Animate" for spanish language
260
+
261
+ = 1.6.3 (07/27/2010) =
262
+ * bugfix to include stylesheet on maintenance mode message
263
+
264
+ = 1.6.2 (07/08/2010) =
265
+ * add functions for hint in the new UI of WP 3.0
266
+ * add more WP Codex standard source
267
+ * fix strings in the language and languages files
268
+ * add datetimepicker-de
269
+
270
+ = 1.6.1 (06/18/2010) =
271
+ * fix a problem with https://; see [Ticket #13941](http://core.trac.wordpress.org/ticket/13941)
272
+
273
+ = 1.6 (05/17/2010) =
274
+ * bugfix for exclude sites
275
+
276
+ = 1.5.9 (05/07/2010) =
277
+ * change different points
278
+ * add possibility to wotk with MySQLDumper
279
+
280
+ = 1.5.8 (21/03/2010)=
281
+ * fix exclude error
282
+ * add textareas for heading and header fields
283
+
284
+ = 1.5.7 (03/18/2010) =
285
+ * block admin-area via role
286
+ * add message for registered users with not enough rights
287
+ * add message on login-page
288
+ * different changes
289
+
290
+ = 1.5.6 (02/25/2010) =
291
+ * changes on css, site.php and different syntax on the plugin
292
+
293
+ = 1.5.5 (02/23/2010) =
294
+ * SORRY, small bug for the url to jQuery
295
+
296
+ = 1.5.4 (02/23/2010) =
297
+ * add time for countdown
298
+ * changes for WP 3.0
299
+ * changees on rights to see frontend
300
+
301
+ = 1.5.3 (01/05/2010) =
302
+ * Fix for JavaScript with WordPress 2.9
303
+ * Add new custom fields for fronted: title, header, heading
304
+ * Fix for setting userrole to see frontend
305
+ * Change laguage files
306
+
307
+ = 1.5.2 (01/04/2010) =
308
+ * add user-role setting
309
+ * correctly the de_DE language file
310
+
311
+ = 1.5.1 (10/04/2009) =
312
+ * add small fix
313
+ * add language files (en_ES, ro_RO)
314
+
315
+ = 1.5.0 (09/28/2009) =
316
+ * add countdown
317
+ * change options
318
+ * change default options
319
+ * add field for own adress to excerpt of the maintenance mode
320
+ * etc.
321
+
322
+ = 1.4.9 (07/09/2009) =
323
+ * also ready for WordPress 2.6
324
+ * add romanian language files
325
+ * add italian language file by [Gianni Diurno](http://gidibao.net/ "Gianni Diurno")
326
+
327
+ = 1.4.8 (03/09/2009) =
328
+ * add design "Damask" by [Fabian Letscher](http://fabianletscher.de/ "Fabian Letscher")
329
+ * add design "Lego" by [Alex Frison](http://www.afrison.com/ "Alex Frison")
330
+
331
+ = 1.4.7 (26/08/2009) =
332
+ * change doc-type to utf-8 without BOM
333
+
334
+ = v1.4.6 (24/08/2009) =
335
+ * add design "Animate (Flash)" by [Sebastian Schmiedel](http://www.cayou-media.de/ "Sebastian Schmiedel")
336
+ * add new hook for add content `wm_content` to include flash on content
337
+ * add frensh language files
338
+
339
+ = v1.4.5 (19/08/2009) =
340
+ * fix html string in text on frontend
341
+ * add design "Paint" by [Marvin Labod](http://bugeyes.de/ "Marvin Labod")
342
+ * add turkey language files
343
+
344
+ = v1.4.4 (18/08/2009) =
345
+ * add design "Chastely" by [Florian Andreas Vogelmaier](http://fv-web.de/ "Florian Andreas Vogelmaier")
346
+ * add design "Only Typo" by [Robert Pfotenhauer](http://krautsuppe.de/ "Robert Pfotenhauer")
347
+
348
+ = v1.4.3 (13/08/2009) =
349
+ * add option for the Text
350
+ * add option for active maintenance mode
351
+ * add design "The FF Error" by [Thomas Meschke](http://www.lokalnetz.com/ "Thomas Meschke")
352
+ * add design "Monster" by [Sebastian Sebald](http://www.backseatsurfer.de "Sebastian Sebald")
353
+
354
+ = v1.4.2 (10/08/2009) =
355
+ * add design "The Sun" by [Nicki Steiger](http://mynicki.net/ "Nicki Steiger")
356
+ * now it is possible to add own css and add in settings the url to the css-file
357
+
358
+ = v1.4.1 (07/08/2009) =
359
+ * small html-fix
360
+
361
+ = v1.4 (06/08/2009) =
362
+ * complety new code
363
+ * options menu
364
+ * new designs by [David Hellmann](http://www.davidhellmann.com/ "David Hellmann")
uninstall.php CHANGED
@@ -15,6 +15,7 @@ function single_uninstall() {
15
  // delete options
16
  delete_option('wpmm_settings');
17
  delete_option('wpmm_notice');
 
18
  }
19
 
20
  // Let's do it!
15
  // delete options
16
  delete_option('wpmm_settings');
17
  delete_option('wpmm_notice');
18
+ delete_option('wpmm_version');
19
  }
20
 
21
  // Let's do it!
views/loginform.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <form name="loginform" class="login_form" action="<?php echo esc_url(site_url('wp-login.php', 'login_post')); ?>" method="post">
2
+ <input type="text" placeholder="username" name="log" />
3
+ <input type="password" placeholder="password" name="pwd" />
4
+
5
+ <?php if (!empty($redirect)) { ?>
6
+ <input type="hidden" name="redirect_to" value="<?php echo $redirect; ?>" />
7
+ <?php } ?>
8
+ <input type="submit" value="<?php _e('Login', 'wp-maintenance-mode'); ?>" />
9
+ </form>
views/maintenance.php CHANGED
@@ -2,6 +2,10 @@
2
  <html>
3
  <head>
4
  <title><?php echo stripslashes($title); ?></title>
 
 
 
 
5
  <?php
6
  if (!empty($styles) && is_array($styles)) {
7
  foreach ($styles as $src) {
@@ -10,20 +14,8 @@
10
  <?php
11
  }
12
  }
13
- ?>
14
- <meta name="author" content="<?php echo esc_attr($author); ?>" />
15
- <meta name="description" content="<?php echo esc_attr($description); ?>" />
16
- <meta name="keywords" content="<?php echo esc_attr($keywords); ?>" />
17
- <meta name="robots" content="<?php echo esc_attr($robots); ?>" />
18
- <?php if (!empty($custom_css) && is_array($custom_css)) { ?>
19
- <style>
20
- <?php
21
- foreach ($custom_css as $css_line) {
22
- echo stripslashes($css_line) . "\n";
23
- }
24
- ?>
25
- </style>
26
- <?php
27
  }
28
 
29
  // do some actions
@@ -53,7 +45,7 @@
53
  <?php } ?>
54
 
55
  <?php if (!empty($this->plugin_settings['modules']['social_status']) && $this->plugin_settings['modules']['social_status'] == 1) { ?>
56
- <div class="social">
57
  <?php if (!empty($this->plugin_settings['modules']['social_twitter'])) { ?>
58
  <a class="tw" href="<?php echo stripslashes($this->plugin_settings['modules']['social_twitter']); ?>">twitter</a>
59
  <?php } ?>
@@ -76,6 +68,10 @@
76
 
77
  <?php if (!empty($this->plugin_settings['modules']['social_google+'])) { ?>
78
  <a class="gplus" href="<?php echo stripslashes($this->plugin_settings['modules']['social_google+']); ?>">google plus</a>
 
 
 
 
79
  <?php } ?>
80
  </div>
81
  <?php } ?>
@@ -95,6 +91,12 @@
95
 
96
  <a class="contact_us" href="javascript:void(0);" data-open="<?php echo esc_attr($open); ?>" data-close="<?php echo esc_attr($close); ?>"><?php _e('Contact us', $this->plugin_slug); ?></a>
97
  <?php } ?>
 
 
 
 
 
 
98
  </div>
99
 
100
  <script type='text/javascript'>
2
  <html>
3
  <head>
4
  <title><?php echo stripslashes($title); ?></title>
5
+ <meta name="author" content="<?php echo esc_attr($author); ?>" />
6
+ <meta name="description" content="<?php echo esc_attr($description); ?>" />
7
+ <meta name="keywords" content="<?php echo esc_attr($keywords); ?>" />
8
+ <meta name="robots" content="<?php echo esc_attr($robots); ?>" />
9
  <?php
10
  if (!empty($styles) && is_array($styles)) {
11
  foreach ($styles as $src) {
14
  <?php
15
  }
16
  }
17
+ if (!empty($custom_css) && is_array($custom_css)) {
18
+ echo '<style>' . implode(array_map('stripslashes', $custom_css)) . '</style>';
 
 
 
 
 
 
 
 
 
 
 
 
19
  }
20
 
21
  // do some actions
45
  <?php } ?>
46
 
47
  <?php if (!empty($this->plugin_settings['modules']['social_status']) && $this->plugin_settings['modules']['social_status'] == 1) { ?>
48
+ <div class="social" data-target="<?php echo!empty($this->plugin_settings['modules']['social_target']) ? 1 : 0; ?>">
49
  <?php if (!empty($this->plugin_settings['modules']['social_twitter'])) { ?>
50
  <a class="tw" href="<?php echo stripslashes($this->plugin_settings['modules']['social_twitter']); ?>">twitter</a>
51
  <?php } ?>
68
 
69
  <?php if (!empty($this->plugin_settings['modules']['social_google+'])) { ?>
70
  <a class="gplus" href="<?php echo stripslashes($this->plugin_settings['modules']['social_google+']); ?>">google plus</a>
71
+ <?php } ?>
72
+
73
+ <?php if (!empty($this->plugin_settings['modules']['social_linkedin'])) { ?>
74
+ <a class="linkedin" href="<?php echo stripslashes($this->plugin_settings['modules']['social_linkedin']); ?>">linkedin</a>
75
  <?php } ?>
76
  </div>
77
  <?php } ?>
91
 
92
  <a class="contact_us" href="javascript:void(0);" data-open="<?php echo esc_attr($open); ?>" data-close="<?php echo esc_attr($close); ?>"><?php _e('Contact us', $this->plugin_slug); ?></a>
93
  <?php } ?>
94
+
95
+ <?php if (!empty($this->plugin_settings['general']['admin_link']) && $this->plugin_settings['general']['admin_link'] == 1) { ?>
96
+ <div class="author_link">
97
+ <a href="<?php echo admin_url(); ?>"><?php _e('Dashboard', $this->plugin_slug); ?></a>
98
+ </div>
99
+ <?php } ?>
100
  </div>
101
 
102
  <script type='text/javascript'>
views/settings.php CHANGED
@@ -96,14 +96,24 @@
96
  </select>
97
  <p class="description"><?php _e('Do you want to see notices when maintenance mode is activated?', $this->plugin_slug); ?></p>
98
  </td>
99
- </tr>
 
 
 
 
 
 
 
 
 
 
100
  </tbody>
101
  </table>
102
 
103
  <?php wp_nonce_field('tab-general'); ?>
104
  <input type="hidden" value="general" name="tab" />
105
- <input type="submit" value="Save settings" class="button button-primary" name="submit" />
106
- <input type="button" value="Reset settings" class="button button-secondary reset_settings" data-tab="general" name="submit">
107
  </form>
108
  </div>
109
  <div id="tab-design" class="hidden">
@@ -177,7 +187,9 @@
177
  <tr valign="top" class="design_bg_types <?php echo $this->plugin_settings['design']['bg_type'] != 'predefined' ? 'hidden' : ''; ?>" id="show_predefined">
178
  <th scope="row">
179
  <label for="options[design][bg_predefined]"><?php _e('Choose background', $this->plugin_slug); ?></label>
180
- <p class="description">* source <a href="<?php echo 'http://designmodo.com/free-photos/' . WPMM_AUTHOR_UTM; ?>" target="_blank">Free Photos</a></p>
 
 
181
  </th>
182
  <td>
183
  <ul class="bg_list">
@@ -203,8 +215,8 @@
203
 
204
  <?php wp_nonce_field('tab-design'); ?>
205
  <input type="hidden" value="design" name="tab" />
206
- <input type="submit" value="Save settings" class="button button-primary" name="submit">
207
- <input type="button" value="Reset settings" class="button button-secondary reset_settings" data-tab="design" name="submit">
208
  </form>
209
  </div>
210
  <div id="tab-modules" class="hidden">
@@ -295,6 +307,16 @@
295
  </select>
296
  </td>
297
  </tr>
 
 
 
 
 
 
 
 
 
 
298
  <tr valign="top">
299
  <th scope="row"><label for="options[modules][social_github]">Github</label></th>
300
  <td>
@@ -331,7 +353,12 @@
331
  <input type="text" value="<?php echo esc_attr(stripslashes($this->plugin_settings['modules']['social_google+'])); ?>" name="options[modules][social_google+]" />
332
  </td>
333
  </tr>
334
-
 
 
 
 
 
335
  </tbody>
336
  </table>
337
 
@@ -358,19 +385,41 @@
358
  <th scope="row"><label for="options[modules][contact_effects]"><?php _e('Effects', $this->plugin_slug); ?></label></th>
359
  <td>
360
  <select name="options[modules][contact_effects]">
361
- <option value="move_top|move_bottom" <?php selected($this->plugin_settings['modules']['contact_effects'], 'move_top|move_bottom'); ?>>Move top - Move bottom</option>
362
- <option value="zoom|zoomed" <?php selected($this->plugin_settings['modules']['contact_effects'], 'zoom|zoomed'); ?>>Zoom - Zoomed</option>
363
- <option value="fold|unfold" <?php selected($this->plugin_settings['modules']['contact_effects'], 'fold|unfold'); ?>>Fold - Unfold</option>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
364
  </select>
365
  </td>
 
 
 
 
 
 
366
  </tr>
367
  </tbody>
368
- </table>
369
 
370
  <?php wp_nonce_field('tab-modules'); ?>
371
  <input type="hidden" value="modules" name="tab" />
372
- <input type="submit" value="Save settings" class="button button-primary" name="submit">
373
- <input type="button" value="Reset settings" class="button button-secondary reset_settings" data-tab="modules" name="submit">
374
  </form>
375
  </div>
376
  </div>
96
  </select>
97
  <p class="description"><?php _e('Do you want to see notices when maintenance mode is activated?', $this->plugin_slug); ?></p>
98
  </td>
99
+ </tr>
100
+ <tr valign="top">
101
+ <th scope="row"><label for="options[general][admin_link]"><?php _e('Dashboard link', $this->plugin_slug); ?></label></th>
102
+ <td>
103
+ <select name="options[general][admin_link]">
104
+ <option value="1" <?php selected($this->plugin_settings['general']['admin_link'], 1); ?>><?php _e('Yes', $this->plugin_slug); ?></option>
105
+ <option value="0" <?php selected($this->plugin_settings['general']['admin_link'], 0); ?>><?php _e('No', $this->plugin_slug); ?></option>
106
+ </select>
107
+ <p class="description"><?php _e('Do you want to add a link to the dashboard on your maintenance mode page?', $this->plugin_slug); ?></p>
108
+ </td>
109
+ </tr>
110
  </tbody>
111
  </table>
112
 
113
  <?php wp_nonce_field('tab-general'); ?>
114
  <input type="hidden" value="general" name="tab" />
115
+ <input type="submit" value="<?php _e('Save settings', $this->plugin_slug); ?>" class="button button-primary" name="submit" />
116
+ <input type="button" value="<?php _e('Reset settings', $this->plugin_slug); ?>" class="button button-secondary reset_settings" data-tab="general" name="submit">
117
  </form>
118
  </div>
119
  <div id="tab-design" class="hidden">
187
  <tr valign="top" class="design_bg_types <?php echo $this->plugin_settings['design']['bg_type'] != 'predefined' ? 'hidden' : ''; ?>" id="show_predefined">
188
  <th scope="row">
189
  <label for="options[design][bg_predefined]"><?php _e('Choose background', $this->plugin_slug); ?></label>
190
+ <p class="description">
191
+ * <?php echo sprintf(__('source <a href="%" target="_blank">Free Photos</a>', $this->plugin_slug), 'http://designmodo.com/free-photos/' . WPMM_AUTHOR_UTM); ?>
192
+ </p>
193
  </th>
194
  <td>
195
  <ul class="bg_list">
215
 
216
  <?php wp_nonce_field('tab-design'); ?>
217
  <input type="hidden" value="design" name="tab" />
218
+ <input type="submit" value="<?php _e('Save settings', $this->plugin_slug); ?>" class="button button-primary" name="submit">
219
+ <input type="button" value="<?php _e('Reset settings', $this->plugin_slug); ?>" class="button button-secondary reset_settings" data-tab="design" name="submit">
220
  </form>
221
  </div>
222
  <div id="tab-modules" class="hidden">
307
  </select>
308
  </td>
309
  </tr>
310
+ <tr valign="top">
311
+ <th scope="row"><label for="options[modules][social_target]"><?php _e('Links target?', $this->plugin_slug); ?></label></th>
312
+ <td>
313
+ <select name="options[modules][social_target]">
314
+ <option value="1" <?php selected($this->plugin_settings['modules']['social_target'], 1); ?>><?php _e('New page', $this->plugin_slug); ?></option>
315
+ <option value="0" <?php selected($this->plugin_settings['modules']['social_target'], 0); ?>><?php _e('Same page', $this->plugin_slug); ?></option>
316
+ </select>
317
+ <p class="description"><?php _e('Choose how the links will open.', $this->plugin_slug); ?></p>
318
+ </td>
319
+ </tr>
320
  <tr valign="top">
321
  <th scope="row"><label for="options[modules][social_github]">Github</label></th>
322
  <td>
353
  <input type="text" value="<?php echo esc_attr(stripslashes($this->plugin_settings['modules']['social_google+'])); ?>" name="options[modules][social_google+]" />
354
  </td>
355
  </tr>
356
+ <tr valign="top">
357
+ <th scope="row"><label for="options[modules][social_linkedin]">Linkedin</label></th>
358
+ <td>
359
+ <input type="text" value="<?php echo esc_attr(stripslashes($this->plugin_settings['modules']['social_linkedin'])); ?>" name="options[modules][social_linkedin]" />
360
+ </td>
361
+ </tr>
362
  </tbody>
363
  </table>
364
 
385
  <th scope="row"><label for="options[modules][contact_effects]"><?php _e('Effects', $this->plugin_slug); ?></label></th>
386
  <td>
387
  <select name="options[modules][contact_effects]">
388
+ <option value="move_top|move_bottom" <?php selected($this->plugin_settings['modules']['contact_effects'], 'move_top|move_bottom'); ?>><?php _e('Move top - Move bottom', $this->plugin_slug); ?></option>
389
+ <option value="zoom|zoomed" <?php selected($this->plugin_settings['modules']['contact_effects'], 'zoom|zoomed'); ?>><?php _e('Zoom - Zoomed', $this->plugin_slug); ?></option>
390
+ <option value="fold|unfold" <?php selected($this->plugin_settings['modules']['contact_effects'], 'fold|unfold'); ?>><?php _e('Fold - Unfold', $this->plugin_slug); ?></option>
391
+ </select>
392
+ </td>
393
+ </tr>
394
+ </tbody>
395
+ </table>
396
+
397
+ <h3>&raquo; <?php _e('Google Analytics', $this->plugin_slug); ?></h3>
398
+
399
+ <table class="form-table">
400
+ <tbody>
401
+ <tr valign="top">
402
+ <th scope="row"><label for="options[modules][ga_status]"><?php _e('Use Google Analytics?', $this->plugin_slug); ?></label></th>
403
+ <td>
404
+ <select name="options[modules][ga_status]">
405
+ <option value="1" <?php selected($this->plugin_settings['modules']['ga_status'], 1); ?>><?php _e('Yes', $this->plugin_slug); ?></option>
406
+ <option value="0" <?php selected($this->plugin_settings['modules']['ga_status'], 0); ?>><?php _e('No', $this->plugin_slug); ?></option>
407
  </select>
408
  </td>
409
+ </tr>
410
+ <tr valign="top">
411
+ <th scope="row"><label for="options[modules][ga_code]"><?php _e('Tracking code', $this->plugin_slug); ?></label></th>
412
+ <td>
413
+ <textarea rows="7" name="options[modules][ga_code]" style="width: 625px;"><?php echo stripslashes($this->plugin_settings['modules']['ga_code']); ?></textarea>
414
+ </td>
415
  </tr>
416
  </tbody>
417
+ </table>
418
 
419
  <?php wp_nonce_field('tab-modules'); ?>
420
  <input type="hidden" value="modules" name="tab" />
421
+ <input type="submit" value="<?php _e('Save settings', $this->plugin_slug); ?>" class="button button-primary" name="submit">
422
+ <input type="button" value="<?php _e('Reset settings', $this->plugin_slug); ?>" class="button button-secondary reset_settings" data-tab="modules" name="submit">
423
  </form>
424
  </div>
425
  </div>
views/sidebar.php CHANGED
@@ -4,7 +4,7 @@
4
  <div class="inside">
5
  <?php $plugin_data = wpmm_plugin_info($this->plugin_slug); ?>
6
  <ul>
7
- <li>Name:
8
  <?php
9
  echo!empty($plugin_data['Name']) ? $plugin_data['Name'] : '';
10
  echo!empty($plugin_data['Version']) ? ' v' . $plugin_data['Version'] : '';
@@ -18,34 +18,15 @@
18
  </div>
19
  </div>
20
 
21
- <div class="sidebar_box subscribe_box">
22
- <h3><?php _e('Subscribe', $this->plugin_slug); ?></h3>
23
  <div class="inside">
24
- <?php _e('Subscribe now for early access to new WordPress themes.', $this->plugin_slug); ?>
25
-
26
- <form action="http://designmodo.us4.list-manage.com/subscribe/post?u=d7b5474e1bff23f08409d4ba9&amp;id=a2ae53acc1" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" id="cse-search-box">
27
- <input class="subscribe-input" type="text" name="EMAIL" id="mce-EMAIL" placeholder="<?php _e('Enter your email address', $this->plugin_slug); ?>" size="47" >
28
- <button type="submit" class="button button-secondary"><?php _e('Subscribe', $this->plugin_slug); ?></button>
29
- </form>
30
- </div>
31
- </div>
32
-
33
- <div class="sidebar_box news_box">
34
- <h3><?php _e('News', $this->plugin_slug); ?></h3>
35
- <div class="inside">
36
- <?php
37
- $items = get_designmodo_posts();
38
- if (!empty($items)) {
39
- ?>
40
- <ul>
41
- <?php foreach ($items as $item) { ?>
42
- <li>&raquo; <a href="<?php echo esc_url($item->get_permalink()); ?>" target="_blank"><?php echo esc_html($item->get_title()); ?></a></li>
43
- <?php } ?>
44
- </ul>
45
- <?php } ?>
46
  </div>
47
- </div>
48
-
49
  <div class="sidebar_box resources_box">
50
  <h3><?php _e('Resources', $this->plugin_slug); ?></h3>
51
  <div class="inside">
4
  <div class="inside">
5
  <?php $plugin_data = wpmm_plugin_info($this->plugin_slug); ?>
6
  <ul>
7
+ <li><?php _e('Name', $this->plugin_slug); ?>:
8
  <?php
9
  echo!empty($plugin_data['Name']) ? $plugin_data['Name'] : '';
10
  echo!empty($plugin_data['Version']) ? ' v' . $plugin_data['Version'] : '';
18
  </div>
19
  </div>
20
 
21
+ <div class="sidebar_box themes_box">
22
+ <h3><?php _e('WordPress Themes', $this->plugin_slug); ?></h3>
23
  <div class="inside">
24
+ <ul>
25
+ <li><a href="<?php echo 'http://designmodo.com/startup-wordpress/' . WPMM_AUTHOR_UTM; ?>" target="_blank"><img src="<?php echo WPMM_URL . 'assets/images/resources/startup-wordpress.jpg'; ?>" /></a></li>
26
+ </ul>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  </div>
28
+ </div>
29
+
30
  <div class="sidebar_box resources_box">
31
  <h3><?php _e('Resources', $this->plugin_slug); ?></h3>
32
  <div class="inside">
wp-maintenance-mode.php CHANGED
@@ -6,7 +6,7 @@
6
  * Plugin Name: WP Maintenance Mode
7
  * Plugin URI: http://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.0.2
10
  * Author: Designmodo
11
  * Author URI: http://designmodo.com/
12
  * Twitter: designmodo
@@ -49,6 +49,7 @@ if (is_multisite() && !function_exists('is_plugin_active_for_network')) {
49
  /**
50
  * FRONTEND
51
  */
 
52
  require_once(WPMM_CLASSES_PATH . 'wp-maintenance-mode.php');
53
  register_activation_hook(__FILE__, array('WP_Maintenance_Mode', 'activate'));
54
  register_deactivation_hook(__FILE__, array('WP_Maintenance_Mode', 'deactivate'));
6
  * Plugin Name: WP Maintenance Mode
7
  * Plugin URI: http://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.0.3
10
  * Author: Designmodo
11
  * Author URI: http://designmodo.com/
12
  * Twitter: designmodo
49
  /**
50
  * FRONTEND
51
  */
52
+ require_once(WPMM_CLASSES_PATH . 'wp-maintenance-mode-shortcodes.php');
53
  require_once(WPMM_CLASSES_PATH . 'wp-maintenance-mode.php');
54
  register_activation_hook(__FILE__, array('WP_Maintenance_Mode', 'activate'));
55
  register_deactivation_hook(__FILE__, array('WP_Maintenance_Mode', 'deactivate'));