Version Description
- Tweak: Updated optin form
Download this release
Release Info
Developer | seedprod |
Plugin | Coming Soon Page & Maintenance Mode by SeedProd |
Version | 4.1.1 |
Comparing to | |
See all releases |
Code changes from version 4.1.0 to 4.1.1
- README.txt +5 -2
- coming-soon.php +2 -2
- framework/framework.php +89 -64
- languages/coming-soon-pt_BR.mo +0 -0
- languages/coming-soon-pt_BR.po +187 -356
README.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: seedprod, johnnytee
|
|
3 |
Donate link: http://www.seedprod.com
|
4 |
Tags: wordpress coming soon, wordpress under construction, wordpress maintenance mode, maintenance mode, coming soon, under construction, launch page, launch, maintenance, construction, offline, unavailable, newsletter, coming soon page, landing page
|
5 |
Requires at least: 3.5.1
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 4.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -108,6 +108,9 @@ This is always a caching issue. Go to the caching plugin's setting page and clea
|
|
108 |
|
109 |
|
110 |
== Changelog ==
|
|
|
|
|
|
|
111 |
= 4.1.0 =
|
112 |
* Exclude default urls terms: login, admin, dashboard and account. Also provided a way to disable this behavior.
|
113 |
|
3 |
Donate link: http://www.seedprod.com
|
4 |
Tags: wordpress coming soon, wordpress under construction, wordpress maintenance mode, maintenance mode, coming soon, under construction, launch page, launch, maintenance, construction, offline, unavailable, newsletter, coming soon page, landing page
|
5 |
Requires at least: 3.5.1
|
6 |
+
Tested up to: 4.2.2
|
7 |
+
Stable tag: 4.1.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
108 |
|
109 |
|
110 |
== Changelog ==
|
111 |
+
= 4.1.1 =
|
112 |
+
* Tweak: Updated optin form
|
113 |
+
|
114 |
= 4.1.0 =
|
115 |
* Exclude default urls terms: login, admin, dashboard and account. Also provided a way to disable this behavior.
|
116 |
|
coming-soon.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Coming Soon Page & Maintenance Mode by SeedProd
|
4 |
* Plugin URI: http://www.seedprod.com
|
5 |
* Description: The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.
|
6 |
-
* Version: 4.1.
|
7 |
* Author: SeedProd
|
8 |
* Author URI: http://www.seedprod.com
|
9 |
* Text Domain: coming-soon
|
@@ -20,7 +20,7 @@ define( 'SEED_CSP4_SHORTNAME', 'seed_csp4' ); // Used to reference namespace fun
|
|
20 |
define( 'SEED_CSP4_SLUG', 'coming-soon/coming-soon.php' ); // Used for settings link.
|
21 |
define( 'SEED_CSP4_TEXTDOMAIN', 'coming-soon' ); // Your textdomain
|
22 |
define( 'SEED_CSP4_PLUGIN_NAME', __( 'Coming Soon Page & Maintenance Mode by SeedProd', 'coming-soon' ) ); // Plugin Name shows up on the admin settings screen.
|
23 |
-
define( 'SEED_CSP4_VERSION', '4.1.
|
24 |
define( 'SEED_CSP4_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_csp4/
|
25 |
define( 'SEED_CSP4_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); // Example output: http://localhost:8888/wordpress/wp-content/plugins/seed_csp4/
|
26 |
define( 'SEED_CSP4_TABLENAME', 'seed_csp4_subscribers' );
|
3 |
* Plugin Name: Coming Soon Page & Maintenance Mode by SeedProd
|
4 |
* Plugin URI: http://www.seedprod.com
|
5 |
* Description: The #1 Coming Soon Page, Under Construction & Maintenance Mode plugin for WordPress.
|
6 |
+
* Version: 4.1.1
|
7 |
* Author: SeedProd
|
8 |
* Author URI: http://www.seedprod.com
|
9 |
* Text Domain: coming-soon
|
20 |
define( 'SEED_CSP4_SLUG', 'coming-soon/coming-soon.php' ); // Used for settings link.
|
21 |
define( 'SEED_CSP4_TEXTDOMAIN', 'coming-soon' ); // Your textdomain
|
22 |
define( 'SEED_CSP4_PLUGIN_NAME', __( 'Coming Soon Page & Maintenance Mode by SeedProd', 'coming-soon' ) ); // Plugin Name shows up on the admin settings screen.
|
23 |
+
define( 'SEED_CSP4_VERSION', '4.1.1'); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
|
24 |
define( 'SEED_CSP4_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_csp4/
|
25 |
define( 'SEED_CSP4_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); // Example output: http://localhost:8888/wordpress/wp-content/plugins/seed_csp4/
|
26 |
define( 'SEED_CSP4_TABLENAME', 'seed_csp4_subscribers' );
|
framework/framework.php
CHANGED
@@ -176,7 +176,7 @@ class SEED_CSP4_ADMIN
|
|
176 |
}
|
177 |
echo '<a class="nav-tab seed_csp4-preview thickbox-preview" href="'.home_url().'?cs_preview=true&TB_iframe=true&width=640&height=632" title="'.__('← Close Window','coming-soon').'">'.__('Live Preview','coming-soon').'</a>';
|
178 |
if(defined('SEED_CSP_API_KEY') === false){
|
179 |
-
echo '<a class="nav-tab seed_csp4-support" style="
|
180 |
}
|
181 |
echo '</h2>';
|
182 |
|
@@ -291,9 +291,72 @@ class SEED_CSP4_ADMIN
|
|
291 |
|
292 |
<div id="postbox-container-1" class="postbox-container">
|
293 |
<div id="side-sortables" class="meta-box-sortables ui-sortable">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
<!-- <a href="http://www.seedprod.com/plugins/wordpress-coming-soon-pro-plugin/?utm_source=plugin&utm_medium=banner&utm_campaign=coming-soon-pro-in-plugin-banner" target="_blank"><img src="http://static.seedprod.com/ads/coming-soon-pro-sidebar.png" /></a>
|
295 |
<br><br> -->
|
296 |
-
<div class="postbox support-postbox" style="background-color
|
297 |
<div class="handlediv" title="Click to toggle"><br /></div>
|
298 |
<h3 class="hndle"><span><?php _e('Plugin Support', 'coming-soon') ?></span></h3>
|
299 |
<div class="inside">
|
@@ -310,7 +373,7 @@ class SEED_CSP4_ADMIN
|
|
310 |
</div>
|
311 |
</div>
|
312 |
<?php if($this->plugin_type != 'pro'){ ?>
|
313 |
-
<div class="postbox like-postbox" style="background-color:#
|
314 |
<div class="handlediv" title="Click to toggle"><br /></div>
|
315 |
<h3 class="hndle"><span><?php _e('Show Some Love', 'coming-soon') ?></span></h3>
|
316 |
<div class="inside">
|
@@ -329,69 +392,31 @@ class SEED_CSP4_ADMIN
|
|
329 |
</div>
|
330 |
</div>
|
331 |
<?php } ?>
|
332 |
-
<div class="postbox rss-postbox" style="background-color:#d9edf7">
|
333 |
-
<div class="handlediv" title="Click to toggle"><br /></div>
|
334 |
-
<h3 class="hndle"><span><?php _e("How to launch a site that's successful on Day One", 'ultimate-coming-soon-page') ?></span></h3>
|
335 |
-
<div class="inside">
|
336 |
-
<form action="https://www.getdrip.com/forms/7838563/submissions" method="post" target="_blank" data-drip-embedded-form="1541">
|
337 |
-
|
338 |
-
<p data-drip-attribute="description">There's nothing more disappointing than launching a new site and not get
|
339 |
-
enough visitors to support it. Find out how to build an audience before you
|
340 |
-
launch in this free 5-part course.</p>
|
341 |
-
<div>
|
342 |
-
<label for="fields[first_name]">First Name</label><br />
|
343 |
-
<input type="text" name="fields[first_name]" value="" />
|
344 |
-
</div>
|
345 |
-
<div>
|
346 |
-
<label for="fields[email]">Email Address</label><br />
|
347 |
-
<input type="text" name="fields[email]" value="" />
|
348 |
-
</div>
|
349 |
-
<br>
|
350 |
-
<div>
|
351 |
-
<input type="submit" name="submit" value="Learn How" data-drip-attribute="sign-up-button" class="button-primary" />
|
352 |
-
</div>
|
353 |
-
</form>
|
354 |
-
<!-- <div class="rss-widget">
|
355 |
-
<?php
|
356 |
-
wp_widget_rss_output(array(
|
357 |
-
'url' => 'http://seedprod.com/feed/',
|
358 |
-
'title' => 'SeedProd Blog',
|
359 |
-
'items' => 3,
|
360 |
-
'show_summary' => 0,
|
361 |
-
'show_author' => 0,
|
362 |
-
'show_date' => 1,
|
363 |
-
));
|
364 |
-
?>
|
365 |
-
<ul>
|
366 |
-
<li>» <a href="http://seedprod.com/subscribe/"><?php _e('Subscribe by Email', 'ultimate-coming-soon-page') ?></a></li>
|
367 |
-
</ul>
|
368 |
-
</div> -->
|
369 |
-
</div>
|
370 |
-
</div>
|
371 |
|
372 |
-
<div class="postbox rss-postbox" style="background-color:#f2dede">
|
373 |
-
<div class="handlediv" title="Click to toggle"><br /></div>
|
374 |
-
<h3 class="hndle"><span><?php _e('SeedProd Blog', 'ultimate-coming-soon-page') ?></span></h3>
|
375 |
-
<div class="inside">
|
376 |
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
|
|
|
|
|
|
|
|
|
|
395 |
|
396 |
</div>
|
397 |
</div>
|
176 |
}
|
177 |
echo '<a class="nav-tab seed_csp4-preview thickbox-preview" href="'.home_url().'?cs_preview=true&TB_iframe=true&width=640&height=632" title="'.__('← Close Window','coming-soon').'">'.__('Live Preview','coming-soon').'</a>';
|
178 |
if(defined('SEED_CSP_API_KEY') === false){
|
179 |
+
echo '<a class="nav-tab seed_csp4-support" style="background-color: #fcf8e3;" href="http://www.seedprod.com/features/?utm_source=coming-soon-plugin&utm_medium=banner&utm_campaign=coming-soon-link-in-plugin" target="_blank"><i class="fa fa-star"></i> '.__('Upgrade to Pro for more Professional Features','coming-soon').'</a>';
|
180 |
}
|
181 |
echo '</h2>';
|
182 |
|
291 |
|
292 |
<div id="postbox-container-1" class="postbox-container">
|
293 |
<div id="side-sortables" class="meta-box-sortables ui-sortable">
|
294 |
+
|
295 |
+
<div class="postbox rss-postbox" style="background-color: #fcf8e3">
|
296 |
+
<div class="handlediv" title="Click to toggle"><br /></div>
|
297 |
+
<h3 class="hndle"><span><?php _e("How to launch a site that's successful on Day One", 'ultimate-coming-soon-page') ?></span></h3>
|
298 |
+
<div class="inside">
|
299 |
+
|
300 |
+
|
301 |
+
<p >There's nothing more disappointing than launching a new site and not get
|
302 |
+
enough visitors to support it. Find out how to build an audience before you
|
303 |
+
launch in this free 5-part course.</p>
|
304 |
+
<!-- Begin MailChimp Signup Form -->
|
305 |
+
<link href="//cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css">
|
306 |
+
<style type="text/css">
|
307 |
+
#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
|
308 |
+
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
|
309 |
+
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
|
310 |
+
</style>
|
311 |
+
<div id="mc_embed_signup" style="background: transparent">
|
312 |
+
<form action="//seedprod.us2.list-manage.com/subscribe/post?u=b917d2a79917ec125d6934c5b&id=34383bb48a" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
|
313 |
+
<div id="mc_embed_signup_scroll">
|
314 |
+
|
315 |
+
<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
|
316 |
+
<div class="mc-field-group">
|
317 |
+
<label for="mce-EMAIL"><strong>Email Address</strong> <span class="asterisk">*</span>
|
318 |
+
</label>
|
319 |
+
<input type="email" value="<?php echo get_option( 'admin_email' ); ?>" name="EMAIL" class="required email" id="mce-EMAIL">
|
320 |
+
</div>
|
321 |
+
<div class="mc-field-group">
|
322 |
+
<label for="mce-FNAME">First Name </label>
|
323 |
+
<input type="text" value="" name="FNAME" class="" id="mce-FNAME">
|
324 |
+
</div>
|
325 |
+
|
326 |
+
<input type="hidden" value="Coming Soon Page and Maintenance Mode by SeedProd Plugin" name="SOURCE">
|
327 |
+
|
328 |
+
<div id="mce-responses" class="clear">
|
329 |
+
<div class="response" id="mce-error-response" style="display:none"></div>
|
330 |
+
<div class="response" id="mce-success-response" style="display:none"></div>
|
331 |
+
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
332 |
+
<div style="position: absolute; left: -5000px;"><input type="text" name="b_b917d2a79917ec125d6934c5b_34383bb48a" tabindex="-1" value=""></div>
|
333 |
+
<div class="clear"><input type="submit" value="Sign Up" name="subscribe" id="mc-embedded-subscribe" class="button" style="background-color:#82bb42"></div>
|
334 |
+
</div>
|
335 |
+
</form>
|
336 |
+
</div>
|
337 |
+
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';fnames[3]='DV_VAR_1';ftypes[3]='text';fnames[4]='SOURCE';ftypes[4]='text';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
|
338 |
+
<!--End mc_embed_signup-->
|
339 |
+
|
340 |
+
<!-- <div class="rss-widget">
|
341 |
+
<?php
|
342 |
+
wp_widget_rss_output(array(
|
343 |
+
'url' => 'http://seedprod.com/feed/',
|
344 |
+
'title' => 'SeedProd Blog',
|
345 |
+
'items' => 3,
|
346 |
+
'show_summary' => 0,
|
347 |
+
'show_author' => 0,
|
348 |
+
'show_date' => 1,
|
349 |
+
));
|
350 |
+
?>
|
351 |
+
<ul>
|
352 |
+
<li>» <a href="http://seedprod.com/subscribe/"><?php _e('Subscribe by Email', 'ultimate-coming-soon-page') ?></a></li>
|
353 |
+
</ul>
|
354 |
+
</div> -->
|
355 |
+
</div>
|
356 |
+
</div>
|
357 |
<!-- <a href="http://www.seedprod.com/plugins/wordpress-coming-soon-pro-plugin/?utm_source=plugin&utm_medium=banner&utm_campaign=coming-soon-pro-in-plugin-banner" target="_blank"><img src="http://static.seedprod.com/ads/coming-soon-pro-sidebar.png" /></a>
|
358 |
<br><br> -->
|
359 |
+
<div class="postbox support-postbox" style="background-color:#d9edf7">
|
360 |
<div class="handlediv" title="Click to toggle"><br /></div>
|
361 |
<h3 class="hndle"><span><?php _e('Plugin Support', 'coming-soon') ?></span></h3>
|
362 |
<div class="inside">
|
373 |
</div>
|
374 |
</div>
|
375 |
<?php if($this->plugin_type != 'pro'){ ?>
|
376 |
+
<div class="postbox like-postbox" style="background-color:#d9edf7">
|
377 |
<div class="handlediv" title="Click to toggle"><br /></div>
|
378 |
<h3 class="hndle"><span><?php _e('Show Some Love', 'coming-soon') ?></span></h3>
|
379 |
<div class="inside">
|
392 |
</div>
|
393 |
</div>
|
394 |
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
|
|
|
|
|
|
|
|
|
396 |
|
397 |
+
<div class="postbox rss-postbox" style="background-color:#d9edf7">
|
398 |
+
<div class="handlediv" title="Click to toggle"><br /></div>
|
399 |
+
<h3 class="hndle"><span><?php _e('SeedProd Blog', 'ultimate-coming-soon-page') ?></span></h3>
|
400 |
+
<div class="inside">
|
401 |
+
|
402 |
+
<div class="rss-widget">
|
403 |
+
<?php
|
404 |
+
wp_widget_rss_output(array(
|
405 |
+
'url' => 'http://feeds.feedburner.com/seedprod/',
|
406 |
+
'title' => 'SeedProd Blog',
|
407 |
+
'items' => 3,
|
408 |
+
'show_summary' => 0,
|
409 |
+
'show_author' => 0,
|
410 |
+
'show_date' => 1,
|
411 |
+
));
|
412 |
+
?>
|
413 |
+
<ul>
|
414 |
+
<br>
|
415 |
+
<li>» <a href="http://eepurl.com/PgbQf"><?php _e('Subscribe by Email', 'ultimate-coming-soon-page') ?></a></li>
|
416 |
+
</ul>
|
417 |
+
</div>
|
418 |
+
</div>
|
419 |
+
</div>
|
420 |
|
421 |
</div>
|
422 |
</div>
|
languages/coming-soon-pt_BR.mo
CHANGED
Binary file
|
languages/coming-soon-pt_BR.po
CHANGED
@@ -1,172 +1,156 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Coming Soon
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Generator: Poedit 1.6.5\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-
|
|
|
19 |
"Language: pt_BR\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
|
23 |
-
#:
|
24 |
-
msgid "
|
25 |
-
msgstr "
|
26 |
-
|
27 |
-
# @ coming-soon
|
28 |
-
#: framework/framework.php:177
|
29 |
-
msgid "← Close Window"
|
30 |
-
msgstr "← Fechar janela"
|
31 |
-
|
32 |
-
# @ coming-soon
|
33 |
-
#: framework/framework.php:177
|
34 |
-
msgid "Live Preview"
|
35 |
-
msgstr "Visualizar"
|
36 |
|
37 |
-
# @ coming-soon
|
38 |
#: framework/field-types/date.php:8 framework/field-types/daterange.php:8
|
39 |
msgid "01-Jan"
|
40 |
msgstr "01-Jan"
|
41 |
|
42 |
-
# @ coming-soon
|
43 |
#: framework/field-types/date.php:9 framework/field-types/daterange.php:9
|
44 |
msgid "02-Feb"
|
45 |
msgstr "02-Fev"
|
46 |
|
47 |
-
# @ coming-soon
|
48 |
#: framework/field-types/date.php:10 framework/field-types/daterange.php:10
|
49 |
msgid "03-Mar"
|
50 |
msgstr "03-Mar"
|
51 |
|
52 |
-
# @ coming-soon
|
53 |
#: framework/field-types/date.php:11 framework/field-types/daterange.php:11
|
54 |
msgid "04-Apr"
|
55 |
msgstr "04-Abr"
|
56 |
|
57 |
-
# @ coming-soon
|
58 |
#: framework/field-types/date.php:12 framework/field-types/daterange.php:12
|
59 |
msgid "05-May"
|
60 |
msgstr "05-Mai"
|
61 |
|
62 |
-
# @ coming-soon
|
63 |
#: framework/field-types/date.php:13 framework/field-types/daterange.php:13
|
64 |
msgid "06-Jun"
|
65 |
msgstr "06-Jun"
|
66 |
|
67 |
-
# @ coming-soon
|
68 |
#: framework/field-types/date.php:14 framework/field-types/daterange.php:14
|
69 |
msgid "07-Jul"
|
70 |
msgstr "07-Jul"
|
71 |
|
72 |
-
# @ coming-soon
|
73 |
#: framework/field-types/date.php:15 framework/field-types/daterange.php:15
|
74 |
msgid "08-Aug"
|
75 |
msgstr "08-Ago"
|
76 |
|
77 |
-
# @ coming-soon
|
78 |
#: framework/field-types/date.php:16 framework/field-types/daterange.php:16
|
79 |
msgid "09-Sep"
|
80 |
msgstr "09-Set"
|
81 |
|
82 |
-
# @ coming-soon
|
83 |
#: framework/field-types/date.php:17 framework/field-types/daterange.php:17
|
84 |
msgid "10-Oct"
|
85 |
msgstr "10-Out"
|
86 |
|
87 |
-
# @ coming-soon
|
88 |
#: framework/field-types/date.php:18 framework/field-types/daterange.php:18
|
89 |
msgid "11-Nov"
|
90 |
msgstr "11-Nov"
|
91 |
|
92 |
-
# @ coming-soon
|
93 |
#: framework/field-types/date.php:19 framework/field-types/daterange.php:19
|
94 |
msgid "12-Dec"
|
95 |
msgstr "12-Dez"
|
96 |
|
97 |
-
# @ coming-soon
|
98 |
#: framework/field-types/date.php:29 framework/field-types/daterange.php:29
|
99 |
#: framework/field-types/daterange.php:42
|
100 |
msgid "day"
|
101 |
msgstr "dia"
|
102 |
|
103 |
-
# @ coming-soon
|
104 |
#: framework/field-types/date.php:32 framework/field-types/daterange.php:32
|
105 |
#: framework/field-types/daterange.php:45
|
106 |
msgid "year"
|
107 |
msgstr "ano"
|
108 |
|
109 |
-
# @ coming-soon
|
110 |
#: framework/field-types/upload.php:12
|
111 |
msgid "Media Image Library"
|
112 |
-
msgstr "Biblioteca de
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
|
114 |
-
# @ coming-soon
|
115 |
#: framework/validations/color.php:13
|
116 |
msgid "Please enter a valid color value."
|
117 |
-
msgstr "Por favor
|
118 |
|
119 |
-
# @ coming-soon
|
120 |
#: framework/validations/email.php:10 framework/validations/escurlraw.php:11
|
121 |
msgid "Please enter a valid email."
|
122 |
-
msgstr "
|
123 |
|
124 |
-
# @ coming-soon
|
125 |
#: framework/validations/number.php:11
|
126 |
msgid "Please enter a valid number."
|
127 |
-
msgstr "Por favor
|
128 |
|
129 |
-
# @ coming-soon
|
130 |
#: framework/validations/required.php:10
|
131 |
msgid "is required."
|
132 |
-
msgstr "é
|
133 |
|
134 |
-
# @ coming-soon
|
135 |
#: inc/class-seed-csp4.php:80
|
136 |
msgid "Coming Soon Mode Active"
|
137 |
-
msgstr "Modo Em
|
138 |
|
139 |
-
# @ coming-soon
|
140 |
#: inc/class-seed-csp4.php:82
|
141 |
msgid "Maintenance Mode Active"
|
142 |
-
msgstr "Modo de
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
|
144 |
-
# @ coming-soon
|
145 |
#: inc/config-settings.php:44
|
146 |
msgid "General"
|
147 |
msgstr "Geral"
|
148 |
|
149 |
-
# @ coming-soon
|
150 |
#: inc/config-settings.php:50
|
151 |
msgid "Status"
|
152 |
-
msgstr "
|
153 |
|
154 |
-
# @ coming-soon
|
155 |
#: inc/config-settings.php:52
|
156 |
msgid "Disabled"
|
157 |
-
msgstr "
|
158 |
|
159 |
-
# @ coming-soon
|
160 |
#: inc/config-settings.php:53
|
161 |
msgid "Enable Coming Soon Mode"
|
162 |
-
msgstr "Ativar
|
163 |
|
164 |
-
# @ coming-soon
|
165 |
#: inc/config-settings.php:54
|
166 |
msgid "Enable Maintenance Mode"
|
167 |
-
msgstr "Ativar
|
168 |
|
169 |
-
# @ coming-soon
|
170 |
#: inc/config-settings.php:56
|
171 |
msgid ""
|
172 |
"When you are logged in you'll see your normal website. Logged out visitors "
|
@@ -174,472 +158,319 @@ msgid ""
|
|
174 |
"available to search engines if your site is not private. Maintenance Mode "
|
175 |
"will notify search engines that the site is unavailable."
|
176 |
msgstr ""
|
177 |
-
"Quando você estiver conectado verá
|
178 |
-
"verão a página
|
179 |
-
"
|
180 |
-
"
|
|
|
181 |
|
182 |
-
# @ coming-soon
|
183 |
#: inc/config-settings.php:66
|
184 |
msgid "Use maintenance.php"
|
185 |
-
msgstr "Usar
|
186 |
|
187 |
-
# @ coming-soon
|
188 |
#: inc/config-settings.php:67
|
189 |
msgid ""
|
190 |
"maintenance.php detected, would you like to use this for your maintenance "
|
191 |
"page?"
|
192 |
msgstr ""
|
193 |
-
"
|
194 |
"manutenção?"
|
195 |
|
196 |
-
# @ coming-soon
|
197 |
#: inc/config-settings.php:69 inc/config-settings.php:197
|
198 |
#: inc/config-settings.php:265
|
199 |
msgid "Yes"
|
200 |
msgstr "Sim"
|
201 |
|
202 |
-
# @ coming-soon
|
203 |
#: inc/config-settings.php:79
|
204 |
msgid "Page Settings"
|
205 |
-
msgstr "Configurações
|
206 |
|
207 |
-
# @ coming-soon
|
208 |
#: inc/config-settings.php:85
|
209 |
msgid "Logo"
|
210 |
-
msgstr "
|
211 |
|
212 |
-
# @ coming-soon
|
213 |
#: inc/config-settings.php:86
|
214 |
msgid "Upload a logo or teaser image (or) enter the url to your image."
|
215 |
msgstr ""
|
216 |
-
"
|
217 |
"imagem."
|
218 |
|
219 |
-
# @ coming-soon
|
220 |
#: inc/config-settings.php:93
|
221 |
msgid "Headline"
|
222 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
|
224 |
-
# @ coming-soon
|
225 |
#: inc/config-settings.php:118
|
226 |
msgid "Header"
|
227 |
msgstr "Cabeçalho"
|
228 |
|
229 |
-
# @ coming-soon
|
230 |
#: inc/config-settings.php:124
|
231 |
msgid "Favicon"
|
232 |
msgstr "Favicon"
|
233 |
|
234 |
-
# @ coming-soon
|
235 |
#: inc/config-settings.php:125
|
236 |
msgid ""
|
237 |
"Favicons are displayed in a browser tab. Need Help <a href=\"http://tools."
|
238 |
"dynamicdrive.com/favicon/\" target=\"_blank\">creating a favicon</a>?"
|
239 |
msgstr ""
|
240 |
-
"
|
241 |
"\"http://tools.dynamicdrive.com/favicon/\" target=\"_blank\">criar um "
|
242 |
"favicon</a>?"
|
243 |
|
244 |
-
# @ coming-soon
|
245 |
#: inc/config-settings.php:131
|
246 |
msgid "SEO Title"
|
247 |
msgstr "Título do SEO"
|
248 |
|
249 |
-
# @ coming-soon
|
250 |
#: inc/config-settings.php:137
|
251 |
msgid "SEO Meta Description"
|
252 |
-
msgstr "Descrição Meta
|
253 |
|
254 |
-
# @ coming-soon
|
255 |
#: inc/config-settings.php:146
|
256 |
msgid "Analytics Code"
|
257 |
msgstr "Código do Analytics"
|
258 |
|
259 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
#: inc/config-settings.php:157
|
261 |
msgid "Design"
|
262 |
msgstr "Design"
|
263 |
|
264 |
-
# @ coming-soon
|
265 |
#: inc/config-settings.php:170
|
266 |
msgid "Background"
|
267 |
-
msgstr "
|
268 |
|
269 |
-
# @ coming-soon
|
270 |
#: inc/config-settings.php:177
|
271 |
msgid "Background Color"
|
272 |
-
msgstr "Cor de
|
273 |
|
274 |
-
# @ coming-soon
|
275 |
#: inc/config-settings.php:180
|
276 |
msgid ""
|
277 |
"Choose between having a solid color background or uploading an image. By "
|
278 |
"default images will cover the entire background."
|
279 |
msgstr ""
|
280 |
-
"Escolha entre ter
|
281 |
-
"padrão
|
282 |
|
283 |
-
# @ coming-soon
|
284 |
#: inc/config-settings.php:188
|
285 |
msgid "Background Image"
|
286 |
-
msgstr "Imagem de
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
|
288 |
-
# @ coming-soon
|
289 |
#: inc/config-settings.php:206
|
290 |
msgid "Background Repeat"
|
291 |
-
msgstr "Repetição
|
292 |
|
293 |
-
# @ coming-soon
|
294 |
#: inc/config-settings.php:208
|
295 |
msgid "No-Repeat"
|
296 |
-
msgstr "
|
297 |
|
298 |
-
# @ coming-soon
|
299 |
#: inc/config-settings.php:209
|
300 |
msgid "Tile"
|
301 |
-
msgstr "
|
302 |
|
303 |
-
# @ coming-soon
|
304 |
#: inc/config-settings.php:210
|
305 |
msgid "Tile Horizontally"
|
306 |
-
msgstr "
|
307 |
|
308 |
-
# @ coming-soon
|
309 |
#: inc/config-settings.php:211
|
310 |
msgid "Tile Vertically"
|
311 |
-
msgstr "
|
312 |
|
313 |
-
# @ coming-soon
|
314 |
#: inc/config-settings.php:220
|
315 |
msgid "Background Position"
|
316 |
-
msgstr "Posição
|
317 |
|
318 |
-
# @ coming-soon
|
319 |
#: inc/config-settings.php:222
|
320 |
msgid "Left Top"
|
321 |
-
msgstr "
|
322 |
|
323 |
-
# @ coming-soon
|
324 |
#: inc/config-settings.php:223
|
325 |
msgid "Left Center"
|
326 |
-
msgstr "Esquerda
|
327 |
|
328 |
-
# @ coming-soon
|
329 |
#: inc/config-settings.php:224
|
330 |
msgid "Left Bottom"
|
331 |
-
msgstr "
|
332 |
|
333 |
-
# @ coming-soon
|
334 |
#: inc/config-settings.php:225
|
335 |
msgid "Right Top"
|
336 |
-
msgstr "
|
337 |
|
338 |
-
# @ coming-soon
|
339 |
#: inc/config-settings.php:226
|
340 |
msgid "Right Center"
|
341 |
-
msgstr "Direita
|
342 |
|
343 |
-
# @ coming-soon
|
344 |
#: inc/config-settings.php:227
|
345 |
msgid "Right Bottom"
|
346 |
-
msgstr "
|
347 |
|
348 |
-
# @ coming-soon
|
349 |
#: inc/config-settings.php:228
|
350 |
msgid "Center Top"
|
351 |
-
msgstr "
|
352 |
|
353 |
-
# @ coming-soon
|
354 |
#: inc/config-settings.php:229
|
355 |
msgid "Center Center"
|
356 |
-
msgstr "Centro
|
357 |
|
358 |
-
# @ coming-soon
|
359 |
#: inc/config-settings.php:230
|
360 |
msgid "Center Bottom"
|
361 |
-
msgstr "
|
362 |
|
363 |
-
# @ coming-soon
|
364 |
#: inc/config-settings.php:238
|
365 |
msgid "Background Attachment"
|
366 |
-
msgstr "Anexo
|
367 |
|
368 |
-
# @ coming-soon
|
369 |
#: inc/config-settings.php:240
|
370 |
msgid "Fixed"
|
371 |
-
msgstr "
|
372 |
|
373 |
-
# @ coming-soon
|
374 |
#: inc/config-settings.php:241
|
375 |
msgid "Scroll"
|
376 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
|
378 |
-
# @ coming-soon
|
379 |
#: inc/config-settings.php:275
|
380 |
msgid "Text"
|
381 |
msgstr "Texto"
|
382 |
|
383 |
-
# @ coming-soon
|
384 |
#: inc/config-settings.php:281
|
385 |
msgid "Text Color"
|
386 |
-
msgstr "Cor do
|
|
|
|
|
|
|
|
|
387 |
|
388 |
-
# @ coming-soon
|
389 |
#: inc/config-settings.php:297
|
390 |
msgid "Headline Color"
|
391 |
-
msgstr "Cor
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
|
393 |
-
# @ coming-soon
|
394 |
#: inc/config-settings.php:308
|
395 |
msgid "Text Font"
|
396 |
-
msgstr "Fonte do
|
397 |
|
398 |
-
# @ coming-soon
|
399 |
#: inc/config-settings.php:329
|
400 |
msgid "Template"
|
401 |
msgstr "Modelo"
|
402 |
|
403 |
-
# @ coming-soon
|
404 |
#: inc/config-settings.php:337
|
405 |
msgid "Custom CSS"
|
406 |
-
msgstr "CSS
|
407 |
|
408 |
-
# @ coming-soon
|
409 |
#: inc/config-settings.php:338
|
410 |
msgid "Need to tweaks the styles? Add your custom CSS here."
|
411 |
-
msgstr "
|
|
|
412 |
|
413 |
-
# @ coming-soon
|
414 |
#: inc/config-settings.php:347
|
415 |
msgid "Advanced"
|
416 |
-
msgstr "
|
417 |
|
418 |
-
# @ coming-soon
|
419 |
#: inc/config-settings.php:360
|
420 |
msgid "Scripts"
|
421 |
msgstr "Scripts"
|
422 |
|
423 |
-
# @ coming-soon
|
424 |
#: inc/config-settings.php:366
|
425 |
msgid "Header Scripts"
|
426 |
-
msgstr "Scripts
|
427 |
|
428 |
-
# @ coming-soon
|
429 |
#: inc/config-settings.php:367
|
430 |
msgid ""
|
431 |
"Enter any custom scripts. You can enter Javascript or CSS. This will be "
|
432 |
"rendered before the closing head tag."
|
433 |
msgstr ""
|
434 |
-
"Digite
|
435 |
-
"
|
436 |
|
437 |
-
# @ coming-soon
|
438 |
#: inc/config-settings.php:374
|
439 |
msgid "Footer Scripts"
|
440 |
-
msgstr "
|
441 |
|
442 |
-
# @ coming-soon
|
443 |
#: inc/config-settings.php:375
|
444 |
msgid ""
|
445 |
"Enter any custom scripts. This will be rendered before the closing body tag."
|
446 |
msgstr ""
|
447 |
-
"Digite
|
448 |
-
"fechar a tag
|
449 |
-
|
450 |
-
# @ coming-soon
|
451 |
-
#. translators: plugin header field 'Name'
|
452 |
-
#: coming-soon.php:0 coming-soon.php:22 framework/framework.php:116
|
453 |
-
#: framework/framework.php:117 inc/config-settings.php:22
|
454 |
-
msgid "Coming Soon"
|
455 |
-
msgstr "Em Breve"
|
456 |
-
|
457 |
-
# @ coming-soon
|
458 |
-
#. translators: plugin header field 'PluginURI'
|
459 |
-
#. translators: plugin header field 'AuthorURI'
|
460 |
-
#: coming-soon.php:0
|
461 |
-
msgid "http://www.seedprod.com"
|
462 |
-
msgstr "http://www.seedprod.com"
|
463 |
-
|
464 |
-
# @ coming-soon
|
465 |
-
#. translators: plugin header field 'Description'
|
466 |
-
#: coming-soon.php:0
|
467 |
-
msgid "Coming Soon, Maintenance Mode pages in minutes"
|
468 |
-
msgstr "Páginas de Em Breve e Modo de Manutenção em minutos"
|
469 |
-
|
470 |
-
# @ coming-soon
|
471 |
-
#. translators: plugin header field 'Author'
|
472 |
-
#: coming-soon.php:0
|
473 |
-
msgid "SeedProd"
|
474 |
-
msgstr "SeedProd"
|
475 |
-
|
476 |
-
# @ coming-soon
|
477 |
-
#. translators: plugin header field 'Version'
|
478 |
-
#: coming-soon.php:0
|
479 |
-
msgid "4.0.3"
|
480 |
-
msgstr "4.0.3"
|
481 |
-
|
482 |
-
# @ coming-soon
|
483 |
-
#: framework/field-types/customsocialfollow.php:23
|
484 |
-
msgid ""
|
485 |
-
"Enter your social profile url's. Drag & Drop the icons to reorder. "
|
486 |
-
"Remember to save your changes. <a href='https://seedprod.zendesk.com/"
|
487 |
-
"entries/21778652-adding-custom-icons' target='_blank'>Learn how to add your "
|
488 |
-
"own custom icons</a>."
|
489 |
-
msgstr ""
|
490 |
-
"Digite a url do seu perfil social. Arraste e solte os ícones para reordenar. "
|
491 |
-
"Lembre-se de salvar as alterações. <a href='https://seedprod.zendesk.com/"
|
492 |
-
"entries/21778652-adding-custom-icons' target='_blank'>Saiba como adicionar "
|
493 |
-
"seus próprios ícones personalizados</a>."
|
494 |
-
|
495 |
-
# @ coming-soon
|
496 |
-
#: framework/field-types/daterange.php:22
|
497 |
-
msgid "Start Date"
|
498 |
-
msgstr "Data do Início"
|
499 |
-
|
500 |
-
# @ coming-soon
|
501 |
-
#: framework/field-types/daterange.php:35
|
502 |
-
msgid "End Date"
|
503 |
-
msgstr "Data de Término"
|
504 |
-
|
505 |
-
# @ coming-soon
|
506 |
-
#: framework/framework.php:179
|
507 |
-
msgid "Upgrade to the Pro Version"
|
508 |
-
msgstr "Atualize para a Versão Pro!"
|
509 |
-
|
510 |
-
# @ coming-soon
|
511 |
-
#: framework/framework.php:234 framework/framework.php:283
|
512 |
-
#: framework/framework.php:498
|
513 |
-
msgid "Save All Changes"
|
514 |
-
msgstr "Salvar Todas as Alterações"
|
515 |
-
|
516 |
-
# @ coming-soon
|
517 |
-
#: framework/framework.php:236 framework/framework.php:284
|
518 |
-
msgid "Reset Settings"
|
519 |
-
msgstr "Redefinir Configurações"
|
520 |
-
|
521 |
-
# @ coming-soon
|
522 |
-
#: framework/framework.php:302
|
523 |
-
msgid ""
|
524 |
-
"This tabs settings be deleted and reset to the defaults. Are you sure you "
|
525 |
-
"want to reset?"
|
526 |
-
msgstr ""
|
527 |
-
"Estas definições de abas serão excluídas e redefinidas para os valores "
|
528 |
-
"padrão. Tem certeza de que deseja redefinir?"
|
529 |
-
|
530 |
-
# @ coming-soon
|
531 |
-
#: inc/class-seed-csp4.php:144
|
532 |
-
msgid "Please enter your settings."
|
533 |
-
msgstr "Por favor, Informe suas configurações."
|
534 |
-
|
535 |
-
# @ coming-soon
|
536 |
-
#: inc/config-settings.php:33 inc/config-settings.php:249
|
537 |
-
msgid "Content"
|
538 |
-
msgstr "Conteúdo"
|
539 |
-
|
540 |
-
# @ coming-soon
|
541 |
-
#: inc/config-settings.php:94
|
542 |
-
msgid "Enter a headline for your page."
|
543 |
-
msgstr "Informe a Manchete da sua página"
|
544 |
-
|
545 |
-
# @ coming-soon
|
546 |
-
#: inc/config-settings.php:100
|
547 |
-
msgid "Message"
|
548 |
-
msgstr "Mensagem"
|
549 |
-
|
550 |
-
# @ coming-soon
|
551 |
-
#: inc/config-settings.php:101
|
552 |
-
msgid "Tell the visitor what to expect from your site."
|
553 |
-
msgstr "Diga ao visitante o que esperar de seu site o."
|
554 |
-
|
555 |
-
# @ ultimate-coming-soon-page
|
556 |
-
#: inc/config-settings.php:107
|
557 |
-
msgid "Powered By SeedProd"
|
558 |
-
msgstr "Movido por SeedProd"
|
559 |
-
|
560 |
-
# @ coming-soon
|
561 |
-
#: inc/config-settings.php:108
|
562 |
-
msgid "Nope - Got No Love"
|
563 |
-
msgstr "Não - Sem Amor"
|
564 |
-
|
565 |
-
# @ coming-soon
|
566 |
-
#: inc/config-settings.php:108
|
567 |
-
msgid "Yep - I Love You Man"
|
568 |
-
msgstr "Sim - Te Amo Cara!"
|
569 |
-
|
570 |
-
# @ coming-soon
|
571 |
-
#: inc/config-settings.php:109
|
572 |
-
msgid ""
|
573 |
-
"Can we show a <strong>cool stylish</strong> footer credit at the bottom the "
|
574 |
-
"page."
|
575 |
-
msgstr ""
|
576 |
-
"Podemos mostrar créditos <strong>legais e elegantes</strong> do rodapé na "
|
577 |
-
"parte inferior da página."
|
578 |
-
|
579 |
-
# @ coming-soon
|
580 |
-
#: inc/config-settings.php:147
|
581 |
-
msgid ""
|
582 |
-
"Paste in your Universal or Classic <a href=\"http://www.google.com/analytics/"
|
583 |
-
"\" target=\"_blank\">Google Analytics</a> code."
|
584 |
-
msgstr ""
|
585 |
-
"Cole no seu código Universal ou Clássico do <a href=\"http://www.google.com/"
|
586 |
-
"analytics/\" target=\"_blank\">Google Analytics</a> ."
|
587 |
-
|
588 |
-
# @ coming-soon
|
589 |
-
#: inc/config-settings.php:194
|
590 |
-
msgid "Responsive Background"
|
591 |
-
msgstr "Fundo Responsivo"
|
592 |
-
|
593 |
-
# @ coming-soon
|
594 |
-
#: inc/config-settings.php:195
|
595 |
-
msgid ""
|
596 |
-
"Scale the background image to be as large as possible so that the background "
|
597 |
-
"area is completely covered by the background image. Some parts of the "
|
598 |
-
"background image may not be in view within the background positioning area."
|
599 |
-
msgstr ""
|
600 |
-
"Redimensione a imagem de fundo para que seja tão grande quanto possível, "
|
601 |
-
"para que a área de fundo fique completamente coberta pela imagem de fundo. "
|
602 |
-
"Algumas partes da imagem de fundo podem não ser exibidas dentro do plano de "
|
603 |
-
"fundo de área de posicionamento."
|
604 |
-
|
605 |
-
# @ coming-soon
|
606 |
-
#: inc/config-settings.php:205 inc/config-settings.php:219
|
607 |
-
#: inc/config-settings.php:237
|
608 |
-
msgid "This setting is not applied if Responsive Background is checked"
|
609 |
-
msgstr ""
|
610 |
-
"Essa configuração não será aplicada se fundo responsivo estiver selecionado"
|
611 |
-
|
612 |
-
# @ coming-soon
|
613 |
-
#: inc/config-settings.php:256
|
614 |
-
msgid "Max Width"
|
615 |
-
msgstr "Largura Máxima"
|
616 |
-
|
617 |
-
# @ coming-soon
|
618 |
-
#: inc/config-settings.php:257
|
619 |
-
msgid ""
|
620 |
-
"By default the max width of the content is set to 600px. Enter a number "
|
621 |
-
"value if you need it bigger. Example: 900"
|
622 |
-
msgstr ""
|
623 |
-
"Por padrão, a largura máxima do conteúdo é definida como 600px. Digite um "
|
624 |
-
"valor numérico se precisar maior. Ex: 900"
|
625 |
-
|
626 |
-
# @ coming-soon
|
627 |
-
#: inc/config-settings.php:262
|
628 |
-
msgid "Enable Well"
|
629 |
-
msgstr "Habilitar Poço"
|
630 |
-
|
631 |
-
# @ coming-soon
|
632 |
-
#: inc/config-settings.php:263
|
633 |
-
msgid "This will wrap your content in a box."
|
634 |
-
msgstr "Isto irá envolver seu conteúdo em uma caixa."
|
635 |
-
|
636 |
-
# @ coming-soon
|
637 |
-
#: inc/config-settings.php:289
|
638 |
-
msgid "Link Color"
|
639 |
-
msgstr "Cor dos Links"
|
640 |
-
|
641 |
-
# @ coming-soon
|
642 |
-
#: inc/config-settings.php:300
|
643 |
-
msgid "If no Headline Color is chosen then the Link Color will be used. "
|
644 |
-
msgstr ""
|
645 |
-
"Se nenhuma Cor da Manchete for escolhida então a Cor dos Links será usada. "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Coming Soon Pro by SeedProd\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-01-27 21:24-0500\n"
|
6 |
+
"PO-Revision-Date: 2015-02-17 17:55-0300\n"
|
7 |
+
"Last-Translator: Mauro Mascarenhas <mauro.mascarenhas@nintersoft.ml>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __\n"
|
|
|
|
|
|
|
|
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
+
"X-Generator: Poedit 1.7.1\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
16 |
"Language: pt_BR\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: coming-soon.php:22 framework/framework.php:116 framework/framework.php:117
|
20 |
+
#: inc/config-settings.php:22
|
21 |
+
msgid "Coming Soon"
|
22 |
+
msgstr "Em breve"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
|
|
24 |
#: framework/field-types/date.php:8 framework/field-types/daterange.php:8
|
25 |
msgid "01-Jan"
|
26 |
msgstr "01-Jan"
|
27 |
|
|
|
28 |
#: framework/field-types/date.php:9 framework/field-types/daterange.php:9
|
29 |
msgid "02-Feb"
|
30 |
msgstr "02-Fev"
|
31 |
|
|
|
32 |
#: framework/field-types/date.php:10 framework/field-types/daterange.php:10
|
33 |
msgid "03-Mar"
|
34 |
msgstr "03-Mar"
|
35 |
|
|
|
36 |
#: framework/field-types/date.php:11 framework/field-types/daterange.php:11
|
37 |
msgid "04-Apr"
|
38 |
msgstr "04-Abr"
|
39 |
|
|
|
40 |
#: framework/field-types/date.php:12 framework/field-types/daterange.php:12
|
41 |
msgid "05-May"
|
42 |
msgstr "05-Mai"
|
43 |
|
|
|
44 |
#: framework/field-types/date.php:13 framework/field-types/daterange.php:13
|
45 |
msgid "06-Jun"
|
46 |
msgstr "06-Jun"
|
47 |
|
|
|
48 |
#: framework/field-types/date.php:14 framework/field-types/daterange.php:14
|
49 |
msgid "07-Jul"
|
50 |
msgstr "07-Jul"
|
51 |
|
|
|
52 |
#: framework/field-types/date.php:15 framework/field-types/daterange.php:15
|
53 |
msgid "08-Aug"
|
54 |
msgstr "08-Ago"
|
55 |
|
|
|
56 |
#: framework/field-types/date.php:16 framework/field-types/daterange.php:16
|
57 |
msgid "09-Sep"
|
58 |
msgstr "09-Set"
|
59 |
|
|
|
60 |
#: framework/field-types/date.php:17 framework/field-types/daterange.php:17
|
61 |
msgid "10-Oct"
|
62 |
msgstr "10-Out"
|
63 |
|
|
|
64 |
#: framework/field-types/date.php:18 framework/field-types/daterange.php:18
|
65 |
msgid "11-Nov"
|
66 |
msgstr "11-Nov"
|
67 |
|
|
|
68 |
#: framework/field-types/date.php:19 framework/field-types/daterange.php:19
|
69 |
msgid "12-Dec"
|
70 |
msgstr "12-Dez"
|
71 |
|
|
|
72 |
#: framework/field-types/date.php:29 framework/field-types/daterange.php:29
|
73 |
#: framework/field-types/daterange.php:42
|
74 |
msgid "day"
|
75 |
msgstr "dia"
|
76 |
|
|
|
77 |
#: framework/field-types/date.php:32 framework/field-types/daterange.php:32
|
78 |
#: framework/field-types/daterange.php:45
|
79 |
msgid "year"
|
80 |
msgstr "ano"
|
81 |
|
|
|
82 |
#: framework/field-types/upload.php:12
|
83 |
msgid "Media Image Library"
|
84 |
+
msgstr "Biblioteca de mídia de imagens"
|
85 |
+
|
86 |
+
#: framework/framework.php:77
|
87 |
+
msgid "Settings reset."
|
88 |
+
msgstr "Redefini configurações."
|
89 |
+
|
90 |
+
#: framework/framework.php:177
|
91 |
+
msgid "← Close Window"
|
92 |
+
msgstr "← Fechar janela"
|
93 |
+
|
94 |
+
#: framework/framework.php:177
|
95 |
+
msgid "Live Preview"
|
96 |
+
msgstr "Visualização"
|
97 |
+
|
98 |
+
#: framework/framework.php:179
|
99 |
+
msgid "Upgrade to the Pro Version"
|
100 |
+
msgstr "Atualizar para a versão Pro"
|
101 |
|
|
|
102 |
#: framework/validations/color.php:13
|
103 |
msgid "Please enter a valid color value."
|
104 |
+
msgstr "Por favor digite um valor válido de cor."
|
105 |
|
|
|
106 |
#: framework/validations/email.php:10 framework/validations/escurlraw.php:11
|
107 |
msgid "Please enter a valid email."
|
108 |
+
msgstr "Por favor digite um e-mail válido."
|
109 |
|
|
|
110 |
#: framework/validations/number.php:11
|
111 |
msgid "Please enter a valid number."
|
112 |
+
msgstr "Por favor digite um número válido."
|
113 |
|
|
|
114 |
#: framework/validations/required.php:10
|
115 |
msgid "is required."
|
116 |
+
msgstr "é necessário."
|
117 |
|
|
|
118 |
#: inc/class-seed-csp4.php:80
|
119 |
msgid "Coming Soon Mode Active"
|
120 |
+
msgstr "Modo \"Em breve\" ativo"
|
121 |
|
|
|
122 |
#: inc/class-seed-csp4.php:82
|
123 |
msgid "Maintenance Mode Active"
|
124 |
+
msgstr "Modo de manutenção ativo"
|
125 |
+
|
126 |
+
#: inc/class-seed-csp4.php:144
|
127 |
+
msgid "Please enter your settings."
|
128 |
+
msgstr "Por favor digite suas configurações."
|
129 |
+
|
130 |
+
#: inc/config-settings.php:33 inc/config-settings.php:249
|
131 |
+
msgid "Content"
|
132 |
+
msgstr "Conteúdo"
|
133 |
|
|
|
134 |
#: inc/config-settings.php:44
|
135 |
msgid "General"
|
136 |
msgstr "Geral"
|
137 |
|
|
|
138 |
#: inc/config-settings.php:50
|
139 |
msgid "Status"
|
140 |
+
msgstr "Estado"
|
141 |
|
|
|
142 |
#: inc/config-settings.php:52
|
143 |
msgid "Disabled"
|
144 |
+
msgstr "Desativado"
|
145 |
|
|
|
146 |
#: inc/config-settings.php:53
|
147 |
msgid "Enable Coming Soon Mode"
|
148 |
+
msgstr "Ativar modo \"Em breve\""
|
149 |
|
|
|
150 |
#: inc/config-settings.php:54
|
151 |
msgid "Enable Maintenance Mode"
|
152 |
+
msgstr "Ativar modo de manutenção"
|
153 |
|
|
|
154 |
#: inc/config-settings.php:56
|
155 |
msgid ""
|
156 |
"When you are logged in you'll see your normal website. Logged out visitors "
|
158 |
"available to search engines if your site is not private. Maintenance Mode "
|
159 |
"will notify search engines that the site is unavailable."
|
160 |
msgstr ""
|
161 |
+
"Quando você estiver conectado você verá o site normalmente. Visitantes "
|
162 |
+
"desconectados verão a página de manutenção ao \"Em breve\". O modo \"Em breve"
|
163 |
+
"\" estará disponível nos mecanismos de pesquisas se seu site não for "
|
164 |
+
"privado. O modo de manutenção notificará os mecanismos de busca que seu site "
|
165 |
+
"está indisponível."
|
166 |
|
|
|
167 |
#: inc/config-settings.php:66
|
168 |
msgid "Use maintenance.php"
|
169 |
+
msgstr "Usar mainternance.php"
|
170 |
|
|
|
171 |
#: inc/config-settings.php:67
|
172 |
msgid ""
|
173 |
"maintenance.php detected, would you like to use this for your maintenance "
|
174 |
"page?"
|
175 |
msgstr ""
|
176 |
+
"mainternance.php detectado, você gostaria de usá-la para sua página de "
|
177 |
"manutenção?"
|
178 |
|
|
|
179 |
#: inc/config-settings.php:69 inc/config-settings.php:197
|
180 |
#: inc/config-settings.php:265
|
181 |
msgid "Yes"
|
182 |
msgstr "Sim"
|
183 |
|
|
|
184 |
#: inc/config-settings.php:79
|
185 |
msgid "Page Settings"
|
186 |
+
msgstr "Configurações de página"
|
187 |
|
|
|
188 |
#: inc/config-settings.php:85
|
189 |
msgid "Logo"
|
190 |
+
msgstr "Logotipo"
|
191 |
|
|
|
192 |
#: inc/config-settings.php:86
|
193 |
msgid "Upload a logo or teaser image (or) enter the url to your image."
|
194 |
msgstr ""
|
195 |
+
"Carregue um logotipo ou uma imagem chamativa ou ainda a URL para a sua "
|
196 |
"imagem."
|
197 |
|
|
|
198 |
#: inc/config-settings.php:93
|
199 |
msgid "Headline"
|
200 |
+
msgstr "Linha de título"
|
201 |
+
|
202 |
+
#: inc/config-settings.php:94
|
203 |
+
msgid "Enter a headline for your page."
|
204 |
+
msgstr "Digite uma linha de cabeçalho para sua página."
|
205 |
+
|
206 |
+
#: inc/config-settings.php:100
|
207 |
+
msgid "Message"
|
208 |
+
msgstr "Mensagem"
|
209 |
+
|
210 |
+
#: inc/config-settings.php:101
|
211 |
+
msgid "Tell the visitor what to expect from your site."
|
212 |
+
msgstr "Avise ao visitante o que esperar de seu site."
|
213 |
+
|
214 |
+
#: inc/config-settings.php:107
|
215 |
+
msgid "Powered By SeedProd"
|
216 |
+
msgstr "Feito com SeedProd"
|
217 |
+
|
218 |
+
#: inc/config-settings.php:108
|
219 |
+
msgid "Nope - Got No Love"
|
220 |
+
msgstr "Não - Eu não gostei"
|
221 |
+
|
222 |
+
#: inc/config-settings.php:108
|
223 |
+
msgid "Yep - I Love You Man"
|
224 |
+
msgstr "Sim - Eu amo cara"
|
225 |
+
|
226 |
+
#: inc/config-settings.php:109
|
227 |
+
msgid ""
|
228 |
+
"Can we show a <strong>cool stylish</strong> footer credit at the bottom the "
|
229 |
+
"page."
|
230 |
+
msgstr ""
|
231 |
+
"Podemos mostrar um crédito de rodapé <strong>estiloso</strong> em sua página?"
|
232 |
|
|
|
233 |
#: inc/config-settings.php:118
|
234 |
msgid "Header"
|
235 |
msgstr "Cabeçalho"
|
236 |
|
|
|
237 |
#: inc/config-settings.php:124
|
238 |
msgid "Favicon"
|
239 |
msgstr "Favicon"
|
240 |
|
|
|
241 |
#: inc/config-settings.php:125
|
242 |
msgid ""
|
243 |
"Favicons are displayed in a browser tab. Need Help <a href=\"http://tools."
|
244 |
"dynamicdrive.com/favicon/\" target=\"_blank\">creating a favicon</a>?"
|
245 |
msgstr ""
|
246 |
+
"Os favicons são mostrados na aba do navegador. Necessita de ajuda ao <a href="
|
247 |
"\"http://tools.dynamicdrive.com/favicon/\" target=\"_blank\">criar um "
|
248 |
"favicon</a>?"
|
249 |
|
|
|
250 |
#: inc/config-settings.php:131
|
251 |
msgid "SEO Title"
|
252 |
msgstr "Título do SEO"
|
253 |
|
|
|
254 |
#: inc/config-settings.php:137
|
255 |
msgid "SEO Meta Description"
|
256 |
+
msgstr "Descrição Meta SEO"
|
257 |
|
|
|
258 |
#: inc/config-settings.php:146
|
259 |
msgid "Analytics Code"
|
260 |
msgstr "Código do Analytics"
|
261 |
|
262 |
+
#: inc/config-settings.php:147
|
263 |
+
msgid ""
|
264 |
+
"Paste in your Universal or Classic <a href=\"http://www.google.com/analytics/"
|
265 |
+
"\" target=\"_blank\">Google Analytics</a> code."
|
266 |
+
msgstr ""
|
267 |
+
"Cole em seu Universal ou Clássico código <a href=\"http://www.google.com/"
|
268 |
+
"analytics/\" target=\"_blank\">Google Analytics</a>."
|
269 |
+
|
270 |
#: inc/config-settings.php:157
|
271 |
msgid "Design"
|
272 |
msgstr "Design"
|
273 |
|
|
|
274 |
#: inc/config-settings.php:170
|
275 |
msgid "Background"
|
276 |
+
msgstr "Plano de fundo"
|
277 |
|
|
|
278 |
#: inc/config-settings.php:177
|
279 |
msgid "Background Color"
|
280 |
+
msgstr "Cor do plano de fundo"
|
281 |
|
|
|
282 |
#: inc/config-settings.php:180
|
283 |
msgid ""
|
284 |
"Choose between having a solid color background or uploading an image. By "
|
285 |
"default images will cover the entire background."
|
286 |
msgstr ""
|
287 |
+
"Escolha entre ter uma cor de plano de fundo sólida ou carregar uma imagem. "
|
288 |
+
"Por padrão as imagens cobrirão todo o plano de fundo."
|
289 |
|
|
|
290 |
#: inc/config-settings.php:188
|
291 |
msgid "Background Image"
|
292 |
+
msgstr "Imagem de plano de fundo"
|
293 |
+
|
294 |
+
#: inc/config-settings.php:194
|
295 |
+
msgid "Responsive Background"
|
296 |
+
msgstr "Plano de fundo responsivo"
|
297 |
+
|
298 |
+
#: inc/config-settings.php:195
|
299 |
+
msgid ""
|
300 |
+
"Scale the background image to be as large as possible so that the background "
|
301 |
+
"area is completely covered by the background image. Some parts of the "
|
302 |
+
"background image may not be in view within the background positioning area."
|
303 |
+
msgstr ""
|
304 |
+
"Ajustar a imagem de plano de fundo para ser o mais largo possível, então a "
|
305 |
+
"área de plano de fundo será coberta completamente pela imagem de plano de "
|
306 |
+
"fundo. Algumas partes da imagem de plano de fundo pode não estar em visão "
|
307 |
+
"com a área de posicionamento do plano de fundo."
|
308 |
+
|
309 |
+
#: inc/config-settings.php:205 inc/config-settings.php:219
|
310 |
+
#: inc/config-settings.php:237
|
311 |
+
msgid "This setting is not applied if Responsive Background is checked"
|
312 |
+
msgstr ""
|
313 |
+
"Esta configuração não está aplicada se o plano de fundo responsivo estiver "
|
314 |
+
"ativado"
|
315 |
|
|
|
316 |
#: inc/config-settings.php:206
|
317 |
msgid "Background Repeat"
|
318 |
+
msgstr "Repetição de plano de fundo"
|
319 |
|
|
|
320 |
#: inc/config-settings.php:208
|
321 |
msgid "No-Repeat"
|
322 |
+
msgstr "Não repetir"
|
323 |
|
|
|
324 |
#: inc/config-settings.php:209
|
325 |
msgid "Tile"
|
326 |
+
msgstr "Título"
|
327 |
|
|
|
328 |
#: inc/config-settings.php:210
|
329 |
msgid "Tile Horizontally"
|
330 |
+
msgstr "Título horizontalmente"
|
331 |
|
|
|
332 |
#: inc/config-settings.php:211
|
333 |
msgid "Tile Vertically"
|
334 |
+
msgstr "Título Verticalmente"
|
335 |
|
|
|
336 |
#: inc/config-settings.php:220
|
337 |
msgid "Background Position"
|
338 |
+
msgstr "Posição de plano de fundo"
|
339 |
|
|
|
340 |
#: inc/config-settings.php:222
|
341 |
msgid "Left Top"
|
342 |
+
msgstr "Esquerda superior"
|
343 |
|
|
|
344 |
#: inc/config-settings.php:223
|
345 |
msgid "Left Center"
|
346 |
+
msgstr "Esquerda central"
|
347 |
|
|
|
348 |
#: inc/config-settings.php:224
|
349 |
msgid "Left Bottom"
|
350 |
+
msgstr "Esquerda inferior"
|
351 |
|
|
|
352 |
#: inc/config-settings.php:225
|
353 |
msgid "Right Top"
|
354 |
+
msgstr "Direita superior"
|
355 |
|
|
|
356 |
#: inc/config-settings.php:226
|
357 |
msgid "Right Center"
|
358 |
+
msgstr "Direita central"
|
359 |
|
|
|
360 |
#: inc/config-settings.php:227
|
361 |
msgid "Right Bottom"
|
362 |
+
msgstr "Direita inferior"
|
363 |
|
|
|
364 |
#: inc/config-settings.php:228
|
365 |
msgid "Center Top"
|
366 |
+
msgstr "Centro superior"
|
367 |
|
|
|
368 |
#: inc/config-settings.php:229
|
369 |
msgid "Center Center"
|
370 |
+
msgstr "Centro central"
|
371 |
|
|
|
372 |
#: inc/config-settings.php:230
|
373 |
msgid "Center Bottom"
|
374 |
+
msgstr "Centro inferior"
|
375 |
|
|
|
376 |
#: inc/config-settings.php:238
|
377 |
msgid "Background Attachment"
|
378 |
+
msgstr "Anexo de plano de fundo"
|
379 |
|
|
|
380 |
#: inc/config-settings.php:240
|
381 |
msgid "Fixed"
|
382 |
+
msgstr "Fixado"
|
383 |
|
|
|
384 |
#: inc/config-settings.php:241
|
385 |
msgid "Scroll"
|
386 |
+
msgstr "Deslizar"
|
387 |
+
|
388 |
+
#: inc/config-settings.php:256
|
389 |
+
msgid "Max Width"
|
390 |
+
msgstr "Largura máxima"
|
391 |
+
|
392 |
+
#: inc/config-settings.php:257
|
393 |
+
msgid ""
|
394 |
+
"By default the max width of the content is set to 600px. Enter a number "
|
395 |
+
"value if you need it bigger. Example: 900"
|
396 |
+
msgstr ""
|
397 |
+
"Por padrão a largura máxima do conteúdo é definido 600px. Digite um valor "
|
398 |
+
"numérico se você necessita disto maior. Exemplo: 900"
|
399 |
+
|
400 |
+
#: inc/config-settings.php:262
|
401 |
+
msgid "Enable Well"
|
402 |
+
msgstr "Ativar roda"
|
403 |
+
|
404 |
+
#: inc/config-settings.php:263
|
405 |
+
msgid "This will wrap your content in a box."
|
406 |
+
msgstr "Isto irá ajustar seu conteúdo em uma caixa."
|
407 |
|
|
|
408 |
#: inc/config-settings.php:275
|
409 |
msgid "Text"
|
410 |
msgstr "Texto"
|
411 |
|
|
|
412 |
#: inc/config-settings.php:281
|
413 |
msgid "Text Color"
|
414 |
+
msgstr "Cor do texto"
|
415 |
+
|
416 |
+
#: inc/config-settings.php:289
|
417 |
+
msgid "Link Color"
|
418 |
+
msgstr "Cor do enlace"
|
419 |
|
|
|
420 |
#: inc/config-settings.php:297
|
421 |
msgid "Headline Color"
|
422 |
+
msgstr "Cor do título do cabeçalho"
|
423 |
+
|
424 |
+
#: inc/config-settings.php:300
|
425 |
+
msgid "If no Headline Color is chosen then the Link Color will be used. "
|
426 |
+
msgstr ""
|
427 |
+
"Se não houver cor escolhida para a linha de cabeçalho então a cor de enlaces "
|
428 |
+
"será usada. "
|
429 |
|
|
|
430 |
#: inc/config-settings.php:308
|
431 |
msgid "Text Font"
|
432 |
+
msgstr "Fonte do texto"
|
433 |
|
|
|
434 |
#: inc/config-settings.php:329
|
435 |
msgid "Template"
|
436 |
msgstr "Modelo"
|
437 |
|
|
|
438 |
#: inc/config-settings.php:337
|
439 |
msgid "Custom CSS"
|
440 |
+
msgstr "CSS personalizado"
|
441 |
|
|
|
442 |
#: inc/config-settings.php:338
|
443 |
msgid "Need to tweaks the styles? Add your custom CSS here."
|
444 |
+
msgstr ""
|
445 |
+
"Necessita de truques para os estilos? Adicione um CSS personalizado aqui."
|
446 |
|
|
|
447 |
#: inc/config-settings.php:347
|
448 |
msgid "Advanced"
|
449 |
+
msgstr "Avançado"
|
450 |
|
|
|
451 |
#: inc/config-settings.php:360
|
452 |
msgid "Scripts"
|
453 |
msgstr "Scripts"
|
454 |
|
|
|
455 |
#: inc/config-settings.php:366
|
456 |
msgid "Header Scripts"
|
457 |
+
msgstr "Scripts do cabeçalho"
|
458 |
|
|
|
459 |
#: inc/config-settings.php:367
|
460 |
msgid ""
|
461 |
"Enter any custom scripts. You can enter Javascript or CSS. This will be "
|
462 |
"rendered before the closing head tag."
|
463 |
msgstr ""
|
464 |
+
"Digite qualquer script personalizado. Você pode digitar JavaScript ou CSS. "
|
465 |
+
"Isto será renderizado antes de fechar a tag cabeçalho."
|
466 |
|
|
|
467 |
#: inc/config-settings.php:374
|
468 |
msgid "Footer Scripts"
|
469 |
+
msgstr "Scripts do rodapé"
|
470 |
|
|
|
471 |
#: inc/config-settings.php:375
|
472 |
msgid ""
|
473 |
"Enter any custom scripts. This will be rendered before the closing body tag."
|
474 |
msgstr ""
|
475 |
+
"Digite qualquer script personalizado. Você pode digitar JavaScript ou CSS. "
|
476 |
+
"Isto será renderizado antes de fechar a tag corpo."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|