Maintenance - Version 2.6

Version Description

  • Update: WordPress 4.4 support
  • Update: translation files
  • New: Meta fields for sharing
  • Bug fix: callback function to uninstall hook
  • Bug fix: save content and settings if plugin disabled
  • Bug fix: if footer text is empty not showing text
Download this release

Release Info

Developer fruitfulcode
Plugin Icon 128x128 Maintenance
Version 2.6
Comparing to
See all releases

Code changes from version 2.5 to 2.6

css/admin.css CHANGED
@@ -1,7 +1,6 @@
1
  #maintenance-options { position: relative; }
2
  #maintenance-options #icon-maintenance {background:url('../images/icon.png') no-repeat center center transparent;}
3
  #maintenance-options input.upload_btn { clear: left; display: block; float: left; margin: 20px 0; padding: 5px; text-align: center; width: 100%; }
4
- #maintenance-options h2 {float:left}
5
  #wpbody-content .metabox-holder {float:left; width:100%;}
6
  .form-table th {font-weight: normal}
7
 
@@ -9,8 +8,8 @@
9
 
10
  /*Checkbox*/
11
  .tzCheckBox {background:url( '../images/background.png ') no-repeat right bottom;display:inline-block;min-width:60px;height:33px;white-space:nowrap;position:relative;cursor:pointer;margin:8px 0 0 20px;}
12
- .tzCheckBox.checked{background-position:top left;margin:8px 0 0 6px;}
13
- .tzCheckBox .tzCBContent{color:white;line-height:31px;padding-right:38px;text-align:right;}
14
  .tzCheckBox.checked .tzCBContent{text-align:left;padding:0 0 0 38px;}
15
  .tzCBPart{background:url( '../images/background.png ') no-repeat left bottom;width:14px;position:absolute;top:0;left:-14px;height:33px;overflow:hidden;}
16
  .tzCheckBox.checked .tzCBPart{background-position:top right;left:auto;right:-14px;}
@@ -28,6 +27,7 @@
28
  .sidebar-promo h4.support {background: url("../images/support.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);}
29
  .sidebar-promo h4.star {background: url("../images/star.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);}
30
  .sidebar-promo h4.themes {background: url("../images/themes.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);}
 
31
  .sidebar-promo p {color: #3E3E3E; font-family: Arial; font-size: 14px; line-height: 24px; margin: 0 0 1.5em; padding: 0; }
32
  .sidebar-promo a {color:#21759b; text-decoration:none;}
33
  .sidebar-promo.worker { background-image: url("../images/worker.png"); background-repeat:no-repeat; background-position: 100% 20px;}
1
  #maintenance-options { position: relative; }
2
  #maintenance-options #icon-maintenance {background:url('../images/icon.png') no-repeat center center transparent;}
3
  #maintenance-options input.upload_btn { clear: left; display: block; float: left; margin: 20px 0; padding: 5px; text-align: center; width: 100%; }
 
4
  #wpbody-content .metabox-holder {float:left; width:100%;}
5
  .form-table th {font-weight: normal}
6
 
8
 
9
  /*Checkbox*/
10
  .tzCheckBox {background:url( '../images/background.png ') no-repeat right bottom;display:inline-block;min-width:60px;height:33px;white-space:nowrap;position:relative;cursor:pointer;margin:8px 0 0 20px;}
11
+ .tzCheckBox.checked{background-position:top left;margin:8px 0 0 18px;}
12
+ .tzCheckBox .tzCBContent{color:white;line-height:32px;padding-right:38px;text-align:right;font-size:18px;}
13
  .tzCheckBox.checked .tzCBContent{text-align:left;padding:0 0 0 38px;}
14
  .tzCBPart{background:url( '../images/background.png ') no-repeat left bottom;width:14px;position:absolute;top:0;left:-14px;height:33px;overflow:hidden;}
15
  .tzCheckBox.checked .tzCBPart{background-position:top right;left:auto;right:-14px;}
27
  .sidebar-promo h4.support {background: url("../images/support.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);}
28
  .sidebar-promo h4.star {background: url("../images/star.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);}
29
  .sidebar-promo h4.themes {background: url("../images/themes.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);}
30
+ .sidebar-promo h4.translate {background: url("../images/translate.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);}
31
  .sidebar-promo p {color: #3E3E3E; font-family: Arial; font-size: 14px; line-height: 24px; margin: 0 0 1.5em; padding: 0; }
32
  .sidebar-promo a {color:#21759b; text-decoration:none;}
33
  .sidebar-promo.worker { background-image: url("../images/worker.png"); background-repeat:no-repeat; background-position: 100% 20px;}
images/translate.png ADDED
Binary file
includes/admin.php CHANGED
@@ -64,14 +64,12 @@
64
  $mt_option = mt_get_plugin_options(true);
65
  ?>
66
  <div id="maintenance-options" class="wrap">
67
- <h2></h2>
68
  <form method="post" action="" enctype="multipart/form-data" name="options-form">
69
  <?php wp_nonce_field('maintenance_edit_post','maintenance_nonce'); ?>
70
  <?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false ); ?>
71
  <?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false ); ?>
72
  <?php screen_icon(); ?>
73
- <h2><?php _e('Maintenance', 'maintenance'); ?></h2>
74
- <input type="checkbox" id="state" name="lib_options[state]" <?php checked($mt_option['state'], 1); ?> />
75
  <div class="clear"></div>
76
  <div id="poststuff">
77
  <div class="metabox-holder">
64
  $mt_option = mt_get_plugin_options(true);
65
  ?>
66
  <div id="maintenance-options" class="wrap">
 
67
  <form method="post" action="" enctype="multipart/form-data" name="options-form">
68
  <?php wp_nonce_field('maintenance_edit_post','maintenance_nonce'); ?>
69
  <?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false ); ?>
70
  <?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false ); ?>
71
  <?php screen_icon(); ?>
72
+ <h1><?php _e('Maintenance', 'maintenance'); ?><input type="checkbox" id="state" name="lib_options[state]" <?php checked($mt_option['state'], 1); ?> /></h1>
 
73
  <div class="clear"></div>
74
  <div id="poststuff">
75
  <div class="metabox-holder">
includes/functions.php CHANGED
@@ -209,6 +209,12 @@
209
  }
210
  add_action('add_meta_boxes', 'maintenance_page_create_meta_boxes_widget_support', 13);
211
 
 
 
 
 
 
 
212
  function add_data_fields ($object, $box) {
213
  $mt_option = mt_get_plugin_options(true);
214
  $is_blur = false;
@@ -360,13 +366,25 @@
360
  $promo_text = '';
361
  $promo_text .= '<div class="sidebar-promo" id="sidebar-promo">';
362
  $promo_text .= '<h4 class="support">'. __('Have any questions?','maintenance'). '</h3>';
363
- $promo_text .= '<p>'. sprintf(__('You may find answers to your questions at <a target="_blank" href="http://wordpress.org/support/plugin/maintenance">support forum</a><br>You may <a target="_blank" href="mailto:mail@fruitfulcode.com?subject=Maintenance plugin">contact us</a> with customization requests and suggestions.<br> Please visit our website to learn about us and our services <a href="%1$s" title="%2$s">%2$s</a>', 'maintenance'),
364
  'http://fruitfulcode.com',
365
  'fruitfulcode.com'
366
  ).'</p>';
367
  $promo_text .= '</div>';
368
  echo $promo_text;
369
  }
 
 
 
 
 
 
 
 
 
 
 
 
370
 
371
  function maintenanace_our_themes() {
372
  $promo_text = '';
209
  }
210
  add_action('add_meta_boxes', 'maintenance_page_create_meta_boxes_widget_support', 13);
211
 
212
+ function maintenance_page_create_meta_boxes_improve_translate() {
213
+ global $maintenance_variable;
214
+ add_meta_box( 'promo-translate', __( 'Translation', 'maintenance' ), 'maintenanace_improve_translate', $maintenance_variable->options_page, 'side', 'default' );
215
+ }
216
+ add_action('add_meta_boxes', 'maintenance_page_create_meta_boxes_improve_translate', 14);
217
+
218
  function add_data_fields ($object, $box) {
219
  $mt_option = mt_get_plugin_options(true);
220
  $is_blur = false;
366
  $promo_text = '';
367
  $promo_text .= '<div class="sidebar-promo" id="sidebar-promo">';
368
  $promo_text .= '<h4 class="support">'. __('Have any questions?','maintenance'). '</h3>';
369
+ $promo_text .= '<p>'. sprintf(__('You may find answers to your questions at <a target="_blank" href="http://support.fruitfulcode.com/hc/en-us/sections/200406386">support forum</a><br>You may <a target="_blank" href="http://support.fruitfulcode.com/hc/en-us/requests/new">contact us</a> with customization requests and suggestions.<br> Please visit our website to learn about us and our services <a href="%1$s" title="%2$s">%2$s</a>', 'maintenance'),
370
  'http://fruitfulcode.com',
371
  'fruitfulcode.com'
372
  ).'</p>';
373
  $promo_text .= '</div>';
374
  echo $promo_text;
375
  }
376
+
377
+ function maintenanace_improve_translate() {
378
+ $promo_text = '';
379
+ $promo_text .= '<div class="sidebar-promo" id="sidebar-translate">';
380
+ $promo_text .= '<h4 class="translate">'. __('This plugin is translation friendly','maintenance'). '</h3>';
381
+ $promo_text .= '<p>'. sprintf(__('Want to improve translation or make one for your native language? <a href="%1$s" title="%2$s">%2$s</a>', 'maintenance'),
382
+ 'http://support.fruitfulcode.com/hc/en-us/articles/204268628',
383
+ __('Follow this tutorial', 'maintenance')
384
+ ).'</p>';
385
+ $promo_text .= '</div>';
386
+ echo $promo_text;
387
+ }
388
 
389
  function maintenanace_our_themes() {
390
  $promo_text = '';
languages/maintenance-cs_CZ.mo ADDED
Binary file
languages/maintenance-cs_CZ.po ADDED
@@ -0,0 +1,254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Maintenance\n"
4
+ "POT-Creation-Date: 2015-08-30 00:14+0100\n"
5
+ "PO-Revision-Date: 2015-08-30 00:39+0100\n"
6
+ "Last-Translator: Petr Rohan <rohan@infinitymedia.cz>\n"
7
+ "Language-Team: Petr Rohan <rohan@infinitymedia.cz>\n"
8
+ "Language: cs_CZ\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.7.4\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
21
+
22
+ #: includes/admin.php:88
23
+ msgid "Save changes"
24
+ msgstr "Uložit změny"
25
+
26
+ #: includes/functions.php:161
27
+ msgid "Standard Fonts"
28
+ msgstr "Standardní Fonty"
29
+
30
+ #: includes/functions.php:168
31
+ msgid "Google Web Fonts"
32
+ msgstr "Google Web Fonts"
33
+
34
+ #: includes/functions.php:187
35
+ msgid "General Settings"
36
+ msgstr "Základní nastavení"
37
+
38
+ #: includes/functions.php:188
39
+ msgid "Custom CSS"
40
+ msgstr "Vlastní CSS"
41
+
42
+ #: includes/functions.php:189
43
+ msgid "Exclude pages"
44
+ msgstr "Stránky s vyjímkou"
45
+
46
+ #: includes/functions.php:195
47
+ msgid "Pro version"
48
+ msgstr "Verze PRO"
49
+
50
+ #: includes/functions.php:202
51
+ msgid "Fruitful Code projects"
52
+ msgstr "Fruitful Code projects"
53
+
54
+ #: includes/functions.php:208
55
+ msgid "Support"
56
+ msgstr "Podpora"
57
+
58
+ #: includes/functions.php:229
59
+ msgid "Page title"
60
+ msgstr "Titulek"
61
+
62
+ #: includes/functions.php:230
63
+ msgid "Headline"
64
+ msgstr "Hlavní nadpis"
65
+
66
+ #: includes/functions.php:231
67
+ msgid "Description"
68
+ msgstr "Popis"
69
+
70
+ #: includes/functions.php:232
71
+ msgid "Footer Text"
72
+ msgstr "Text patičky"
73
+
74
+ #: includes/functions.php:233
75
+ msgid "Logo"
76
+ msgstr "Logo"
77
+
78
+ #: includes/functions.php:233
79
+ msgid "Upload Logo"
80
+ msgstr "Uživatelské jméno"
81
+
82
+ #: includes/functions.php:237
83
+ msgid "Admin bar"
84
+ msgstr "Admin panel"
85
+
86
+ #: includes/functions.php:237
87
+ msgid "Show admin bar"
88
+ msgstr "Zobrazit admin panel"
89
+
90
+ #: includes/functions.php:238
91
+ msgid "503"
92
+ msgstr "503"
93
+
94
+ #: includes/functions.php:238
95
+ msgid "Service temporarily unavailable"
96
+ msgstr "Služba je dočasně nedostupná"
97
+
98
+ #: includes/functions.php:245
99
+ msgid "Google Analytics ID"
100
+ msgstr "Google Analytics ID"
101
+
102
+ #: includes/functions.php:245
103
+ msgid "UA-XXXXX-X"
104
+ msgstr "UA-XXXXX-X"
105
+
106
+ #: includes/functions.php:246
107
+ msgid "Blur intensity"
108
+ msgstr "Intenzita rozostření"
109
+
110
+ #: includes/functions.php:252
111
+ msgid "Background blur"
112
+ msgstr "Rozostření pozadí"
113
+
114
+ #: includes/functions.php:252
115
+ msgid "Apply a blur"
116
+ msgstr "Aplikovat rozostření"
117
+
118
+ #: includes/functions.php:253
119
+ msgid "Login On / Off"
120
+ msgstr "Přihlášení zap/vyp"
121
+
122
+ #: includes/functions.php:265
123
+ msgid "CSS Code"
124
+ msgstr "CSS kód"
125
+
126
+ #: includes/functions.php:279
127
+ msgid "Select the page to be displayed:"
128
+ msgstr "Vyberte stránky, které se zobrazí normálně:"
129
+
130
+ #: includes/functions.php:325
131
+ msgid "Not available object."
132
+ msgstr "Objekt, není k dispozici."
133
+
134
+ #: includes/functions.php:340
135
+ msgid "Background image"
136
+ msgstr "Obrázek na pozadí"
137
+
138
+ #: includes/functions.php:340
139
+ msgid "Upload Background"
140
+ msgstr "Nahrát obrázek na pozadí"
141
+
142
+ #: includes/functions.php:346
143
+ msgid "Background color"
144
+ msgstr "Barva pozadí"
145
+
146
+ #: includes/functions.php:347
147
+ msgid "Font color"
148
+ msgstr "Barva písma"
149
+
150
+ #: includes/functions.php:354
151
+ msgid "Font family"
152
+ msgstr "Typ písma"
153
+
154
+ #: includes/functions.php:362
155
+ msgid "Have any questions?"
156
+ msgstr "Máte nějaké dotazy?"
157
+
158
+ #: includes/functions.php:363
159
+ #, php-format
160
+ msgid ""
161
+ "You may find answers to your questions at <a target=\"_blank\" href=\"http://"
162
+ "wordpress.org/support/plugin/maintenance\">support forum</a><br>You may <a "
163
+ "target=\"_blank\" href=\"mailto:mail@fruitfulcode.com?subject=Maintenance "
164
+ "plugin\">contact us</a> with customization requests and suggestions.<br> "
165
+ "Please visit our website to learn about us and our services <a href=\"%1$s\" "
166
+ "title=\"%2$s\">%2$s</a>"
167
+ msgstr ""
168
+
169
+ #: includes/functions.php:374
170
+ msgid "Premium WordPress themes"
171
+ msgstr "Premium WordPress témata"
172
+
173
+ #: includes/functions.php:380
174
+ msgid "ANAGLYPH - One page / Multi Page WordPress Theme"
175
+ msgstr "ANAGLYF - Jednostránková / Multistránková WordPress šablona"
176
+
177
+ #: includes/functions.php:385
178
+ msgid "Love.ly - Simple & Elegant WordPress theme"
179
+ msgstr "Love.ly - Jednoduchá & elegantní WordPress šablona"
180
+
181
+ #: includes/functions.php:391
182
+ msgid "Zoner - Real Estate WordPress theme"
183
+ msgstr "Zoner - Real Estate WordPress téma"
184
+
185
+ #: includes/functions.php:404
186
+ msgid "Extended functionality"
187
+ msgstr "Rozšířené funkcionality"
188
+
189
+ #: includes/functions.php:405
190
+ #, php-format
191
+ msgid ""
192
+ "Purchase <a href=\"http://codecanyon.net/item/maintenance-wordpress-"
193
+ "plugin/2781350?ref=fruitfulcode\" target=\"_blank\">PRO</a> version with "
194
+ "extended functionality. %1$s If you like our plugin please <a target=\"_blank"
195
+ "\" href=\"http://wordpress.org/support/view/plugin-reviews/maintenance?"
196
+ "filter=5\">rate it</a>, <a title=\"leave feedbacks\" href=\"%2$s\" target="
197
+ "\"_blank\">leave feedbacks</a>."
198
+ msgstr ""
199
+
200
+ #: includes/functions.php:409
201
+ msgid "Demo website"
202
+ msgstr "Demo stránky"
203
+
204
+ #: includes/functions.php:523
205
+ msgid "Maintenance"
206
+ msgstr "Maintenance"
207
+
208
+ #: includes/functions.php:588
209
+ msgid "Website is under construction"
210
+ msgstr "Stránky jsou ve výstavbě"
211
+
212
+ #: includes/functions.php:589
213
+ msgid "Maintenance mode is on"
214
+ msgstr "Maintenance je zapnutý"
215
+
216
+ #: includes/functions.php:590
217
+ msgid "Website will be available soon"
218
+ msgstr "Webové stránky budou brzy k dispozici"
219
+
220
+ #: load/functions.php:37
221
+ msgid "Permission access denied!"
222
+ msgstr "Přístup do této části webu nemáte povolen."
223
+
224
+ #: load/functions.php:45
225
+ msgid "You entered your login are incorrect!"
226
+ msgstr "Vaše přihlašovací údaje nejsou správné."
227
+
228
+ #: load/functions.php:49
229
+ msgid "You entered your password are incorrect!"
230
+ msgstr "Heslo je nesprávné."
231
+
232
+ #: load/functions.php:52
233
+ msgid "You entered your login and password are incorrect!"
234
+ msgstr "Vaše přihlašovací jméno, nebo heslo jsou zadány chybně!"
235
+
236
+ #: load/functions.php:257
237
+ msgid "User Login"
238
+ msgstr "Přihlásit"
239
+
240
+ #: load/functions.php:258
241
+ msgid "Username"
242
+ msgstr "Uživatelské jméno"
243
+
244
+ #: load/functions.php:259
245
+ msgid "Password"
246
+ msgstr "Heslo"
247
+
248
+ #: load/functions.php:260
249
+ msgid "Lost Password"
250
+ msgstr "Reset hesla"
251
+
252
+ #: load/functions.php:261
253
+ msgid "Login"
254
+ msgstr "Přihlásit"
languages/maintenance-fa-IR.mo ADDED
Binary file
languages/maintenance-fa-IR.po ADDED
@@ -0,0 +1,228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: maintenance\n"
4
+ "POT-Creation-Date: 2014-02-18 12:25+0200\n"
5
+ "PO-Revision-Date: 2015-10-02 18:45+0330\n"
6
+ "Last-Translator: René Maurer <rene.maurer@jamos.ch>\n"
7
+ "Language-Team: EWORX.IR <info@eworx.ir>\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.8.4\n"
12
+ "X-Poedit-KeywordsList: _;_e;__;_x\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
+ "Language: fa\n"
17
+
18
+ #: /includes/admin.php:84
19
+ msgid "Save changes"
20
+ msgstr "ذخیره تغییرات"
21
+
22
+ #: /includes/functions.php:104
23
+ msgid "General Settings"
24
+ msgstr "تنظیمات عمومی"
25
+
26
+ #: /includes/functions.php:110
27
+ msgid "Pro version"
28
+ msgstr "نسخه حرفه ای"
29
+
30
+ #: /includes/functions.php:116
31
+ msgid "Support"
32
+ msgstr "پشتیبانی"
33
+
34
+ #: /includes/functions.php:124
35
+ msgid "Page title"
36
+ msgstr "عنوان صفحه"
37
+
38
+ #: /includes/functions.php:125
39
+ msgid "Headline"
40
+ msgstr "عنوان"
41
+
42
+ #: /includes/functions.php:126
43
+ msgid "Description"
44
+ msgstr "توضیحات"
45
+
46
+ #: /includes/functions.php:127
47
+ msgid "Logo"
48
+ msgstr "لوگو"
49
+
50
+ #: /includes/functions.php:127
51
+ msgid "Upload Logo"
52
+ msgstr "لوگو خود را بارگذاری کنید."
53
+
54
+ #: /includes/functions.php:130
55
+ msgid "Admin bar"
56
+ msgstr "منوی ادمین"
57
+
58
+ #: /includes/functions.php:130
59
+ msgid "Show admin bar"
60
+ msgstr "نمایش نوار مدیریت"
61
+
62
+ #: /includes/functions.php:131
63
+ msgid "503"
64
+ msgstr ""
65
+
66
+ #: /includes/functions.php:131
67
+ msgid "Service temporarily unavailable"
68
+ msgstr "سرویس موقتا در دسترس نیست"
69
+
70
+ #: /includes/functions.php:132
71
+ msgid "Google Analytics ID"
72
+ msgstr "ID گوگل آنالیتیک"
73
+
74
+ #: /includes/functions.php:132
75
+ msgid "UA-XXXXX-X"
76
+ msgstr ""
77
+
78
+ #: /includes/functions.php:133
79
+ msgid "Blur intensity"
80
+ msgstr "شدت محو کردن پس‌زمینه"
81
+
82
+ #: /includes/functions.php:134
83
+ msgid "Background blur"
84
+ msgstr "تاری پس‌زمینه"
85
+
86
+ #: /includes/functions.php:134
87
+ msgid "Apply a blur"
88
+ msgstr "اعمال تاری"
89
+
90
+ #: /includes/functions.php:135
91
+ msgid "Login On / Off"
92
+ msgstr "ورود به سیستم روشن / خاموش"
93
+
94
+ #: /includes/functions.php:142
95
+ msgid "Background image"
96
+ msgstr "تصویر پس زمینه"
97
+
98
+ #: /includes/functions.php:142
99
+ msgid "Upload Background"
100
+ msgstr "بارگذاری تصویر پس‌زمینه"
101
+
102
+ #: /includes/functions.php:148
103
+ msgid "Background color"
104
+ msgstr "رنگ پس زمینه"
105
+
106
+ #: /includes/functions.php:149
107
+ msgid "Font color"
108
+ msgstr "رنگ فونت"
109
+
110
+ #: /includes/functions.php:157
111
+ msgid "Have any questions?"
112
+ msgstr "سوال یا مشکلی دارید؟"
113
+
114
+ #: /includes/functions.php:158
115
+ #, php-format
116
+ msgid ""
117
+ "You may find answers to your questions at <a target=\"_blank\" href=\"http://wordpress.org/"
118
+ "support/plugin/maintenance\">support forum</a><br>You may <a target=\"_blank\" href=\"mailto:"
119
+ "mail@fruitfulcode.com?subject=Maintenance plugin\">contact us</a> with customization requests "
120
+ "and suggestions.<br> Please visit our website to learn about us and our services <a href=\"%1$s"
121
+ "\" title=\"%2$s\">%2$s</a>"
122
+ msgstr ""
123
+
124
+ #: /includes/functions.php:169
125
+ msgid "Extended functionality"
126
+ msgstr "کارکرد با قابلیت بیشتر"
127
+
128
+ #: /includes/functions.php:170
129
+ #, php-format
130
+ msgid ""
131
+ "Purchase <a href=\"http://codecanyon.net/item/maintenance-wordpress-plugin/2781350?"
132
+ "ref=fruitfulcode\" target=\"_blank\">PRO</a> version with extended functionality. %1$s If you "
133
+ "like our plugin please <a target=\"_blank\" href=\"http://wordpress.org/support/view/plugin-"
134
+ "reviews/maintenance?filter=5\">rate it</a>, <a title=\"leave feedbacks\" href=\"%2$s\" target="
135
+ "\"_blank\">leave feedbacks</a>."
136
+ msgstr ""
137
+
138
+ #: /includes/functions.php:174
139
+ msgid "Demo website"
140
+ msgstr "وب سایت آزمایشی"
141
+
142
+ #: /includes/functions.php:232
143
+ msgid "Maintenance"
144
+ msgstr "تعمیر و نگهداری"
145
+
146
+ #: /includes/functions.php:255
147
+ msgid "Website is under construction"
148
+ msgstr "وب سایت در دست ساخت است"
149
+
150
+ #: /includes/functions.php:256
151
+ msgid "Maintenance mode is on"
152
+ msgstr "حالت تعمیر و نگهداری روشن است"
153
+
154
+ #: /includes/functions.php:257
155
+ msgid "Website will be available soon"
156
+ msgstr "وب سایت به زودی در دسترس خواهد"
157
+
158
+ #: /load/functions.php:37
159
+ msgid "Permission access denied!"
160
+ msgstr "اجازه دسترسی رد شد!"
161
+
162
+ #: /load/functions.php:45
163
+ msgid "You entered your login are incorrect!"
164
+ msgstr "نام کاربری اشتباه است!"
165
+
166
+ #: /load/functions.php:49
167
+ msgid "You entered your password are incorrect!"
168
+ msgstr "رمز عبور اشتباه است!"
169
+
170
+ #: /load/functions.php:52
171
+ msgid "You entered your login and password are incorrect!"
172
+ msgstr "نام کاربری یا رمز عبور اشتباه است!"
173
+
174
+ #: /load/functions.php:223
175
+ msgid "Username"
176
+ msgstr "نام کاربری"
177
+
178
+ #: /load/functions.php:224
179
+ msgid "Password"
180
+ msgstr "کلمه عبور"
181
+
182
+ #: /load/functions.php:225
183
+ msgid "Sign In"
184
+ msgstr "ورود"
185
+
186
+ msgid "maintenance"
187
+ msgstr "تعمیر و نگهداری"
188
+
189
+ msgid "Contact support"
190
+ msgstr "با پشتیبانی تماس بگیرید"
191
+
192
+ msgid ""
193
+ "If you faced with any problems, have a question or suggestion you always can contact us with "
194
+ "any request on our website <a href=\"%1$s\" title=\"%2$s\">%2$s</a>"
195
+ msgstr ""
196
+
197
+ msgid ""
198
+ "If you like our plugin please rate it, %1$s <a title=\"leave feedback\" href=\"%2$s\" target="
199
+ "\"_blank\">leave feedback</a> or purchase extended version %1$s with more other features."
200
+ msgstr ""
201
+
202
+ msgid "Purchase"
203
+ msgstr "خرید"
204
+
205
+ msgid "We have time until launch"
206
+ msgstr "برای ارائه به زمان نیاز داریم"
207
+
208
+ msgid "Be first of your friends who will know when the website goes live."
209
+ msgstr "اولین کسی باشید که از آماده بودن وبسایت مطلع میشود."
210
+
211
+ msgid "Check out our extended version of plugin with new features"
212
+ msgstr "نسخه توسعه یافته از افزونه با ویژگی های جدید را بررسی کنید"
213
+
214
+ msgid "Your session has expired."
215
+ msgstr "جلسه شما منقضی شده است."
216
+
217
+ msgid "Customer login"
218
+ msgstr "ورود مشتری"
219
+
220
+ msgid "Please login to see website"
221
+ msgstr "لطفا برای مشاهده وبسایت وارد شوید"
222
+
223
+ msgid "User roles"
224
+ msgstr "نقش کاربران"
225
+
226
+ # not really sur about « We have time until launch » Because I can’t find it on the demo version…
227
+ msgid "Choose users access permissions in maintenance mode."
228
+ msgstr "مجوزهای دسترسی کاربران را در حالت نگهداری را انتخاب کنید."
languages/maintenance-ru_RU.mo CHANGED
Binary file
languages/maintenance-ru_RU.po CHANGED
@@ -2,21 +2,21 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: maintenance\n"
4
  "POT-Creation-Date: 2014-07-08 11:10+0200\n"
5
- "PO-Revision-Date: 2014-10-13 09:51+0200\n"
6
  "Last-Translator: fruitfulcode <mail@fruitfulcode.com>\n"
7
  "Language-Team: fruitfulcode\n"
8
  "Language: ru_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-KeywordsList: _;_e;__;_x\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
 
17
  #: includes/admin.php:88
18
  msgid "Save changes"
19
- msgstr "Сохранить"
20
 
21
  #: includes/functions.php:161
22
  msgid "Standard Fonts"
@@ -24,7 +24,7 @@ msgstr "Стандартные шрифты"
24
 
25
  #: includes/functions.php:168
26
  msgid "Google Web Fonts"
27
- msgstr "Google Веб Шрифт"
28
 
29
  #: includes/functions.php:187
30
  msgid "General Settings"
@@ -80,7 +80,7 @@ msgstr "Сервис врменно недоступен"
80
 
81
  #: includes/functions.php:222
82
  msgid "Google Analytics ID"
83
- msgstr "Google Аналитикс Идентификатор (ID)"
84
 
85
  #: includes/functions.php:222
86
  msgid "UA-XXXXX-X"
@@ -104,7 +104,7 @@ msgstr "Логин Вкл / Выкл"
104
 
105
  #: includes/functions.php:235
106
  msgid "CSS Code"
107
- msgstr "Каскадные таблицы стилей (CSS)"
108
 
109
  #: includes/functions.php:242
110
  msgid "Background image"
@@ -124,7 +124,7 @@ msgstr "Цвет шрифта"
124
 
125
  #: includes/functions.php:256
126
  msgid "Font family"
127
- msgstr "Семейство шрифтов"
128
 
129
  #: includes/functions.php:264
130
  msgid "Have any questions?"
@@ -140,16 +140,16 @@ msgid ""
140
  "Please visit our website to learn about us and our services <a href=\"%1$s\" "
141
  "title=\"%2$s\">%2$s</a>"
142
  msgstr ""
143
- "Вы можете найти ответы на ваши вопросы <a target=\"_blank\" href=\"http://"
144
- "wordpress.org/support/plugin/maintenance\">Официальный форум поддержки</"
145
- "a><br> You may <a target=\"_blank\" href=\"mailto:mail@fruitfulcode.com?"
146
- "subject=Maintenance plugin\">Свяжитесь с нами</a> по вопросам кастомизации и "
147
- "изменений<br> Посетите наш сайт, что бы узнать о нас и наших услугах и "
148
- "продуктах <a href=\"%1$s\" title=\"%2$s\">%2$s</a>"
149
 
150
  #: includes/functions.php:276
151
  msgid "Extended functionality"
152
- msgstr "Расширенная версия"
153
 
154
  #: includes/functions.php:277
155
  #, php-format
@@ -161,12 +161,13 @@ msgid ""
161
  "filter=5\">rate it</a>, <a title=\"leave feedbacks\" href=\"%2$s\" target="
162
  "\"_blank\">leave feedbacks</a>."
163
  msgstr ""
164
- "Купите расширенную <a href=\"http://codecanyon.net/item/maintenance-"
165
- "wordpress-plugin/2781350?ref=fruitfulcode\" target=\"_blank\">ПРО версию</a> "
166
- "с расширенным функционалом. %1$s Если вам понравился плагин, оставьте отзыв "
167
- "на этой странице <a target=\"_blank\" href=\"http://wordpress.org/support/"
168
- "view/plugin-reviews/maintenance?filter=5\">Оценить плагин</a>, <a title="
169
- "\"leave feedbacks\" href=\"%2$s\" target=\"_blank\">Оставить отзыв</a>."
 
170
 
171
  #: includes/functions.php:281
172
  msgid "Demo website"
@@ -174,7 +175,7 @@ msgstr "Демо сайт"
174
 
175
  #: includes/functions.php:340
176
  msgid "Maintenance"
177
- msgstr "Режим обслуживания включен"
178
 
179
  #: includes/functions.php:363
180
  msgid "Website is under construction"
@@ -182,7 +183,7 @@ msgstr "Сайт находится в стадии разработки"
182
 
183
  #: includes/functions.php:364
184
  msgid "Maintenance mode is on"
185
- msgstr "Режим обслуживания включен"
186
 
187
  #: includes/functions.php:365
188
  msgid "Website will be available soon"
2
  msgstr ""
3
  "Project-Id-Version: maintenance\n"
4
  "POT-Creation-Date: 2014-07-08 11:10+0200\n"
5
+ "PO-Revision-Date: 2015-03-03 17:22+0200\n"
6
  "Last-Translator: fruitfulcode <mail@fruitfulcode.com>\n"
7
  "Language-Team: fruitfulcode\n"
8
  "Language: ru_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.7.4\n"
13
  "X-Poedit-KeywordsList: _;_e;__;_x\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
 
17
  #: includes/admin.php:88
18
  msgid "Save changes"
19
+ msgstr "Сохранить изменения"
20
 
21
  #: includes/functions.php:161
22
  msgid "Standard Fonts"
24
 
25
  #: includes/functions.php:168
26
  msgid "Google Web Fonts"
27
+ msgstr "Веб Шрифт Google"
28
 
29
  #: includes/functions.php:187
30
  msgid "General Settings"
80
 
81
  #: includes/functions.php:222
82
  msgid "Google Analytics ID"
83
+ msgstr "Google Analytics ID"
84
 
85
  #: includes/functions.php:222
86
  msgid "UA-XXXXX-X"
104
 
105
  #: includes/functions.php:235
106
  msgid "CSS Code"
107
+ msgstr "CSS Код"
108
 
109
  #: includes/functions.php:242
110
  msgid "Background image"
124
 
125
  #: includes/functions.php:256
126
  msgid "Font family"
127
+ msgstr "Шрифт"
128
 
129
  #: includes/functions.php:264
130
  msgid "Have any questions?"
140
  "Please visit our website to learn about us and our services <a href=\"%1$s\" "
141
  "title=\"%2$s\">%2$s</a>"
142
  msgstr ""
143
+ "Вы можете найти ответы на <a target=\"_blank\" href=\"http://wordpress.org/"
144
+ "support/plugin/maintenance\">официальном форуме поддержки</a><br> Можете <a "
145
+ "target=\"_blank\" href=\"mailto:mail@fruitfulcode.com?subject=Maintenance "
146
+ "plugin\">связаться с нами</a> по вопросам кастомизации и изменений<br> "
147
+ "Посетите наш сайт, чтобы узнать о нас и наших услугах <a href=\"%1$s\" title="
148
+ "\"%2$s\">%2$s</a>"
149
 
150
  #: includes/functions.php:276
151
  msgid "Extended functionality"
152
+ msgstr "Maintenance PRO"
153
 
154
  #: includes/functions.php:277
155
  #, php-format
161
  "filter=5\">rate it</a>, <a title=\"leave feedbacks\" href=\"%2$s\" target="
162
  "\"_blank\">leave feedbacks</a>."
163
  msgstr ""
164
+ "Купите <a href=\"http://codecanyon.net/item/maintenance-wordpress-"
165
+ "plugin/2781350?ref=fruitfulcode\" target=\"_blank\">Maintenance PRO</a> и "
166
+ "получите функцию обратного отсчета и возможность открывать доступ нескольким "
167
+ "пользователям. %1$s Если вам понравился плагин, оставьте отзыв на этих "
168
+ "страницах <a target=\"_blank\" href=\"http://wordpress.org/support/view/"
169
+ "plugin-reviews/maintenance?filter=5\">Оценить плагин</a>, <a title=\"leave "
170
+ "feedbacks\" href=\"%2$s\" target=\"_blank\">Оставить отзыв</a>."
171
 
172
  #: includes/functions.php:281
173
  msgid "Demo website"
175
 
176
  #: includes/functions.php:340
177
  msgid "Maintenance"
178
+ msgstr "Режим обслуживания"
179
 
180
  #: includes/functions.php:363
181
  msgid "Website is under construction"
183
 
184
  #: includes/functions.php:364
185
  msgid "Maintenance mode is on"
186
+ msgstr "Режим обслуживания"
187
 
188
  #: includes/functions.php:365
189
  msgid "Website will be available soon"
languages/maintenance-tr_TR.mo.mo ADDED
Binary file
languages/maintenance-tr_TR.po ADDED
@@ -0,0 +1,312 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Maintenance v2.3\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2015-10-07 00:42+0300\n"
7
+ "Last-Translator: Digital03.net <info@digital03.net>\n"
8
+ "Language-Team: Digital03.net <info@digital03.net>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Generator: Poedit 1.8.4\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_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"
17
+ "X-Poedit-Basepath: ..\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "Language: es_ES\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ # @ maintenance
23
+ #: includes/admin.php:87
24
+ msgid "Save changes"
25
+ msgstr "Değişiklikleri kaydet"
26
+
27
+ # @ maintenance
28
+ #: includes/functions.php:187
29
+ msgid "General Settings"
30
+ msgstr "Genel Ayarlar"
31
+
32
+ # @ maintenance
33
+ #: includes/functions.php:195
34
+ msgid "Pro version"
35
+ msgstr "Pro versiyon"
36
+
37
+ # @ maintenance
38
+ #: includes/functions.php:208
39
+ msgid "Support"
40
+ msgstr "Destek"
41
+
42
+ # @ maintenance
43
+ #: includes/functions.php:219
44
+ msgid "Page title"
45
+ msgstr "Sayfa başlığı"
46
+
47
+ # @ maintenance
48
+ #: includes/functions.php:220
49
+ msgid "Headline"
50
+ msgstr "Başlık"
51
+
52
+ # @ maintenance
53
+ #: includes/functions.php:221
54
+ msgid "Description"
55
+ msgstr "Açıklama"
56
+
57
+ # @ maintenance
58
+ #: includes/functions.php:222
59
+ msgid "Logo"
60
+ msgstr "Logo"
61
+
62
+ # @ maintenance
63
+ #: includes/functions.php:222
64
+ msgid "Upload Logo"
65
+ msgstr "Logo Yükle"
66
+
67
+ # @ maintenance
68
+ #: includes/functions.php:226
69
+ msgid "Admin bar"
70
+ msgstr "Yönetici çubuğu"
71
+
72
+ # @ maintenance
73
+ #: includes/functions.php:226
74
+ msgid "Show admin bar"
75
+ msgstr "Yönetici çubuğunu göster"
76
+
77
+ # @ maintenance
78
+ #: includes/functions.php:227
79
+ msgid "503"
80
+ msgstr "503"
81
+
82
+ # @ maintenance
83
+ #: includes/functions.php:227
84
+ msgid "Service temporarily unavailable"
85
+ msgstr "Servis geçici olarak mevcut değil"
86
+
87
+ # @ maintenance
88
+ #: includes/functions.php:234
89
+ msgid "Google Analytics ID"
90
+ msgstr "Google Analytics ID'si"
91
+
92
+ # @ maintenance
93
+ #: includes/functions.php:234
94
+ msgid "UA-XXXXX-X"
95
+ msgstr "UA-XXXXX-X"
96
+
97
+ # @ maintenance
98
+ #: includes/functions.php:235
99
+ msgid "Blur intensity"
100
+ msgstr "Bulanıklık yoğunluğu"
101
+
102
+ # @ maintenance
103
+ #: includes/functions.php:241
104
+ msgid "Background blur"
105
+ msgstr "Arkaplan bulanıklığı"
106
+
107
+ # @ maintenance
108
+ #: includes/functions.php:241
109
+ msgid "Apply a blur"
110
+ msgstr "Bir bulanıklık uygula"
111
+
112
+ # @ maintenance
113
+ #: includes/functions.php:242
114
+ msgid "Login On / Off"
115
+ msgstr "Giriş Açık / Kapalı"
116
+
117
+ # @ maintenance
118
+ #: includes/functions.php:324
119
+ msgid "Background image"
120
+ msgstr "Arkaplan resmi"
121
+
122
+ # @ maintenance
123
+ #: includes/functions.php:324
124
+ msgid "Upload Background"
125
+ msgstr "Arkaplan Yükle"
126
+
127
+ # @ maintenance
128
+ #: includes/functions.php:330
129
+ msgid "Background color"
130
+ msgstr "Arkaplan rengi"
131
+
132
+ # @ maintenance
133
+ #: includes/functions.php:331
134
+ msgid "Font color"
135
+ msgstr "Font rengi"
136
+
137
+ # @ maintenance
138
+ #: includes/functions.php:346
139
+ msgid "Have any questions?"
140
+ msgstr "Sorunuz var mı?"
141
+
142
+ # @ maintenance
143
+ #: includes/functions.php:347
144
+ #, php-format
145
+ msgid ""
146
+ "You may find answers to your questions at <a target=\"_blank\" href=\"http://"
147
+ "wordpress.org/support/plugin/maintenance\">support forum</a><br>You may <a "
148
+ "target=\"_blank\" href=\"mailto:mail@fruitfulcode.com?subject=Maintenance "
149
+ "plugin\">contact us</a> with customization requests and suggestions.<br> "
150
+ "Please visit our website to learn about us and our services <a href=\"%1$s\" "
151
+ "title=\"%2$s\">%2$s</a>"
152
+ msgstr ""
153
+ "Sorularınızın cevaplarını <a target=\"_blank\" href=\"http://wordpress.org/"
154
+ "support/plugin/maintenance\">destek forumunda</a> "
155
+ "bulabilirsiniz<br>Özelleştirme ve önerileriniz için <a target=\"_blank\" "
156
+ "href=\"mailto:mail@fruitfulcode.com?subject=Maintenance plugin\">bizimle "
157
+ "iletişim</a> kurabilirsiniz.<br> Hakkımızda bilgi almak ve servislerimizi "
158
+ "öğrenmek için lütfen web sitemizi <a href=\"%1$s\" title=\"%2$s\">%2$s</a> "
159
+ "ziyaret ediniz."
160
+
161
+ # @ maintenance
162
+ #: includes/functions.php:381
163
+ msgid "Extended functionality"
164
+ msgstr "Genişletilmiş fonksiyonellik"
165
+
166
+ # @ maintenance
167
+ #: includes/functions.php:382
168
+ #, php-format
169
+ msgid ""
170
+ "Purchase <a href=\"http://codecanyon.net/item/maintenance-wordpress-"
171
+ "plugin/2781350?ref=fruitfulcode\" target=\"_blank\">PRO</a> version with "
172
+ "extended functionality. %1$s If you like our plugin please <a target=\"_blank"
173
+ "\" href=\"http://wordpress.org/support/view/plugin-reviews/maintenance?"
174
+ "filter=5\">rate it</a>, <a title=\"leave feedbacks\" href=\"%2$s\" target="
175
+ "\"_blank\">leave feedbacks</a>."
176
+ msgstr ""
177
+ "Gelişmiş fonksiyonellikleri ile <a href=\"http://codecanyon.net/item/"
178
+ "maintenance-wordpress-plugin/2781350?ref=fruitfulcode\" target=\"_blank"
179
+ "\">PRO</a> versiyonu satın alın. %1$s Eklentimizi beğendiyseniz lütfen <a "
180
+ "target=\"_blank\" href=\"http://wordpress.org/support/view/plugin-reviews/"
181
+ "maintenance?filter=5\">değerlendirin</a>, <a title=\"leave feedbacks\" href="
182
+ "\"%2$s\" target=\"_blank\">geri bildirimler bırakın</a>."
183
+
184
+ # @ maintenance
185
+ #: includes/functions.php:386
186
+ msgid "Demo website"
187
+ msgstr "Demo websitesi"
188
+
189
+ # @ maintenance
190
+ #: includes/functions.php:497
191
+ msgid "Maintenance"
192
+ msgstr "Bakım"
193
+
194
+ # @ maintenance
195
+ #: includes/functions.php:562
196
+ msgid "Website is under construction"
197
+ msgstr "Web sitesi yapım aşamasındadır"
198
+
199
+ # @ maintenance
200
+ #: includes/functions.php:563
201
+ msgid "Maintenance mode is on"
202
+ msgstr "Bakım modu açık"
203
+
204
+ # @ maintenance
205
+ #: includes/functions.php:564
206
+ msgid "Website will be available soon"
207
+ msgstr "Web sitesi yakında kullanılabilir olacak"
208
+
209
+ # @ maintenance
210
+ #: load/functions.php:37
211
+ msgid "Permission access denied!"
212
+ msgstr "İzin erişimi reddedildi!"
213
+
214
+ # @ maintenance
215
+ #: load/functions.php:45
216
+ msgid "You entered your login are incorrect!"
217
+ msgstr "Kullanıcı adınızı yanlış girdiniz!"
218
+
219
+ # @ maintenance
220
+ #: load/functions.php:49
221
+ msgid "You entered your password are incorrect!"
222
+ msgstr "Şifrenizi yanlış girdiniz!"
223
+
224
+ # @ maintenance
225
+ #: load/functions.php:52
226
+ msgid "You entered your login and password are incorrect!"
227
+ msgstr "Kullanıcı adı ve şifrenizi yanlış girdiniz!"
228
+
229
+ # @ maintenance
230
+ #: load/functions.php:257
231
+ msgid "Username"
232
+ msgstr "Kullanıcı adı"
233
+
234
+ # @ maintenance
235
+ #: load/functions.php:258
236
+ msgid "Password"
237
+ msgstr "Şifre"
238
+
239
+ # @ anaglyph-framework
240
+ #: includes/functions.php:161
241
+ msgid "Standard Fonts"
242
+ msgstr "Giriş"
243
+
244
+ # @ anaglyph-framework
245
+ #: includes/functions.php:168
246
+ msgid "Google Web Fonts"
247
+ msgstr "Google Web Fontları"
248
+
249
+ # @ maintenance
250
+ #: includes/functions.php:188
251
+ msgid "Custom CSS"
252
+ msgstr "Özel CSS"
253
+
254
+ # @ maintenance
255
+ #: includes/functions.php:189
256
+ msgid "Exclude pages"
257
+ msgstr "Harici sayfalar"
258
+
259
+ # @ maintenance
260
+ #: includes/functions.php:202
261
+ msgid "Fruitful Code projects"
262
+ msgstr "Fruitful Kod projeleri"
263
+
264
+ # @ maintenance
265
+ #: includes/functions.php:254
266
+ msgid "CSS Code"
267
+ msgstr "CSS Kodu"
268
+
269
+ # @ maintenance
270
+ #: includes/functions.php:269
271
+ msgid "Select the page to be displayed:"
272
+ msgstr "Görüntülenecek sayfayı seçin:"
273
+
274
+ # @ maintenance
275
+ #: includes/functions.php:309
276
+ msgid "Not available object."
277
+ msgstr "Mevcut olmayan nesne"
278
+
279
+ # @ maintenance
280
+ #: includes/functions.php:338
281
+ msgid "Font family"
282
+ msgstr "Font ailesi"
283
+
284
+ # @ maintenance
285
+ #: includes/functions.php:358
286
+ msgid "Premium WordPress themes"
287
+ msgstr "Premium WordPress temaları"
288
+
289
+ # @ maintenance
290
+ #: includes/functions.php:364
291
+ msgid "ANAGLYPH - One page / Multi Page WordPress Theme"
292
+ msgstr "Anaglyph - Tekli sayfa / Çoklu Sayfa WordPress Teması"
293
+
294
+ # @ maintenance
295
+ #: includes/functions.php:369
296
+ msgid "Love.ly - Simple & Elegant WordPress theme"
297
+ msgstr "Love.ly - Basit ve Zarif WordPress teması"
298
+
299
+ # @ maintenance
300
+ #: load/functions.php:256
301
+ msgid "User Login"
302
+ msgstr "Kullanıcı Girişi"
303
+
304
+ # @ maintenance
305
+ #: load/functions.php:259
306
+ msgid "Lost Password"
307
+ msgstr "Şifreyi Unuttum"
308
+
309
+ # @ maintenance
310
+ #: load/functions.php:260
311
+ msgid "Login"
312
+ msgstr "Giriş"
languages/maintenance-uk_UA.mo ADDED
Binary file
languages/maintenance-uk_UA.po ADDED
@@ -0,0 +1,276 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: maintenance\n"
4
+ "POT-Creation-Date: 2014-07-08 11:10+0200\n"
5
+ "PO-Revision-Date: 2015-03-04 12:37+0200\n"
6
+ "Last-Translator: fruitfulcode <mail@fruitfulcode.com>\n"
7
+ "Language-Team: fruitfulcode\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.7.4\n"
12
+ "X-Poedit-KeywordsList: _;_e;__;_x\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
16
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
17
+ "Language: uk_UA\n"
18
+
19
+ #: includes/admin.php:88
20
+ msgid "Save changes"
21
+ msgstr "Зберегти зміни"
22
+
23
+ #: includes/functions.php:161
24
+ msgid "Standard Fonts"
25
+ msgstr "Стандартні шрифти"
26
+
27
+ #: includes/functions.php:168
28
+ msgid "Google Web Fonts"
29
+ msgstr "Google Web Fonts"
30
+
31
+ #: includes/functions.php:187
32
+ msgid "General Settings"
33
+ msgstr "Загальні налаштування"
34
+
35
+ #: includes/functions.php:188
36
+ msgid "Custom CSS"
37
+ msgstr "Свій CSS"
38
+
39
+ #: includes/functions.php:194
40
+ msgid "Pro version"
41
+ msgstr "Pro версія"
42
+
43
+ #: includes/functions.php:200
44
+ msgid "Support"
45
+ msgstr "Підтримка"
46
+
47
+ #: includes/functions.php:208
48
+ msgid "Page title"
49
+ msgstr "Заголовок сторінки"
50
+
51
+ #: includes/functions.php:209
52
+ msgid "Headline"
53
+ msgstr "Тема"
54
+
55
+ #: includes/functions.php:210
56
+ msgid "Description"
57
+ msgstr "Опис"
58
+
59
+ #: includes/functions.php:211
60
+ msgid "Logo"
61
+ msgstr "Лого"
62
+
63
+ #: includes/functions.php:211
64
+ msgid "Upload Logo"
65
+ msgstr "Завантажити лого"
66
+
67
+ #: includes/functions.php:215
68
+ msgid "Admin bar"
69
+ msgstr "Панель адміністратора"
70
+
71
+ #: includes/functions.php:215
72
+ msgid "Show admin bar"
73
+ msgstr "Показати панель адміністратора"
74
+
75
+ #: includes/functions.php:216
76
+ msgid "503"
77
+ msgstr "503"
78
+
79
+ #: includes/functions.php:216
80
+ msgid "Service temporarily unavailable"
81
+ msgstr "Сервіс тимчасово недоступний"
82
+
83
+ #: includes/functions.php:222
84
+ msgid "Google Analytics ID"
85
+ msgstr "Google Analytics ID"
86
+
87
+ #: includes/functions.php:222
88
+ msgid "UA-XXXXX-X"
89
+ msgstr "UA-XXXXX-X"
90
+
91
+ #: includes/functions.php:223
92
+ msgid "Blur intensity"
93
+ msgstr "інтенсивність розмиття"
94
+
95
+ #: includes/functions.php:224
96
+ msgid "Background blur"
97
+ msgstr "Розмиття фону"
98
+
99
+ #: includes/functions.php:224
100
+ msgid "Apply a blur"
101
+ msgstr "Застосовувати розмиття"
102
+
103
+ #: includes/functions.php:225
104
+ msgid "Login On / Off"
105
+ msgstr "Вхід вкл / викл"
106
+
107
+ #: includes/functions.php:235
108
+ msgid "CSS Code"
109
+ msgstr "Код CSS"
110
+
111
+ #: includes/functions.php:242
112
+ msgid "Background image"
113
+ msgstr "Фонове зображення"
114
+
115
+ #: includes/functions.php:242
116
+ msgid "Upload Background"
117
+ msgstr "Завантажити фон"
118
+
119
+ #: includes/functions.php:248
120
+ msgid "Background color"
121
+ msgstr "Колір фону"
122
+
123
+ #: includes/functions.php:249
124
+ msgid "Font color"
125
+ msgstr "Колір шрифту"
126
+
127
+ #: includes/functions.php:256
128
+ msgid "Font family"
129
+ msgstr "Шрифт"
130
+
131
+ #: includes/functions.php:264
132
+ msgid "Have any questions?"
133
+ msgstr "Є запитання?"
134
+
135
+ #: includes/functions.php:265
136
+ #, php-format
137
+ msgid ""
138
+ "You may find answers to your questions at <a target=\"_blank\" href=\"http://"
139
+ "wordpress.org/support/plugin/maintenance\">support forum</a><br>You may <a "
140
+ "target=\"_blank\" href=\"mailto:mail@fruitfulcode.com?subject=Maintenance "
141
+ "plugin\">contact us</a> with customization requests and suggestions.<br> "
142
+ "Please visit our website to learn about us and our services <a href=\"%1$s\" "
143
+ "title=\"%2$s\">%2$s</a>"
144
+ msgstr ""
145
+ "Ви можете знайти відповіді на <a target=\"_blank\" href=\"http://wordpress."
146
+ "org/support/plugin/maintenance\">офіційному форумі підтримки</a><br>Можете "
147
+ "<a target=\"_blank\" href=\"mailto:mail@fruitfulcode.com?subject=Maintenance "
148
+ "plugin\">зв'язатися з нами</a> з питань кастомізації і змін.<br> Відвідайте "
149
+ "наш сайт, щоб дізнатися про нас і наші послуги <a href=\"%1$s\" title=\"%2$s"
150
+ "\">%2$s</a>"
151
+
152
+ #: includes/functions.php:276
153
+ msgid "Extended functionality"
154
+ msgstr "Maintenance PRO"
155
+
156
+ #: includes/functions.php:277
157
+ #, php-format
158
+ msgid ""
159
+ "Purchase <a href=\"http://codecanyon.net/item/maintenance-wordpress-"
160
+ "plugin/2781350?ref=fruitfulcode\" target=\"_blank\">PRO</a> version with "
161
+ "extended functionality. %1$s If you like our plugin please <a target=\"_blank"
162
+ "\" href=\"http://wordpress.org/support/view/plugin-reviews/maintenance?"
163
+ "filter=5\">rate it</a>, <a title=\"leave feedbacks\" href=\"%2$s\" target="
164
+ "\"_blank\">leave feedbacks</a>."
165
+ msgstr ""
166
+ "Купуйте <a href=\"http://codecanyon.net/item/maintenance-wordpress-"
167
+ "plugin/2781350?ref=fruitfulcode\" target=\"_blank\">Maintenance PRO</a> і "
168
+ "отримаєте функцію зворотного відліку і можливість відкривати доступ "
169
+ "декільком користувачам. %1$s Якщо вам сподобався плагін, залиште відгук на "
170
+ "цих сторінках: <a target=\"_blank\" href=\"http://wordpress.org/support/view/"
171
+ "plugin-reviews/maintenance?filter=5\">Оцінити плагін</a>, <a title=\"leave "
172
+ "feedbacks\" href=\"%2$s\" target=\"_blank\">залишити відгук</a>."
173
+
174
+ #: includes/functions.php:281
175
+ msgid "Demo website"
176
+ msgstr "Демо сайт"
177
+
178
+ #: includes/functions.php:340
179
+ msgid "Maintenance"
180
+ msgstr "Режим обслуговування"
181
+
182
+ #: includes/functions.php:363
183
+ msgid "Website is under construction"
184
+ msgstr "Сайт знаходиться в стадії розробки"
185
+
186
+ #: includes/functions.php:364
187
+ msgid "Maintenance mode is on"
188
+ msgstr "Режим обслуговування"
189
+
190
+ #: includes/functions.php:365
191
+ msgid "Website will be available soon"
192
+ msgstr "Сайт буде доступний незабаром"
193
+
194
+ #: load/functions.php:37
195
+ msgid "Permission access denied!"
196
+ msgstr "Дозвіл на доступ заборонений!"
197
+
198
+ #: load/functions.php:45
199
+ msgid "You entered your login are incorrect!"
200
+ msgstr "Наданий логін невірний!"
201
+
202
+ #: load/functions.php:49
203
+ msgid "You entered your password are incorrect!"
204
+ msgstr "Наданий пароль невірний!"
205
+
206
+ #: load/functions.php:52
207
+ msgid "You entered your login and password are incorrect!"
208
+ msgstr "Наданий логін і пароль невірні!"
209
+
210
+ #: load/functions.php:259
211
+ msgid "User Login"
212
+ msgstr "Логін"
213
+
214
+ #: load/functions.php:260
215
+ msgid "Username"
216
+ msgstr "ім'я користувача"
217
+
218
+ #: load/functions.php:261
219
+ msgid "Password"
220
+ msgstr "Пароль"
221
+
222
+ #: load/functions.php:262
223
+ msgid "Lost Password"
224
+ msgstr "Забув пароль"
225
+
226
+ #: load/functions.php:263
227
+ msgid "Login"
228
+ msgstr "Логін"
229
+
230
+ msgid "Sign In"
231
+ msgstr "Увійти"
232
+
233
+ msgid "Contact support"
234
+ msgstr "Зв'язатися зі службою підтримки"
235
+
236
+ msgid ""
237
+ "If you faced with any problems, have a question or suggestion you always can "
238
+ "contact us with any request on our website <a href=\"%1$s\" title=\"%2$s\">"
239
+ "%2$s</a>"
240
+ msgstr ""
241
+ "Якщо ви зіткнулися з будь-якими проблемами, є питання або пропозиції, ви "
242
+ "завжди можете звернутися до нас на нашому сайті <a href=\"%1$s\" title=\"%2$s"
243
+ "\">%2$s</a>"
244
+
245
+ msgid ""
246
+ "If you like our plugin please rate it, %1$s <a title=\"leave feedback\" href="
247
+ "\"%2$s\" target=\"_blank\">leave feedback</a> or purchase extended version "
248
+ "%1$s with more other features."
249
+ msgstr ""
250
+ "Якщо вам подобається наш плагін, оцініть його %1$s <a title=\"оставить "
251
+ "комментарий\" href=\"%2$s\" target=\"_blank\">залишити коментар</a> або "
252
+ "купіть розширену версію %1$s з додатковими можливостями."
253
+
254
+ msgid "Purchase"
255
+ msgstr "Купити"
256
+
257
+ msgid "We have time until launch"
258
+ msgstr "Залишилося часу до запуску"
259
+
260
+ msgid "Be first of your friends who will know when the website goes live."
261
+ msgstr "Будь першим з твоїх друзів, хто дізнається про запуск сайту."
262
+
263
+ msgid "Check out our extended version of plugin with new features"
264
+ msgstr "Перевірте можливості розширеної версії плагіна."
265
+
266
+ msgid "Your session has expired."
267
+ msgstr "Ваша сесія минула."
268
+
269
+ msgid "Please login to see website"
270
+ msgstr "Будь ласка авторизуйтесь"
271
+
272
+ msgid "User roles"
273
+ msgstr "Ролі користувачів"
274
+
275
+ msgid "Choose users access permissions in maintenance mode."
276
+ msgstr "Оберіть права доступу користувачів в режимі обслуговування."
languages/maintenance-zh_CN.mo ADDED
Binary file
languages/maintenance-zh_CN.po ADDED
@@ -0,0 +1,287 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Maintenance\n"
4
+ "POT-Creation-Date: 2015-12-14 21:40+0800\n"
5
+ "PO-Revision-Date: 2015-12-14 21:51+0800\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: zh_CN\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.6\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-WPHeader: maintenance.php\n"
15
+ "Plural-Forms: nplurals=1; plural=0;\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
22
+
23
+ #. Plugin Name of the plugin/theme
24
+ #: includes/admin.php:73 includes/functions.php:539
25
+ msgid "Maintenance"
26
+ msgstr ""
27
+
28
+ #: includes/admin.php:88
29
+ msgid "Save changes"
30
+ msgstr "保存更改"
31
+
32
+ #: includes/functions.php:161
33
+ msgid "Standard Fonts"
34
+ msgstr "标准字体"
35
+
36
+ #: includes/functions.php:168
37
+ msgid "Google Web Fonts"
38
+ msgstr "谷歌字体"
39
+
40
+ #: includes/functions.php:187
41
+ msgid "General Settings"
42
+ msgstr "常规选项"
43
+
44
+ #: includes/functions.php:188
45
+ msgid "Custom CSS"
46
+ msgstr "自定义 CSS 样式表"
47
+
48
+ #: includes/functions.php:189
49
+ msgid "Exclude pages"
50
+ msgstr "排除页面"
51
+
52
+ #: includes/functions.php:195
53
+ msgid "Pro version"
54
+ msgstr "专业版"
55
+
56
+ #: includes/functions.php:202
57
+ msgid "Fruitful Code projects"
58
+ msgstr "Fruitful 代码项目"
59
+
60
+ #: includes/functions.php:208
61
+ msgid "Support"
62
+ msgstr "支持"
63
+
64
+ #: includes/functions.php:229
65
+ msgid "Page title"
66
+ msgstr "页面标题"
67
+
68
+ #: includes/functions.php:230
69
+ msgid "Headline"
70
+ msgstr "标题线"
71
+
72
+ #: includes/functions.php:231
73
+ msgid "Description"
74
+ msgstr "描述"
75
+
76
+ #: includes/functions.php:232
77
+ msgid "Footer Text"
78
+ msgstr "页脚文本"
79
+
80
+ #: includes/functions.php:233
81
+ msgid "Logo"
82
+ msgstr "Logo"
83
+
84
+ #: includes/functions.php:233
85
+ msgid "Upload Logo"
86
+ msgstr "上传Logo"
87
+
88
+ #: includes/functions.php:237
89
+ msgid "Admin bar"
90
+ msgstr "管理栏"
91
+
92
+ #: includes/functions.php:237
93
+ msgid "Show admin bar"
94
+ msgstr "显示WP 管理工具条"
95
+
96
+ #: includes/functions.php:238
97
+ msgid "503"
98
+ msgstr "503"
99
+
100
+ #: includes/functions.php:238
101
+ msgid "Service temporarily unavailable"
102
+ msgstr "服务器暂时不可用"
103
+
104
+ #: includes/functions.php:245
105
+ msgid "Google Analytics ID"
106
+ msgstr "谷歌分析ID"
107
+
108
+ #: includes/functions.php:245
109
+ msgid "UA-XXXXX-X"
110
+ msgstr "UA-XXXXX-X"
111
+
112
+ #: includes/functions.php:246
113
+ msgid "Blur intensity"
114
+ msgstr "模糊强度"
115
+
116
+ #: includes/functions.php:252
117
+ msgid "Background blur"
118
+ msgstr "背景模糊"
119
+
120
+ #: includes/functions.php:252
121
+ msgid "Apply a blur"
122
+ msgstr "应用模糊"
123
+
124
+ #: includes/functions.php:253
125
+ msgid "Login On / Off"
126
+ msgstr "登录 开/关"
127
+
128
+ #: includes/functions.php:265
129
+ msgid "CSS Code"
130
+ msgstr "CSS代码"
131
+
132
+ #: includes/functions.php:279
133
+ msgid "Select the page to be displayed:"
134
+ msgstr "选择要显示的页面:"
135
+
136
+ #: includes/functions.php:325
137
+ msgid "Not available object."
138
+ msgstr "没有可用的对象。"
139
+
140
+ #: includes/functions.php:340
141
+ msgid "Background image"
142
+ msgstr "背景图片"
143
+
144
+ #: includes/functions.php:340
145
+ msgid "Upload Background"
146
+ msgstr "上传背景图片"
147
+
148
+ #: includes/functions.php:346
149
+ msgid "Background color"
150
+ msgstr "背景颜色"
151
+
152
+ #: includes/functions.php:347
153
+ msgid "Font color"
154
+ msgstr "文本颜色"
155
+
156
+ #: includes/functions.php:354
157
+ msgid "Font family"
158
+ msgstr "字体库"
159
+
160
+ #: includes/functions.php:362
161
+ msgid "Have any questions?"
162
+ msgstr "有任何疑问?"
163
+
164
+ #: includes/functions.php:363
165
+ #, php-format
166
+ msgid ""
167
+ "You may find answers to your questions at <a target=\"_blank\" href=\"http://"
168
+ "wordpress.org/support/plugin/maintenance\">support forum</a><br>You may <a "
169
+ "target=\"_blank\" href=\"mailto:mail@fruitfulcode.com?subject=Maintenance "
170
+ "plugin\">contact us</a> with customization requests and suggestions.<br> "
171
+ "Please visit our website to learn about us and our services <a href=\"%1$s\" "
172
+ "title=\"%2$s\">%2$s</a>"
173
+ msgstr ""
174
+ "你可能会发现你的问题的答案在<a target=\"_blank\" href=\"http://wordpress.org/"
175
+ "support/plugin/maintenance\">支持论坛</a><br>您可以<a target=\"_blank\" href="
176
+ "\"mailto:mail@fruitfulcode.com?subject=Maintenance plugin\">联系我们</a>的定"
177
+ "制要求和建议。<br>请访问我们的网站,了解我们和我们的服务<a href=\"%1$s\" "
178
+ "title=\"%2$s\">%2$s</a>"
179
+
180
+ #: includes/functions.php:374
181
+ msgid "Premium WordPress themes"
182
+ msgstr "高级 WordPress 主题"
183
+
184
+ #: includes/functions.php:380
185
+ msgid "ANAGLYPH - One page / Multi Page WordPress Theme"
186
+ msgstr "ANAGLYPH-单页 / 多页 WordPress 主题"
187
+
188
+ #: includes/functions.php:385
189
+ msgid "Love.ly - Simple & Elegant WordPress theme"
190
+ msgstr "Love.ly-简单 & 优雅 WordPress 主题"
191
+
192
+ #: includes/functions.php:391
193
+ msgid "Zoner - Real Estate WordPress theme"
194
+ msgstr "Zoner-真正的房地产 WordPress 主题"
195
+
196
+ #: includes/functions.php:404
197
+ msgid "Extended functionality"
198
+ msgstr "扩展功能"
199
+
200
+ #: includes/functions.php:405
201
+ #, php-format
202
+ msgid ""
203
+ "Purchase <a href=\"http://codecanyon.net/item/maintenance-wordpress-"
204
+ "plugin/2781350?ref=fruitfulcode\" target=\"_blank\">PRO</a> version with "
205
+ "extended functionality. %1$s If you like our plugin please <a target=\"_blank"
206
+ "\" href=\"http://wordpress.org/support/view/plugin-reviews/maintenance?"
207
+ "filter=5\">rate it</a>, <a title=\"leave feedbacks\" href=\"%2$s\" target="
208
+ "\"_blank\">leave feedbacks</a>."
209
+ msgstr ""
210
+ "购买扩展功能的<a href=\"http://codecanyon.net/item/maintenance-wordpress-"
211
+ "plugin/2781350?ref=fruitfulcode\" target=\"_blank\">PRO</a>版。%1$s 如果你喜"
212
+ "欢我们的插件,请<a target=\"_blank\" href=\"http://wordpress.org/support/"
213
+ "view/plugin-reviews/maintenance?filter=5\">给它的评价</a>,<a title=\"leave "
214
+ "feedbacks\" href=\"%2$s\" target=\"_blank\">留下反馈</a>。"
215
+
216
+ #: includes/functions.php:409
217
+ msgid "Demo website"
218
+ msgstr "演示网站"
219
+
220
+ #: includes/functions.php:604
221
+ msgid "Website is under construction"
222
+ msgstr "网站正在建设"
223
+
224
+ #: includes/functions.php:605
225
+ msgid "Maintenance mode is on"
226
+ msgstr "维护模式已经打开"
227
+
228
+ #: includes/functions.php:606
229
+ msgid "Website will be available soon"
230
+ msgstr "网站很快就会提供"
231
+
232
+ #: load/functions.php:37
233
+ msgid "Permission access denied!"
234
+ msgstr "拒绝的权限访问!"
235
+
236
+ #: load/functions.php:45
237
+ msgid "You entered your login are incorrect!"
238
+ msgstr "您输入您的登录信息不正确!"
239
+
240
+ #: load/functions.php:49
241
+ msgid "You entered your password are incorrect!"
242
+ msgstr "您输入您的密码不正确!"
243
+
244
+ #: load/functions.php:52
245
+ msgid "You entered your login and password are incorrect!"
246
+ msgstr "您输入您的登录名和密码不正确!"
247
+
248
+ #: load/functions.php:257
249
+ msgid "User Login"
250
+ msgstr "登录名"
251
+
252
+ #: load/functions.php:258
253
+ msgid "Username"
254
+ msgstr "用户名"
255
+
256
+ #: load/functions.php:259
257
+ msgid "Password"
258
+ msgstr "密码"
259
+
260
+ #: load/functions.php:260
261
+ msgid "Lost Password"
262
+ msgstr "忘记密码"
263
+
264
+ #: load/functions.php:261
265
+ msgid "Login"
266
+ msgstr "登录"
267
+
268
+ #. Plugin URI of the plugin/theme
269
+ msgid "http://wordpress.org/plugins/maintenance/"
270
+ msgstr ""
271
+
272
+ #. Description of the plugin/theme
273
+ msgid ""
274
+ "Take your website for maintenance away from public view. Use maintenance "
275
+ "plugin if your website is in development or you need to change a few things, "
276
+ "run an upgrade. Make it only accessible by login and password. Plugin has a "
277
+ "options to add a logo, background, headline, message, colors, login, etc. "
278
+ "Extended PRO with more features version is available for purchase."
279
+ msgstr ""
280
+
281
+ #. Author of the plugin/theme
282
+ msgid "fruitfulcode"
283
+ msgstr ""
284
+
285
+ #. Author URI of the plugin/theme
286
+ msgid "http://fruitfulcode.com"
287
+ msgstr ""
load/functions.php CHANGED
@@ -27,7 +27,9 @@ function get_custom_login_code() {
27
 
28
  if (!empty($mt_options['roles_array'])) {
29
  foreach (array_keys($mt_options['roles_array']) as $key) {
30
- if ($key == $current_role) { $is_role_check = true; }
 
 
31
  }
32
  } else {
33
  $is_role_check = true;
@@ -223,20 +225,17 @@ function get_custom_login_code() {
223
 
224
  function get_footer_section() {
225
  $mt_options = mt_get_plugin_options(true);
 
226
 
227
- $out_ftext = '';
228
- $out_ftext .= '<a class="company-name" rel="footer" href="'.esc_url(site_url('')) .'">';
229
- if (isset($mt_options['footer_text']) && !empty($mt_options['footer_text'])) {
230
- $out_ftext .= $mt_options['footer_text'];
231
- } else {
232
- $out_ftext .= '&copy; ' . get_bloginfo( 'name' ) . ' ' . date('Y');
233
- }
234
- $out_ftext .= '</a>';
235
  echo $out_ftext;
236
  }
237
  add_action('footer_section', 'get_footer_section', 10);
238
 
239
-
240
  function do_button_login_form($error = -1) {
241
  ?>
242
  <div id="btn-open-login-form" class="btn-open-login-form">
27
 
28
  if (!empty($mt_options['roles_array'])) {
29
  foreach (array_keys($mt_options['roles_array']) as $key) {
30
+ if ($key == $current_role) {
31
+ $is_role_check = false;
32
+ }
33
  }
34
  } else {
35
  $is_role_check = true;
225
 
226
  function get_footer_section() {
227
  $mt_options = mt_get_plugin_options(true);
228
+ $out_ftext = null;
229
 
230
+ if (isset($mt_options['footer_text']) && !empty($mt_options['footer_text'])) {
231
+ $out_ftext .= '<a class="company-name" rel="footer" href="'.esc_url(site_url('')) .'">';
232
+ $out_ftext .= wp_kses_post(stripslashes($mt_options['footer_text']));
233
+ $out_ftext .= '</a>';
234
+ }
 
 
 
235
  echo $out_ftext;
236
  }
237
  add_action('footer_section', 'get_footer_section', 10);
238
 
 
239
  function do_button_login_form($error = -1) {
240
  ?>
241
  <div id="btn-open-login-form" class="btn-open-login-form">
load/index.php CHANGED
@@ -1,10 +1,9 @@
1
  <?php
2
- $mess_arr = array();
3
- $ebody_class = '';
4
  $mess_arr = get_custom_login_code();
5
  if (!empty($mess_arr[0])) $ebody_class = 'error';
6
  $mt_options = mt_get_plugin_options(true);
7
-
8
  ?>
9
  <!DOCTYPE html>
10
  <!--[if IE 7]>
@@ -20,6 +19,10 @@
20
  <meta charset="<?php bloginfo( 'charset' ); ?>" />
21
  <?php get_page_title(esc_attr($mess_arr[0])); ?>
22
  <meta name="viewport" content="width=device-width, user-scalable=no, maximum-scale=1, initial-scale=1, minimum-scale=1">
 
 
 
 
23
  <link rel="profile" href="http://gmpg.org/xfn/11" />
24
  <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
25
  <?php do_action('load_custom_scripts'); ?>
1
  <?php
2
+ $mess_arr = array();
3
+ $ebody_class = null;
4
  $mess_arr = get_custom_login_code();
5
  if (!empty($mess_arr[0])) $ebody_class = 'error';
6
  $mt_options = mt_get_plugin_options(true);
 
7
  ?>
8
  <!DOCTYPE html>
9
  <!--[if IE 7]>
19
  <meta charset="<?php bloginfo( 'charset' ); ?>" />
20
  <?php get_page_title(esc_attr($mess_arr[0])); ?>
21
  <meta name="viewport" content="width=device-width, user-scalable=no, maximum-scale=1, initial-scale=1, minimum-scale=1">
22
+ <meta property="og:title" content="<?php bloginfo('name'); ?>"/>
23
+ <meta property="og:type" content="Maintenance"/>
24
+ <meta property="og:url" content="<?php echo site_url(); ?>"/>
25
+ <meta property="og:description" content="<?php bloginfo('description'); ?>"/>
26
  <link rel="profile" href="http://gmpg.org/xfn/11" />
27
  <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
28
  <?php do_action('load_custom_scripts'); ?>
maintenance.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Maintenance
4
  Plugin URI: http://wordpress.org/plugins/maintenance/
5
  Description: Take your website for maintenance away from public view. Use maintenance plugin if your website is in development or you need to change a few things, run an upgrade. Make it only accessible by login and password. Plugin has a options to add a logo, background, headline, message, colors, login, etc. Extended PRO with more features version is available for purchase.
6
- Version: 2.5
7
  Author: fruitfulcode
8
  Author URI: http://fruitfulcode.com
9
  License: GPL2
@@ -35,12 +35,13 @@ class maintenance {
35
  add_action( 'plugins_loaded', array( &$this, 'admin'), 4);
36
 
37
 
38
- register_activation_hook ( __FILE__, array( &$this, 'activation' ));
39
- register_deactivation_hook( __FILE__, array( &$this,'deactivation') );
 
40
 
41
- add_action('wp', array( &$this, 'mt_template_redirect'), 1);
42
  add_action('wp_logout', array( &$this, 'mt_user_logout'));
43
- add_action('init', array( &$this, 'mt_admin_bar'));
44
  }
45
 
46
  function constants() {
@@ -69,12 +70,18 @@ class maintenance {
69
  }
70
  }
71
 
72
- function activation() {
 
73
  }
74
- function deactivation() {
 
 
 
 
 
75
  delete_option('maintenance_options');
76
  delete_option('maintenance_db_version');
77
- }
78
 
79
  function mt_user_logout() {
80
  wp_safe_redirect(get_bloginfo('url'));
@@ -87,7 +94,7 @@ class maintenance {
87
 
88
  function mt_admin_bar() {
89
  add_action('admin_bar_menu', 'maintenance_add_toolbar_items', 100);
90
- if (!is_admin() ) {
91
  $mt_options = mt_get_plugin_options(true);
92
  if (isset($mt_options['admin_bar_enabled']) && is_user_logged_in()) {
93
  add_filter('show_admin_bar', '__return_true');
3
  Plugin Name: Maintenance
4
  Plugin URI: http://wordpress.org/plugins/maintenance/
5
  Description: Take your website for maintenance away from public view. Use maintenance plugin if your website is in development or you need to change a few things, run an upgrade. Make it only accessible by login and password. Plugin has a options to add a logo, background, headline, message, colors, login, etc. Extended PRO with more features version is available for purchase.
6
+ Version: 2.6
7
  Author: fruitfulcode
8
  Author URI: http://fruitfulcode.com
9
  License: GPL2
35
  add_action( 'plugins_loaded', array( &$this, 'admin'), 4);
36
 
37
 
38
+ register_activation_hook ( __FILE__, array( &$this, 'mt_activation' ));
39
+ register_deactivation_hook( __FILE__, array( &$this, 'mt_deactivation') );
40
+ register_uninstall_hook ( 'maintenance', 'mt_uninstall');
41
 
42
+ add_action('wp', array( &$this, 'mt_template_redirect'), 1);
43
  add_action('wp_logout', array( &$this, 'mt_user_logout'));
44
+ add_action('init', array( &$this, 'mt_admin_bar'));
45
  }
46
 
47
  function constants() {
70
  }
71
  }
72
 
73
+ function mt_activation() {
74
+ /*Activation Plugin*/
75
  }
76
+
77
+ function mt_deactivation() {
78
+ /*Deactivation Plugin*/
79
+ }
80
+
81
+ public static function mt_uninstall() {
82
  delete_option('maintenance_options');
83
  delete_option('maintenance_db_version');
84
+ }
85
 
86
  function mt_user_logout() {
87
  wp_safe_redirect(get_bloginfo('url'));
94
 
95
  function mt_admin_bar() {
96
  add_action('admin_bar_menu', 'maintenance_add_toolbar_items', 100);
97
+ if (!is_super_admin() ) {
98
  $mt_options = mt_get_plugin_options(true);
99
  if (isset($mt_options['admin_bar_enabled']) && is_user_logged_in()) {
100
  add_filter('show_admin_bar', '__return_true');
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Plugin Name ===
2
  Contributors: fruitfulcode
3
  Donate link: http://fruitfulcode.com/
4
- Tags: maintenance, coming soon, under-construction, 503 error, administration, login, customize page, background, fullscreen, blur
5
  Requires at least: 3.4
6
- Tested up to: 4.3.1
7
- Stable tag: 2.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -14,6 +14,8 @@ Maintenance - easy configure and customize coming soon, under construction page
14
 
15
  Maintenance plugin allow WordPress site administrator close the website for maintenance, enable "503 Service temporarily unavailable”, set a temporary page with authorization, which can be edited via the plugin settings. Easy customize, good look on all devices. Add your logo, background image, select the desired color, add text. Extended version of the plugin includes more settings that appear after installation PRO extension plugin.
16
 
 
 
17
  <h3>Features</h3>
18
  <ul>
19
  <li>Html/CSS layout without images (retina ready) </li>
@@ -57,7 +59,17 @@ Maintenance plugin allow WordPress site administrator close the website for main
57
 
58
  <ul>
59
  <li>Russian (ru_RU)</li>
60
- <li>Brazilian Portuguese (pt_BR) (thanks to Luiz Felipe Silva Cristofari)</li>
 
 
 
 
 
 
 
 
 
 
61
  </ul>
62
 
63
  <p>If you would like to create translation to your native language, you can send the <a target="_blank" href="http://codex.wordpress.org/Translating_WordPress">text of PO and MO files</a> to the <a href="http://fruitfulcode.com" target="_blank">Fruitful Code</a> and we'll add it to the next plugin update.</p><p> You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.</p>
@@ -108,6 +120,14 @@ You can check <a href="http://wordpress.org/support/plugin/maintenance">support
108
 
109
  == Change log ==
110
 
 
 
 
 
 
 
 
 
111
  = 2.5 =
112
  * New: French translation
113
  * Update: WordPress 4.3 support
1
  === Plugin Name ===
2
  Contributors: fruitfulcode
3
  Donate link: http://fruitfulcode.com/
4
+ Tags: maintenance, maintenance mode, coming soon, splash page, under-construction, 503 error, administration, login, customize page, background, fullscreen, blur
5
  Requires at least: 3.4
6
+ Tested up to: 4.4
7
+ Stable tag: 2.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
14
 
15
  Maintenance plugin allow WordPress site administrator close the website for maintenance, enable "503 Service temporarily unavailable”, set a temporary page with authorization, which can be edited via the plugin settings. Easy customize, good look on all devices. Add your logo, background image, select the desired color, add text. Extended version of the plugin includes more settings that appear after installation PRO extension plugin.
16
 
17
+ https://www.youtube.com/watch?v=Z5v9Ju52nmg
18
+
19
  <h3>Features</h3>
20
  <ul>
21
  <li>Html/CSS layout without images (retina ready) </li>
59
 
60
  <ul>
61
  <li>Russian (ru_RU)</li>
62
+ <li>Brazilian Portuguese (pt_BR)</li>
63
+ <li>German (de_DE)</li>
64
+ <li>Spanish (es_ES)</li>
65
+ <li>Farsi Persian (fa_IR)</li>
66
+ <li>Turkish (tr_TR)</li>
67
+ <li>French (fr_FR)</li>
68
+ <li>Chinese (zh_CN)</li>
69
+ <li>Czech (cs_CZ)</li>
70
+ <li>Ukrainian (uk_UA)</li>
71
+ <li>Finnish (fi_FI)</li>
72
+ <li>Italian (it_IT)</li>
73
  </ul>
74
 
75
  <p>If you would like to create translation to your native language, you can send the <a target="_blank" href="http://codex.wordpress.org/Translating_WordPress">text of PO and MO files</a> to the <a href="http://fruitfulcode.com" target="_blank">Fruitful Code</a> and we'll add it to the next plugin update.</p><p> You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.</p>
120
 
121
  == Change log ==
122
 
123
+ = 2.6 =
124
+ * Update: WordPress 4.4 support
125
+ * Update: translation files
126
+ * New: Meta fields for sharing
127
+ * Bug fix: callback function to uninstall hook
128
+ * Bug fix: save content and settings if plugin disabled
129
+ * Bug fix: if footer text is empty not showing text
130
+
131
  = 2.5 =
132
  * New: French translation
133
  * Update: WordPress 4.3 support
screenshot-1.png CHANGED
Binary file