summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2015-05-01 00:40:49 +0000
committerJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2015-05-01 00:40:49 +0000
commitc64ce3ae8de09092f9570ab88a68fe920b0fd970 (patch)
treea9959002055a8bdff0ee46bf82ca6a2a39bf00cd /themes
parentAdd easy-table plugin, requested by hwoarang (diff)
downloadblogs-gentoo-c64ce3ae8de09092f9570ab88a68fe920b0fd970.tar.gz
blogs-gentoo-c64ce3ae8de09092f9570ab88a68fe920b0fd970.tar.bz2
blogs-gentoo-c64ce3ae8de09092f9570ab88a68fe920b0fd970.zip
Update plugins and themes to the latest versions.
Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>
Diffstat (limited to 'themes')
-rw-r--r--themes/mantra/admin/admin-functions.php16
-rw-r--r--themes/mantra/admin/css/admin.css89
-rw-r--r--themes/mantra/admin/custom-styles.php7
-rw-r--r--themes/mantra/admin/defaults.php22
-rw-r--r--themes/mantra/admin/images/mantra-logo.pngbin10900 -> 9168 bytes
-rw-r--r--themes/mantra/admin/js/admin.js56
-rw-r--r--themes/mantra/admin/main.php18
-rw-r--r--themes/mantra/admin/sanitize.php33
-rw-r--r--themes/mantra/admin/settings.php21
-rw-r--r--themes/mantra/attachment.php1
-rw-r--r--themes/mantra/content-frontpage.php3
-rw-r--r--themes/mantra/editor-style.css6
-rw-r--r--themes/mantra/functions.php2
-rw-r--r--themes/mantra/images/socials/Steam.pngbin0 -> 2807 bytes
-rw-r--r--themes/mantra/includes/theme-frontpage.php171
-rw-r--r--themes/mantra/includes/theme-functions.php100
-rw-r--r--themes/mantra/includes/theme-loop.php2
-rw-r--r--themes/mantra/includes/theme-seo.php8
-rw-r--r--themes/mantra/includes/theme-setup.php5
-rw-r--r--themes/mantra/includes/theme-shortcodes.php10
-rw-r--r--themes/mantra/includes/theme-styles.php9
-rw-r--r--themes/mantra/js/frontend.js10
-rw-r--r--themes/mantra/js/mce-shortcodes.js10
-rw-r--r--themes/mantra/languages/_mantra.mobin416 -> 443 bytes
-rw-r--r--themes/mantra/languages/_mantra.po4084
-rw-r--r--themes/mantra/languages/cs_CZ.mobin0 -> 46876 bytes
-rw-r--r--themes/mantra/languages/cs_CZ.po2611
-rw-r--r--themes/mantra/languages/fr_FR.mobin47198 -> 58536 bytes
-rw-r--r--themes/mantra/languages/fr_FR.po2230
-rw-r--r--themes/mantra/readme.txt1
-rw-r--r--themes/mantra/screenshot.pngbin69529 -> 408491 bytes
-rw-r--r--themes/mantra/sidebar.php57
-rw-r--r--themes/mantra/style-mobile.css223
-rw-r--r--themes/mantra/style.css270
-rw-r--r--themes/mantra/template-page-with-intro.php24
35 files changed, 6503 insertions, 3596 deletions
diff --git a/themes/mantra/admin/admin-functions.php b/themes/mantra/admin/admin-functions.php
index b361652c..890426d1 100644
--- a/themes/mantra/admin/admin-functions.php
+++ b/themes/mantra/admin/admin-functions.php
@@ -5,7 +5,7 @@
function mantra_export_options(){
- ob_clean();
+ if (ob_get_contents()) ob_clean();
/* Check authorisation */
$authorised = true;
@@ -189,4 +189,18 @@ function mantra_truncate_words($string,$words=20, $ellipsis=' ...') {
$new = preg_replace('/((\w+\W+\'*){'.($words-1).'}(\w+))(.*)/', '${1}', $string);
return $new.$ellipsis;
}
+
+// Synchronizing the tinymce width with the content width
+add_filter('tiny_mce_before_init', 'mantra_dynamic_editor_styles', 10);
+function mantra_dynamic_editor_styles($settings){
+ $settings['content_css'] .= ",".admin_url('admin-ajax.php') ."/?action=dynamic_styles";
+ return $settings;
+}
+
+// add wp_ajax callback
+add_action('wp_ajax_dynamic_styles', 'mantra_dynamic_styles_callback');
+function mantra_dynamic_styles_callback(){
+ global $mantra_options;
+ echo "html .mceContentBody , .mceContentBody img {max-width:".$mantra_options['mantra_sidewidth']."px;}";
+}
?> \ No newline at end of file
diff --git a/themes/mantra/admin/css/admin.css b/themes/mantra/admin/css/admin.css
index 1be4cb73..e278867f 100644
--- a/themes/mantra/admin/css/admin.css
+++ b/themes/mantra/admin/css/admin.css
@@ -26,6 +26,10 @@ border:1px solid #CCC;
/* end of Farbtastic overwrites */
+.form-table, .form-table td, .form-table th, .form-table td p, .form-wrap label {
+font-size:13px;
+}
+
#lefty {
clear:left;
@@ -47,7 +51,6 @@ border-radius:5px;
-webkit-border-radius:5px;
*/
padding-top:10px;
-background:#FFF;
font-family: Segoe UI !important;
font-size: 12px;
margin-bottom:10px;
@@ -90,11 +93,14 @@ margin-bottom:5px;
}
#accordion {
-width:95% ;
margin:0px auto;
font-family:Segoe UI,Calibri, Arial !important;
display:block;
float:none;
+border:10px solid #FFF;
+-moz-box-sizing:border-box;
+-webkit-box-sizing:border-box;
+box-sizing:border-box;
}
#submitDiv {
@@ -117,7 +123,7 @@ color:#666;
#accordion h3 {
border:none;
background-image:none;
-background:#2C5353;
+background:#F5F5F5;
margin:0;
padding:8px;
clear:both;
@@ -127,18 +133,18 @@ font-size: 17px ;
padding-left:30px ;
font-weight:normal;
text-transform:uppercase;
-color:#F5F5F5;
-border-top:1px solid #4C7373;
-border-bottom:1px solid #0C3333;
+color:#555;
+border-top:1px solid #FFF;
+border-bottom:1px solid #E5E5E5;
line-height: 1.3;
-moz-border-radius:0;
-webkit-border-radius:0;
border-radius:0;
-transition:background ease-in-out .2s;
+transition:background ease .3s;
}
#accordion h3:hover {
-background:#3C6363;
+background:#FFF;
}
#accordion select option {
@@ -146,13 +152,21 @@ font-size:1.1em;
}
.form-table th, .form-wrap label {
- color: #222 !important;
-font-size: 16px;
+ color: #444 !important;
+font-size: 15px;
font-weight:normal;
+text-transform:uppercase;
+background:#F7F7F7;
+border-bottom:1px solid #FFF;
+padding:10px;
}
.form-table tr {
-border-bottom:1px dashed #DDD;
+border-bottom:1px solid #F7F7F7;
+}
+
+.form-table tr:last-child {
+border-bottom:none;
}
.form-table td {
@@ -174,6 +188,7 @@ margin-right:20px;
#accordion select {
min-width:120px;
max-width:200px;
+padding:3px 5px;
}
#accordion textarea, #mantra_favicon {
@@ -316,6 +331,7 @@ opacity:1;
#accordion input[type="text"] {
font-family:"Lucida Console", Monaco, monospace !important;
font-size:12px;
+padding:6px;
}
#accordion > * {
@@ -327,19 +343,19 @@ display:block;
}
.ui-accordion-content {
-border-color:#EEE !important;
background:#FFF !important;
margin-bottom:10px !important;
-border:1px solid #DDD !important;
-border-top:none !important;
+border:none !important;
overflow: hidden;
padding:1em !important;
}
-.ui-accordion .ui-accordion-content { overflow: hidden !important; }
+.ui-accordion .ui-accordion-content { overflow: hidden !important;padding:0 !important; }
.ui-accordion .ui-accordion-content-overflow { overflow: visible !important; }
.ui-state-active {
- background:#0C3333 !important;
+ background:#444 !important;
+ color:#FFF !important;
+ border:none !important;
}
.darkbg{
@@ -383,19 +399,22 @@ margin-top:20px;}
.slmini, #cdimensions {
display:block;
float:none;
-margin:10px;
}
.slmini {
background:#F9F9F9;
-border:1px dashed #CCC;
-padding:5px;
+border-bottom:1px solid #E7E7E7;
+padding:15px 5px 15px 10px;
}
.slmini b {
width:130px;
display:inline-block;
-float:left;}
+float:left;
+text-transform:uppercase;
+font-weight:normal;
+font-style:italic;
+}
.slidebox {
background:#F7F7F7;
@@ -468,7 +487,6 @@ color:#444;
#sliderCustomSlides {margin-top:10px;}
a.upload_image_button {
-color:#C67828 !important;
text-decoration:none;
clear:both;
padding:2px 4px;
@@ -476,10 +494,26 @@ display:block;
float:none;
}
+
+.wp-core-ui .button, .wp-core-ui .button-secondary {
+background:#FFF;
+text-transform:uppercase;
+-moz-border-radius:0;
+-webkit-border-radius:0;
+border-radius:0;
+border-bottom:1px solid #555;
+}
+
+.wp-core-ui .button:hover, .wp-core-ui .button-secondary:hover {
+border-bottom:1px solid #000;
+}
+
#submitDiv input.button {
font-size:13px !important;
padding:4px 10px !important;
height:auto;
+text-transform:uppercase;
+border-bottom:3px solid #555;
}
.header_upload_inputs {
@@ -552,8 +586,8 @@ z-index:3;
float:left;
clear:both;
text-align:left;
- margin-left:90px;
- margin-top:-18px;
+ margin-left:97px;
+ margin-top:-17px;
}
#admin_links a {
@@ -564,7 +598,7 @@ margin-right:9px;
text-decoration:none;
font-family:Segoe UI, Arial;
font-size:11px;
-color:#3F5F5F;
+color:#000000;
text-transform:uppercase;
}
@@ -576,3 +610,10 @@ color:#C47D09;
margin-left: 15px; margin-right: 15px;
margin-top: 20px; }
+#jsAlert {
+margin: 0 15px 10px;
+background-color: #F4F8FA;
+border-color: #BCE8F1; border-style: solid; border-radius: 0; border-width: 0 0 0 3px;
+padding:5px 10px;
+}
+
diff --git a/themes/mantra/admin/custom-styles.php b/themes/mantra/admin/custom-styles.php
index c8a7439e..b54415f0 100644
--- a/themes/mantra/admin/custom-styles.php
+++ b/themes/mantra/admin/custom-styles.php
@@ -34,7 +34,6 @@ ob_start(); ?>
if ($mantra_dimselect=="Absolute") { ?>
#wrapper, #access, #colophon, #branding, #main { width:<?php echo ($totalwidth) ?>px ;}
-#access .menu-header, div.menu {width:<?php echo ($totalwidth-12) ?>px ;}
<?php if (is_page_template() && !is_page_template('template-blog.php') && !is_page_template('template-onecolumn.php') && !is_page_template('template-page-with-intro.php')) {
if (is_page_template("template-twocolumns-right.php") ) { ?>
@@ -245,7 +244,7 @@ $mantra_googlefontsubheader = str_replace('+',' ',preg_replace('/:.*/i','',$mant
switch ($mantra_menualign):
case "center": ?> #access ul { display: table; margin: 0 auto; } <?php break;
- case "right": ?> #access ul li { float: right; } <?php break;
+ case "right": ?> #access .menu-header, div.menu { float: right; } <?php break;
default: break;
endswitch;
@@ -258,13 +257,13 @@ endswitch;
?><?php if ($mantra_postdate == "Hide") { ?>.entry-meta span.entry-date,.entry-meta span.onDate {display:none;} <?php }
?><?php if ($mantra_postcomlink == "Hide") { ?>.entry-meta .comments-link,.entry-meta2 .comments-link{display:none;} <?php }
?><?php if ($mantra_postauthor == "Hide") { ?>.entry-meta .author {display:none;} <?php }
-?><?php if ($mantra_postcateg == "Hide") { ?>.entry-meta span.bl_categ {display:none;} <?php }
+?><?php if ($mantra_postcateg == "Hide") { ?>.entry-meta span.bl_categ, .entry-meta2 span.bl_categ {display:none;} <?php }
?><?php if ($mantra_posttag == "Hide") { ?> .entry-utility span.bl_posted, .entry-meta2 span.bl_tagg,.entry-meta3 span.bl_tagg {display:none;} <?php }
?><?php if ($mantra_postbook == "Hide") { ?> .entry-utility span.bl_bookmark {display:none;} <?php }
?><?php if ($mantra_parmargin) { ?> #content p, .entry-content ul, .entry-summary ul , .entry-content ol, .entry-summary ol { margin-bottom:<?php echo $mantra_parmargin; ?>;} <?php }
?><?php if ($mantra_parindent != "0px") { ?> p {text-indent:<?php echo $mantra_parindent;?> ;} <?php }
?><?php if ($mantra_posttime == "Hide") { ?> .entry-meta .entry-time {display:none;} <?php }
-?><?php if ($mantra_postmetas == "Hide") { ?> #content .entry-meta {display:none;} <?php }
+?><?php if ($mantra_postmetas == "Hide") { ?> #content .entry-meta, #content .entry-header div.entry-meta2 > * {display:none;} <?php }
?><?php if (($mantra_mobile == "Enable") && $mantra_hcontain) { ?> #branding{ -webkit-background-size:contain !important;-moz-background-size:contain !important;background-size:contain !important; } <?php } ?>
#branding { height:<?php echo HEADER_IMAGE_HEIGHT; ?>px ;}
<?php if ($mantra_hratio) { ?> @media (max-width: 800px) {#branding, #bg_image { min-height:inherit !important; } } <?php } ?>
diff --git a/themes/mantra/admin/defaults.php b/themes/mantra/admin/defaults.php
index 44927d29..086189cd 100644
--- a/themes/mantra/admin/defaults.php
+++ b/themes/mantra/admin/defaults.php
@@ -41,7 +41,7 @@ $mantra_defaults = array(
"mantra_sliderlink1" => "",
"mantra_sliderimg2" => get_template_directory_uri()."/images/slider/mantra-slide2.jpg",
"mantra_slidertitle2" => "This is yet another caption title",
-"mantra_slidertext2" => "And some more text to give you as an example. You can use <a href='http://www.riotreaction.com' >links</a> and other type of <b>HTML</b> <i>formats</i>.",
+"mantra_slidertext2" => "And some more text to give you as an example. You can use <a href='http://www.cryoutcreations.eu' >links</a> and other type of <b>HTML</b> <i>formats</i>.",
"mantra_sliderlink2" => "",
"mantra_sliderimg3" => "",
"mantra_slidertitle3" => "",
@@ -66,7 +66,7 @@ $mantra_defaults = array(
"mantra_columnlink1" => "",
"mantra_columnimg2" => get_template_directory_uri()."/images/slider/mantra-column.jpg",
"mantra_columntitle2" => " HTML tags",
-"mantra_columntext2" => "You can also have <a href='http://www.riotreactions.com'>links</a> here as well as some <strong>HTML tags</strong>.",
+"mantra_columntext2" => "You can also have <a href='http://www.cryoutcreations.eu'>links</a> here as well as some <strong>HTML tags</strong>.",
"mantra_columnlink2" => "",
"mantra_columnimg3" => get_template_directory_uri()."/images/slider/mantra-column.jpg",
"mantra_columntitle3" => "",
@@ -95,7 +95,7 @@ $mantra_defaults = array(
"mantra_hratio" => "",
"mantra_menurounded" => "Enable",
"mantra_logoupload" => "",
-"mantra_favicon" => "",
+"mantra_favicon" => "",
"mantra_siteheader" => "Site Title and Description",
"mantra_headermargintop" => "20",
"mantra_headermarginleft" => "40",
@@ -190,20 +190,20 @@ $mantra_defaults = array(
"mantra_fcrop" => "",
"mantra_fheader" => "Disable",
-"mantra_social1" => "",
-"mantra_social2" => "",
-"mantra_social3" => "",
-"mantra_social4" => "",
-"mantra_social5" => "",
-"mantra_social6" => "",
+"mantra_social1" => "Facebook",
+"mantra_social2" => "#",
+"mantra_social3" => "Twitter",
+"mantra_social4" => "#",
+"mantra_social5" => "RSS",
+"mantra_social6" => "#",
"mantra_social7" => "",
"mantra_social8" => "",
"mantra_social9" => "",
"mantra_social10" => "",
-"mantra_socialsdisplay0" => "",
+"mantra_socialsdisplay0" => "1",
"mantra_socialsdisplay1" => "",
"mantra_socialsdisplay2" => "",
-"mantra_socialsdisplay3" => "",
+"mantra_socialsdisplay3" => "1",
"mantra_copyright" => "",
"mantra_customcss" => "/* Mantra Custom CSS */ ",
diff --git a/themes/mantra/admin/images/mantra-logo.png b/themes/mantra/admin/images/mantra-logo.png
index 68d6c88f..4e861909 100644
--- a/themes/mantra/admin/images/mantra-logo.png
+++ b/themes/mantra/admin/images/mantra-logo.png
Binary files differ
diff --git a/themes/mantra/admin/js/admin.js b/themes/mantra/admin/js/admin.js
index 6ee51806..3978f7da 100644
--- a/themes/mantra/admin/js/admin.js
+++ b/themes/mantra/admin/js/admin.js
@@ -4,34 +4,34 @@
jQuery(document).ready(function() {
-// WP image uploader for custom use in the admin section
- var uploadparent = 0;
- var old_send_to_editor = window.send_to_editor;
- var old_tb_remove = window.tb_remove;
-
- jQuery('.upload_image_button').click(function(){
- uploadparent = jQuery(this).closest('div');
- //Change "insert into post" to "Use this Button"
- tbframe_interval = setInterval( function() {jQuery('#TB_iframeContent').contents().find('.savesend .button').val('Use This Image');}, 2000);
- tb_show('Select File', 'media-upload.php?post_id=0&amp;type=file&amp;TB_iframe=true');
- return false;
- });
-
- window.tb_remove = function() {
- uploadparent = 0;
- old_tb_remove();
- }
-
- window.send_to_editor = function(html) {
- if(uploadparent){
- imgurl = jQuery('img',html).attr('src');
- uploadparent.find('.slideimages').attr('value', imgurl);
- uploadparent.find('.imagebox').attr('src', imgurl);
- tb_remove();
- } else {
- old_send_to_editor();
- }
- }
+var uploadparent = 0;
+ function media_upload( button_class) {
+ var _custom_media = true,
+ _orig_send_attachment = wp.media.editor.send.attachment;
+ jQuery('body').on('click',button_class, function(e) {
+ uploadparent = jQuery(this).closest('div');
+ var button_id ='#'+jQuery(this).attr('id');
+ /* console.log(button_id); */
+ var self = jQuery(button_id);
+ var send_attachment_bkp = wp.media.editor.send.attachment;
+ var button = jQuery(button_id);
+ // var id = button.attr('id').replace('_button', '');
+ _custom_media = true;
+ wp.media.editor.send.attachment = function(props, attachment){
+ if ( _custom_media ) {
+ // jQuery('.custom_media_id').val(attachment.id);
+ uploadparent.find('.slideimages').val(attachment.url);
+ uploadparent.find('.imagebox').attr('src',attachment.url);
+ // jQuery('.custom_media_image').attr('src',attachment.url).css('display','block');
+ } else {
+ return _orig_send_attachment.apply( button_id, [props, attachment] );
+ }
+ }
+ wp.media.editor.open(button);
+ return false;
+ });
+}
+media_upload( '.upload_image_button');
// Show/hide slides
diff --git a/themes/mantra/admin/main.php b/themes/mantra/admin/main.php
index 379303e0..ebc6fecb 100644
--- a/themes/mantra/admin/main.php
+++ b/themes/mantra/admin/main.php
@@ -78,10 +78,15 @@ function mantra_admin_scripts() {
wp_register_script('cryout_accordion',get_template_directory_uri() . '/admin/js/accordion-slider.js', array('jquery') );
wp_enqueue_script('cryout_accordion');
}
-// For the WP uploader
- wp_enqueue_script('media-upload');
- wp_enqueue_script('thickbox');
- wp_enqueue_style('thickbox');
+ // For the WP uploader
+ if(function_exists('wp_enqueue_media')) {
+ wp_enqueue_media();
+ }
+ else {
+ wp_enqueue_script('media-upload');
+ wp_enqueue_script('thickbox');
+ wp_enqueue_style('thickbox');
+ }
// The js used in the admin
wp_register_script('cryout-admin-js',get_template_directory_uri() . '/admin/js/admin.js' );
wp_enqueue_script('cryout-admin-js');
@@ -257,13 +262,16 @@ function mantra_page_fn() {
</div>
<div style="clear: both;"></div>
</div>
-<div id="jsAlert" class="error" style="padding:5px 10px;">If this message remains visible after the page has loaded then there is a problem with your WordPress jQuery library. This can have several causes, including incompatible plugins.<br> The Mantra Settings page cannot function without jQuery. You need to fix this issue before you can configure Mantra.</div>
+
<?php if ( isset( $_GET['settings-updated'] ) ) {
echo "<div class='updated fade' style='clear:left;'><p>";
echo _e('Mantra settings updated successfully.','mantra');
echo "</p></div>";
} ?>
+<div id="jsAlert" class=""><b>Checking jQuery functionality...</b><br/><em>If this message remains visible after the page has loaded then there is a problem with your WordPress jQuery library. This can have several causes, including incompatible plugins.
+The Parabola Settings page cannot function without jQuery. </em></div>
+
<div id="main-options">
<form name="mantra_form" action="options.php" method="post" enctype="multipart/form-data">
<div id="accordion">
diff --git a/themes/mantra/admin/sanitize.php b/themes/mantra/admin/sanitize.php
index 30ed0b67..709d10c7 100644
--- a/themes/mantra/admin/sanitize.php
+++ b/themes/mantra/admin/sanitize.php
@@ -51,7 +51,7 @@
$socialNetworks = array ("Amazon", "Delicious", "DeviantArt", "Digg", "Etsy", "Facebook", "Flickr", "Google", "GoodReads", "GooglePlus",
"IMDb", "Instagram", "LastFM", "LinkedIn", "Mail", "MySpace", "Picasa", "Pinterest", "Reddit", "RSS", "Skype",
- "SoundCloud", "StumbleUpon", "Technorati", "Tumblr", "Twitch", "Twitter", "Vimeo", "VK", "WordPress",
+ "Steam", "SoundCloud", "StumbleUpon", "Technorati", "Tumblr", "Twitch", "Twitter", "Vimeo", "VK", "WordPress",
"Xing", "Yahoo", "Yelp", "YouTube" );
@@ -113,7 +113,6 @@ global $mantra_defaults;
$cryout_special_keys = array('Mail', 'Skype');
for ($i=1;$i<10;$i+=2) {
$j=$i+1;
-
if (in_array($input['mantra_social'.$i],$cryout_special_keys)) :
$input['mantra_social'.$j] = wp_kses_data(str_replace($cryout_special_terms,'',$input['mantra_social'.$j]));
if ($input['mantra_social'.$i]=='Mail') {$input['mantra_social'.$j]='mailto:'.$input['mantra_social'.$j];};
@@ -121,8 +120,10 @@ global $mantra_defaults;
else :
$input['mantra_social'.$j] = esc_url_raw($input['mantra_social'.$j]);
endif;
-
}
+ for ($i=0;$i<=5;$i++) {
+ if (!isset($input['mantra_socialsdisplay'.$i])) {$input['mantra_socialsdisplay'.$i] = "0";}
+ }
$input['mantra_favicon'] = esc_url_raw($input['mantra_favicon']);
$input['mantra_logoupload'] = esc_url_raw($input['mantra_logoupload']);
@@ -141,29 +142,29 @@ global $mantra_defaults;
if($input['mantra_googlefont']) {
$mantra_googlefont2 = $input['mantra_googlefont'];
$mantra_googlefont2= preg_replace( '/\s+/', '+', $mantra_googlefont2 );
- $mantra_googlefont2= "http://fonts.googleapis.com/css?family=".$mantra_googlefont2;
- }
+ $mantra_googlefont2= "//fonts.googleapis.com/css?family=".$mantra_googlefont2;
+ $input['mantra_googlefont2'] = $mantra_googlefont2;
+ } else $input['mantra_googlefont2'] = '';
if($input['mantra_googlefonttitle']) {
$mantra_googlefonttitle2 = $input['mantra_googlefonttitle'];
$mantra_googlefonttitle2= preg_replace( '/\s+/', '+', $mantra_googlefonttitle2 );
- $mantra_googlefonttitle2= "http://fonts.googleapis.com/css?family=".$mantra_googlefonttitle2;
- }
+ $mantra_googlefonttitle2= "//fonts.googleapis.com/css?family=".$mantra_googlefonttitle2;
+ $input['mantra_googlefonttitle2'] = $mantra_googlefonttitle2;
+ } else $input['mantra_googlefonttitle2'] = '';
if($input['mantra_googlefontside']) {
$mantra_googlefontside2 = $input['mantra_googlefontside'];
$mantra_googlefontside2= preg_replace( '/\s+/', '+', $mantra_googlefontside2 );
- $mantra_googlefontside2= "http://fonts.googleapis.com/css?family=".$mantra_googlefontside2;
- }
+ $mantra_googlefontside2= "//fonts.googleapis.com/css?family=".$mantra_googlefontside2;
+ $input['mantra_googlefontside2'] = $mantra_googlefontside2;
+ } else $input['mantra_googlefontside2'] = '';
if($input['mantra_googlefontsubheader']) {
$mantra_googlefontsubheader2 = $input['mantra_googlefontsubheader'];
$mantra_googlefontsubheader2= preg_replace( '/\s+/', '+', $mantra_googlefontsubheader2 );
- $mantra_googlefontsubheader2= "http://fonts.googleapis.com/css?family=".$mantra_googlefontsubheader2;
- }
-
- $input['mantra_googlefont2'] = $mantra_googlefont2;
- $input['mantra_googlefonttitle2'] = $mantra_googlefonttitle2;
- $input['mantra_googlefontside2'] = $mantra_googlefontside2;
+ $mantra_googlefontsubheader2= "//fonts.googleapis.com/css?family=".$mantra_googlefontsubheader2;
$input['mantra_googlefontsubheader2'] = $mantra_googlefontsubheader2;
-
+ } else $input['mantra_googlefontsubheader2'] = '';
+
+
$input['mantra_frontpostscount'] = intval(wp_kses_data($input['mantra_frontpostscount']));
$input['mantra_fpsliderborderwidth'] = intval(wp_kses_data($input['mantra_fpsliderborderwidth']));
diff --git a/themes/mantra/admin/settings.php b/themes/mantra/admin/settings.php
index 6d9d0fe2..96230225 100644
--- a/themes/mantra/admin/settings.php
+++ b/themes/mantra/admin/settings.php
@@ -400,7 +400,7 @@ function cryout_setting_frontslider2_fn() {
<?php
$items = array("Custom Slides", "Latest Posts", "Random Posts", "Sticky Posts", "Latest Posts from Category" , "Random Posts from Category", "Specific Posts");
$itemsare = array( __("Custom Slides","mantra"), __("Latest Posts","mantra"), __("Random Posts","mantra"),__("Sticky Posts","mantra"), __("Latest Posts from Category","mantra"), __("Random Posts from Category","mantra"), __("Specific Posts","mantra"));
- echo "<strong> Select the content you want to load in your slides: </strong> ";
+ echo "<em>".__("Select the content you want to load in your slides:","mantra")." </em> ";
echo "<select id='mantra_slideType' name='ma_options[mantra_slideType]'>";
foreach($items as $id=>$item) {
echo "<option value='$item'";
@@ -2059,12 +2059,12 @@ foreach($items as $id=>$item) {
}
echo "</select>";
echo "<div><small>".__("Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin.","mantra")."</small></div>";
- echo "<br><small> All title tags are handled automatically by Mantra. </small>";
+ echo "<br><small>".__("All title tags are handled automatically by Mantra.","mantra")."</small>";
echo "<div class='slmini'>";
- echo "<b> Homepage Meta Description </b>";
+ echo "<b>".__("Homepage Meta Description","mantra")."</b>";
echo "<textarea id='mantra_seo_home_desc' name='ma_options[mantra_seo_home_desc]' rows='2' cols=50' type='textarea' >{$mantra_options['mantra_seo_home_desc']} </textarea>";
- echo "<small> This is unique and you should fill this in. Describe your site the best you can and try not to go over 160 characters. </small>";
+ echo "<small>".__("This is unique and you should fill this in. Describe your site the best you can and try not to go over 160 characters.","mantra")."</small>";
echo "</div>";
echo "<div class='slmini'>";
@@ -2078,17 +2078,16 @@ foreach($items as $id=>$item) {
echo ">$moreitemsare[$id]</option>";
}
echo "</select>";
- echo "<small> <u>Auto</u> - Mantra will automatically add post expcerpts to 'page' and 'post' meta descriptions.<br>
- <u>Manual</u> - you will enable a new custom field in your post/page admin section where you can type the exact description you want for every post and page.</small>";
+ echo "<small>".__("<u>Auto</u> - Mantra will automatically add post expcerpts to 'page' and 'post' meta descriptions.<br>
+ <u>Manual</u> - you will enable a new custom field in your post/page admin section where you can type the exact description you want for every post and page.<br>
+ For category pages, the actual category descriptions will be used. Go to Posts > Categories and you can fill in a description for every category you have.","mantra")."</small>";
echo "</div>";
- echo "<small>For category pages, the actual category descriptions will be used. Go to Posts > Categories and you can fill in a description for every category you have. </small>";
-
echo "<div class='slmini'>";
- echo "<b>Post Author</b>";
+ echo "<b>".__("Post Author","mantra")."</b>";
$authors=wp_list_authors (array("echo"=>false,"html"=> false));
$authors_array = explode ("," , $authors);
- array_unshift($authors_array,"Do not use");
+ array_unshift($authors_array,__("Do not use","mantra"));
echo "<select id='mantra_seo_author' name='ma_options[mantra_seo_author]'>";
foreach($authors_array as $item) {
echo "<option value='$item'";
@@ -2098,7 +2097,7 @@ foreach($items as $id=>$item) {
echo "</select>";
- echo "<small> If you want to show an author in the meta tags. </small>";
+ echo "<small>".__("If you want to show an author in the meta tags.","mantra")."</small>";
echo "</div>";
}
diff --git a/themes/mantra/attachment.php b/themes/mantra/attachment.php
index 865fc400..6d2d3f73 100644
--- a/themes/mantra/attachment.php
+++ b/themes/mantra/attachment.php
@@ -113,6 +113,7 @@ get_header(); ?>
<?php endwhile; ?>
</div><!-- #content -->
+<?php // get_sidebar(); // sidebars disabled on attachment page; alt css used ?>
</section><!-- #container -->
<?php get_footer(); ?>
diff --git a/themes/mantra/content-frontpage.php b/themes/mantra/content-frontpage.php
index 8360afa1..b4784abc 100644
--- a/themes/mantra/content-frontpage.php
+++ b/themes/mantra/content-frontpage.php
@@ -13,7 +13,8 @@ global $mantra_options;
<?php $the_query = new WP_Query( array('posts_per_page'=>$mantra_options['mantra_frontpostscount']) ); ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
-
+
+ <?php global $more; $more=0; ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile;
diff --git a/themes/mantra/editor-style.css b/themes/mantra/editor-style.css
index 3277730a..7e0cfe6c 100644
--- a/themes/mantra/editor-style.css
+++ b/themes/mantra/editor-style.css
@@ -4,9 +4,7 @@ Theme Name: Mantra
/*
Used to style the TinyMCE editor.
*/
-html .mceContentBody {
- max-width:640px;
-}
+
* {
font-family: Georgia, "Bitstream Charter", serif;
color: #444;
@@ -236,7 +234,7 @@ tr td {
img {
margin: 0;
- max-width: 640px;
+ height:auto;
}
.alignleft,
img.alignleft {
diff --git a/themes/mantra/functions.php b/themes/mantra/functions.php
index 1a9607b3..82d31783 100644
--- a/themes/mantra/functions.php
+++ b/themes/mantra/functions.php
@@ -8,7 +8,7 @@
*/
// Variable for theme version
-define ("MANTRA_VERSION","2.2.0");
+define ("MANTRA_VERSION","2.3.4");
require_once(dirname(__FILE__) . "/admin/main.php"); // Load necessary admin files
diff --git a/themes/mantra/images/socials/Steam.png b/themes/mantra/images/socials/Steam.png
new file mode 100644
index 00000000..39421b8d
--- /dev/null
+++ b/themes/mantra/images/socials/Steam.png
Binary files differ
diff --git a/themes/mantra/includes/theme-frontpage.php b/themes/mantra/includes/theme-frontpage.php
index c832d49a..213545ec 100644
--- a/themes/mantra/includes/theme-frontpage.php
+++ b/themes/mantra/includes/theme-frontpage.php
@@ -7,8 +7,69 @@
* @subpackage Functions
*/
+if ( ! function_exists( 'mantra_frontpage_css' ) ) :
+function mantra_frontpage_css() {
+ $mantra_options= mantra_get_theme_options();
+ foreach ($mantra_options as $key => $value) { ${"$key"} = $value; }
+ ob_start();
+ echo '<style type="text/css">/* Mantra frontpage CSS */'; ?>
+<?php if ($mantra_fronthideheader) {?> #branding {display:none;} <?php }
+ if ($mantra_fronthidemenu) {?> #access {display:none;} <?php }
+ if ($mantra_fronthidewidget) {?> #colophon {display:none;} <?php }
+ if ($mantra_fronthidefooter) {?> #footer2 {display:none;} <?php }
+ if ($mantra_fronthideback) {?> #main {background:none;} <?php } ?>
+
+.slider-wrapper { display:block; float:none; width:100%; margin:0 auto; }
+
+#slider{
+ max-width:<?php echo $mantra_fpsliderwidth ?>px ;
+ height:<?php echo $mantra_fpsliderheight ?>px ;
+ margin:30px auto 20px; display:block; float:none;
+ border:<?php echo $mantra_fpsliderborderwidth.'px solid '.$mantra_fpsliderbordercolor; ?>; }
+
+#front-text1 h1, #front-text2 h1 { display:block; float:none; margin:35px auto; text-align:center; font-size:32px;
+ clear:both; line-height:32px; font-weight:bold; color:<?php echo $mantra_fronttitlecolor; ?>; }
+
+#front-text2 h1{ font-size:28px; line-height:28px; margin-top:0px; margin-bottom:25px; }
+
+#frontpage blockquote { width:88%; max-width:88% !important; margin-bottom:20px;
+ font-size:16px; line-height:22px; color:#444; }
+
+#frontpage #front-text4 blockquote { font-size:14px; line-height:18px; color:#666; }
+
+#frontpage blockquote:before, #frontpage blockquote:after { content:none; }
- if ( ! function_exists( 'mantra_frontpage_generator' ) ) :
+#front-columns > div { display:block; width:<?php
+switch ($mantra_nrcolumns) {
+ case 0: break;
+ case 1: echo "95"; break;
+ case 2: echo "45"; break;
+ case 3: echo "29"; break;
+ case 4: echo "21"; break;
+} ?>%; height:auto; margin-left:2%; margin-right:2%; margin-bottom:10px; float:left; }
+
+.column-image { height:<?php echo $mantra_colimageheight ?>px; border:3px solid #eee; }
+
+.theme-default .nivo-controlNav {margin-left:0;}
+<?php
+switch($mantra_fpslidernav):
+ case "Bullets": break;
+ case "Numbers": ?>
+.theme-default .nivo-controlNav {bottom:-40px;}
+.theme-default .nivo-controlNav a { background: none; text-decoration:underline; text-indent:0; }
+<?php break;
+ case "None": ?>
+.theme-default .nivo-controlNav { display:none; }
+<?php break;
+endswitch;
+ echo "</style>\n";
+ $mantra_presentation_page_styling = ob_get_contents();
+ ob_end_clean();
+ return $mantra_presentation_page_styling;
+} // mantra_frontpage_css()
+endif;
+
+if ( ! function_exists( 'mantra_frontpage_generator' ) ) :
// Front page generator
function mantra_frontpage_generator() {
$mantra_options= mantra_get_theme_options();
@@ -46,114 +107,6 @@ foreach ($mantra_options as $key => $value) {
});
</script>
-<style type="text/css">
-
-<?php if ($mantra_fronthideheader) {?> #branding {display:none;} <?php }
- if ($mantra_fronthidemenu) {?> #access {display:none;} <?php }
- if ($mantra_fronthidewidget) {?> #colophon {display:none;} <?php }
- if ($mantra_fronthidefooter) {?> #footer2 {display:none;} <?php }
- if ($mantra_fronthideback) {?> #main {background:none;} <?php } ?>
-
-.slider-wrapper {
-display:block;
-float:none;
-width:100%;
-margin:0 auto;
-}
-
-#slider{
- max-width:<?php echo $mantra_fpsliderwidth ?>px ;
- height:<?php echo $mantra_fpsliderheight ?>px ;
- margin:30px auto 20px;
- display:block;
- float:none;
- border:<?php echo $mantra_fpsliderborderwidth.'px solid '.$mantra_fpsliderbordercolor; ?>;
-}
-
-#front-text1 h1, #front-text2 h1{
- display:block;
- float:none;
- margin:35px auto;
- text-align:center;
- font-size:32px;
- clear:both;
- line-height:32px;
- font-weight:bold;
- color:<?php echo $mantra_fronttitlecolor; ?>;
-}
-
- #front-text2 h1{
- font-size:28px;
- line-height:28px;
- margin-top:0px;
- margin-bottom:25px;
-}
-
-#frontpage blockquote {
- width:88% ;
- max-width:88% !important;
- margin-bottom:20px;
- font-size:16px;
- line-height:22px;
- color:#444;
-}
-
-#frontpage #front-text4 blockquote {
- font-size:14px;
- line-height:18px;
- color:#666;
-}
-
-#frontpage blockquote:before, #frontpage blockquote:after {
- content:none;
-}
-
-#front-columns > div {
-display:block;
-width:<?php
-switch ($mantra_nrcolumns) {
- case 0:
- break;
- case 1:
- echo "95";
- break;
- case 2:
- echo "45";
- break;
- case 3:
- echo "29";
- break;
- case 4:
- echo "21";
- break;
-} ?>%;
-height:auto;
-margin-left:2%;margin-right:2%;
-margin-bottom:10px;
-float:left;
-}
-
-.column-image {
- height:<?php echo $mantra_colimageheight ?>px;
- border:3px solid #eee;
-}
-
-.theme-default .nivo-controlNav {margin-left:0;}
-
-<?php if ($mantra_fpslidernav!="Bullets") {
- if ($mantra_fpslidernav=="Numbers") {?>
-
-.theme-default .nivo-controlNav {bottom:-40px;}
-.theme-default .nivo-controlNav a {
- background: none;
- text-decoration:underline;
- text-indent:0;
-}
-<?php } else if ($mantra_fpslidernav=="None") {?>
-.theme-default .nivo-controlNav {display:none;}
-
-<?php } } ?>
-</style>
<div id="frontpage">
<?php
diff --git a/themes/mantra/includes/theme-functions.php b/themes/mantra/includes/theme-functions.php
index 3cdc2fe3..6698de72 100644
--- a/themes/mantra/includes/theme-functions.php
+++ b/themes/mantra/includes/theme-functions.php
@@ -75,10 +75,10 @@ add_action('wp_head','mantra_header_scripts',100);
function mantra_title_and_description() {
$mantra_options = mantra_get_theme_options();
foreach ($mantra_options as $key => $value) { ${"$key"} = $value; }
-
+
// Header styling and image loading
// Check if this is a post or page, if it has a thumbnail, and if it's a big one
-
+
global $post;
if (get_header_image() != '') { $himgsrc = get_header_image(); }
@@ -120,7 +120,7 @@ function mantra_title_and_description() {
if ($mantra_socialsdisplay0): mantra_header_socials(); endif;
echo '</div>';
-
+
} // mantra_title_and_description()
@@ -318,6 +318,16 @@ function mantra_pagination($pages = '', $range = 2, $prefix ='')
}
endif;
+function mantra_nextpage_links($defaults) {
+$args = array(
+'link_before' => '<em>',
+'link_after' => '</em>',
+);
+$r = wp_parse_args($args, $defaults);
+return $r;
+}
+add_filter('wp_link_pages_args','mantra_nextpage_links');
+
/**
* Site info
@@ -357,42 +367,60 @@ add_action('wp_ajax_nopriv_do_ajax', 'mantra_ajax_function');
add_action('wp_ajax_do_ajax', 'mantra_ajax_function');
-/**
-* Retrieves the IDs for images in a gallery.
+/**
+* Retrieves the IDs for images in a gallery.
* @since mantra 2.1.1
-* @return array List of image IDs from the post gallery.
-*/
-function mantra_get_gallery_images() {
- $images = array();
-
- if ( function_exists( 'get_post_galleries' ) ) {
- $galleries = get_post_galleries( get_the_ID(), false );
- if ( isset( $galleries[0]['ids'] ) )
- $images = explode( ',', $galleries[0]['ids'] );
- } else {
- $pattern = get_shortcode_regex();
- preg_match( "/$pattern/s", get_the_content(), $match );
- $atts = shortcode_parse_atts( $match[3] );
- if ( isset( $atts['ids'] ) )
- $images = explode( ',', $atts['ids'] );
- }
-
- if ( ! $images ) {
- $images = get_posts( array(
- 'fields' => 'ids',
- 'numberposts' => 999,
- 'order' => 'ASC',
- 'orderby' => 'menu_order',
- 'post_mime_type' => 'image',
- 'post_parent' => get_the_ID(),
- 'post_type' => 'attachment',
- ) );
- }
-
- return $images;
+* @return array List of image IDs from the post gallery.
+*/
+function mantra_get_gallery_images() {
+ $images = array();
+
+ if ( function_exists( 'get_post_galleries' ) ) {
+ $galleries = get_post_galleries( get_the_ID(), false );
+ if ( isset( $galleries[0]['ids'] ) )
+ $images = explode( ',', $galleries[0]['ids'] );
+ } else {
+ $pattern = get_shortcode_regex();
+ preg_match( "/$pattern/s", get_the_content(), $match );
+ $atts = shortcode_parse_atts( $match[3] );
+ if ( isset( $atts['ids'] ) )
+ $images = explode( ',', $atts['ids'] );
+ }
+
+ if ( ! $images ) {
+ $images = get_posts( array(
+ 'fields' => 'ids',
+ 'numberposts' => 999,
+ 'order' => 'ASC',
+ 'orderby' => 'menu_order',
+ 'post_mime_type' => 'image',
+ 'post_parent' => get_the_ID(),
+ 'post_type' => 'attachment',
+ ) );
+ }
+
+ return $images;
} // mantra_get_gallery_images()
+/**
+* Checks the browser agent string for mobile ids and adds "mobile" class to body if true
+* @since mantra 2.2.3
+* @return array list of classes.
+*/
+function mantra_mobile_body_class($classes){
+$mantra_options = mantra_get_theme_options();
+ if ($mantra_options['mantra_mobile']=="Enable"):
+ $browser = $_SERVER['HTTP_USER_AGENT'];
+ $keys = 'mobile|android|mobi|tablet|ipad|opera mini|series 60|s60|blackberry';
+ if (preg_match("/($keys)/i",$browser)): $classes[] = 'mobile'; endif; // mobile browser detected
+ endif;
+ return $classes;
+}
+
+add_filter('body_class', 'mantra_mobile_body_class');
+
+
if ( ! function_exists( 'mantra_ajax_function' ) ) :
function mantra_ajax_function(){
@@ -438,7 +466,7 @@ function mantra_ajax_get_latest_posts($count,$categName){
// Reset Query
wp_reset_query();
-
+
return $testVar;
}
endif;
diff --git a/themes/mantra/includes/theme-loop.php b/themes/mantra/includes/theme-loop.php
index 909858ec..7d09d4c6 100644
--- a/themes/mantra/includes/theme-loop.php
+++ b/themes/mantra/includes/theme-loop.php
@@ -284,7 +284,7 @@ $image_src = cryout_echo_first_image($post->ID);
the_post_thumbnail( 'custom', array("class" => "align".strtolower($mantra_falign)." post_thumbnail" ) );
else if ($mantra_fpost=='Enable' && $mantra_fauto=="Enable" && $image_src && ($mantra_excerptarchive != "Full Post" || $mantra_excerpthome != "Full Post"))
- echo '<a title="'.the_title_attribute('echo=0').'" href="'.get_permalink().'" ><img title="" alt="" class="align'.strtolower($mantra_falign).' post_thumbnail" src="'.$image_src.'"></a>' ;
+ echo '<a title="'.the_title_attribute('echo=0').'" href="'.get_permalink().'" ><img width="'.$mantra_fwidth.'" title="" alt="" class="align'.strtolower($mantra_falign).' post_thumbnail" src="'.$image_src.'"></a>' ;
}
endif; // mantra_set_featured_thumb
diff --git a/themes/mantra/includes/theme-seo.php b/themes/mantra/includes/theme-seo.php
index 11899bbe..6589f40c 100644
--- a/themes/mantra/includes/theme-seo.php
+++ b/themes/mantra/includes/theme-seo.php
@@ -12,18 +12,18 @@ function mantra_filter_wp_title( $title ) {
// Get the Site Name
$site_name = get_bloginfo( 'name' );
// Prepend name
- $filtered_title = $title.' - '.$site_name;
+ $filtered_title = (((strlen($site_name)>0)&&(strlen($title)>0))?$title.' - '.$site_name:$title.$site_name);
// Get the Site Description
$site_description = get_bloginfo( 'description' );
// If site front page, append description
- if ( (is_home() || is_front_page()) && $site_description ) {
+ if ( (is_home() || is_front_page()) && $site_description ) {
// Append Site Description to title
- $filtered_title =$site_name. " | ".$site_description;
+ $filtered_title = ((strlen($site_name)>0)&&(strlen($site_description)>0))?$site_name. " | ".$site_description:$site_name.$site_description;
}
// Add pagination if that's the case
global $page, $paged;
if ( $paged >= 2 || $page >= 2 )
- $filtered_title .= ' | ' . sprintf( __( 'Page %s', 'mantra' ), max( $paged, $page ) );
+ $filtered_title .= ' | ' . sprintf( __( 'Page %s', 'parabola' ), max( $paged, $page ) );
// Return the modified title
return $filtered_title;
diff --git a/themes/mantra/includes/theme-setup.php b/themes/mantra/includes/theme-setup.php
index 3f2ad3da..20841606 100644
--- a/themes/mantra/includes/theme-setup.php
+++ b/themes/mantra/includes/theme-setup.php
@@ -6,13 +6,14 @@
* @subpackage Functions
*/
+/*
// Bringing up Mantra Settings page after install
-
if ( is_admin() && isset($_GET['activated'] ) && $pagenow == "themes.php" ) {
wp_redirect( 'themes.php?page=mantra-page' );
}
+*/
- $mantra_totalSize = $mantra_sidebar + $mantra_sidewidth+50;
+$mantra_totalSize = $mantra_sidebar + $mantra_sidewidth+50;
/**
diff --git a/themes/mantra/includes/theme-shortcodes.php b/themes/mantra/includes/theme-shortcodes.php
index 63b4a543..5c238333 100644
--- a/themes/mantra/includes/theme-shortcodes.php
+++ b/themes/mantra/includes/theme-shortcodes.php
@@ -16,6 +16,16 @@ add_shortcode( 'mantra-button-light', 'mantra_button_light_fn' );
add_shortcode( 'mantra-button-dark', 'mantra_button_dark_fn' );
add_shortcode( 'mantra-button-color', 'mantra_button_color_fn' );
+add_shortcode('cryout-site', 'mantra_site_link_fn');
+add_shortcode('cryout-author', 'mantra_the_author_fn');
+add_shortcode('cryout-tag-cloud', 'mantra_tag_cloud_fn');
+add_shortcode('cryout-multi', 'mantra_multi_column_fn');
+add_shortcode('cryout-column', 'mantra_column_fn');
+add_shortcode( 'cryout-pullquote', 'mantra_pullquote_fn' );
+add_shortcode( 'cryout-button-light', 'mantra_button_light_fn' );
+add_shortcode( 'cryout-button-dark', 'mantra_button_dark_fn' );
+add_shortcode( 'cryout-button-color', 'mantra_button_color_fn' );
+
/**
* Returns a link to the current site
* No attributes
diff --git a/themes/mantra/includes/theme-styles.php b/themes/mantra/includes/theme-styles.php
index 998dd80e..b19e8687 100644
--- a/themes/mantra/includes/theme-styles.php
+++ b/themes/mantra/includes/theme-styles.php
@@ -56,9 +56,10 @@ function mantra_styles_echo() {
foreach ($mantra_options as $key => $value) { ${"$key"} = $value ;}
- echo mantra_custom_styles();
+ echo preg_replace("/[\n\r\t\s]+/"," " ,mantra_custom_styles())."\n";
+ if(($mantra_frontpage=="Enable")&&is_front_page()) { echo preg_replace("/[\n\r\t\s]+/"," " ,mantra_frontpage_css())."\n";}
if($mantra_mobile=="Enable") {wp_enqueue_style( 'mantra-mobile'); echo mantra_mobile_meta();}
- echo mantra_customcss();
+ echo preg_replace("/[\n\r\t\s]+/"," " ,mantra_customcss())."\n";
}
add_action('wp_head', 'mantra_styles_echo');
@@ -66,7 +67,7 @@ add_action('wp_head', 'mantra_styles_echo');
// JS loading and hook into wp_enque_scripts
- add_action('wp_head', 'mantra_customjs' );
+add_action('wp_head', 'mantra_customjs' );
@@ -130,4 +131,4 @@ function mantra_ie_pie() {
}
add_action('wp_head', 'mantra_ie_pie', 10);
-?>
+?> \ No newline at end of file
diff --git a/themes/mantra/js/frontend.js b/themes/mantra/js/frontend.js
index 9933e0c0..387c751f 100644
--- a/themes/mantra/js/frontend.js
+++ b/themes/mantra/js/frontend.js
@@ -60,12 +60,13 @@ jQuery("#access .menu ul li").hoverIntent({
// Social Icons Animation
jQuery(".socialicons").hover(
- function(){ jQuery(this).animate({"top": "-5px" },{ queue: false, duration:200}); },
- function(){ jQuery(this).animate({ "top": "0px" }, { queue: false, duration:200 });
+ function(){ jQuery(this).animate({"top": "-3px" },{ queue: false, duration:125}); },
+ function(){ jQuery(this).animate({ "top": "0px" }, { queue: false, duration:125 });
});
-/*! http://tinynav.viljamis.com v1.03 by @viljamis */
+/*! http://tinynav.viljamis.com v1.03 by @viljamis
+ mod 0.1.1 by cryout creations */
(function ($, window, i) {
$.fn.tinyNav = function (options) {
@@ -133,7 +134,8 @@ jQuery(".socialicons").hover(
}
- $('option[value="'+document.location+'"]').attr("selected","selected");
+ var current_url = location.protocol + '//' + location.host + location.pathname;
+ $('option[value="'+current_url+'"]').attr("selected","selected");
});
diff --git a/themes/mantra/js/mce-shortcodes.js b/themes/mantra/js/mce-shortcodes.js
index 4d574126..ddea6b76 100644
--- a/themes/mantra/js/mce-shortcodes.js
+++ b/themes/mantra/js/mce-shortcodes.js
@@ -14,7 +14,7 @@
title : ed.getLang('mantrashortcodes.buttonlighttitle', 'Add a light button'),
image : url+'/buttons/button-light.png',
onclick : function() {
- ed.selection.setContent('[mantra-button-light url="#"]' + ed.selection.getContent() + '[/mantra-button-light]');
+ ed.selection.setContent('[cryout-button-light url="#"]' + ed.selection.getContent() + '[/cryout-button-light]');
}
});
@@ -22,7 +22,7 @@
title : ed.getLang('mantrashortcodes.buttondarktitle', 'Add a dark button'),
image : url+'/buttons/button-dark.png',
onclick : function() {
- ed.selection.setContent('[mantra-button-dark url="#"]' + ed.selection.getContent() + '[/mantra-button-dark]');
+ ed.selection.setContent('[cryout-button-dark url="#"]' + ed.selection.getContent() + '[/cryout-button-dark]');
}
});
@@ -30,7 +30,7 @@
title : ed.getLang('mantrashortcodes.buttoncolortitle', 'Add a color button'),
image : url+'/buttons/button-color.png',
onclick : function() {
- ed.selection.setContent('[mantra-button-color url="#" color="#47AFFF"]' + ed.selection.getContent() + '[/mantra-button-color]');
+ ed.selection.setContent('[cryout-button-color url="#" color="#47AFFF"]' + ed.selection.getContent() + '[/cryout-button-color]');
}
});
@@ -38,7 +38,7 @@
title : ed.getLang('mantrashortcodes.pullquotetitle', 'Add a pullquote'),
image : url + '/buttons/pullquote.png',
onclick : function() {
- ed.selection.setContent('[mantra-pullquote align="left|center|right" textalign="left|center|right" width="33%"]' + ed.selection.getContent() + '[/mantra-pullquote]');
+ ed.selection.setContent('[cryout-pullquote align="left|center|right" textalign="left|center|right" width="33%"]' + ed.selection.getContent() + '[/cryout-pullquote]');
}
});
@@ -46,7 +46,7 @@
title : ed.getLang('mantrashortcodes.multicolumntitle', 'Add multiple columns'),
image : url + '/buttons/multi-column.png',
onclick : function() {
- ed.selection.setContent('[mantra-multi][mantra-column width="1/4"] [/mantra-column] [mantra-column width="1/2"]' + ed.selection.getContent() + '[/mantra-column] [mantra-column width="1/4"] [/mantra-column] [/mantra-multi]');
+ ed.selection.setContent('[cryout-multi][cryout-column width="1/4"] [/cryout-column] [cryout-column width="1/2"]' + ed.selection.getContent() + '[/cryout-column] [cryout-column width="1/4"] [/cryout-column] [/cryout-multi]');
}
});
diff --git a/themes/mantra/languages/_mantra.mo b/themes/mantra/languages/_mantra.mo
index 65ac6fa8..0e726753 100644
--- a/themes/mantra/languages/_mantra.mo
+++ b/themes/mantra/languages/_mantra.mo
Binary files differ
diff --git a/themes/mantra/languages/_mantra.po b/themes/mantra/languages/_mantra.po
index 27582e77..6520f970 100644
--- a/themes/mantra/languages/_mantra.po
+++ b/themes/mantra/languages/_mantra.po
@@ -1,2032 +1,2052 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: Mantra 2.1\n"
-"POT-Creation-Date: 2013-09-25 13:14+0200\n"
-"PO-Revision-Date: 2013-09-25 13:15+0200\n"
-"Last-Translator: Cryout Creations\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.5.5\n"
-"X-Poedit-KeywordsList: __;_e;_x\n"
-"X-Poedit-Basepath: ../\n"
-"X-Poedit-SearchPath-0: .\n"
-
-#: 404.php:17
-msgid "Not Found"
-msgstr ""
-
-#: 404.php:19
-msgid ""
-"Apologies, but the page you requested could not be found. Perhaps searching "
-"will help."
-msgstr ""
-
-#: archive.php:27
-#, php-format
-msgid "Daily Archives: %s"
-msgstr ""
-
-#: archive.php:29
-#, php-format
-msgid "Monthly Archives: %s"
-msgstr ""
-
-#: archive.php:29
-msgid "F Y"
-msgstr ""
-
-#: archive.php:31
-#, php-format
-msgid "Yearly Archives: %s"
-msgstr ""
-
-#: archive.php:31
-msgid "Y"
-msgstr ""
-
-#: archive.php:33
-msgid "Blog Archives"
-msgstr ""
-
-#: archive.php:59 author.php:75 category.php:51 content-frontpage.php:25
-#: index.php:41 search.php:41 tag.php:52 template-blog.php:36
-msgid "Nothing Found"
-msgstr ""
-
-#: archive.php:63 author.php:79 category.php:55 content-frontpage.php:29
-#: index.php:45 tag.php:56 template-blog.php:40
-msgid ""
-"Apologies, but no results were found for the requested archive. Perhaps "
-"searching will help find a related post."
-msgstr ""
-
-#: attachment.php:18
-#, php-format
-msgid "Return to %s"
-msgstr ""
-
-#: attachment.php:29
-msgid "By"
-msgstr ""
-
-#: attachment.php:40
-msgid "Published"
-msgstr ""
-
-#: attachment.php:50
-#, php-format
-msgid "Full size is %s pixels"
-msgstr ""
-
-#: attachment.php:53
-msgid "Link to full-size image"
-msgstr ""
-
-#: attachment.php:60 attachment.php:107 content-aside.php:48
-#: content-chat.php:49 content-gallery.php:75 content-image.php:42
-#: content-link.php:49 content-page.php:22 content-quote.php:46
-#: content-status.php:48 content.php:76 single.php:55
-#: template-onecolumn.php:27 template-page-with-intro.php:17
-msgid "Edit"
-msgstr ""
-
-#: attachment.php:100
-msgid "Continue reading"
-msgstr ""
-
-#: attachment.php:101 content-aside.php:39 content-chat.php:38
-#: content-gallery.php:65 content-image.php:33 content-link.php:38
-#: content-page.php:21 content-quote.php:36 content-status.php:39
-#: content.php:49 content.php:65 single.php:33 template-onecolumn.php:26
-#: template-page-with-intro.php:16
-msgid "Pages:"
-msgstr ""
-
-#: author.php:29
-#, php-format
-msgid "Author Archives: %s"
-msgstr ""
-
-#: author.php:50
-#, php-format
-msgid "About %s"
-msgstr ""
-
-#: category.php:20
-#, php-format
-msgid "Category Archives: %s"
-msgstr ""
-
-#: comments.php:18
-msgid ""
-"This post is password protected. Enter the password to view any comments."
-msgstr ""
-
-#: content-aside.php:20
-msgid "Aside"
-msgstr ""
-
-#: content-aside.php:38 content-chat.php:37 content-image.php:32
-#: content-link.php:37 content-quote.php:35 content-status.php:38
-msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
-msgstr ""
-
-#: content-aside.php:46 content-chat.php:45 content-gallery.php:72
-#: content-image.php:39 content-link.php:45 content-quote.php:43
-#: content-status.php:46 content.php:74 includes/theme-loop.php:206
-msgid "Tagged"
-msgstr ""
-
-#: content-chat.php:20
-msgid "Chat"
-msgstr ""
-
-#: content-gallery.php:23
-msgid "Gallery"
-msgstr ""
-
-#: content-image.php:19 admin/settings.php:468 admin/settings.php:483
-#: admin/settings.php:498 admin/settings.php:513 admin/settings.php:528
-#: admin/settings.php:570 admin/settings.php:585 admin/settings.php:600
-#: admin/settings.php:615
-msgid "Image"
-msgstr ""
-
-#: content-link.php:20 admin/settings.php:475 admin/settings.php:490
-#: admin/settings.php:505 admin/settings.php:520 admin/settings.php:535
-#: admin/settings.php:577 admin/settings.php:592 admin/settings.php:607
-#: admin/settings.php:622
-msgid "Link"
-msgstr ""
-
-#: content-page.php:27 includes/theme-comments.php:136
-msgid "Comments are closed."
-msgstr ""
-
-#: content-quote.php:18
-msgid "Quote"
-msgstr ""
-
-#: content-status.php:30
-msgid "Status"
-msgstr ""
-
-#: search.php:20
-#, php-format
-msgid "Search Results for: %s"
-msgstr ""
-
-#: search.php:39
-#, php-format
-msgid "No search results for: %s"
-msgstr ""
-
-#: searchform.php:1
-msgid "Search"
-msgstr ""
-
-#: single.php:46
-msgid "View all posts by "
-msgstr ""
-
-#: tag.php:21
-#, php-format
-msgid "Tag Archives: %s"
-msgstr ""
-
-#: admin/admin-functions.php:62
-msgid ""
-"Before you can upload your import file, you will need to fix the following "
-"error:"
-msgstr ""
-
-#: admin/admin-functions.php:70
-msgid "Import Mantra Theme Options"
-msgstr ""
-
-#: admin/admin-functions.php:72
-msgid ""
-"Hi! This is where you import the Mantra settings.<i> Please remember that "
-"this is still an experimental feature.</i>"
-msgstr ""
-
-#: admin/admin-functions.php:74
-msgid "Just choose a file from your computer:"
-msgstr ""
-
-#: admin/admin-functions.php:76
-#, php-format
-msgid "Maximum size: %s"
-msgstr ""
-
-#: admin/admin-functions.php:82
-msgid "And import!"
-msgstr ""
-
-#: admin/admin-functions.php:148
-msgid "Import Mantra Theme Options "
-msgstr ""
-
-#: admin/admin-functions.php:151
-msgid "Great! The options have been imported!"
-msgstr ""
-
-#: admin/admin-functions.php:152
-msgid "Go back to the Mantra options page and check them out!"
-msgstr ""
-
-#: admin/admin-functions.php:155 admin/admin-functions.php:161
-#: admin/admin-functions.php:167
-msgid "Oops, there's a small problem."
-msgstr ""
-
-#: admin/admin-functions.php:156
-msgid ""
-"The uploaded file does not contain valid Mantra options. Make sure the file "
-"is exported from the Mantra Options page."
-msgstr ""
-
-#: admin/admin-functions.php:162
-msgid "The uploaded file could not be read."
-msgstr ""
-
-#: admin/admin-functions.php:168
-msgid ""
-"The uploaded file is not supported. Make sure the file was exported from the "
-"Mantra page and that it is a text file."
-msgstr ""
-
-#: admin/admin-functions.php:177
-msgid ""
-"Oops! The file is empty or there was no file. This error could also be "
-"caused by uploads being disabled in your php.ini or by post_max_size being "
-"defined as smaller than upload_max_filesize in php.ini."
-msgstr ""
-
-#: admin/admin-functions.php:183
-msgid "ERROR: You are not authorised to perform that operation"
-msgstr ""
-
-#: admin/main.php:100
-msgid "Layout Settings"
-msgstr ""
-
-#: admin/main.php:101
-msgid "Header Settings"
-msgstr ""
-
-#: admin/main.php:102
-msgid "Presentation Page"
-msgstr ""
-
-#: admin/main.php:103
-msgid "Text Settings"
-msgstr ""
-
-#: admin/main.php:104
-msgid "Color Settings"
-msgstr ""
-
-#: admin/main.php:105
-msgid "Graphics Settings"
-msgstr ""
-
-#: admin/main.php:106
-msgid "Post Information Settings"
-msgstr ""
-
-#: admin/main.php:107
-msgid "Post Excerpt Settings"
-msgstr ""
-
-#: admin/main.php:108
-msgid "Featured Image Settings"
-msgstr ""
-
-#: admin/main.php:109
-msgid "Social Media Settings"
-msgstr ""
-
-#: admin/main.php:110
-msgid "Miscellaneous Settings"
-msgstr ""
-
-#: admin/main.php:113
-msgid "Main Layout"
-msgstr ""
-
-#: admin/main.php:114
-msgid "Content / Sidebar Width"
-msgstr ""
-
-#: admin/main.php:115
-msgid "Responsiveness"
-msgstr ""
-
-#: admin/main.php:118
-msgid "Enable Presentation Page"
-msgstr ""
-
-#: admin/main.php:119
-msgid "Show Posts on Presentation Page"
-msgstr ""
-
-#: admin/main.php:120
-msgid "Slider Settings"
-msgstr ""
-
-#: admin/main.php:121
-msgid "Slides"
-msgstr ""
-
-#: admin/main.php:122
-msgid "Presentation Page Columns"
-msgstr ""
-
-#: admin/main.php:123
-msgid "Extras"
-msgstr ""
-
-#: admin/main.php:126
-msgid "Header Height"
-msgstr ""
-
-#: admin/main.php:127
-msgid "Header Image"
-msgstr ""
-
-#: admin/main.php:128
-msgid "Site Header"
-msgstr ""
-
-#: admin/main.php:129
-msgid "Custom Logo Upload"
-msgstr ""
-
-#: admin/main.php:130
-msgid "Header Spacing"
-msgstr ""
-
-#: admin/main.php:131
-msgid "Rounded Menu Corners"
-msgstr ""
-
-#: admin/main.php:132
-msgid "FavIcon Upload"
-msgstr ""
-
-#: admin/main.php:134
-msgid "General Font"
-msgstr ""
-
-#: admin/main.php:135
-msgid "General Font Size"
-msgstr ""
-
-#: admin/main.php:136
-msgid "Post Title Font "
-msgstr ""
-
-#: admin/main.php:137
-msgid "Post Title Font Size"
-msgstr ""
-
-#: admin/main.php:138
-msgid "Sidebar Font"
-msgstr ""
-
-#: admin/main.php:139
-msgid "SideBar Font Size"
-msgstr ""
-
-#: admin/main.php:140
-msgid "Headings Font"
-msgstr ""
-
-#: admin/main.php:141
-msgid "Force Text Align"
-msgstr ""
-
-#: admin/main.php:142
-msgid "Paragraph spacing"
-msgstr ""
-
-#: admin/main.php:143
-msgid "Paragraph indent"
-msgstr ""
-
-#: admin/main.php:144
-msgid "Header indent"
-msgstr ""
-
-#: admin/main.php:145
-msgid "Line Height"
-msgstr ""
-
-#: admin/main.php:146
-msgid "Word spacing"
-msgstr ""
-
-#: admin/main.php:147
-msgid "Letter spacing"
-msgstr ""
-
-#: admin/main.php:148
-msgid "Text shadow"
-msgstr ""
-
-#: admin/main.php:150
-msgid "Background Image"
-msgstr ""
-
-#: admin/main.php:151
-msgid "Background Color"
-msgstr ""
-
-#: admin/main.php:152
-msgid "Header (Banner and Menu) Background Color"
-msgstr ""
-
-#: admin/main.php:153
-msgid "Content Background Color"
-msgstr ""
-
-#: admin/main.php:154
-msgid "Menu Items Background Color"
-msgstr ""
-
-#: admin/main.php:155
-msgid "First Sidebar Background Color"
-msgstr ""
-
-#: admin/main.php:156
-msgid "Second Sidebar Background Color"
-msgstr ""
-
-#: admin/main.php:158
-msgid "Site Title Color"
-msgstr ""
-
-#: admin/main.php:159
-msgid "Site Description Color"
-msgstr ""
-
-#: admin/main.php:161
-msgid "Content Text Color"
-msgstr ""
-
-#: admin/main.php:162
-msgid "Links Color"
-msgstr ""
-
-#: admin/main.php:163
-msgid "Links Hover Color"
-msgstr ""
-
-#: admin/main.php:164
-msgid "Post Title Color"
-msgstr ""
-
-#: admin/main.php:165
-msgid "Post Title Hover Color"
-msgstr ""
-
-#: admin/main.php:166
-msgid "Sidebar Header Background Color"
-msgstr ""
-
-#: admin/main.php:167
-msgid "Sidebar Header Text Color"
-msgstr ""
-
-#: admin/main.php:168
-msgid "Footer Widget Background Color"
-msgstr ""
-
-#: admin/main.php:169
-msgid "Footer Background Color"
-msgstr ""
-
-#: admin/main.php:170
-msgid "Footer Widget Header Text Color"
-msgstr ""
-
-#: admin/main.php:171
-msgid "Footer Widget Link Color"
-msgstr ""
-
-#: admin/main.php:172
-msgid "Footer Widget Hover Color"
-msgstr ""
-
-#: admin/main.php:174
-msgid "Breadcrumbs"
-msgstr ""
-
-#: admin/main.php:175
-msgid "Pagination"
-msgstr ""
-
-#: admin/main.php:176
-msgid "Main Menu Alignment"
-msgstr ""
-
-#: admin/main.php:177
-msgid "Post Images Border"
-msgstr ""
-
-#: admin/main.php:178
-msgid "Caption Border"
-msgstr ""
-
-#: admin/main.php:179
-msgid "Caption Pin"
-msgstr ""
-
-#: admin/main.php:180
-msgid "Sidebar Menu Bullets"
-msgstr ""
-
-#: admin/main.php:181
-msgid "Meta Area Background"
-msgstr ""
-
-#: admin/main.php:182
-msgid "Post Separator"
-msgstr ""
-
-#: admin/main.php:183
-msgid "Content List Bullets"
-msgstr ""
-
-#: admin/main.php:184
-msgid "Page Titles"
-msgstr ""
-
-#: admin/main.php:185
-msgid "Category Page Titles"
-msgstr ""
-
-#: admin/main.php:186
-msgid "Hide Tables"
-msgstr ""
-
-#: admin/main.php:187
-msgid "Back to Top button"
-msgstr ""
-
-#: admin/main.php:188
-msgid "Text Under Comments"
-msgstr ""
-
-#: admin/main.php:189
-msgid "Comments are closed text"
-msgstr ""
-
-#: admin/main.php:190
-msgid "Comments off"
-msgstr ""
-
-#: admin/main.php:192
-msgid "Post Comments Link"
-msgstr ""
-
-#: admin/main.php:193
-msgid "Post Date"
-msgstr ""
-
-#: admin/main.php:194
-msgid "Post Time"
-msgstr ""
-
-#: admin/main.php:195
-msgid "Post Author"
-msgstr ""
-
-#: admin/main.php:196
-msgid "Post Category"
-msgstr ""
-
-#: admin/main.php:197
-msgid "Meta Bar"
-msgstr ""
-
-#: admin/main.php:198
-msgid "Post Tags"
-msgstr ""
-
-#: admin/main.php:199
-msgid "Post Permalink"
-msgstr ""
-
-#: admin/main.php:201
-msgid "Post Excerpts on Home Page"
-msgstr ""
-
-#: admin/main.php:202
-msgid "Affect Sticky Posts"
-msgstr ""
-
-#: admin/main.php:203
-msgid "Post Excerpts on Archive and Category Pages"
-msgstr ""
-
-#: admin/main.php:204
-msgid "Number of Words for Post Excerpts "
-msgstr ""
-
-#: admin/main.php:205
-msgid "Magazine Layout"
-msgstr ""
-
-#: admin/main.php:206
-msgid "Excerpt suffix"
-msgstr ""
-
-#: admin/main.php:207
-msgid "Continue reading link text "
-msgstr ""
-
-#: admin/main.php:208
-msgid "HTML tags in Excerpts"
-msgstr ""
-
-#: admin/main.php:210
-msgid "Featured Images as POST Thumbnails "
-msgstr ""
-
-#: admin/main.php:211
-msgid "Auto Select Images From Posts "
-msgstr ""
-
-#: admin/main.php:212
-msgid "Thumbnails Alignment "
-msgstr ""
-
-#: admin/main.php:213
-msgid "Thumbnails Size "
-msgstr ""
-
-#: admin/main.php:214
-msgid "Featured Images as HEADER Images "
-msgstr ""
-
-#: admin/main.php:216
-msgid "Link nr. 1"
-msgstr ""
-
-#: admin/main.php:217
-msgid "Link nr. 2"
-msgstr ""
-
-#: admin/main.php:218
-msgid "Link nr. 3"
-msgstr ""
-
-#: admin/main.php:219
-msgid "Link nr. 4"
-msgstr ""
-
-#: admin/main.php:220
-msgid "Link nr. 5"
-msgstr ""
-
-#: admin/main.php:221
-msgid "Socials display"
-msgstr ""
-
-#: admin/main.php:223
-msgid "SEO Settings"
-msgstr ""
-
-#: admin/main.php:224
-msgid "Custom Footer Text"
-msgstr ""
-
-#: admin/main.php:225
-msgid "Custom CSS"
-msgstr ""
-
-#: admin/main.php:226
-msgid "Custom JavaScript"
-msgstr ""
-
-#: admin/main.php:243
-msgid "Sorry, but you do not have sufficient permissions to access this page."
-msgstr ""
-
-#: admin/main.php:263
-msgid "Mantra settings updated successfully."
-msgstr ""
-
-#: admin/main.php:275
-msgid "Save Changes"
-msgstr ""
-
-#: admin/main.php:276
-msgid "Reset to Defaults"
-msgstr ""
-
-#: admin/main.php:308
-msgid "Import/Export Settings"
-msgstr ""
-
-#: admin/main.php:314
-msgid "Export Theme options"
-msgstr ""
-
-#: admin/main.php:315
-msgid ""
-"It's that easy: a mouse click away - the ability to export your Mantra "
-"settings and save them on your computer. Feeling safer? You should!"
-msgstr ""
-
-#: admin/main.php:320
-msgid "Import Theme options"
-msgstr ""
-
-#: admin/main.php:321
-msgid ""
-" Without the import, the export would just be a fool's exercise. Make sure "
-"you have the exported file ready and see you after the mouse click."
-msgstr ""
-
-#: admin/main.php:329
-msgid "Mantra Latest News"
-msgstr ""
-
-#: admin/main.php:340
-msgid "No news items."
-msgstr ""
-
-#: admin/main.php:344
-msgid "Posted on"
-msgstr ""
-
-#: admin/settings.php:66
-msgid "One column (no sidebars)"
-msgstr ""
-
-#: admin/settings.php:67
-msgid "Two columns, sidebar on the right"
-msgstr ""
-
-#: admin/settings.php:68
-msgid "Two columns, sidebar on the left"
-msgstr ""
-
-#: admin/settings.php:69
-msgid "Three columns, sidebars on the right"
-msgstr ""
-
-#: admin/settings.php:70
-msgid "Three columns, sidebars on the left"
-msgstr ""
-
-#: admin/settings.php:71
-msgid "Three columns, one sidebar on each side"
-msgstr ""
-
-#: admin/settings.php:86
-msgid ""
-"Choose your layout. Possible options are: <br> No sidebar, a single sidebar "
-"on either left of right, two sidebars on either left or\n"
-"\t\tright and two sidebars on each side."
-msgstr ""
-
-#: admin/settings.php:95
-msgid "Absolute"
-msgstr ""
-
-#: admin/settings.php:95
-msgid "Relative *DEPRECATED"
-msgstr ""
-
-#: admin/settings.php:96
-msgid "Dimensions to use: "
-msgstr ""
-
-#: admin/settings.php:178 admin/settings.php:198
-msgid "Content ="
-msgstr ""
-
-#: admin/settings.php:179 admin/settings.php:199
-msgid "Sidebar(s) ="
-msgstr ""
-
-#: admin/settings.php:180 admin/settings.php:200
-msgid "Total width ="
-msgstr ""
-
-#: admin/settings.php:189
-msgid ""
-"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"
-" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "
-"at least 220px and no more than 800px.<br />\n"
-"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "
-"half the selected width."
-msgstr ""
-
-#: admin/settings.php:209
-msgid ""
-"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"
-" \t\tThese are realtive dimmensions - relative to the user's browser. The "
-"total width is a percentage of the browser's width.<br />\n"
-"\t While the content cannot be less than 40% wide, the sidebar area is at "
-"least 20% and no more than 50%.<br />\n"
-"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "
-"half the selected width."
-msgstr ""
-
-#: admin/settings.php:223 admin/settings.php:246 admin/settings.php:262
-#: admin/settings.php:731 admin/settings.php:1094 admin/settings.php:1156
-#: admin/settings.php:1344 admin/settings.php:1359 admin/settings.php:1530
-#: admin/settings.php:1592 admin/settings.php:1793 admin/settings.php:1822
-#: admin/settings.php:1845 admin/settings.php:1868 admin/settings.php:1917
-#: admin/settings.php:2053
-msgid "Enable"
-msgstr ""
-
-#: admin/settings.php:223 admin/settings.php:246 admin/settings.php:262
-#: admin/settings.php:731 admin/settings.php:1094 admin/settings.php:1156
-#: admin/settings.php:1344 admin/settings.php:1359 admin/settings.php:1530
-#: admin/settings.php:1592 admin/settings.php:1793 admin/settings.php:1822
-#: admin/settings.php:1845 admin/settings.php:1868 admin/settings.php:1917
-#: admin/settings.php:2053
-msgid "Disable"
-msgstr ""
-
-#: admin/settings.php:232
-msgid ""
-"Enable to make Mantra fully responsive. The layout and general sizes of your "
-"blog will adjust depending on what device and what resolution it is viewed "
-"in.<br> Do not disable unless you have a good reason to."
-msgstr ""
-
-#: admin/settings.php:254
-msgid ""
-"Enable the presentation front-page. This will become your new home page. It "
-"has a slider and columns for presentation\n"
-"\t\ttext and images.<br>If you have this enabled but don't see a "
-"Presentation page then go to <a href='options-reading.php'> Settings &raquo; "
-"Reading </a> and make sure you have selected <strong>Front Page Displays</"
-"strong> as <Strong>Your Latest Posts</strong>."
-msgstr ""
-
-#: admin/settings.php:271
-msgid "posts"
-msgstr ""
-
-#: admin/settings.php:272
-msgid ""
-"Enable to display latest posts on the presentation page, below the columns. "
-"Sticky posts are always displayed and not counted."
-msgstr ""
-
-#: admin/settings.php:280
-msgid "Slider Dimensions:"
-msgstr ""
-
-#: admin/settings.php:281
-msgid "width"
-msgstr ""
-
-#: admin/settings.php:282
-msgid "height"
-msgstr ""
-
-#: admin/settings.php:283
-msgid ""
-"The dimensions of your slider. Make sure your images are of the same size."
-msgstr ""
-
-#: admin/settings.php:285
-msgid "Animation:"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "Random"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "Fold"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "Fade"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "SlideInRight"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "SlideInLeft"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "SliceDown"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "SliceDownLeft"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "SliceUp"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "SliceUpLeft"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "SliceUpDown"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "SliceUpDownLeft"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "BoxRandom"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "BoxRain"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "BoxRainReverse"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "BoxRainGrow"
-msgstr ""
-
-#: admin/settings.php:287
-msgid "BoxRainGrowReverse"
-msgstr ""
-
-#: admin/settings.php:295
-msgid "The transition effect your slider will have."
-msgstr ""
-
-#: admin/settings.php:297
-msgid "Border Settings:"
-msgstr ""
-
-#: admin/settings.php:298
-msgid "Width"
-msgstr ""
-
-#: admin/settings.php:299
-msgid "Color"
-msgstr ""
-
-#: admin/settings.php:301
-msgid "The width and color of the slider's border."
-msgstr ""
-
-#: admin/settings.php:303
-msgid "Animation Time:"
-msgstr ""
-
-#: admin/settings.php:304 admin/settings.php:308
-msgid "milliseconds"
-msgstr ""
-
-#: admin/settings.php:305
-msgid "The time in which the transition animation will take place."
-msgstr ""
-
-#: admin/settings.php:307
-msgid "Pause Time:"
-msgstr ""
-
-#: admin/settings.php:309
-msgid "The time in which a slide will be still and visible."
-msgstr ""
-
-#: admin/settings.php:312
-msgid "Slider navigation:"
-msgstr ""
-
-#: admin/settings.php:314
-msgid "Numbers"
-msgstr ""
-
-#: admin/settings.php:314
-msgid "Bullets"
-msgstr ""
-
-#: admin/settings.php:314 admin/settings.php:1451
-msgid "None"
-msgstr ""
-
-#: admin/settings.php:322
-msgid "Your slider navigation type. Shown under the slider."
-msgstr ""
-
-#: admin/settings.php:324
-msgid "Slider arrows:"
-msgstr ""
-
-#: admin/settings.php:326
-msgid "Always Visible"
-msgstr ""
-
-#: admin/settings.php:326
-msgid "Visible on Hover"
-msgstr ""
-
-#: admin/settings.php:326
-msgid "Hidden"
-msgstr ""
-
-#: admin/settings.php:334
-msgid "The Left and Right arrows on your slider"
-msgstr ""
-
-#: admin/settings.php:375 admin/settings.php:444
-msgid "Select Category"
-msgstr ""
-
-#: admin/settings.php:402
-msgid "Custom Slides"
-msgstr ""
-
-#: admin/settings.php:402
-msgid "Latest Posts"
-msgstr ""
-
-#: admin/settings.php:402
-msgid "Random Posts"
-msgstr ""
-
-#: admin/settings.php:402
-msgid "Sticky Posts"
-msgstr ""
-
-#: admin/settings.php:402
-msgid "Latest Posts from Category"
-msgstr ""
-
-#: admin/settings.php:402
-msgid "Random Posts from Category"
-msgstr ""
-
-#: admin/settings.php:402
-msgid "Specific Posts"
-msgstr ""
-
-#: admin/settings.php:411
-msgid ""
-"Your slides' content. Only the image is required, all other fields are "
-"optional. Only the slides with an image selected will become acitve and "
-"visible in the live slider."
-msgstr ""
-
-#: admin/settings.php:416
-msgid "Latest posts will be loaded into the slider."
-msgstr ""
-
-#: admin/settings.php:420
-msgid "Random posts will be loaded into the slider."
-msgstr ""
-
-#: admin/settings.php:424
-msgid "Latest posts from the category you choose will be loaded in the slider."
-msgstr ""
-
-#: admin/settings.php:429
-msgid ""
-"Random posts from the category you choose will be loaded into the slider."
-msgstr ""
-
-#: admin/settings.php:433
-msgid "Only sticky posts will be loaded into the slider."
-msgstr ""
-
-#: admin/settings.php:437
-msgid "List the post IDs you want to display (separated by a comma): "
-msgstr ""
-
-#: admin/settings.php:442
-msgid "<br> Choose the cateogry: "
-msgstr ""
-
-#: admin/settings.php:459
-msgid "Number of posts to show:"
-msgstr ""
-
-#: admin/settings.php:466
-msgid "Slide 1"
-msgstr ""
-
-#: admin/settings.php:470 admin/settings.php:485 admin/settings.php:500
-#: admin/settings.php:515 admin/settings.php:530 admin/settings.php:572
-#: admin/settings.php:587 admin/settings.php:602 admin/settings.php:617
-#: admin/settings.php:766 admin/settings.php:789
-msgid "Select / Upload Image"
-msgstr ""
-
-#: admin/settings.php:471 admin/settings.php:486 admin/settings.php:501
-#: admin/settings.php:516 admin/settings.php:531 admin/settings.php:573
-#: admin/settings.php:588 admin/settings.php:618
-msgid "Title"
-msgstr ""
-
-#: admin/settings.php:473 admin/settings.php:488 admin/settings.php:503
-#: admin/settings.php:518 admin/settings.php:533 admin/settings.php:575
-#: admin/settings.php:590 admin/settings.php:605 admin/settings.php:620
-msgid "Text"
-msgstr ""
-
-#: admin/settings.php:481
-msgid "Slide 2"
-msgstr ""
-
-#: admin/settings.php:496
-msgid "Slide 3"
-msgstr ""
-
-#: admin/settings.php:511
-msgid "Slide 4"
-msgstr ""
-
-#: admin/settings.php:526
-msgid "Slide 5"
-msgstr ""
-
-#: admin/settings.php:548
-msgid "Number of columns:"
-msgstr ""
-
-#: admin/settings.php:558
-msgid "Image Height:"
-msgstr ""
-
-#: admin/settings.php:561
-msgid "Read more text:"
-msgstr ""
-
-#: admin/settings.php:564
-msgid ""
-"The linked text that appears at the bottom of all the columns. You can "
-"delete all text inside if you don't want it."
-msgstr ""
-
-#: admin/settings.php:568
-msgid "1st Column"
-msgstr ""
-
-#: admin/settings.php:583
-msgid "2nd Column"
-msgstr ""
-
-#: admin/settings.php:598
-msgid "3rd Column"
-msgstr ""
-
-#: admin/settings.php:613
-msgid "4th Column"
-msgstr ""
-
-#: admin/settings.php:635
-msgid "Extra Text"
-msgstr ""
-
-#: admin/settings.php:637
-msgid ""
-"More text for your front page. The top title is above the slider, the second "
-"title between the slider and the columns and 2 more rows of text under the "
-"columns.\n"
-"\t\t It's all optional so leave any input field empty if it's not required. "
-msgstr ""
-
-#: admin/settings.php:640
-msgid "Top Title"
-msgstr ""
-
-#: admin/settings.php:641
-msgid "Second Title"
-msgstr ""
-
-#: admin/settings.php:644
-msgid "Title color"
-msgstr ""
-
-#: admin/settings.php:648
-msgid "Bottom Text 1"
-msgstr ""
-
-#: admin/settings.php:650
-msgid "Bottom Text 2"
-msgstr ""
-
-#: admin/settings.php:658
-msgid "Hide areas"
-msgstr ""
-
-#: admin/settings.php:660
-msgid "Choose the areas to hide on the first page."
-msgstr ""
-
-#: admin/settings.php:672
-msgid "Hide the header area (image or background color)."
-msgstr ""
-
-#: admin/settings.php:676
-msgid "Hide the main menu (the top navigation tabs)."
-msgstr ""
-
-#: admin/settings.php:680
-msgid "Hide the footer widgets. "
-msgstr ""
-
-#: admin/settings.php:684
-msgid "Hide the footer (copyright area)."
-msgstr ""
-
-#: admin/settings.php:688
-msgid "Hide the white color. Only the background color remains."
-msgstr ""
-
-#: admin/settings.php:708
-msgid ""
-"Select the header's height. After saving the settings make sure you reupload "
-"a new header image (if you're using one). The header's width will be = "
-msgstr ""
-
-#: admin/settings.php:715
-msgid "Define header image"
-msgstr ""
-
-#: admin/settings.php:716
-msgid ""
-"The header image should not be used to display logos.<br> Enable ratio "
-"preservation to force the header image aspect ratio. Keep in mind that short "
-"images will become very small on mobile devices."
-msgstr ""
-
-#: admin/settings.php:739
-msgid "Enable or disable the round corners for the main menu items."
-msgstr ""
-
-#: admin/settings.php:747
-msgid "Site Title and Description"
-msgstr ""
-
-#: admin/settings.php:747
-msgid "Custom Logo"
-msgstr ""
-
-#: admin/settings.php:747
-msgid "Clickable header image"
-msgstr ""
-
-#: admin/settings.php:747
-msgid "Empty"
-msgstr ""
-
-#: admin/settings.php:755
-msgid "Choose what to display inside your header area."
-msgstr ""
-
-#: admin/settings.php:765
-msgid ""
-"Custom Logo upload. The logo will appear over the heder image if you have "
-"used one."
-msgstr ""
-
-#: admin/settings.php:774
-msgid "top"
-msgstr ""
-
-#: admin/settings.php:775
-msgid "left"
-msgstr ""
-
-#: admin/settings.php:778
-msgid ""
-"Select the top spacing for the header. Use it to better position your site "
-"title and description or custom logo inside the header. "
-msgstr ""
-
-#: admin/settings.php:788
-msgid ""
-"Limitations: It has to be an image. It should be max 64x64 pixels in "
-"dimensions. Recommended file extensions .ico and .png. <br/><b>Note that "
-"some browsers do not display the changed favicon instantly.</b>"
-msgstr ""
-
-#: admin/settings.php:811
-msgid ""
-"Select the font size you'll use in your blog. Pages, posts and comments will "
-"be affected. Buttons, Headers and Side menus will remain the same."
-msgstr ""
-
-#: admin/settings.php:855
-msgid ""
-"Select the font family you'll use in your blog. All content text will be "
-"affected (including menu buttons). "
-msgstr ""
-
-#: admin/settings.php:857 admin/settings.php:907 admin/settings.php:958
-#: admin/settings.php:1010
-msgid ""
-"Or insert your Google Font below. Please only isert the <strong>name</"
-"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."
-"com/webfonts' > google fonts </a> for some font inspiration."
-msgstr ""
-
-#: admin/settings.php:904
-msgid ""
-"Select the font family you want for your titles. It will affect post titles "
-"and page titles. Leave 'Default' and the general font you selected will be "
-"used."
-msgstr ""
-
-#: admin/settings.php:956
-msgid ""
-"Select the font family you want your sidebar(s) to have. Text in sidebars "
-"will be affected, including any widgets. Leave 'Default' and the general "
-"font you selected will be used."
-msgstr ""
-
-#: admin/settings.php:1007
-msgid ""
-"Select the font family you want your headings to have (h1 - h6 tags will be "
-"affected). Leave 'Default' and the general font you selected will be used."
-msgstr ""
-
-#: admin/settings.php:1019 admin/settings.php:1034 admin/settings.php:1049
-#: admin/settings.php:1109 admin/settings.php:1124 admin/settings.php:1139
-msgid "Default"
-msgstr ""
-
-#: admin/settings.php:1027
-msgid ""
-"Post Header Font size. Leave 'Default' for normal settings (size value will "
-"be as set in the CSS)."
-msgstr ""
-
-#: admin/settings.php:1042
-msgid ""
-"Sidebar Font size. Leave 'Default' for normal settings (size value will be "
-"as set in the CSS)."
-msgstr ""
-
-#: admin/settings.php:1049 admin/settings.php:1373 admin/settings.php:1884
-msgid "Left"
-msgstr ""
-
-#: admin/settings.php:1049 admin/settings.php:1373 admin/settings.php:1884
-msgid "Right"
-msgstr ""
-
-#: admin/settings.php:1049
-msgid "Justify"
-msgstr ""
-
-#: admin/settings.php:1049 admin/settings.php:1373 admin/settings.php:1884
-msgid "Center"
-msgstr ""
-
-#: admin/settings.php:1057
-msgid ""
-"This overwrites the text alignment in posts and pages. Leave 'Default' for "
-"normal settings (alignment will remain as declared in posts, comments etc.)."
-msgstr ""
-
-#: admin/settings.php:1071
-msgid "Choose the spacing between paragraphs."
-msgstr ""
-
-#: admin/settings.php:1086
-msgid "Choose the indent for your paragraphs."
-msgstr ""
-
-#: admin/settings.php:1102
-msgid "Disable the default header and title indent (left margin)."
-msgstr ""
-
-#: admin/settings.php:1117
-msgid ""
-"Text line height. The height between 2 rows of text. Leave 'Default' for "
-"normal settings (size value will be as set in the CSS)."
-msgstr ""
-
-#: admin/settings.php:1132
-msgid ""
-"The space between <i>words</i>. Leave 'Default' for normal settings (size "
-"value will be as set in the CSS)."
-msgstr ""
-
-#: admin/settings.php:1147
-msgid ""
-"The space between <i>letters</i>. Leave 'Default' for normal settings (size "
-"value will be as set in the CSS)."
-msgstr ""
-
-#: admin/settings.php:1164
-msgid "Disable the default text shadow on headers and titles."
-msgstr ""
-
-#: admin/settings.php:1172
-msgid "Define background image"
-msgstr ""
-
-#: admin/settings.php:1181
-msgid "Background color (Default value is 444444)."
-msgstr ""
-
-#: admin/settings.php:1189
-msgid ""
-"Header background color (Default value is 333333). You can delete all inside "
-"text for no background color."
-msgstr ""
-
-#: admin/settings.php:1196
-msgid ""
-"Content background color (Default value is FFFFFF). Works best with really "
-"light colors."
-msgstr ""
-
-#: admin/settings.php:1203
-msgid ""
-"Main menu background color (Default value is FAFAFA). Should be the same "
-"color as the content bg or something just as light."
-msgstr ""
-
-#: admin/settings.php:1210
-msgid ""
-"First sidebar background color (Default is no color for a transparent "
-"sidebar)."
-msgstr ""
-
-#: admin/settings.php:1217
-msgid ""
-"Second sidebar background color (Default is no color for a transparent "
-"sidebar)."
-msgstr ""
-
-#: admin/settings.php:1225
-msgid "Footer widget-area background color. (Default value is 171717)."
-msgstr ""
-
-#: admin/settings.php:1233
-msgid "Footer background color (Default value is 222222)."
-msgstr ""
-
-#: admin/settings.php:1241
-msgid "Your blog's title color (Default value is 0D85CC)."
-msgstr ""
-
-#: admin/settings.php:1249
-msgid "Your blog's description color(Default value is 222222)."
-msgstr ""
-
-#: admin/settings.php:1257
-msgid "Content Text Color (Default value is 333333)."
-msgstr ""
-
-#: admin/settings.php:1265
-msgid "Links color (Default value is 0D85CC)."
-msgstr ""
-
-#: admin/settings.php:1273
-msgid "Links color on mouse over (Default value is 333333)."
-msgstr ""
-
-#: admin/settings.php:1281
-msgid "Post Header Text Color (Default value is 333333)."
-msgstr ""
-
-#: admin/settings.php:1289
-msgid "Post Header Text Color on Mouse over (Default value is 000000)."
-msgstr ""
-
-#: admin/settings.php:1297
-msgid "Sidebar Header Background color (Default value is 444444)."
-msgstr ""
-
-#: admin/settings.php:1306
-msgid "Sidebar Header Text Color(Default value is 2EA5FD)."
-msgstr ""
-
-#: admin/settings.php:1314
-msgid "Footer Widget Text Color (Default value is 0D85CC)."
-msgstr ""
-
-#: admin/settings.php:1322
-msgid "Footer Widget Link Color (Default value is 666666)."
-msgstr ""
-
-#: admin/settings.php:1330
-msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."
-msgstr ""
-
-#: admin/settings.php:1352
-msgid ""
-"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "
-"navigation that keeps track of your location withtin the site."
-msgstr ""
-
-#: admin/settings.php:1367
-msgid ""
-"Show numbered pagination. Where there is more than one page, instead of the "
-"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "
-"pagination. "
-msgstr ""
-
-#: admin/settings.php:1381
-msgid ""
-"Select the desired main menu items alignment. Center option is only valid "
-"for single line menus."
-msgstr ""
-
-#: admin/settings.php:1388 admin/settings.php:1451
-msgid "White"
-msgstr ""
-
-#: admin/settings.php:1388
-msgid "Light"
-msgstr ""
-
-#: admin/settings.php:1388
-msgid "Light Gray"
-msgstr ""
-
-#: admin/settings.php:1388 admin/settings.php:1451
-msgid "Gray"
-msgstr ""
-
-#: admin/settings.php:1388
-msgid "Dark Gray"
-msgstr ""
-
-#: admin/settings.php:1388
-msgid "Black"
-msgstr ""
-
-#: admin/settings.php:1396
-msgid ""
-"This setting changes the look of your captions. Images that are not inserted "
-"through captions will not be affected."
-msgstr ""
-
-#: admin/settings.php:1412
-msgid "The border around your inserted images. "
-msgstr ""
-
-#: admin/settings.php:1427
-msgid "The image on top of your captions. "
-msgstr ""
-
-#: admin/settings.php:1442
-msgid "The sidebar list bullets. "
-msgstr ""
-
-#: admin/settings.php:1459
-msgid ""
-"The background for your post-metas area (under your post tiltes). Gray by "
-"default."
-msgstr ""
-
-#: admin/settings.php:1467 admin/settings.php:1483 admin/settings.php:1500
-#: admin/settings.php:1515 admin/settings.php:1545 admin/settings.php:1560
-#: admin/settings.php:1576 admin/settings.php:1612 admin/settings.php:1627
-#: admin/settings.php:1642 admin/settings.php:1657 admin/settings.php:1672
-#: admin/settings.php:1687 admin/settings.php:1702 admin/settings.php:1717
-msgid "Show"
-msgstr ""
-
-#: admin/settings.php:1467 admin/settings.php:1483 admin/settings.php:1500
-#: admin/settings.php:1515 admin/settings.php:1545 admin/settings.php:1576
-#: admin/settings.php:1612 admin/settings.php:1627 admin/settings.php:1642
-#: admin/settings.php:1657 admin/settings.php:1672 admin/settings.php:1687
-#: admin/settings.php:1702 admin/settings.php:1717
-msgid "Hide"
-msgstr ""
-
-#: admin/settings.php:1475
-msgid "Hide or show a horizontal rule to separate posts."
-msgstr ""
-
-#: admin/settings.php:1491
-msgid ""
-"Hide or show bullets next to lists that are in your content area (posts, "
-"pages etc.)."
-msgstr ""
-
-#: admin/settings.php:1508
-msgid "Hide or show Page titles on any <i>created</i> pages. "
-msgstr ""
-
-#: admin/settings.php:1523
-msgid "Hide or show Page titles on <i>Category</i> Pages. "
-msgstr ""
-
-#: admin/settings.php:1538
-msgid "Hide table borders and background color."
-msgstr ""
-
-#: admin/settings.php:1553
-msgid ""
-"Hide the explanatory text under the comments form. (starts with <i>You may "
-"use these HTML tags and attributes:...</i>)."
-msgstr ""
-
-#: admin/settings.php:1560
-msgid "Hide in posts"
-msgstr ""
-
-#: admin/settings.php:1560
-msgid "Hide in pages"
-msgstr ""
-
-#: admin/settings.php:1560
-msgid "Hide everywhere"
-msgstr ""
-
-#: admin/settings.php:1568
-msgid ""
-"Hide the <b>Comments are closed</b> text that by default shows up on pages "
-"or posts with the comments disabled."
-msgstr ""
-
-#: admin/settings.php:1584
-msgid ""
-"Hide the <b>Comments off</b> text next to posts that have comments disabled."
-msgstr ""
-
-#: admin/settings.php:1600
-msgid ""
-"Enable the Back to Top button. The button appears after scrolling the page "
-"down."
-msgstr ""
-
-#: admin/settings.php:1620
-msgid ""
-"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"
-"strong> next to posts or post excerpts."
-msgstr ""
-
-#: admin/settings.php:1635
-msgid "Hide or show the post date."
-msgstr ""
-
-#: admin/settings.php:1650
-msgid ""
-"Show the post time with the date. Time will not be visible if the Post Date "
-"is hidden."
-msgstr ""
-
-#: admin/settings.php:1665
-msgid "Hide or show the post author."
-msgstr ""
-
-#: admin/settings.php:1680
-msgid "Hide the post category."
-msgstr ""
-
-#: admin/settings.php:1695
-msgid "Hide the 'Bookmark permalink'."
-msgstr ""
-
-#: admin/settings.php:1710
-msgid "Hide the meta bar. All meta info in it will be hidden."
-msgstr ""
-
-#: admin/settings.php:1725
-msgid "Hide the post tags."
-msgstr ""
-
-#: admin/settings.php:1738 admin/settings.php:1753 admin/settings.php:1769
-msgid "Excerpt"
-msgstr ""
-
-#: admin/settings.php:1738 admin/settings.php:1753 admin/settings.php:1769
-msgid "Full Post"
-msgstr ""
-
-#: admin/settings.php:1746
-msgid ""
-"Excerpts on the main page. Only standard posts will be affected. All other "
-"post formats (aside, image, chat, quote etc.) have their specific formating."
-msgstr ""
-
-#: admin/settings.php:1761
-msgid ""
-"Choose if you want the sticky posts on your home page to be visible in full "
-"or just the excerpts. "
-msgstr ""
-
-#: admin/settings.php:1777
-msgid ""
-"Excerpts on archive, categroy and search pages. Same as above, only standard "
-"posts will be affected."
-msgstr ""
-
-#: admin/settings.php:1785
-msgid ""
-"The number of words an excerpt will have. When that number is reached the "
-"post will be interrupted by a <i>Continue reading</i> link that\n"
-"\t\t\t\t\t\t\twill take the reader to the full post page."
-msgstr ""
-
-#: admin/settings.php:1801
-msgid ""
-"Enable the Magazine Layout. This layout applies to pages with posts and "
-"shows 2 posts per row."
-msgstr ""
-
-#: admin/settings.php:1808
-msgid ""
-"Replaces the three dots ('[...])' that are appended automatically to "
-"excerpts."
-msgstr ""
-
-#: admin/settings.php:1815
-msgid "Edit the 'Continue Reading' link added to your post excerpts."
-msgstr ""
-
-#: admin/settings.php:1830
-msgid "By default WordPress excerpts remove all HTML tags ("
-msgstr ""
-
-#: admin/settings.php:1861
-msgid ""
-"Show featured images as thumbnails on posts. The images must be selected for "
-"each post in the Featured Image section."
-msgstr ""
-
-#: admin/settings.php:1876
-msgid ""
-"Show the first image that you inserted in a post as a thumbnail. If you "
-"enable this option, the first image in your post will be used even if you "
-"selected a Featured Image in you post."
-msgstr ""
-
-#: admin/settings.php:1892
-msgid "Thumbnail alignment."
-msgstr ""
-
-#: admin/settings.php:1909
-msgid ""
-"The size you want the thumbnails to have (in pixels). By default imges will "
-"be scaled with aspect ratio kept. Choose to crop the images if you want the "
-"exact size."
-msgstr ""
-
-#: admin/settings.php:1925
-msgid ""
-"Show featured images on headers. The header will be replaced with a featured "
-"image if you selected it as a Featured Image in the post and\n"
-"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "
-"size."
-msgstr ""
-
-#: admin/settings.php:1941
-msgid ""
-"Select your desired Social network from the left dropdown menu and insert "
-"your corresponding address in the right input field. (ex: <i>http://www."
-"facebook.com/yourname</i> )"
-msgstr ""
-
-#: admin/settings.php:1942
-msgid "You can insert up to 5 different social sites and addresses."
-msgstr ""
-
-#: admin/settings.php:1943
-msgid "There are a total of 27 social networks to choose from. "
-msgstr ""
-
-#: admin/settings.php:1944
-msgid "You can leave any number of inputs empty. "
-msgstr ""
-
-#: admin/settings.php:1945
-msgid "You can choose the same social media any number of times. "
-msgstr ""
-
-#: admin/settings.php:2020
-msgid "Choose the <b>areas</b> where to display the social icons."
-msgstr ""
-
-#: admin/settings.php:2033
-msgid ""
-"Insert custom text or HTML code that will appear last in you footer. <br /> "
-"You can use HTML to insert links, images and special characters like &copy ."
-msgstr ""
-
-#: admin/settings.php:2041
-msgid ""
-"Insert your custom CSS here. Any CSS declarations made here will overwrite "
-"Mantra's (even the custom options specified right here in the Mantra "
-"Settings page). <br> Your custom CSS will be preserved when updating the "
-"theme.<br> The &ltstyle&gt tags are not needed."
-msgstr ""
-
-#: admin/settings.php:2048
-msgid ""
-"Insert your custom Javascript code here. (Google Analytics and any other "
-"forms of Analytic software).<br> The &ltscript&gt tags are not needed."
-msgstr ""
-
-#: admin/settings.php:2061
-msgid ""
-"Enable Mantra's Search Engine Optimization. This is enabled by default and "
-"should only be disabled if you are using a SEO plugin."
-msgstr ""
-
-#: admin/settings.php:2073
-msgid "Auto"
-msgstr ""
-
-#: admin/settings.php:2073
-msgid "Manual"
-msgstr ""
-
-#: includes/theme-comments.php:28
-msgid "says:"
-msgstr ""
-
-#: includes/theme-comments.php:34
-msgid "Your comment is awaiting moderation."
-msgstr ""
-
-#: includes/theme-comments.php:41
-msgid "at"
-msgstr ""
-
-#: includes/theme-comments.php:41 includes/theme-comments.php:58
-msgid "(Edit)"
-msgstr ""
-
-#: includes/theme-comments.php:58
-msgid "Pingback: "
-msgstr ""
-
-#: includes/theme-comments.php:85
-msgid "Leave a comment"
-msgstr ""
-
-#: includes/theme-comments.php:85
-msgid "<b>1</b> Comment"
-msgstr ""
-
-#: includes/theme-comments.php:85
-msgid "<b>%</b> Comments"
-msgstr ""
-
-#: includes/theme-comments.php:107
-msgid "Older Comments"
-msgstr ""
-
-#: includes/theme-comments.php:108
-msgid "Newer Comments"
-msgstr ""
-
-#: includes/theme-functions.php:58
-msgid "Menu"
-msgstr ""
-
-#: includes/theme-functions.php:269
-msgid "Home Page"
-msgstr ""
-
-#: includes/theme-functions.php:332
-msgid "Powered by"
-msgstr ""
-
-#: includes/theme-loop.php:166
-msgid "By "
-msgstr ""
-
-#: includes/theme-loop.php:206
-msgid " Bookmark the "
-msgstr ""
-
-#: includes/theme-loop.php:206 includes/theme-loop.php:208
-#: includes/theme-loop.php:210
-msgid "Permalink to"
-msgstr ""
-
-#: includes/theme-loop.php:206 includes/theme-loop.php:208
-#: includes/theme-loop.php:210
-msgid "permalink"
-msgstr ""
-
-#: includes/theme-loop.php:208 includes/theme-loop.php:210
-msgid "Bookmark the "
-msgstr ""
-
-#: includes/theme-loop.php:232
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr ""
-
-#: includes/theme-loop.php:233
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr ""
-
-#: includes/theme-seo.php:26
-#, php-format
-msgid "Page %s"
-msgstr ""
-
-#: includes/theme-setup.php:90
-msgid "Primary Navigation"
-msgstr ""
-
-#: includes/theme-setup.php:91
-msgid "Top Navigation"
-msgstr ""
-
-#: includes/theme-setup.php:92
-msgid "Footer Navigation"
-msgstr ""
-
-#: includes/theme-setup.php:128
-msgid "mantra"
-msgstr ""
-
-#: includes/theme-setup.php:187
-msgid "Skip to content"
-msgstr ""
-
-#: includes/theme-setup.php:214
-msgid "Primary Widget Area - Sidebar 1"
-msgstr ""
-
-#: includes/theme-setup.php:216
-msgid "Primary widget area - Sidebar 1"
-msgstr ""
-
-#: includes/theme-setup.php:225
-msgid "Secondary Widget Area - Sidebar 1"
-msgstr ""
-
-#: includes/theme-setup.php:227
-msgid "Secondary widget area - Sidebar 1"
-msgstr ""
-
-#: includes/theme-setup.php:236
-msgid "Third Widget Area - Sidebar 2"
-msgstr ""
-
-#: includes/theme-setup.php:238
-msgid "Third widget area - Sidebar 2"
-msgstr ""
-
-#: includes/theme-setup.php:247
-msgid "Fourth Widget Area - Sidebar 2"
-msgstr ""
-
-#: includes/theme-setup.php:249
-msgid "Fourth widget area - Sidebar 2"
-msgstr ""
-
-#: includes/theme-setup.php:258
-msgid "First Footer Widget Area"
-msgstr ""
-
-#: includes/theme-setup.php:260
-msgid "First footer widget area"
-msgstr ""
-
-#: includes/theme-setup.php:269
-msgid "Second Footer Widget Area"
-msgstr ""
-
-#: includes/theme-setup.php:271
-msgid "Second footer widget area"
-msgstr ""
-
-#: includes/theme-setup.php:280
-msgid "Third Footer Widget Area"
-msgstr ""
-
-#: includes/theme-setup.php:282
-msgid "The third footer widget area"
-msgstr ""
-
-#: includes/theme-setup.php:291
-msgid "Fourth Footer Widget Area"
-msgstr ""
-
-#: includes/theme-setup.php:293
-msgid "The fourth footer widget area"
-msgstr ""
-
-#: includes/theme-setup.php:302 includes/theme-setup.php:304
-msgid "Above content Widget Area"
-msgstr ""
-
-#: includes/theme-setup.php:313 includes/theme-setup.php:315
-msgid "Below Content Widget Area"
-msgstr ""
+msgid ""
+msgstr ""
+"Project-Id-Version: Mantra 2.1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-11-15 12:18+0200\n"
+"PO-Revision-Date: 2013-11-15 12:18+0200\n"
+"Last-Translator: Kay <contact@htx.ro>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.5.5\n"
+"X-Poedit-KeywordsList: __;_e;_x\n"
+"X-Poedit-Basepath: ../\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: 404.php:17
+msgid "Not Found"
+msgstr ""
+
+#: 404.php:19
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."
+msgstr ""
+
+#: archive.php:27
+#, php-format
+msgid "Daily Archives: %s"
+msgstr ""
+
+#: archive.php:29
+#, php-format
+msgid "Monthly Archives: %s"
+msgstr ""
+
+#: archive.php:29
+msgid "F Y"
+msgstr ""
+
+#: archive.php:31
+#, php-format
+msgid "Yearly Archives: %s"
+msgstr ""
+
+#: archive.php:31
+msgid "Y"
+msgstr ""
+
+#: archive.php:33
+msgid "Blog Archives"
+msgstr ""
+
+#: archive.php:59
+#: author.php:75
+#: category.php:51
+#: content-frontpage.php:26
+msgid "Nothing Found"
+msgstr ""
+
+#: archive.php:63
+#: author.php:79
+#: category.php:55
+#: content-frontpage.php:30
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."
+msgstr ""
+
+#: attachment.php:18
+#, php-format
+msgid "Return to %s"
+msgstr ""
+
+#: attachment.php:29
+msgid "By"
+msgstr ""
+
+#: attachment.php:40
+msgid "Published"
+msgstr ""
+
+#: attachment.php:50
+#, php-format
+msgid "Full size is %s pixels"
+msgstr ""
+
+#: attachment.php:53
+msgid "Link to full-size image"
+msgstr ""
+
+#: attachment.php:60
+#: attachment.php:107
+#: content-aside.php:48
+#: content-chat.php:49
+#: content-gallery.php:75
+#: content-image.php:42
+#: content-link.php:49
+#: content-page.php:22
+#: content-quote.php:46
+#: content-status.php:48
+#: content.php:76
+msgid "Edit"
+msgstr ""
+
+#: attachment.php:100
+msgid "Continue reading"
+msgstr ""
+
+#: attachment.php:101
+#: content-aside.php:39
+#: content-chat.php:38
+#: content-gallery.php:65
+#: content-image.php:33
+#: content-link.php:38
+#: content-page.php:21
+#: content-quote.php:36
+#: content-status.php:39
+#: content.php:49
+#: content.php:65
+msgid "Pages:"
+msgstr ""
+
+#: author.php:29
+#, php-format
+msgid "Author Archives: %s"
+msgstr ""
+
+#: author.php:50
+#, php-format
+msgid "About %s"
+msgstr ""
+
+#: category.php:20
+#, php-format
+msgid "Category Archives: %s"
+msgstr ""
+
+#: comments.php:18
+msgid "This post is password protected. Enter the password to view any comments."
+msgstr ""
+
+#: content-aside.php:20
+msgid "Aside"
+msgstr ""
+
+#: content-aside.php:38
+#: content-chat.php:37
+#: content-image.php:32
+#: content-link.php:37
+#: content-quote.php:35
+#: content-status.php:38
+msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
+msgstr ""
+
+#: content-aside.php:46
+#: content-chat.php:45
+#: content-gallery.php:72
+#: content-image.php:39
+#: content-link.php:45
+#: content-quote.php:43
+#: content-status.php:46
+#: content.php:74
+msgid "Tagged"
+msgstr ""
+
+#: content-chat.php:20
+msgid "Chat"
+msgstr ""
+
+#: content-gallery.php:23
+msgid "Gallery"
+msgstr ""
+
+#: content-image.php:19
+msgid "Image"
+msgstr ""
+
+#: content-link.php:20
+msgid "Link"
+msgstr ""
+
+#: content-page.php:27
+msgid "Comments are closed."
+msgstr ""
+
+#: content-quote.php:18
+msgid "Quote"
+msgstr ""
+
+#: content-status.php:30
+msgid "Status"
+msgstr ""
+
+#: search.php:20
+#, php-format
+msgid "Search Results for: %s"
+msgstr ""
+
+#: search.php:39
+#, php-format
+msgid "No search results for: %s"
+msgstr ""
+
+#: searchform.php:1
+msgid "Search"
+msgstr ""
+
+#: sidebar.php:26
+#: sidebar.php:92
+msgid "Sidebar 1"
+msgstr ""
+
+#: sidebar.php:28
+#: sidebar.php:94
+#, php-format
+msgid "You currently have no widgets set in the primary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."
+msgstr ""
+
+#: sidebar.php:29
+#: sidebar.php:61
+#: sidebar.php:95
+#: sidebar.php:128
+#, php-format
+msgid "To hide this sidebar, switch to a different Layout via the <a href=\"%s\">Theme Settings</a>."
+msgstr ""
+
+#: sidebar.php:58
+#: sidebar.php:125
+msgid "Sidebar 2"
+msgstr ""
+
+#: sidebar.php:60
+#: sidebar.php:127
+#, php-format
+msgid "You currently have no widgets set in the secondary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."
+msgstr ""
+
+#: single.php:46
+msgid "View all posts by "
+msgstr ""
+
+#: tag.php:21
+#, php-format
+msgid "Tag Archives: %s"
+msgstr ""
+
+#: admin/admin-functions.php:62
+msgid "Before you can upload your import file, you will need to fix the following error:"
+msgstr ""
+
+#: admin/admin-functions.php:70
+msgid "Import Mantra Theme Options"
+msgstr ""
+
+#: admin/admin-functions.php:72
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"
+msgstr ""
+
+#: admin/admin-functions.php:74
+msgid "Just choose a file from your computer:"
+msgstr ""
+
+#: admin/admin-functions.php:76
+#, php-format
+msgid "Maximum size: %s"
+msgstr ""
+
+#: admin/admin-functions.php:82
+msgid "And import!"
+msgstr ""
+
+#: admin/admin-functions.php:148
+msgid "Import Mantra Theme Options "
+msgstr ""
+
+#: admin/admin-functions.php:151
+msgid "Great! The options have been imported!"
+msgstr ""
+
+#: admin/admin-functions.php:152
+msgid "Go back to the Mantra options page and check them out!"
+msgstr ""
+
+#: admin/admin-functions.php:155
+#: admin/admin-functions.php:161
+#: admin/admin-functions.php:167
+msgid "Oops, there's a small problem."
+msgstr ""
+
+#: admin/admin-functions.php:156
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."
+msgstr ""
+
+#: admin/admin-functions.php:162
+msgid "The uploaded file could not be read."
+msgstr ""
+
+#: admin/admin-functions.php:168
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."
+msgstr ""
+
+#: admin/admin-functions.php:177
+msgid "Oops! The file is empty or there was no file. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini."
+msgstr ""
+
+#: admin/admin-functions.php:183
+msgid "ERROR: You are not authorised to perform that operation"
+msgstr ""
+
+#: admin/main.php:105
+msgid "Layout Settings"
+msgstr ""
+
+#: admin/main.php:106
+msgid "Header Settings"
+msgstr ""
+
+#: admin/main.php:107
+msgid "Presentation Page"
+msgstr ""
+
+#: admin/main.php:108
+msgid "Text Settings"
+msgstr ""
+
+#: admin/main.php:109
+msgid "Color Settings"
+msgstr ""
+
+#: admin/main.php:110
+msgid "Graphics Settings"
+msgstr ""
+
+#: admin/main.php:111
+msgid "Post Information Settings"
+msgstr ""
+
+#: admin/main.php:112
+msgid "Post Excerpt Settings"
+msgstr ""
+
+#: admin/main.php:113
+msgid "Featured Image Settings"
+msgstr ""
+
+#: admin/main.php:114
+msgid "Social Media Settings"
+msgstr ""
+
+#: admin/main.php:115
+msgid "Miscellaneous Settings"
+msgstr ""
+
+#: admin/main.php:118
+msgid "Main Layout"
+msgstr ""
+
+#: admin/main.php:119
+msgid "Content / Sidebar Width"
+msgstr ""
+
+#: admin/main.php:120
+msgid "Responsiveness"
+msgstr ""
+
+#: admin/main.php:123
+msgid "Enable Presentation Page"
+msgstr ""
+
+#: admin/main.php:124
+msgid "Show Posts on Presentation Page"
+msgstr ""
+
+#: admin/main.php:125
+msgid "Slider Settings"
+msgstr ""
+
+#: admin/main.php:126
+msgid "Slides"
+msgstr ""
+
+#: admin/main.php:127
+msgid "Presentation Page Columns"
+msgstr ""
+
+#: admin/main.php:128
+msgid "Extras"
+msgstr ""
+
+#: admin/main.php:131
+msgid "Header Height"
+msgstr ""
+
+#: admin/main.php:132
+msgid "Header Image"
+msgstr ""
+
+#: admin/main.php:133
+msgid "Site Header"
+msgstr ""
+
+#: admin/main.php:134
+msgid "Custom Logo Upload"
+msgstr ""
+
+#: admin/main.php:135
+msgid "Header Spacing"
+msgstr ""
+
+#: admin/main.php:136
+msgid "Rounded Menu Corners"
+msgstr ""
+
+#: admin/main.php:137
+msgid "FavIcon Upload"
+msgstr ""
+
+#: admin/main.php:139
+msgid "General Font"
+msgstr ""
+
+#: admin/main.php:140
+msgid "General Font Size"
+msgstr ""
+
+#: admin/main.php:141
+msgid "Post Title Font "
+msgstr ""
+
+#: admin/main.php:142
+msgid "Post Title Font Size"
+msgstr ""
+
+#: admin/main.php:143
+msgid "Sidebar Font"
+msgstr ""
+
+#: admin/main.php:144
+msgid "SideBar Font Size"
+msgstr ""
+
+#: admin/main.php:145
+msgid "Headings Font"
+msgstr ""
+
+#: admin/main.php:146
+msgid "Force Text Align"
+msgstr ""
+
+#: admin/main.php:147
+msgid "Paragraph spacing"
+msgstr ""
+
+#: admin/main.php:148
+msgid "Paragraph indent"
+msgstr ""
+
+#: admin/main.php:149
+msgid "Header indent"
+msgstr ""
+
+#: admin/main.php:150
+msgid "Line Height"
+msgstr ""
+
+#: admin/main.php:151
+msgid "Word spacing"
+msgstr ""
+
+#: admin/main.php:152
+msgid "Letter spacing"
+msgstr ""
+
+#: admin/main.php:153
+msgid "Text shadow"
+msgstr ""
+
+#: admin/main.php:155
+msgid "Background Image"
+msgstr ""
+
+#: admin/main.php:156
+msgid "Background Color"
+msgstr ""
+
+#: admin/main.php:157
+msgid "Header (Banner and Menu) Background Color"
+msgstr ""
+
+#: admin/main.php:158
+msgid "Content Background Color"
+msgstr ""
+
+#: admin/main.php:159
+msgid "Menu Items Background Color"
+msgstr ""
+
+#: admin/main.php:160
+msgid "First Sidebar Background Color"
+msgstr ""
+
+#: admin/main.php:161
+msgid "Second Sidebar Background Color"
+msgstr ""
+
+#: admin/main.php:163
+msgid "Site Title Color"
+msgstr ""
+
+#: admin/main.php:164
+msgid "Site Description Color"
+msgstr ""
+
+#: admin/main.php:166
+msgid "Content Text Color"
+msgstr ""
+
+#: admin/main.php:167
+msgid "Links Color"
+msgstr ""
+
+#: admin/main.php:168
+msgid "Links Hover Color"
+msgstr ""
+
+#: admin/main.php:169
+msgid "Post Title Color"
+msgstr ""
+
+#: admin/main.php:170
+msgid "Post Title Hover Color"
+msgstr ""
+
+#: admin/main.php:171
+msgid "Sidebar Header Background Color"
+msgstr ""
+
+#: admin/main.php:172
+msgid "Sidebar Header Text Color"
+msgstr ""
+
+#: admin/main.php:173
+msgid "Footer Widget Background Color"
+msgstr ""
+
+#: admin/main.php:174
+msgid "Footer Background Color"
+msgstr ""
+
+#: admin/main.php:175
+msgid "Footer Widget Header Text Color"
+msgstr ""
+
+#: admin/main.php:176
+msgid "Footer Widget Link Color"
+msgstr ""
+
+#: admin/main.php:177
+msgid "Footer Widget Hover Color"
+msgstr ""
+
+#: admin/main.php:179
+msgid "Breadcrumbs"
+msgstr ""
+
+#: admin/main.php:180
+msgid "Pagination"
+msgstr ""
+
+#: admin/main.php:181
+msgid "Main Menu Alignment"
+msgstr ""
+
+#: admin/main.php:182
+msgid "Post Images Border"
+msgstr ""
+
+#: admin/main.php:183
+msgid "Caption Border"
+msgstr ""
+
+#: admin/main.php:184
+msgid "Caption Pin"
+msgstr ""
+
+#: admin/main.php:185
+msgid "Sidebar Menu Bullets"
+msgstr ""
+
+#: admin/main.php:186
+msgid "Meta Area Background"
+msgstr ""
+
+#: admin/main.php:187
+msgid "Post Separator"
+msgstr ""
+
+#: admin/main.php:188
+msgid "Content List Bullets"
+msgstr ""
+
+#: admin/main.php:189
+msgid "Page Titles"
+msgstr ""
+
+#: admin/main.php:190
+msgid "Category Page Titles"
+msgstr ""
+
+#: admin/main.php:191
+msgid "Hide Tables"
+msgstr ""
+
+#: admin/main.php:192
+msgid "Back to Top button"
+msgstr ""
+
+#: admin/main.php:193
+msgid "Text Under Comments"
+msgstr ""
+
+#: admin/main.php:194
+msgid "Comments are closed text"
+msgstr ""
+
+#: admin/main.php:195
+msgid "Comments off"
+msgstr ""
+
+#: admin/main.php:197
+msgid "Post Comments Link"
+msgstr ""
+
+#: admin/main.php:198
+msgid "Post Date"
+msgstr ""
+
+#: admin/main.php:199
+msgid "Post Time"
+msgstr ""
+
+#: admin/main.php:200
+#: admin/settings.php:2087
+msgid "Post Author"
+msgstr ""
+
+#: admin/main.php:201
+msgid "Post Category"
+msgstr ""
+
+#: admin/main.php:202
+msgid "Meta Bar"
+msgstr ""
+
+#: admin/main.php:203
+msgid "Post Tags"
+msgstr ""
+
+#: admin/main.php:204
+msgid "Post Permalink"
+msgstr ""
+
+#: admin/main.php:206
+msgid "Post Excerpts on Home Page"
+msgstr ""
+
+#: admin/main.php:207
+msgid "Affect Sticky Posts"
+msgstr ""
+
+#: admin/main.php:208
+msgid "Post Excerpts on Archive and Category Pages"
+msgstr ""
+
+#: admin/main.php:209
+msgid "Number of Words for Post Excerpts "
+msgstr ""
+
+#: admin/main.php:210
+msgid "Magazine Layout"
+msgstr ""
+
+#: admin/main.php:211
+msgid "Excerpt suffix"
+msgstr ""
+
+#: admin/main.php:212
+msgid "Continue reading link text "
+msgstr ""
+
+#: admin/main.php:213
+msgid "HTML tags in Excerpts"
+msgstr ""
+
+#: admin/main.php:215
+msgid "Featured Images as POST Thumbnails "
+msgstr ""
+
+#: admin/main.php:216
+msgid "Auto Select Images From Posts "
+msgstr ""
+
+#: admin/main.php:217
+msgid "Thumbnails Alignment "
+msgstr ""
+
+#: admin/main.php:218
+msgid "Thumbnails Size "
+msgstr ""
+
+#: admin/main.php:219
+msgid "Featured Images as HEADER Images "
+msgstr ""
+
+#: admin/main.php:221
+msgid "Link nr. 1"
+msgstr ""
+
+#: admin/main.php:222
+msgid "Link nr. 2"
+msgstr ""
+
+#: admin/main.php:223
+msgid "Link nr. 3"
+msgstr ""
+
+#: admin/main.php:224
+msgid "Link nr. 4"
+msgstr ""
+
+#: admin/main.php:225
+msgid "Link nr. 5"
+msgstr ""
+
+#: admin/main.php:226
+msgid "Socials display"
+msgstr ""
+
+#: admin/main.php:228
+msgid "SEO Settings"
+msgstr ""
+
+#: admin/main.php:229
+msgid "Custom Footer Text"
+msgstr ""
+
+#: admin/main.php:230
+msgid "Custom CSS"
+msgstr ""
+
+#: admin/main.php:231
+msgid "Custom JavaScript"
+msgstr ""
+
+#: admin/main.php:248
+msgid "Sorry, but you do not have sufficient permissions to access this page."
+msgstr ""
+
+#: admin/main.php:268
+msgid "Mantra settings updated successfully."
+msgstr ""
+
+#: admin/main.php:280
+msgid "Save Changes"
+msgstr ""
+
+#: admin/main.php:281
+msgid "Reset to Defaults"
+msgstr ""
+
+#: admin/main.php:313
+msgid "Import/Export Settings"
+msgstr ""
+
+#: admin/main.php:319
+msgid "Export Theme options"
+msgstr ""
+
+#: admin/main.php:320
+msgid "It's that easy: a mouse click away - the ability to export your Mantra settings and save them on your computer. Feeling safer? You should!"
+msgstr ""
+
+#: admin/main.php:325
+msgid "Import Theme options"
+msgstr ""
+
+#: admin/main.php:326
+msgid " Without the import, the export would just be a fool's exercise. Make sure you have the exported file ready and see you after the mouse click."
+msgstr ""
+
+#: admin/main.php:334
+msgid "Mantra Latest News"
+msgstr ""
+
+#: admin/main.php:345
+msgid "No news items."
+msgstr ""
+
+#: admin/main.php:349
+msgid "Posted on"
+msgstr ""
+
+#: admin/settings.php:66
+msgid "One column (no sidebars)"
+msgstr ""
+
+#: admin/settings.php:67
+msgid "Two columns, sidebar on the right"
+msgstr ""
+
+#: admin/settings.php:68
+msgid "Two columns, sidebar on the left"
+msgstr ""
+
+#: admin/settings.php:69
+msgid "Three columns, sidebars on the right"
+msgstr ""
+
+#: admin/settings.php:70
+msgid "Three columns, sidebars on the left"
+msgstr ""
+
+#: admin/settings.php:71
+msgid "Three columns, one sidebar on each side"
+msgstr ""
+
+#: admin/settings.php:86
+msgid ""
+"Choose your layout. Possible options are: <br> No sidebar, a single sidebar on either left of right, two sidebars on either left or\n"
+"\t\tright and two sidebars on each side."
+msgstr ""
+
+#: admin/settings.php:95
+msgid "Absolute"
+msgstr ""
+
+#: admin/settings.php:95
+msgid "Relative *DEPRECATED"
+msgstr ""
+
+#: admin/settings.php:96
+msgid "Dimensions to use: "
+msgstr ""
+
+#: admin/settings.php:178
+#: admin/settings.php:198
+msgid "Content ="
+msgstr ""
+
+#: admin/settings.php:179
+#: admin/settings.php:199
+msgid "Sidebar(s) ="
+msgstr ""
+
+#: admin/settings.php:180
+#: admin/settings.php:200
+msgid "Total width ="
+msgstr ""
+
+#: admin/settings.php:189
+msgid ""
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."
+msgstr ""
+
+#: admin/settings.php:209
+msgid ""
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."
+msgstr ""
+
+#: admin/settings.php:223
+#: admin/settings.php:246
+#: admin/settings.php:262
+#: admin/settings.php:731
+#: admin/settings.php:1094
+#: admin/settings.php:1156
+#: admin/settings.php:1344
+#: admin/settings.php:1359
+#: admin/settings.php:1530
+#: admin/settings.php:1592
+#: admin/settings.php:1793
+#: admin/settings.php:1822
+#: admin/settings.php:1845
+#: admin/settings.php:1868
+#: admin/settings.php:1917
+#: admin/settings.php:2053
+msgid "Enable"
+msgstr ""
+
+#: admin/settings.php:223
+#: admin/settings.php:246
+#: admin/settings.php:262
+#: admin/settings.php:731
+#: admin/settings.php:1094
+#: admin/settings.php:1156
+#: admin/settings.php:1344
+#: admin/settings.php:1359
+#: admin/settings.php:1530
+#: admin/settings.php:1592
+#: admin/settings.php:1793
+#: admin/settings.php:1822
+#: admin/settings.php:1845
+#: admin/settings.php:1868
+#: admin/settings.php:1917
+#: admin/settings.php:2053
+msgid "Disable"
+msgstr ""
+
+#: admin/settings.php:232
+msgid "Enable to make Mantra fully responsive. The layout and general sizes of your blog will adjust depending on what device and what resolution it is viewed in.<br> Do not disable unless you have a good reason to."
+msgstr ""
+
+#: admin/settings.php:254
+msgid ""
+"Enable the presentation front-page. This will become your new home page. It has a slider and columns for presentation\n"
+"\t\ttext and images.<br>If you have this enabled but don't see a Presentation page then go to <a href='options-reading.php'> Settings &raquo; Reading </a> and make sure you have selected <strong>Front Page Displays</strong> as <Strong>Your Latest Posts</strong>."
+msgstr ""
+
+#: admin/settings.php:271
+msgid "posts"
+msgstr ""
+
+#: admin/settings.php:272
+msgid "Enable to display latest posts on the presentation page, below the columns. Sticky posts are always displayed and not counted."
+msgstr ""
+
+#: admin/settings.php:280
+msgid "Slider Dimensions:"
+msgstr ""
+
+#: admin/settings.php:281
+msgid "width"
+msgstr ""
+
+#: admin/settings.php:282
+msgid "height"
+msgstr ""
+
+#: admin/settings.php:283
+msgid "The dimensions of your slider. Make sure your images are of the same size."
+msgstr ""
+
+#: admin/settings.php:285
+msgid "Animation:"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "Random"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "Fold"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "Fade"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "SlideInRight"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "SlideInLeft"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "SliceDown"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "SliceDownLeft"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "SliceUp"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "SliceUpLeft"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "SliceUpDown"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "SliceUpDownLeft"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "BoxRandom"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "BoxRain"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "BoxRainReverse"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "BoxRainGrow"
+msgstr ""
+
+#: admin/settings.php:287
+msgid "BoxRainGrowReverse"
+msgstr ""
+
+#: admin/settings.php:295
+msgid "The transition effect your slider will have."
+msgstr ""
+
+#: admin/settings.php:297
+msgid "Border Settings:"
+msgstr ""
+
+#: admin/settings.php:298
+msgid "Width"
+msgstr ""
+
+#: admin/settings.php:299
+msgid "Color"
+msgstr ""
+
+#: admin/settings.php:301
+msgid "The width and color of the slider's border."
+msgstr ""
+
+#: admin/settings.php:303
+msgid "Animation Time:"
+msgstr ""
+
+#: admin/settings.php:304
+#: admin/settings.php:308
+msgid "milliseconds"
+msgstr ""
+
+#: admin/settings.php:305
+msgid "The time in which the transition animation will take place."
+msgstr ""
+
+#: admin/settings.php:307
+msgid "Pause Time:"
+msgstr ""
+
+#: admin/settings.php:309
+msgid "The time in which a slide will be still and visible."
+msgstr ""
+
+#: admin/settings.php:312
+msgid "Slider navigation:"
+msgstr ""
+
+#: admin/settings.php:314
+msgid "Numbers"
+msgstr ""
+
+#: admin/settings.php:314
+msgid "Bullets"
+msgstr ""
+
+#: admin/settings.php:314
+#: admin/settings.php:1451
+msgid "None"
+msgstr ""
+
+#: admin/settings.php:322
+msgid "Your slider navigation type. Shown under the slider."
+msgstr ""
+
+#: admin/settings.php:324
+msgid "Slider arrows:"
+msgstr ""
+
+#: admin/settings.php:326
+msgid "Always Visible"
+msgstr ""
+
+#: admin/settings.php:326
+msgid "Visible on Hover"
+msgstr ""
+
+#: admin/settings.php:326
+msgid "Hidden"
+msgstr ""
+
+#: admin/settings.php:334
+msgid "The Left and Right arrows on your slider"
+msgstr ""
+
+#: admin/settings.php:375
+#: admin/settings.php:444
+msgid "Select Category"
+msgstr ""
+
+#: admin/settings.php:402
+msgid "Custom Slides"
+msgstr ""
+
+#: admin/settings.php:402
+msgid "Latest Posts"
+msgstr ""
+
+#: admin/settings.php:402
+msgid "Random Posts"
+msgstr ""
+
+#: admin/settings.php:402
+msgid "Sticky Posts"
+msgstr ""
+
+#: admin/settings.php:402
+msgid "Latest Posts from Category"
+msgstr ""
+
+#: admin/settings.php:402
+msgid "Random Posts from Category"
+msgstr ""
+
+#: admin/settings.php:402
+msgid "Specific Posts"
+msgstr ""
+
+#: admin/settings.php:403
+msgid "Select the content you want to load in your slides:"
+msgstr ""
+
+#: admin/settings.php:411
+msgid "Your slides' content. Only the image is required, all other fields are optional. Only the slides with an image selected will become acitve and visible in the live slider."
+msgstr ""
+
+#: admin/settings.php:416
+msgid "Latest posts will be loaded into the slider."
+msgstr ""
+
+#: admin/settings.php:420
+msgid "Random posts will be loaded into the slider."
+msgstr ""
+
+#: admin/settings.php:424
+msgid "Latest posts from the category you choose will be loaded in the slider."
+msgstr ""
+
+#: admin/settings.php:429
+msgid "Random posts from the category you choose will be loaded into the slider."
+msgstr ""
+
+#: admin/settings.php:433
+msgid "Only sticky posts will be loaded into the slider."
+msgstr ""
+
+#: admin/settings.php:437
+msgid "List the post IDs you want to display (separated by a comma): "
+msgstr ""
+
+#: admin/settings.php:442
+msgid "<br> Choose the cateogry: "
+msgstr ""
+
+#: admin/settings.php:459
+msgid "Number of posts to show:"
+msgstr ""
+
+#: admin/settings.php:466
+msgid "Slide 1"
+msgstr ""
+
+#: admin/settings.php:470
+#: admin/settings.php:485
+#: admin/settings.php:500
+#: admin/settings.php:515
+#: admin/settings.php:530
+#: admin/settings.php:572
+#: admin/settings.php:587
+#: admin/settings.php:602
+#: admin/settings.php:617
+#: admin/settings.php:766
+#: admin/settings.php:789
+msgid "Select / Upload Image"
+msgstr ""
+
+#: admin/settings.php:471
+#: admin/settings.php:486
+#: admin/settings.php:501
+#: admin/settings.php:516
+#: admin/settings.php:531
+#: admin/settings.php:573
+#: admin/settings.php:588
+#: admin/settings.php:618
+msgid "Title"
+msgstr ""
+
+#: admin/settings.php:473
+#: admin/settings.php:488
+#: admin/settings.php:503
+#: admin/settings.php:518
+#: admin/settings.php:533
+#: admin/settings.php:575
+#: admin/settings.php:590
+#: admin/settings.php:605
+#: admin/settings.php:620
+msgid "Text"
+msgstr ""
+
+#: admin/settings.php:481
+msgid "Slide 2"
+msgstr ""
+
+#: admin/settings.php:496
+msgid "Slide 3"
+msgstr ""
+
+#: admin/settings.php:511
+msgid "Slide 4"
+msgstr ""
+
+#: admin/settings.php:526
+msgid "Slide 5"
+msgstr ""
+
+#: admin/settings.php:548
+msgid "Number of columns:"
+msgstr ""
+
+#: admin/settings.php:558
+msgid "Image Height:"
+msgstr ""
+
+#: admin/settings.php:561
+msgid "Read more text:"
+msgstr ""
+
+#: admin/settings.php:564
+msgid "The linked text that appears at the bottom of all the columns. You can delete all text inside if you don't want it."
+msgstr ""
+
+#: admin/settings.php:568
+msgid "1st Column"
+msgstr ""
+
+#: admin/settings.php:583
+msgid "2nd Column"
+msgstr ""
+
+#: admin/settings.php:598
+msgid "3rd Column"
+msgstr ""
+
+#: admin/settings.php:613
+msgid "4th Column"
+msgstr ""
+
+#: admin/settings.php:635
+msgid "Extra Text"
+msgstr ""
+
+#: admin/settings.php:637
+msgid ""
+"More text for your front page. The top title is above the slider, the second title between the slider and the columns and 2 more rows of text under the columns.\n"
+"\t\t It's all optional so leave any input field empty if it's not required. "
+msgstr ""
+
+#: admin/settings.php:640
+msgid "Top Title"
+msgstr ""
+
+#: admin/settings.php:641
+msgid "Second Title"
+msgstr ""
+
+#: admin/settings.php:644
+msgid "Title color"
+msgstr ""
+
+#: admin/settings.php:648
+msgid "Bottom Text 1"
+msgstr ""
+
+#: admin/settings.php:650
+msgid "Bottom Text 2"
+msgstr ""
+
+#: admin/settings.php:658
+msgid "Hide areas"
+msgstr ""
+
+#: admin/settings.php:660
+msgid "Choose the areas to hide on the first page."
+msgstr ""
+
+#: admin/settings.php:672
+msgid "Hide the header area (image or background color)."
+msgstr ""
+
+#: admin/settings.php:676
+msgid "Hide the main menu (the top navigation tabs)."
+msgstr ""
+
+#: admin/settings.php:680
+msgid "Hide the footer widgets. "
+msgstr ""
+
+#: admin/settings.php:684
+msgid "Hide the footer (copyright area)."
+msgstr ""
+
+#: admin/settings.php:688
+msgid "Hide the white color. Only the background color remains."
+msgstr ""
+
+#: admin/settings.php:708
+msgid "Select the header's height. After saving the settings make sure you reupload a new header image (if you're using one). The header's width will be = "
+msgstr ""
+
+#: admin/settings.php:715
+msgid "Define header image"
+msgstr ""
+
+#: admin/settings.php:716
+msgid "The header image should not be used to display logos.<br> Enable ratio preservation to force the header image aspect ratio. Keep in mind that short images will become very small on mobile devices."
+msgstr ""
+
+#: admin/settings.php:739
+msgid "Enable or disable the round corners for the main menu items."
+msgstr ""
+
+#: admin/settings.php:747
+msgid "Site Title and Description"
+msgstr ""
+
+#: admin/settings.php:747
+msgid "Custom Logo"
+msgstr ""
+
+#: admin/settings.php:747
+msgid "Clickable header image"
+msgstr ""
+
+#: admin/settings.php:747
+msgid "Empty"
+msgstr ""
+
+#: admin/settings.php:755
+msgid "Choose what to display inside your header area."
+msgstr ""
+
+#: admin/settings.php:765
+msgid "Custom Logo upload. The logo will appear over the heder image if you have used one."
+msgstr ""
+
+#: admin/settings.php:774
+msgid "top"
+msgstr ""
+
+#: admin/settings.php:775
+msgid "left"
+msgstr ""
+
+#: admin/settings.php:778
+msgid "Select the top spacing for the header. Use it to better position your site title and description or custom logo inside the header. "
+msgstr ""
+
+#: admin/settings.php:788
+msgid "Limitations: It has to be an image. It should be max 64x64 pixels in dimensions. Recommended file extensions .ico and .png. <br/><b>Note that some browsers do not display the changed favicon instantly.</b>"
+msgstr ""
+
+#: admin/settings.php:811
+msgid "Select the font size you'll use in your blog. Pages, posts and comments will be affected. Buttons, Headers and Side menus will remain the same."
+msgstr ""
+
+#: admin/settings.php:855
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "
+msgstr ""
+
+#: admin/settings.php:857
+#: admin/settings.php:907
+#: admin/settings.php:958
+#: admin/settings.php:1010
+msgid "Or insert your Google Font below. Please only isert the <strong>name</strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google.com/webfonts' > google fonts </a> for some font inspiration."
+msgstr ""
+
+#: admin/settings.php:904
+msgid "Select the font family you want for your titles. It will affect post titles and page titles. Leave 'Default' and the general font you selected will be used."
+msgstr ""
+
+#: admin/settings.php:956
+msgid "Select the font family you want your sidebar(s) to have. Text in sidebars will be affected, including any widgets. Leave 'Default' and the general font you selected will be used."
+msgstr ""
+
+#: admin/settings.php:1007
+msgid "Select the font family you want your headings to have (h1 - h6 tags will be affected). Leave 'Default' and the general font you selected will be used."
+msgstr ""
+
+#: admin/settings.php:1019
+#: admin/settings.php:1034
+#: admin/settings.php:1049
+#: admin/settings.php:1109
+#: admin/settings.php:1124
+#: admin/settings.php:1139
+msgid "Default"
+msgstr ""
+
+#: admin/settings.php:1027
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."
+msgstr ""
+
+#: admin/settings.php:1042
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."
+msgstr ""
+
+#: admin/settings.php:1049
+#: admin/settings.php:1373
+#: admin/settings.php:1884
+msgid "Left"
+msgstr ""
+
+#: admin/settings.php:1049
+#: admin/settings.php:1373
+#: admin/settings.php:1884
+msgid "Right"
+msgstr ""
+
+#: admin/settings.php:1049
+msgid "Justify"
+msgstr ""
+
+#: admin/settings.php:1049
+#: admin/settings.php:1373
+#: admin/settings.php:1884
+msgid "Center"
+msgstr ""
+
+#: admin/settings.php:1057
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."
+msgstr ""
+
+#: admin/settings.php:1071
+msgid "Choose the spacing between paragraphs."
+msgstr ""
+
+#: admin/settings.php:1086
+msgid "Choose the indent for your paragraphs."
+msgstr ""
+
+#: admin/settings.php:1102
+msgid "Disable the default header and title indent (left margin)."
+msgstr ""
+
+#: admin/settings.php:1117
+msgid "Text line height. The height between 2 rows of text. Leave 'Default' for normal settings (size value will be as set in the CSS)."
+msgstr ""
+
+#: admin/settings.php:1132
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."
+msgstr ""
+
+#: admin/settings.php:1147
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."
+msgstr ""
+
+#: admin/settings.php:1164
+msgid "Disable the default text shadow on headers and titles."
+msgstr ""
+
+#: admin/settings.php:1172
+msgid "Define background image"
+msgstr ""
+
+#: admin/settings.php:1181
+msgid "Background color (Default value is 444444)."
+msgstr ""
+
+#: admin/settings.php:1189
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."
+msgstr ""
+
+#: admin/settings.php:1196
+msgid "Content background color (Default value is FFFFFF). Works best with really light colors."
+msgstr ""
+
+#: admin/settings.php:1203
+msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."
+msgstr ""
+
+#: admin/settings.php:1210
+msgid "First sidebar background color (Default is no color for a transparent sidebar)."
+msgstr ""
+
+#: admin/settings.php:1217
+msgid "Second sidebar background color (Default is no color for a transparent sidebar)."
+msgstr ""
+
+#: admin/settings.php:1225
+msgid "Footer widget-area background color. (Default value is 171717)."
+msgstr ""
+
+#: admin/settings.php:1233
+msgid "Footer background color (Default value is 222222)."
+msgstr ""
+
+#: admin/settings.php:1241
+msgid "Your blog's title color (Default value is 0D85CC)."
+msgstr ""
+
+#: admin/settings.php:1249
+msgid "Your blog's description color(Default value is 222222)."
+msgstr ""
+
+#: admin/settings.php:1257
+msgid "Content Text Color (Default value is 333333)."
+msgstr ""
+
+#: admin/settings.php:1265
+msgid "Links color (Default value is 0D85CC)."
+msgstr ""
+
+#: admin/settings.php:1273
+msgid "Links color on mouse over (Default value is 333333)."
+msgstr ""
+
+#: admin/settings.php:1281
+msgid "Post Header Text Color (Default value is 333333)."
+msgstr ""
+
+#: admin/settings.php:1289
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."
+msgstr ""
+
+#: admin/settings.php:1297
+msgid "Sidebar Header Background color (Default value is 444444)."
+msgstr ""
+
+#: admin/settings.php:1306
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."
+msgstr ""
+
+#: admin/settings.php:1314
+msgid "Footer Widget Text Color (Default value is 0D85CC)."
+msgstr ""
+
+#: admin/settings.php:1322
+msgid "Footer Widget Link Color (Default value is 666666)."
+msgstr ""
+
+#: admin/settings.php:1330
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."
+msgstr ""
+
+#: admin/settings.php:1352
+msgid "Show breadcrumbs at the top of the content area. Breadcrumbs are a form of navigation that keeps track of your location withtin the site."
+msgstr ""
+
+#: admin/settings.php:1367
+msgid "Show numbered pagination. Where there is more than one page, instead of the bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered pagination. "
+msgstr ""
+
+#: admin/settings.php:1381
+msgid "Select the desired main menu items alignment. Center option is only valid for single line menus."
+msgstr ""
+
+#: admin/settings.php:1388
+#: admin/settings.php:1451
+msgid "White"
+msgstr ""
+
+#: admin/settings.php:1388
+msgid "Light"
+msgstr ""
+
+#: admin/settings.php:1388
+msgid "Light Gray"
+msgstr ""
+
+#: admin/settings.php:1388
+#: admin/settings.php:1451
+msgid "Gray"
+msgstr ""
+
+#: admin/settings.php:1388
+msgid "Dark Gray"
+msgstr ""
+
+#: admin/settings.php:1388
+msgid "Black"
+msgstr ""
+
+#: admin/settings.php:1396
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."
+msgstr ""
+
+#: admin/settings.php:1412
+msgid "The border around your inserted images. "
+msgstr ""
+
+#: admin/settings.php:1427
+msgid "The image on top of your captions. "
+msgstr ""
+
+#: admin/settings.php:1442
+msgid "The sidebar list bullets. "
+msgstr ""
+
+#: admin/settings.php:1459
+msgid "The background for your post-metas area (under your post tiltes). Gray by default."
+msgstr ""
+
+#: admin/settings.php:1467
+#: admin/settings.php:1483
+#: admin/settings.php:1500
+#: admin/settings.php:1515
+#: admin/settings.php:1545
+#: admin/settings.php:1560
+#: admin/settings.php:1576
+#: admin/settings.php:1612
+#: admin/settings.php:1627
+#: admin/settings.php:1642
+#: admin/settings.php:1657
+#: admin/settings.php:1672
+#: admin/settings.php:1687
+#: admin/settings.php:1702
+#: admin/settings.php:1717
+msgid "Show"
+msgstr ""
+
+#: admin/settings.php:1467
+#: admin/settings.php:1483
+#: admin/settings.php:1500
+#: admin/settings.php:1515
+#: admin/settings.php:1545
+#: admin/settings.php:1576
+#: admin/settings.php:1612
+#: admin/settings.php:1627
+#: admin/settings.php:1642
+#: admin/settings.php:1657
+#: admin/settings.php:1672
+#: admin/settings.php:1687
+#: admin/settings.php:1702
+#: admin/settings.php:1717
+msgid "Hide"
+msgstr ""
+
+#: admin/settings.php:1475
+msgid "Hide or show a horizontal rule to separate posts."
+msgstr ""
+
+#: admin/settings.php:1491
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."
+msgstr ""
+
+#: admin/settings.php:1508
+msgid "Hide or show Page titles on any <i>created</i> pages. "
+msgstr ""
+
+#: admin/settings.php:1523
+msgid "Hide or show Page titles on <i>Category</i> Pages. "
+msgstr ""
+
+#: admin/settings.php:1538
+msgid "Hide table borders and background color."
+msgstr ""
+
+#: admin/settings.php:1553
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."
+msgstr ""
+
+#: admin/settings.php:1560
+msgid "Hide in posts"
+msgstr ""
+
+#: admin/settings.php:1560
+msgid "Hide in pages"
+msgstr ""
+
+#: admin/settings.php:1560
+msgid "Hide everywhere"
+msgstr ""
+
+#: admin/settings.php:1568
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."
+msgstr ""
+
+#: admin/settings.php:1584
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."
+msgstr ""
+
+#: admin/settings.php:1600
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."
+msgstr ""
+
+#: admin/settings.php:1620
+msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."
+msgstr ""
+
+#: admin/settings.php:1635
+msgid "Hide or show the post date."
+msgstr ""
+
+#: admin/settings.php:1650
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."
+msgstr ""
+
+#: admin/settings.php:1665
+msgid "Hide or show the post author."
+msgstr ""
+
+#: admin/settings.php:1680
+msgid "Hide the post category."
+msgstr ""
+
+#: admin/settings.php:1695
+msgid "Hide the 'Bookmark permalink'."
+msgstr ""
+
+#: admin/settings.php:1710
+msgid "Hide the meta bar. All meta info in it will be hidden."
+msgstr ""
+
+#: admin/settings.php:1725
+msgid "Hide the post tags."
+msgstr ""
+
+#: admin/settings.php:1738
+#: admin/settings.php:1753
+#: admin/settings.php:1769
+msgid "Excerpt"
+msgstr ""
+
+#: admin/settings.php:1738
+#: admin/settings.php:1753
+#: admin/settings.php:1769
+msgid "Full Post"
+msgstr ""
+
+#: admin/settings.php:1746
+msgid "Excerpts on the main page. Only standard posts will be affected. All other post formats (aside, image, chat, quote etc.) have their specific formating."
+msgstr ""
+
+#: admin/settings.php:1761
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "
+msgstr ""
+
+#: admin/settings.php:1777
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."
+msgstr ""
+
+#: admin/settings.php:1785
+msgid ""
+"The number of words an excerpt will have. When that number is reached the post will be interrupted by a <i>Continue reading</i> link that\n"
+"\t\t\t\t\t\t\twill take the reader to the full post page."
+msgstr ""
+
+#: admin/settings.php:1801
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."
+msgstr ""
+
+#: admin/settings.php:1808
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."
+msgstr ""
+
+#: admin/settings.php:1815
+msgid "Edit the 'Continue Reading' link added to your post excerpts."
+msgstr ""
+
+#: admin/settings.php:1830
+msgid "By default WordPress excerpts remove all HTML tags ("
+msgstr ""
+
+#: admin/settings.php:1861
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."
+msgstr ""
+
+#: admin/settings.php:1876
+msgid "Show the first image that you inserted in a post as a thumbnail. If you enable this option, the first image in your post will be used even if you selected a Featured Image in you post."
+msgstr ""
+
+#: admin/settings.php:1892
+msgid "Thumbnail alignment."
+msgstr ""
+
+#: admin/settings.php:1909
+msgid "The size you want the thumbnails to have (in pixels). By default imges will be scaled with aspect ratio kept. Choose to crop the images if you want the exact size."
+msgstr ""
+
+#: admin/settings.php:1925
+msgid ""
+"Show featured images on headers. The header will be replaced with a featured image if you selected it as a Featured Image in the post and\n"
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."
+msgstr ""
+
+#: admin/settings.php:1941
+msgid "Select your desired Social network from the left dropdown menu and insert your corresponding address in the right input field. (ex: <i>http://www.facebook.com/yourname</i> )"
+msgstr ""
+
+#: admin/settings.php:1942
+msgid "You can insert up to 5 different social sites and addresses."
+msgstr ""
+
+#: admin/settings.php:1943
+msgid "There are a total of 27 social networks to choose from. "
+msgstr ""
+
+#: admin/settings.php:1944
+msgid "You can leave any number of inputs empty. "
+msgstr ""
+
+#: admin/settings.php:1945
+msgid "You can choose the same social media any number of times. "
+msgstr ""
+
+#: admin/settings.php:2020
+msgid "Choose the <b>areas</b> where to display the social icons."
+msgstr ""
+
+#: admin/settings.php:2033
+msgid "Insert custom text or HTML code that will appear last in you footer. <br /> You can use HTML to insert links, images and special characters like &copy ."
+msgstr ""
+
+#: admin/settings.php:2041
+msgid "Insert your custom CSS here. Any CSS declarations made here will overwrite Mantra's (even the custom options specified right here in the Mantra Settings page). <br> Your custom CSS will be preserved when updating the theme.<br> The &ltstyle&gt tags are not needed."
+msgstr ""
+
+#: admin/settings.php:2048
+msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software).<br> The &ltscript&gt tags are not needed."
+msgstr ""
+
+#: admin/settings.php:2061
+msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."
+msgstr ""
+
+#: admin/settings.php:2062
+msgid "All title tags are handled automatically by Mantra."
+msgstr ""
+
+#: admin/settings.php:2065
+msgid "Homepage Meta Description"
+msgstr ""
+
+#: admin/settings.php:2067
+msgid "This is unique and you should fill this in. Describe your site the best you can and try not to go over 160 characters."
+msgstr ""
+
+#: admin/settings.php:2073
+msgid "Auto"
+msgstr ""
+
+#: admin/settings.php:2073
+msgid "Manual"
+msgstr ""
+
+#: admin/settings.php:2081
+msgid ""
+"<u>Auto</u> - Mantra will automatically add post expcerpts to 'page' and 'post'\tmeta descriptions.<br>\n"
+"\t\t\t\t\t <u>Manual</u> - you will enable a new custom field in your post/page admin section where you can type the exact description you want for every post and page.<br>\n"
+"\t\t\t\t\t For category pages, the actual category descriptions will be used. Go to Posts > Categories and you can fill in a description for every category you have."
+msgstr ""
+
+#: admin/settings.php:2090
+msgid "Do not use"
+msgstr ""
+
+#: admin/settings.php:2100
+msgid "If you want to show an author in the meta tags."
+msgstr ""
+
+#: includes/theme-comments.php:28
+msgid "says:"
+msgstr ""
+
+#: includes/theme-comments.php:34
+msgid "Your comment is awaiting moderation."
+msgstr ""
+
+#: includes/theme-comments.php:41
+msgid "at"
+msgstr ""
+
+#: includes/theme-comments.php:41
+#: includes/theme-comments.php:58
+msgid "(Edit)"
+msgstr ""
+
+#: includes/theme-comments.php:58
+msgid "Pingback: "
+msgstr ""
+
+#: includes/theme-comments.php:85
+msgid "Leave a comment"
+msgstr ""
+
+#: includes/theme-comments.php:85
+msgid "<b>1</b> Comment"
+msgstr ""
+
+#: includes/theme-comments.php:85
+msgid "<b>%</b> Comments"
+msgstr ""
+
+#: includes/theme-comments.php:107
+msgid "Older Comments"
+msgstr ""
+
+#: includes/theme-comments.php:108
+msgid "Newer Comments"
+msgstr ""
+
+#: includes/theme-functions.php:58
+msgid "Menu"
+msgstr ""
+
+#: includes/theme-functions.php:269
+msgid "Home Page"
+msgstr ""
+
+#: includes/theme-functions.php:332
+msgid "Powered by"
+msgstr ""
+
+#: includes/theme-loop.php:166
+msgid "By "
+msgstr ""
+
+#: includes/theme-loop.php:206
+msgid " Bookmark the "
+msgstr ""
+
+#: includes/theme-loop.php:206
+#: includes/theme-loop.php:208
+#: includes/theme-loop.php:210
+msgid "Permalink to"
+msgstr ""
+
+#: includes/theme-loop.php:206
+#: includes/theme-loop.php:208
+#: includes/theme-loop.php:210
+msgid "permalink"
+msgstr ""
+
+#: includes/theme-loop.php:208
+#: includes/theme-loop.php:210
+msgid "Bookmark the "
+msgstr ""
+
+#: includes/theme-loop.php:232
+msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
+msgstr ""
+
+#: includes/theme-loop.php:233
+msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
+msgstr ""
+
+#: includes/theme-seo.php:26
+#, php-format
+msgid "Page %s"
+msgstr ""
+
+#: includes/theme-setup.php:90
+msgid "Primary Navigation"
+msgstr ""
+
+#: includes/theme-setup.php:91
+msgid "Top Navigation"
+msgstr ""
+
+#: includes/theme-setup.php:92
+msgid "Footer Navigation"
+msgstr ""
+
+#: includes/theme-setup.php:128
+msgid "mantra"
+msgstr ""
+
+#: includes/theme-setup.php:187
+msgid "Skip to content"
+msgstr ""
+
+#: includes/theme-setup.php:214
+msgid "Primary Widget Area - Sidebar 1"
+msgstr ""
+
+#: includes/theme-setup.php:216
+msgid "Primary widget area - Sidebar 1"
+msgstr ""
+
+#: includes/theme-setup.php:225
+msgid "Secondary Widget Area - Sidebar 1"
+msgstr ""
+
+#: includes/theme-setup.php:227
+msgid "Secondary widget area - Sidebar 1"
+msgstr ""
+
+#: includes/theme-setup.php:236
+msgid "Third Widget Area - Sidebar 2"
+msgstr ""
+
+#: includes/theme-setup.php:238
+msgid "Third widget area - Sidebar 2"
+msgstr ""
+
+#: includes/theme-setup.php:247
+msgid "Fourth Widget Area - Sidebar 2"
+msgstr ""
+
+#: includes/theme-setup.php:249
+msgid "Fourth widget area - Sidebar 2"
+msgstr ""
+
+#: includes/theme-setup.php:258
+msgid "First Footer Widget Area"
+msgstr ""
+
+#: includes/theme-setup.php:260
+msgid "First footer widget area"
+msgstr ""
+
+#: includes/theme-setup.php:269
+msgid "Second Footer Widget Area"
+msgstr ""
+
+#: includes/theme-setup.php:271
+msgid "Second footer widget area"
+msgstr ""
+
+#: includes/theme-setup.php:280
+msgid "Third Footer Widget Area"
+msgstr ""
+
+#: includes/theme-setup.php:282
+msgid "The third footer widget area"
+msgstr ""
+
+#: includes/theme-setup.php:291
+msgid "Fourth Footer Widget Area"
+msgstr ""
+
+#: includes/theme-setup.php:293
+msgid "The fourth footer widget area"
+msgstr ""
+
+#: includes/theme-setup.php:302
+#: includes/theme-setup.php:304
+msgid "Above content Widget Area"
+msgstr ""
+
+#: includes/theme-setup.php:313
+#: includes/theme-setup.php:315
+msgid "Below Content Widget Area"
+msgstr ""
+
diff --git a/themes/mantra/languages/cs_CZ.mo b/themes/mantra/languages/cs_CZ.mo
new file mode 100644
index 00000000..ca7b5130
--- /dev/null
+++ b/themes/mantra/languages/cs_CZ.mo
Binary files differ
diff --git a/themes/mantra/languages/cs_CZ.po b/themes/mantra/languages/cs_CZ.po
new file mode 100644
index 00000000..9b723fb1
--- /dev/null
+++ b/themes/mantra/languages/cs_CZ.po
@@ -0,0 +1,2611 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Mantra v2.3.2\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-10-10 13:45+0200\n"
+"PO-Revision-Date: 2013-12-25 18:03:56+0000\n"
+"Last-Translator: Libor Schejbal <libor.schejbal@gmail.com>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n"
+"X-Generator: Poedit 1.5.4\n"
+"X-Poedit-Language: \n"
+"X-Poedit-Country: \n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_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"
+"X-Poedit-Basepath: ../\n"
+"X-Poedit-Bookmarks: \n"
+"X-Poedit-SearchPath-0: .\n"
+"X-Textdomain-Support: yes"
+
+#: 404.php:17
+#@ mantra
+msgid "Not Found"
+msgstr "Nenalezeno"
+
+#: 404.php:19
+#@ mantra
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."
+msgstr "Omlouváme se, ale požadovaná stránka nebyla nalezena. Snad vám pomůže další hledání."
+
+#: archive.php:27
+#, php-format
+#@ mantra
+msgid "Daily Archives: %s"
+msgstr "Denní archivy: %s"
+
+#: archive.php:29
+#, php-format
+#@ mantra
+msgid "Monthly Archives: %s"
+msgstr "Měsíční archivy: %s"
+
+#: archive.php:31
+#, php-format
+#@ mantra
+msgid "Yearly Archives: %s"
+msgstr "Roční archivy: %s"
+
+#: archive.php:33
+#@ mantra
+msgid "Blog Archives"
+msgstr "Archiv blogů"
+
+#: archive.php:59
+#: author.php:75
+#: category.php:51
+#: content-frontpage.php:26
+#: index.php:41
+#: search.php:41
+#: tag.php:52
+#: template-blog.php:36
+#@ mantra
+msgid "Nothing Found"
+msgstr "Nic nenalezeno"
+
+#: archive.php:63
+#: author.php:79
+#: category.php:55
+#: content-frontpage.php:30
+#: index.php:45
+#: tag.php:56
+#: template-blog.php:40
+#@ mantra
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."
+msgstr "Omlouváme se, ale v daném archivu nebyly nalezeny žádné výsledky. Zkuste hledat jinde, možná najdete související příspěvek."
+
+#: attachment.php:18
+#, php-format
+#@ mantra
+msgid "Return to %s"
+msgstr "Návrat do %s"
+
+#. translators: %s - title of parent post
+#: attachment.php:29
+#@ mantra
+msgid "By"
+msgstr "Autor"
+
+#: attachment.php:40
+#@ mantra
+msgid "Published"
+msgstr "Publikováno"
+
+#: attachment.php:50
+#, php-format
+#@ mantra
+msgid "Full size is %s pixels"
+msgstr "Plná velikost je %s pixelů"
+
+#: attachment.php:53
+#@ mantra
+msgid "Link to full-size image"
+msgstr "Odkaz na plnou velikost obrázku"
+
+#: attachment.php:60
+#: attachment.php:107
+#: content-aside.php:48
+#: content-chat.php:49
+#: content-gallery.php:75
+#: content-image.php:42
+#: content-link.php:49
+#: content-page.php:22
+#: content-quote.php:46
+#: content-status.php:48
+#: content.php:76
+#: single.php:55
+#: template-onecolumn.php:27
+#: template-page-with-intro.php:17
+#@ mantra
+msgid "Edit"
+msgstr "Editovat"
+
+#: attachment.php:100
+#@ mantra
+msgid "Continue reading"
+msgstr "Číst dále"
+
+#: attachment.php:101
+#: content-aside.php:39
+#: content-chat.php:38
+#: content-gallery.php:65
+#: content-image.php:33
+#: content-link.php:38
+#: content-page.php:21
+#: content-quote.php:36
+#: content-status.php:39
+#: content.php:49
+#: content.php:65
+#: single.php:33
+#: template-onecolumn.php:26
+#: template-page-with-intro.php:16
+#@ mantra
+msgid "Pages:"
+msgstr "Stránky:"
+
+#: author.php:29
+#, php-format
+#@ mantra
+msgid "Author Archives: %s"
+msgstr "Archiv autora: %s"
+
+#: author.php:50
+#: single.php:42
+#, php-format
+#@ mantra
+msgid "About %s"
+msgstr "O %s"
+
+#: category.php:20
+#, php-format
+#@ mantra
+msgid "Category Archives: %s"
+msgstr "Archiv rubriky: %s"
+
+#: comments.php:18
+#@ mantra
+msgid "This post is password protected. Enter the password to view any comments."
+msgstr "Tento příspěvek je chráněn heslem. Zadejte heslo pro jeho zobrazení."
+
+#: content-aside.php:20
+#@ mantra
+msgid "Aside"
+msgstr "Kromě"
+
+#: content-aside.php:38
+#: content-chat.php:37
+#: content-image.php:32
+#: content-link.php:37
+#: content-quote.php:35
+#: content-status.php:38
+#@ mantra
+msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Číst dále <span class=\"meta-nav\">&rarr;</span>"
+
+#: content-aside.php:46
+#: content-chat.php:45
+#: content-gallery.php:72
+#: content-image.php:39
+#: content-link.php:45
+#: content-quote.php:43
+#: content-status.php:46
+#: content.php:74
+#: includes/theme-loop.php:206
+#@ mantra
+msgid "Tagged"
+msgstr "Štítky"
+
+#: content-chat.php:20
+#@ mantra
+msgid "Chat"
+msgstr "Chat"
+
+#: content-gallery.php:23
+#@ mantra
+msgid "Gallery"
+msgstr "Galerie"
+
+#: admin/settings.php:468
+#: admin/settings.php:483
+#: admin/settings.php:498
+#: admin/settings.php:513
+#: admin/settings.php:528
+#: admin/settings.php:570
+#: admin/settings.php:585
+#: admin/settings.php:600
+#: admin/settings.php:615
+#: content-image.php:19
+#@ mantra
+msgid "Image"
+msgstr "Obrázek"
+
+#: admin/settings.php:475
+#: admin/settings.php:490
+#: admin/settings.php:505
+#: admin/settings.php:520
+#: admin/settings.php:535
+#: admin/settings.php:577
+#: admin/settings.php:592
+#: admin/settings.php:607
+#: admin/settings.php:622
+#: content-link.php:20
+#@ mantra
+msgid "Link"
+msgstr "Odkaz"
+
+#: content-page.php:27
+#: includes/theme-comments.php:136
+#@ mantra
+msgid "Comments are closed."
+msgstr "Komentáře jsou uzavřeny"
+
+#: content-quote.php:18
+#@ mantra
+msgid "Quote"
+msgstr "Citát"
+
+#: content-status.php:30
+#@ mantra
+msgid "Status"
+msgstr "Stav"
+
+#: search.php:20
+#, php-format
+#@ mantra
+msgid "Search Results for: %s"
+msgstr "Výsledek hledání: %s"
+
+#: search.php:39
+#, php-format
+#@ mantra
+msgid "No search results for: %s"
+msgstr "Žádný výsledek vyhledávání pro: %s"
+
+#: searchform.php:1
+#@ mantra
+msgid "Search"
+msgstr "Hledat"
+
+#: sidebar.php:26
+#: sidebar.php:92
+#@ mantra
+msgid "Sidebar 1"
+msgstr "Sidebar 1"
+
+#: sidebar.php:28
+#: sidebar.php:94
+#, php-format
+#@ mantra
+msgid "You currently have no widgets set in the primary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."
+msgstr "Momentálně nemáte žádné widgety v primárním sidebaru. Widgety si můžete nainstalovat ppomocí <a href=\"%s\"> Nástěnky </ a>."
+
+#: sidebar.php:29
+#: sidebar.php:61
+#: sidebar.php:95
+#: sidebar.php:128
+#, php-format
+#@ mantra
+msgid "To hide this sidebar, switch to a different Layout via the <a href=\"%s\">Theme Settings</a>."
+msgstr "Chcete-li skrýt sidebar, přepněte do jiného rozložení ppomocí <a href=\"%s\"> Nastavení šablony </ a>."
+
+#: sidebar.php:58
+#: sidebar.php:125
+#@ mantra
+msgid "Sidebar 2"
+msgstr "Sidebar 2"
+
+#: sidebar.php:60
+#: sidebar.php:127
+#, php-format
+#@ mantra
+msgid "You currently have no widgets set in the secondary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."
+msgstr "Momentálně nemáte žádné widgety v sekundárním sidebaru. Widgety si můžete přidat widgety pomocí <a href=\"%s\"> Nástěnky </ a>."
+
+#: single.php:46
+#@ mantra
+msgid "View all posts by "
+msgstr "Zobrazit všechny příspěvky od"
+
+#: tag.php:21
+#, php-format
+#@ mantra
+msgid "Tag Archives: %s"
+msgstr "Archiv štítků: %s"
+
+#: admin/admin-functions.php:62
+#@ mantra
+msgid "Before you can upload your import file, you will need to fix the following error:"
+msgstr "Než budete moci nahrát importovaný soubor, musíte opravit následující chyby:"
+
+#: admin/admin-functions.php:70
+#@ mantra
+msgid "Import Mantra Theme Options"
+msgstr "Import nastavení šablony Mantra"
+
+#: admin/admin-functions.php:72
+#@ mantra
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"
+msgstr "Vítejte! Toto je místo, kde můžete importovat nastavení Mantra. <i> Mějte prosím na paměti, že je to stále experimentální funkce.</i>"
+
+#: admin/admin-functions.php:74
+#@ mantra
+msgid "Just choose a file from your computer:"
+msgstr "Vyberte soubor z počítače:"
+
+#: admin/admin-functions.php:76
+#, php-format
+#@ mantra
+msgid "Maximum size: %s"
+msgstr "Maximální velikost: %s"
+
+#: admin/admin-functions.php:82
+#@ mantra
+msgid "And import!"
+msgstr "Importovat!"
+
+#: admin/admin-functions.php:148
+#@ mantra
+msgid "Import Mantra Theme Options "
+msgstr "Import nastavení šablony Mantra"
+
+#: admin/admin-functions.php:151
+#@ mantra
+msgid "Great! The options have been imported!"
+msgstr "Skvělé! Nastavení bylo importováno!"
+
+#: admin/admin-functions.php:152
+#@ mantra
+msgid "Go back to the Mantra options page and check them out!"
+msgstr "Vraťte se na stránku nastavení šablony Mantra a zkontrolujte jej!"
+
+#: admin/admin-functions.php:155
+#: admin/admin-functions.php:161
+#: admin/admin-functions.php:167
+#@ mantra
+msgid "Oops, there's a small problem."
+msgstr "Jejda, vyskytl se malý problém."
+
+#: admin/admin-functions.php:156
+#@ mantra
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."
+msgstr "Importovaný soubor neobsahuje platné nastavení šablony Mantra. Ujistěte se, že soubor byl exportován ze stránky Nastavení Mantra."
+
+#: admin/admin-functions.php:162
+#@ mantra
+msgid "The uploaded file could not be read."
+msgstr "Nahraný soubor nelze přečíst."
+
+#: admin/admin-functions.php:168
+#@ mantra
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."
+msgstr "Nahraný soubor není podporován. Ujistěte se, že soubor byl exportován ze stránky Mantra, a že se jedná o textový soubor."
+
+#: admin/admin-functions.php:177
+#@ mantra
+msgid "Oops! The file is empty or there was no file. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini."
+msgstr "Jejda! Soubor je prázdný nebo se nejedná o soubor. Tato chyba může být také způsobena tím,, že obrázky jsou zakázány v php.ini nebo post_max_size je definována jako menší než upload_max_filesize v php.ini."
+
+#: admin/admin-functions.php:183
+#@ mantra
+msgid "ERROR: You are not authorised to perform that operation"
+msgstr "CHYBA: Nemáte oprávnění k provedení této operace"
+
+#: admin/main.php:105
+#@ mantra
+msgid "Layout Settings"
+msgstr "Nastavení vzhledu"
+
+#: admin/main.php:106
+#@ mantra
+msgid "Header Settings"
+msgstr "Nastavení záhlaví"
+
+#: admin/main.php:107
+#@ mantra
+msgid "Presentation Page"
+msgstr "Stránka prezentace"
+
+#: admin/main.php:108
+#@ mantra
+msgid "Text Settings"
+msgstr "Nastavení textu"
+
+#: admin/main.php:109
+#@ mantra
+msgid "Color Settings"
+msgstr "Nastavení barev"
+
+#: admin/main.php:110
+#@ mantra
+msgid "Graphics Settings"
+msgstr "Nastavení grafiky"
+
+#: admin/main.php:111
+#@ mantra
+msgid "Post Information Settings"
+msgstr "Nastavení informací o článku"
+
+#: admin/main.php:112
+#@ mantra
+msgid "Post Excerpt Settings"
+msgstr "Nastavení úryvku článku"
+
+#: admin/main.php:113
+#@ mantra
+msgid "Featured Image Settings"
+msgstr "Nastavení obrázků"
+
+#: admin/main.php:114
+#@ mantra
+msgid "Social Media Settings"
+msgstr "Nastavení sociálních sítí"
+
+#: admin/main.php:115
+#@ mantra
+msgid "Miscellaneous Settings"
+msgstr "Obecná nastavení"
+
+#: admin/main.php:118
+#@ mantra
+msgid "Main Layout"
+msgstr "Hlavní nastavení"
+
+#: admin/main.php:119
+#@ mantra
+msgid "Content / Sidebar Width"
+msgstr "Šířka obsahu/nastavení"
+
+#: admin/main.php:120
+#@ mantra
+msgid "Responsiveness"
+msgstr "Schopnost reakce"
+
+#: admin/main.php:123
+#@ mantra
+msgid "Enable Presentation Page"
+msgstr "Zapnout stránku prezentace"
+
+#: admin/main.php:124
+#@ mantra
+msgid "Show Posts on Presentation Page"
+msgstr "Zobrazit příspěvky na stránce prezentace"
+
+#: admin/main.php:125
+#@ mantra
+msgid "Slider Settings"
+msgstr "Nastavení posuvníku"
+
+#: admin/main.php:126
+#@ mantra
+msgid "Slides"
+msgstr "Posuvník"
+
+#: admin/main.php:127
+#@ mantra
+msgid "Presentation Page Columns"
+msgstr "Sloupce stránky prezentace"
+
+#: admin/main.php:128
+#@ mantra
+msgid "Extras"
+msgstr "Doplňky"
+
+#: admin/main.php:131
+#@ mantra
+msgid "Header Height"
+msgstr "Výška záhlaví"
+
+#: admin/main.php:132
+#@ mantra
+msgid "Header Image"
+msgstr "Obrázek hlavičky"
+
+#: admin/main.php:133
+#@ mantra
+msgid "Site Header"
+msgstr "Záhlaví stránky"
+
+#: admin/main.php:134
+#@ mantra
+msgid "Custom Logo Upload"
+msgstr "Nahrát vlastní logo"
+
+#: admin/main.php:135
+#@ mantra
+msgid "Header Spacing"
+msgstr "Mezera v záhlaví"
+
+#: admin/main.php:136
+#@ mantra
+msgid "Rounded Menu Corners"
+msgstr "Zaoblení rohů menu"
+
+#: admin/main.php:137
+#@ mantra
+msgid "FavIcon Upload"
+msgstr "Nahrát faviconu"
+
+#: admin/main.php:139
+#@ mantra
+msgid "General Font"
+msgstr "Obecné písmo"
+
+#: admin/main.php:140
+#@ mantra
+msgid "General Font Size"
+msgstr "Velikost obecného písma"
+
+#: admin/main.php:141
+#@ mantra
+msgid "Post Title Font "
+msgstr "Písmo titulku příspěvku"
+
+#: admin/main.php:142
+#@ mantra
+msgid "Post Title Font Size"
+msgstr "Velikost písma titulku"
+
+#: admin/main.php:143
+#@ mantra
+msgid "Sidebar Font"
+msgstr "Písmo sidebaru"
+
+#: admin/main.php:144
+#@ mantra
+msgid "SideBar Font Size"
+msgstr "Velikost písma sidebaru"
+
+#: admin/main.php:145
+#@ mantra
+msgid "Headings Font"
+msgstr "Písmo záhlaví"
+
+#: admin/main.php:146
+#@ mantra
+msgid "Force Text Align"
+msgstr "Zarovnání textu"
+
+#: admin/main.php:147
+#@ mantra
+msgid "Paragraph spacing"
+msgstr "Mezera mezi odstavci"
+
+#: admin/main.php:148
+#@ mantra
+msgid "Paragraph indent"
+msgstr "Odrážka v odstravci"
+
+#: admin/main.php:149
+#@ mantra
+msgid "Header indent"
+msgstr "Odrážka v záhlaví"
+
+#: admin/main.php:150
+#@ mantra
+msgid "Line Height"
+msgstr "Výška řádku"
+
+#: admin/main.php:151
+#@ mantra
+msgid "Word spacing"
+msgstr "Mezera mezi slovy"
+
+#: admin/main.php:152
+#@ mantra
+msgid "Letter spacing"
+msgstr "Mezera mezi písmeny"
+
+#: admin/main.php:153
+#@ mantra
+msgid "Text shadow"
+msgstr "Stín textu"
+
+#: admin/main.php:155
+#@ mantra
+msgid "Background Image"
+msgstr "Obrázek pozadí"
+
+#: admin/main.php:156
+#@ mantra
+msgid "Background Color"
+msgstr "Barva pozadí"
+
+#: admin/main.php:157
+#@ mantra
+msgid "Header (Banner and Menu) Background Color"
+msgstr "Barva pozadí záhlaví (banneru a menu)"
+
+#: admin/main.php:158
+#@ mantra
+msgid "Content Background Color"
+msgstr "Barva pozadí obsahu"
+
+#: admin/main.php:159
+#@ mantra
+msgid "Menu Items Background Color"
+msgstr "Barva pozadí položek menu"
+
+#: admin/main.php:160
+#@ mantra
+msgid "First Sidebar Background Color"
+msgstr "Barva pozadí prvního sidebaru"
+
+#: admin/main.php:161
+#@ mantra
+msgid "Second Sidebar Background Color"
+msgstr "Barva pozadí druhého sidebaru"
+
+#: admin/main.php:163
+#@ mantra
+msgid "Site Title Color"
+msgstr "Barva textu názvu stránky"
+
+#: admin/main.php:164
+#@ mantra
+msgid "Site Description Color"
+msgstr "Barva textu popisu stránky"
+
+#: admin/main.php:166
+#@ mantra
+msgid "Content Text Color"
+msgstr "Barva textu obsahu"
+
+#: admin/main.php:167
+#@ mantra
+msgid "Links Color"
+msgstr "Barva odkazu"
+
+#: admin/main.php:168
+#@ mantra
+msgid "Links Hover Color"
+msgstr "Barva zaměřeného odkazu"
+
+#: admin/main.php:169
+#@ mantra
+msgid "Post Title Color"
+msgstr "Barva titulku příspěvku"
+
+#: admin/main.php:170
+#@ mantra
+msgid "Post Title Hover Color"
+msgstr "Barva zaměřeného titulku příspěvku"
+
+#: admin/main.php:171
+#@ mantra
+msgid "Sidebar Header Background Color"
+msgstr "Barva pozadí záhlaví sidebaru"
+
+#: admin/main.php:172
+#@ mantra
+msgid "Sidebar Header Text Color"
+msgstr "Barva textu v záhlaví sidebaru"
+
+#: admin/main.php:173
+#@ mantra
+msgid "Footer Widget Background Color"
+msgstr "Barva pozadí widgetu v zápatí"
+
+#: admin/main.php:174
+#@ mantra
+msgid "Footer Background Color"
+msgstr "Barva pozadí zápatí"
+
+#: admin/main.php:175
+#@ mantra
+msgid "Footer Widget Header Text Color"
+msgstr "Barva textu widgetu v záhlaví"
+
+#: admin/main.php:176
+#@ mantra
+msgid "Footer Widget Link Color"
+msgstr "Barva odkazu ve widgetu v záhlaví"
+
+#: admin/main.php:177
+#@ mantra
+msgid "Footer Widget Hover Color"
+msgstr "Barva zaměřeného widgetu v záhlaví"
+
+#: admin/main.php:179
+#@ mantra
+msgid "Breadcrumbs"
+msgstr "Drobečková navigace"
+
+#: admin/main.php:180
+#@ mantra
+msgid "Pagination"
+msgstr "Stránkování"
+
+#: admin/main.php:181
+#@ mantra
+msgid "Main Menu Alignment"
+msgstr "Zarovnání hlavního menu"
+
+#: admin/main.php:182
+#@ mantra
+msgid "Post Images Border"
+msgstr "Ohraničení obrázku v příspěvku"
+
+#: admin/main.php:183
+#@ mantra
+msgid "Caption Border"
+msgstr "Ohraničení popisku"
+
+#: admin/main.php:184
+#@ mantra
+msgid "Caption Pin"
+msgstr "Pin popisku"
+
+#: admin/main.php:185
+#@ mantra
+msgid "Sidebar Menu Bullets"
+msgstr "Odrážky menu v sidebaru"
+
+#: admin/main.php:186
+#@ mantra
+msgid "Meta Area Background"
+msgstr "Pozadí Meta"
+
+#: admin/main.php:187
+#@ mantra
+msgid "Post Separator"
+msgstr "Oddělovač příspěvků"
+
+#: admin/main.php:188
+#@ mantra
+msgid "Content List Bullets"
+msgstr "Odrážky seznamu"
+
+#: admin/main.php:189
+#@ mantra
+msgid "Page Titles"
+msgstr "Titulek stránky"
+
+#: admin/main.php:190
+#@ mantra
+msgid "Category Page Titles"
+msgstr "Titulek stránky Rubrika"
+
+#: admin/main.php:191
+#@ mantra
+msgid "Hide Tables"
+msgstr "Skrýt tabulky"
+
+#: admin/main.php:192
+#@ mantra
+msgid "Back to Top button"
+msgstr "Tlačítko Zpět na začátek"
+
+#: admin/main.php:193
+#@ mantra
+msgid "Text Under Comments"
+msgstr "Text komentáře"
+
+#: admin/main.php:194
+#@ mantra
+msgid "Comments are closed text"
+msgstr "Text uzavřených komentářů"
+
+#: admin/main.php:195
+#@ mantra
+msgid "Comments off"
+msgstr "Vypnutí komentářů"
+
+#: admin/main.php:197
+#@ mantra
+msgid "Post Comments Link"
+msgstr "Odkaz v komentáři u příspěvku"
+
+#: admin/main.php:198
+#@ mantra
+msgid "Post Date"
+msgstr "Datum příspěvku"
+
+#: admin/main.php:199
+#@ mantra
+msgid "Post Time"
+msgstr "Čas příspěvku"
+
+#: admin/main.php:200
+#: admin/settings.php:2087
+#@ mantra
+msgid "Post Author"
+msgstr "Autor příspěvku"
+
+#: admin/main.php:201
+#@ mantra
+msgid "Post Category"
+msgstr "Rubrika příspěvku"
+
+#: admin/main.php:202
+#@ mantra
+msgid "Meta Bar"
+msgstr "Panel Meta"
+
+#: admin/main.php:203
+#@ mantra
+msgid "Post Tags"
+msgstr "Štítek příspěvku"
+
+#: admin/main.php:204
+#@ mantra
+msgid "Post Permalink"
+msgstr "Trvalý odkaz na příspěvek"
+
+#: admin/main.php:206
+#@ mantra
+msgid "Post Excerpts on Home Page"
+msgstr "Úryvek příspěvku na domovské stránce"
+
+#: admin/main.php:207
+#@ mantra
+msgid "Affect Sticky Posts"
+msgstr "Ovlivnění důležitých příspěvků"
+
+#: admin/main.php:208
+#@ mantra
+msgid "Post Excerpts on Archive and Category Pages"
+msgstr "Úryvky na stránce archivu a rubrik"
+
+#: admin/main.php:209
+#@ mantra
+msgid "Number of Words for Post Excerpts "
+msgstr "Počet slov v úryvku příspěvku"
+
+#: admin/main.php:210
+#@ mantra
+msgid "Magazine Layout"
+msgstr "Rozvržení zásobníku"
+
+#: admin/main.php:211
+#@ mantra
+msgid "Excerpt suffix"
+msgstr "Přípona úryvku"
+
+#: admin/main.php:212
+#@ mantra
+msgid "Continue reading link text "
+msgstr "Text odkazu Číst dále"
+
+#: admin/main.php:213
+#@ mantra
+msgid "HTML tags in Excerpts"
+msgstr "HTML tagy v úryvku"
+
+#: admin/main.php:215
+#@ mantra
+msgid "Featured Images as POST Thumbnails "
+msgstr "Vybrané obrázky jako miniatury v příspěvku"
+
+#: admin/main.php:216
+#@ mantra
+msgid "Auto Select Images From Posts "
+msgstr "Automatický výběr obrázků do příspěvku"
+
+#: admin/main.php:217
+#@ mantra
+msgid "Thumbnails Alignment "
+msgstr "Zarovnání miniatury"
+
+#: admin/main.php:218
+#@ mantra
+msgid "Thumbnails Size "
+msgstr "Velikost miniatury"
+
+#: admin/main.php:219
+#@ mantra
+msgid "Featured Images as HEADER Images "
+msgstr "Vybrané obrázky v záhlaví"
+
+#: admin/main.php:221
+#@ mantra
+msgid "Link nr. 1"
+msgstr "Odkaz č.1"
+
+#: admin/main.php:222
+#@ mantra
+msgid "Link nr. 2"
+msgstr "Odkaz č.2"
+
+#: admin/main.php:223
+#@ mantra
+msgid "Link nr. 3"
+msgstr "Odkaz č.3"
+
+#: admin/main.php:224
+#@ mantra
+msgid "Link nr. 4"
+msgstr "Odkaz č.4"
+
+#: admin/main.php:225
+#@ mantra
+msgid "Link nr. 5"
+msgstr "Odkaz č.5"
+
+#: admin/main.php:226
+#@ mantra
+msgid "Socials display"
+msgstr "Zobrazit soc. sítě"
+
+#: admin/main.php:228
+#@ mantra
+msgid "SEO Settings"
+msgstr "Nastavení SEO"
+
+#: admin/main.php:229
+#@ mantra
+msgid "Custom Footer Text"
+msgstr "Vlastní text zápatí"
+
+#: admin/main.php:230
+#@ mantra
+msgid "Custom CSS"
+msgstr "Vlastní CSS"
+
+#: admin/main.php:231
+#@ mantra
+msgid "Custom JavaScript"
+msgstr "Vlastní JavaScript"
+
+#: admin/main.php:248
+#@ mantra
+msgid "Sorry, but you do not have sufficient permissions to access this page."
+msgstr "Je nám líto, ale nemáte dostatečná oprávnění pro přístup k této stránce."
+
+#: admin/main.php:268
+#@ mantra
+msgid "Mantra settings updated successfully."
+msgstr "Aktualizace nastavení šablony Mantra byla dokončena"
+
+#: admin/main.php:283
+#@ mantra
+msgid "Save Changes"
+msgstr "Uložit změny"
+
+#: admin/main.php:284
+#@ mantra
+msgid "Reset to Defaults"
+msgstr "Obnovit výchozí nastavení"
+
+#: admin/main.php:316
+#@ mantra
+msgid "Import/Export Settings"
+msgstr "Import/Export nastavení"
+
+#: admin/main.php:322
+#@ mantra
+msgid "Export Theme options"
+msgstr "Export nastavení motivu"
+
+#: admin/main.php:323
+#@ mantra
+msgid "It's that easy: a mouse click away - the ability to export your Mantra settings and save them on your computer. Feeling safer? You should!"
+msgstr "Je to tak jednoduché: kliknutím myší máte možnost exportovat vaše nastavení šablony Mantra a uložit jej ve vašem počítači. Bezpečné, že? Jděte na to!"
+
+#: admin/main.php:328
+#@ mantra
+msgid "Import Theme options"
+msgstr "Import nastavení šablony Mantra"
+
+#: admin/main.php:329
+#@ mantra
+msgid " Without the import, the export would just be a fool's exercise. Make sure you have the exported file ready and see you after the mouse click."
+msgstr "Bez importu je export jen cvičením pro blázny. Ujistěte se, že máte exportovaný soubor připravený a klikněte myši."
+
+#: admin/main.php:337
+#@ mantra
+msgid "Mantra Latest News"
+msgstr "Poslední novinky v šabloně Mantra"
+
+#: admin/main.php:348
+#@ mantra
+msgid "No news items."
+msgstr "Žádné novinky"
+
+#: admin/main.php:352
+#@ mantra
+msgid "Posted on"
+msgstr "Publikováno dne"
+
+#: admin/settings.php:66
+#@ mantra
+msgid "One column (no sidebars)"
+msgstr "Jeden sloupec (žádné sidebary)"
+
+#: admin/settings.php:67
+#@ mantra
+msgid "Two columns, sidebar on the right"
+msgstr "Dva sloupce, sidebar vpravo"
+
+#: admin/settings.php:68
+#@ mantra
+msgid "Two columns, sidebar on the left"
+msgstr "Dva sloupce, sidebar vlevo"
+
+#: admin/settings.php:69
+#@ mantra
+msgid "Three columns, sidebars on the right"
+msgstr "Tři sloupce, sidebary vpravo"
+
+#: admin/settings.php:70
+#@ mantra
+msgid "Three columns, sidebars on the left"
+msgstr "Tři sloupce, sidebary vlevo"
+
+#: admin/settings.php:71
+#@ mantra
+msgid "Three columns, one sidebar on each side"
+msgstr "Tři sloupce, sidebary po stranách"
+
+#: admin/settings.php:86
+#@ mantra
+msgid ""
+"Choose your layout. Possible options are: <br> No sidebar, a single sidebar on either left of right, two sidebars on either left or\n"
+"\t\tright and two sidebars on each side."
+msgstr ""
+"Vyberte rozložení. Možnosti jsou: <br> Žádný sidebar, jeden sidebar vlevo či vpravo, dva sidebary vlevo nebo\n"
+"\t\tv vpravo a dva sidebary po stranách."
+
+#: admin/settings.php:95
+#@ mantra
+msgid "Absolute"
+msgstr "Absolutní"
+
+#: admin/settings.php:95
+#@ mantra
+msgid "Relative *DEPRECATED"
+msgstr "Relativně *ZASTARALÉ"
+
+#: admin/settings.php:96
+#@ mantra
+msgid "Dimensions to use: "
+msgstr "Použité rozměry:"
+
+#: admin/settings.php:178
+#: admin/settings.php:198
+#@ mantra
+msgid "Content ="
+msgstr "Obsah ="
+
+#: admin/settings.php:179
+#: admin/settings.php:199
+#@ mantra
+msgid "Sidebar(s) ="
+msgstr "Sidebar(y) ="
+
+#: admin/settings.php:180
+#: admin/settings.php:200
+#@ mantra
+msgid "Total width ="
+msgstr "Celková šířka ="
+
+#: admin/settings.php:189
+#@ mantra
+msgid ""
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."
+msgstr ""
+"Vyberte šířku pro <b>obsah</b> a <b>sidebar(y)</b>.\n"
+" \t\tšířka obsahu nesmí být menší než 500px, sidebaru ne méně než 220px a ne více než 800px..<br />\n"
+"\tPokud používáte 3 sloupce (s 2 sidebary), každý z nich má pak poloviční šířku."
+
+#: admin/settings.php:209
+#@ mantra
+msgid ""
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."
+msgstr ""
+"Zvolte šířku <b>obsahu</b> a <b>postranního panelu(ů)</b>.\n"
+" \t\tJedná se o realtivní rozměry - vzhledem k použitému prohlížeči uživatelem. Celková šířka je v procentech šířky prohlížeče.<br />\n"
+"\t Šířka obsahu nemůže být menší než 40% celkové šiířky a sidebaru ne méně než 20% a ne více než 50%. <br />\n"
+"\tPokud jste vybrali 3 sloupce (s 2 postranními panely), každý z nich má poloviční vybranou šířku."
+
+#: admin/settings.php:223
+#: admin/settings.php:246
+#: admin/settings.php:262
+#: admin/settings.php:731
+#: admin/settings.php:1094
+#: admin/settings.php:1156
+#: admin/settings.php:1344
+#: admin/settings.php:1359
+#: admin/settings.php:1530
+#: admin/settings.php:1592
+#: admin/settings.php:1793
+#: admin/settings.php:1822
+#: admin/settings.php:1845
+#: admin/settings.php:1868
+#: admin/settings.php:1917
+#: admin/settings.php:2053
+#@ mantra
+msgid "Enable"
+msgstr "Zapnout"
+
+#: admin/settings.php:223
+#: admin/settings.php:246
+#: admin/settings.php:262
+#: admin/settings.php:731
+#: admin/settings.php:1094
+#: admin/settings.php:1156
+#: admin/settings.php:1344
+#: admin/settings.php:1359
+#: admin/settings.php:1530
+#: admin/settings.php:1592
+#: admin/settings.php:1793
+#: admin/settings.php:1822
+#: admin/settings.php:1845
+#: admin/settings.php:1868
+#: admin/settings.php:1917
+#: admin/settings.php:2053
+#@ mantra
+msgid "Disable"
+msgstr "Vypnout"
+
+#: admin/settings.php:232
+#@ mantra
+msgid "Enable to make Mantra fully responsive. The layout and general sizes of your blog will adjust depending on what device and what resolution it is viewed in.<br> Do not disable unless you have a good reason to."
+msgstr "Povolit, aby Mantra plně reagovala. Uspořádání a obecná velikost vašeho blogu se upraví v závislosti na tom, na jakém zařízení a v jakém rozlišení je blog zobrazen. <br> Nevypínejte, pokud k tomu nemáte dobrý důvod."
+
+#: admin/settings.php:254
+#@ mantra
+msgid ""
+"Enable the presentation front-page. This will become your new home page. It has a slider and columns for presentation\n"
+"\t\ttext and images.<br>If you have this enabled but don't see a Presentation page then go to <a href='options-reading.php'> Settings &raquo; Reading </a> and make sure you have selected <strong>Front Page Displays</strong> as <Strong>Your Latest Posts</strong>."
+msgstr ""
+"Povolí prezentaci na titulní straně. To bude vaše nová domovská stránka. Obsahuje posuvník a sloupce pro publikování prezentace\n"
+"\t\ttextu a obrázků. <br>Pokud máte povoleno, ale nevidíte tuto stránku, přejděte na <a href='options-reading.php'> Nastavení &raquo; Čtení </a> a ujistěte se, že máte vyvránu <strong>jako první stránku pro zobrazení</ strong> stránku <strong>s posledními příspěvky</strong>."
+
+#: admin/settings.php:271
+#@ mantra
+msgid "posts"
+msgstr "příspěvky"
+
+#: admin/settings.php:272
+#@ mantra
+msgid "Enable to display latest posts on the presentation page, below the columns. Sticky posts are always displayed and not counted."
+msgstr "Povolit zobrazení posledních příspěvků na prezentační stránce, ve sloupcích. Štítky příspěvků jsou vždy zobrazeny."
+
+#: admin/settings.php:280
+#@ mantra
+msgid "Slider Dimensions:"
+msgstr "Rozměry slideru"
+
+#: admin/settings.php:281
+#@ mantra
+msgid "width"
+msgstr "šířka"
+
+#: admin/settings.php:282
+#@ mantra
+msgid "height"
+msgstr "výška"
+
+#: admin/settings.php:283
+#@ mantra
+msgid "The dimensions of your slider. Make sure your images are of the same size."
+msgstr "Rozměry vašeho slideru. Ujistěte se, že vaše obrázkyky jsou ve stejné velikosti."
+
+#: admin/settings.php:285
+#@ mantra
+msgid "Animation:"
+msgstr "Animace"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "Random"
+msgstr "Náhodný"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "Fold"
+msgstr "Složit"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "Fade"
+msgstr "Slábnutí"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "SlideInRight"
+msgstr "Posuv vpravo"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "SlideInLeft"
+msgstr "Posuv vlevo"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "SliceDown"
+msgstr "Rozpad dolů"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "SliceDownLeft"
+msgstr "Rozpad vlevo dolů"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "SliceUp"
+msgstr "Rozpad nahoru"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "SliceUpLeft"
+msgstr "Rozpad nahoru vlevo"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "SliceUpDown"
+msgstr "Rozpad nahoru i dolů"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "SliceUpDownLeft"
+msgstr "Rozpad nahoru i dolů vlevo"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "BoxRandom"
+msgstr "Náhodné políčko"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "BoxRain"
+msgstr "Políčko rain"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "BoxRainReverse"
+msgstr "Políčko obrácený rain"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "BoxRainGrow"
+msgstr "Políčko vzrůstající rain"
+
+#: admin/settings.php:287
+#@ mantra
+msgid "BoxRainGrowReverse"
+msgstr "Políčko obrácený vzrůstající rain"
+
+#: admin/settings.php:295
+#@ mantra
+msgid "The transition effect your slider will have."
+msgstr "Efekt přechodu vašeho slideru"
+
+#: admin/settings.php:297
+#@ mantra
+msgid "Border Settings:"
+msgstr "Nastavení ohraničení"
+
+#: admin/settings.php:298
+#@ mantra
+msgid "Width"
+msgstr "Šířka"
+
+#: admin/settings.php:299
+#@ mantra
+msgid "Color"
+msgstr "Barva"
+
+#: admin/settings.php:301
+#@ mantra
+msgid "The width and color of the slider's border."
+msgstr "Šířka a barva ohraničení slideru."
+
+#: admin/settings.php:303
+#@ mantra
+msgid "Animation Time:"
+msgstr "Čas animace:"
+
+#: admin/settings.php:304
+#: admin/settings.php:308
+#@ mantra
+msgid "milliseconds"
+msgstr "milisekundy"
+
+#: admin/settings.php:305
+#@ mantra
+msgid "The time in which the transition animation will take place."
+msgstr "Čas, za který proběhne přechod animace."
+
+#: admin/settings.php:307
+#@ mantra
+msgid "Pause Time:"
+msgstr "Čas pauzy:"
+
+#: admin/settings.php:309
+#@ mantra
+msgid "The time in which a slide will be still and visible."
+msgstr "Čas, po který bude snímek viditelný."
+
+#: admin/settings.php:312
+#@ mantra
+msgid "Slider navigation:"
+msgstr "Navigace v slideru"
+
+#: admin/settings.php:314
+#@ mantra
+msgid "Numbers"
+msgstr "Počet"
+
+#: admin/settings.php:314
+#@ mantra
+msgid "Bullets"
+msgstr "Odrážky"
+
+#: admin/settings.php:314
+#: admin/settings.php:1451
+#@ mantra
+msgid "None"
+msgstr "Žádný"
+
+#: admin/settings.php:322
+#@ mantra
+msgid "Your slider navigation type. Shown under the slider."
+msgstr "Typ navigace ve slideru. Zobrazobrazí se pod ním"
+
+#: admin/settings.php:324
+#@ mantra
+msgid "Slider arrows:"
+msgstr "Šipky slideru"
+
+#: admin/settings.php:326
+#@ mantra
+msgid "Always Visible"
+msgstr "Vždy viditelné"
+
+#: admin/settings.php:326
+#@ mantra
+msgid "Visible on Hover"
+msgstr "Viditelné při zaměření"
+
+#: admin/settings.php:326
+#@ mantra
+msgid "Hidden"
+msgstr "Skrýt"
+
+#: admin/settings.php:334
+#@ mantra
+msgid "The Left and Right arrows on your slider"
+msgstr "Levá a pravá šipka vašeho slideru"
+
+#: admin/settings.php:375
+#: admin/settings.php:444
+#@ mantra
+msgid "Select Category"
+msgstr "Vyberte rubriku"
+
+#: admin/settings.php:402
+#@ mantra
+msgid "Custom Slides"
+msgstr "Vlastní slider"
+
+#: admin/settings.php:402
+#@ mantra
+msgid "Latest Posts"
+msgstr "Poslední snímky"
+
+#: admin/settings.php:402
+#@ mantra
+msgid "Random Posts"
+msgstr "Náhodné snímky"
+
+#: admin/settings.php:402
+#@ mantra
+msgid "Sticky Posts"
+msgstr "Důležité snímky"
+
+#: admin/settings.php:402
+#@ mantra
+msgid "Latest Posts from Category"
+msgstr "Poslední snímky v rubrice"
+
+#: admin/settings.php:402
+#@ mantra
+msgid "Random Posts from Category"
+msgstr "Náhodné snímky v rubrice"
+
+#: admin/settings.php:402
+#@ mantra
+msgid "Specific Posts"
+msgstr "Vybrané snímky"
+
+#: admin/settings.php:411
+#@ mantra
+msgid "Your slides' content. Only the image is required, all other fields are optional. Only the slides with an image selected will become acitve and visible in the live slider."
+msgstr "Obsah snímků. Je nutné zadat obrázek, všechna ostatní pole jsou volitelná. zadáním zvoleného snímku se stane slider aktivní a viditelný ve slideru."
+
+#: admin/settings.php:416
+#@ mantra
+msgid "Latest posts will be loaded into the slider."
+msgstr "Nejnovější snímky budou načteny do slideru."
+
+#: admin/settings.php:420
+#@ mantra
+msgid "Random posts will be loaded into the slider."
+msgstr "Náhodné snímky budou načteny do slideru."
+
+#: admin/settings.php:424
+#@ mantra
+msgid "Latest posts from the category you choose will be loaded in the slider."
+msgstr "Poslední snímky z vybrané rubriky budou vloženy do slideru."
+
+#: admin/settings.php:429
+#@ mantra
+msgid "Random posts from the category you choose will be loaded into the slider."
+msgstr "Náhodné snímky z vybrané rubriky budou vloženy do slideru."
+
+#: admin/settings.php:433
+#@ mantra
+msgid "Only sticky posts will be loaded into the slider."
+msgstr "Pouze důležité snímky budou načteny do slideru."
+
+#: admin/settings.php:437
+#@ mantra
+msgid "List the post IDs you want to display (separated by a comma): "
+msgstr "Seznam ID snímků, které chcete zobrazit (oddělené čárkou):"
+
+#: admin/settings.php:442
+#@ mantra
+msgid "<br> Choose the cateogry: "
+msgstr "<br> Zvolte rubriku:"
+
+#: admin/settings.php:459
+#@ mantra
+msgid "Number of posts to show:"
+msgstr "Číslo snímku pro zobrazení:"
+
+#: admin/settings.php:466
+#@ mantra
+msgid "Slide 1"
+msgstr "Snímek 1"
+
+#: admin/settings.php:470
+#: admin/settings.php:485
+#: admin/settings.php:500
+#: admin/settings.php:515
+#: admin/settings.php:530
+#: admin/settings.php:572
+#: admin/settings.php:587
+#: admin/settings.php:602
+#: admin/settings.php:617
+#: admin/settings.php:766
+#: admin/settings.php:789
+#@ mantra
+msgid "Select / Upload Image"
+msgstr "Vybrat/nahrát obrázek"
+
+#: admin/settings.php:471
+#: admin/settings.php:486
+#: admin/settings.php:501
+#: admin/settings.php:516
+#: admin/settings.php:531
+#: admin/settings.php:573
+#: admin/settings.php:588
+#: admin/settings.php:618
+#@ mantra
+msgid "Title"
+msgstr "Název"
+
+#: admin/settings.php:473
+#: admin/settings.php:488
+#: admin/settings.php:503
+#: admin/settings.php:518
+#: admin/settings.php:533
+#: admin/settings.php:575
+#: admin/settings.php:590
+#: admin/settings.php:605
+#: admin/settings.php:620
+#@ mantra
+msgid "Text"
+msgstr "Text"
+
+#: admin/settings.php:481
+#@ mantra
+msgid "Slide 2"
+msgstr "Snímek 2"
+
+#: admin/settings.php:496
+#@ mantra
+msgid "Slide 3"
+msgstr "Snímek 3"
+
+#: admin/settings.php:511
+#@ mantra
+msgid "Slide 4"
+msgstr "Snímek 4"
+
+#: admin/settings.php:526
+#@ mantra
+msgid "Slide 5"
+msgstr "Snímek 5"
+
+#: admin/settings.php:548
+#@ mantra
+msgid "Number of columns:"
+msgstr "Počet sloupců:"
+
+#: admin/settings.php:558
+#@ mantra
+msgid "Image Height:"
+msgstr "Výška obrázku:"
+
+#: admin/settings.php:561
+#@ mantra
+msgid "Read more text:"
+msgstr "Číst dále:"
+
+#: admin/settings.php:564
+#@ mantra
+msgid "The linked text that appears at the bottom of all the columns. You can delete all text inside if you don't want it."
+msgstr "Související text, který se zobrazí v dolní části jednotlivých sloupců. Můžete také veškerý text uvnitř odstranit, pokud jej tam nechcete."
+
+#: admin/settings.php:568
+#@ mantra
+msgid "1st Column"
+msgstr "1. sloupec"
+
+#: admin/settings.php:583
+#@ mantra
+msgid "2nd Column"
+msgstr "2. sloupec"
+
+#: admin/settings.php:598
+#@ mantra
+msgid "3rd Column"
+msgstr "3. sloupec"
+
+#: admin/settings.php:613
+#@ mantra
+msgid "4th Column"
+msgstr "4. sloupec"
+
+#: admin/settings.php:635
+#@ mantra
+msgid "Extra Text"
+msgstr "Vybraný text"
+
+#: admin/settings.php:637
+#@ mantra
+msgid ""
+"More text for your front page. The top title is above the slider, the second title between the slider and the columns and 2 more rows of text under the columns.\n"
+"\t\t It's all optional so leave any input field empty if it's not required. "
+msgstr ""
+"Další text pro titulní stránku. Horní titulek je nad sliderem, druhý mezi sliderem a sloupci, je-li a 2 více řádků textu ve sloupci.\n"
+"\t\t Vše je volitelné, pokud nechcete tato vstupní pole vyplňovat, nemusíte."
+
+#: admin/settings.php:640
+#@ mantra
+msgid "Top Title"
+msgstr "Horní titulek"
+
+#: admin/settings.php:641
+#@ mantra
+msgid "Second Title"
+msgstr "Druhý titulek"
+
+#: admin/settings.php:644
+#@ mantra
+msgid "Title color"
+msgstr "Barva titulku"
+
+#: admin/settings.php:648
+#@ mantra
+msgid "Bottom Text 1"
+msgstr "Spodní text 1"
+
+#: admin/settings.php:650
+#@ mantra
+msgid "Bottom Text 2"
+msgstr "Spodní text 2"
+
+#: admin/settings.php:658
+#@ mantra
+msgid "Hide areas"
+msgstr "Skrýt pole"
+
+#: admin/settings.php:660
+#@ mantra
+msgid "Choose the areas to hide on the first page."
+msgstr "Vyberte pole pro skrytí na první stránce."
+
+#: admin/settings.php:672
+#@ mantra
+msgid "Hide the header area (image or background color)."
+msgstr "Skrýt oblast záhlaví (obrázek nebo barvu pozadí)."
+
+#: admin/settings.php:676
+#@ mantra
+msgid "Hide the main menu (the top navigation tabs)."
+msgstr "Skrytí hlavní menu (horní navigační panel)."
+
+#: admin/settings.php:680
+#@ mantra
+msgid "Hide the footer widgets. "
+msgstr "Skrýt widgety v zápatí."
+
+#: admin/settings.php:684
+#@ mantra
+msgid "Hide the footer (copyright area)."
+msgstr "Skrýt zápatí (oblast copyrightu)."
+
+#: admin/settings.php:688
+#@ mantra
+msgid "Hide the white color. Only the background color remains."
+msgstr "Skrýt bílou barvu. Zůstane pouze barva pozadí."
+
+#: admin/settings.php:708
+#@ mantra
+msgid "Select the header's height. After saving the settings make sure you reupload a new header image (if you're using one). The header's width will be = "
+msgstr "Vyberte výšku záhlaví. Po uložení nastavení se ujistěte, že se nový obrázek v záhlaví zobrazil (pokud jej používáte). Šířka hlavičky je ="
+
+#: admin/settings.php:715
+#@ default
+msgid "Define header image"
+msgstr "Vyberte obrázek záhlaví"
+
+#: admin/settings.php:716
+#@ mantra
+msgid "The header image should not be used to display logos.<br> Enable ratio preservation to force the header image aspect ratio. Keep in mind that short images will become very small on mobile devices."
+msgstr "Obrázek v záhlaví by neměl být používán pro zobrazení loga.<br> Povolte zachování poměru mezi velikostí záhlaví a obrázku. Mějte na paměti, že malé snímky budou velmi malé na mobilních zařízeních."
+
+#: admin/settings.php:739
+#@ mantra
+msgid "Enable or disable the round corners for the main menu items."
+msgstr "Povolte nebo zakažte zaoblené rohy pro hlavní položky menu."
+
+#: admin/settings.php:747
+#@ mantra
+msgid "Site Title and Description"
+msgstr "Název a popis stránky"
+
+#: admin/settings.php:747
+#@ mantra
+msgid "Custom Logo"
+msgstr "Vlastní logo"
+
+#: admin/settings.php:747
+#@ mantra
+msgid "Clickable header image"
+msgstr "Klikatelný obrázek záhlaví"
+
+#: admin/settings.php:747
+#@ mantra
+msgid "Empty"
+msgstr "Prázdný"
+
+#: admin/settings.php:755
+#@ mantra
+msgid "Choose what to display inside your header area."
+msgstr "Vyberte, co se má zobrazit uvnitř oblasti záhlaví."
+
+#: admin/settings.php:765
+#@ mantra
+msgid "Custom Logo upload. The logo will appear over the heder image if you have used one."
+msgstr "Vlastní logo nahráno. Logo se zobrazí v oblasti záhlaví, ale jen pokud jste použili jedno."
+
+#: admin/settings.php:774
+#@ mantra
+msgid "top"
+msgstr "Nahoře"
+
+#: admin/settings.php:775
+#@ mantra
+msgid "left"
+msgstr "vlevo"
+
+#: admin/settings.php:778
+#@ mantra
+msgid "Select the top spacing for the header. Use it to better position your site title and description or custom logo inside the header. "
+msgstr "Vyberte horní mezeru pro záhlaví. Jejím použitím můžete lépe umístit titulek své stránky a její popis nebo vlastní logo v záhlaví."
+
+#: admin/settings.php:788
+#@ mantra
+msgid "Limitations: It has to be an image. It should be max 64x64 pixels in dimensions. Recommended file extensions .ico and .png. <br/><b>Note that some browsers do not display the changed favicon instantly.</b>"
+msgstr "Omezení: Musí to být obrázek. Měl by mít rozměry max. 64x64 pixelů. Doporučené přípony souborů jsou .ico a .png.. <br/><b>Upozorňujeme, že některé prohlížeče nezobrazují změněné favicony okamžitě.</b>"
+
+#: admin/settings.php:811
+#@ mantra
+msgid "Select the font size you'll use in your blog. Pages, posts and comments will be affected. Buttons, Headers and Side menus will remain the same."
+msgstr "Zvolte velikost písma, které budete používat na svém blogu. Týká se to stránek, příspěvků a komentářů.. Tlačítka, záhlaví a vedlejší menu zůstanou beze změn.."
+
+#: admin/settings.php:855
+#@ mantra
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "
+msgstr "Zvolte typ písma, které budete používat ve svém blogu. Týká se to veškerého textového obsahu (včetně tlačítek v menu)."
+
+#: admin/settings.php:857
+#: admin/settings.php:907
+#: admin/settings.php:958
+#: admin/settings.php:1010
+#@ mantra
+msgid "Or insert your Google Font below. Please only isert the <strong>name</strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google.com/webfonts' > google fonts </a> for some font inspiration."
+msgstr "Nebo níže vložte vybraný Google Font. Vložte pouze <strong>název</strong> písma.<br/> Pozn.:. Přejděte na <a href='http://www.google.com/webfonts'> google fonts </ a> pro inspiraci."
+
+#: admin/settings.php:904
+#@ mantra
+msgid "Select the font family you want for your titles. It will affect post titles and page titles. Leave 'Default' and the general font you selected will be used."
+msgstr "Zvolte typ písma, které chcete použít pro titulky. Týká se to názvů příspěvků a názvů stránek. Při volbě 'default' bude použito obecné písmo."
+
+#: admin/settings.php:956
+#@ mantra
+msgid "Select the font family you want your sidebar(s) to have. Text in sidebars will be affected, including any widgets. Leave 'Default' and the general font you selected will be used."
+msgstr "Zvolte typ písma, které chcete použít v sidebaru(ech). Týká se to textu v postranních sloupcích, včetně widgetů. Při volbě 'default' bude použito obecné písmo."
+
+#: admin/settings.php:1007
+#@ mantra
+msgid "Select the font family you want your headings to have (h1 - h6 tags will be affected). Leave 'Default' and the general font you selected will be used."
+msgstr "Zvolte typ písma, které chcete použít pro nadpisy (h1 - h6). Při volbě 'default' bude použito obecné písmo."
+
+#: admin/settings.php:1019
+#: admin/settings.php:1034
+#: admin/settings.php:1049
+#: admin/settings.php:1109
+#: admin/settings.php:1124
+#: admin/settings.php:1139
+#@ mantra
+msgid "Default"
+msgstr "Default"
+
+#: admin/settings.php:1027
+#@ mantra
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."
+msgstr "Velikost písma v záhlaví příspěvku. Volba 'default' znamená normální nastavení (hodnota velikosti bude taková, jaká je uvedená v CSS)."
+
+#: admin/settings.php:1042
+#@ mantra
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."
+msgstr "Velikost písma sidebaru. Volba 'default' znamená normální nastavení (hodnota velikosti bude taková, jaká je uvedená v CSS)."
+
+#: admin/settings.php:1049
+#: admin/settings.php:1373
+#: admin/settings.php:1884
+#@ mantra
+msgid "Left"
+msgstr "Vlevo"
+
+#: admin/settings.php:1049
+#: admin/settings.php:1373
+#: admin/settings.php:1884
+#@ mantra
+msgid "Right"
+msgstr "Vpravo"
+
+#: admin/settings.php:1049
+#@ mantra
+msgid "Justify"
+msgstr "Do bloku"
+
+#: admin/settings.php:1049
+#: admin/settings.php:1373
+#: admin/settings.php:1884
+#@ mantra
+msgid "Center"
+msgstr "Na střed"
+
+#: admin/settings.php:1057
+#@ mantra
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."
+msgstr "Toto přepíše zarovnání textu v příspěvcích a na stránkách. Volba 'default' znamená normální nastavení (zarovnání zůstane takové, jaké je deklarované v příspěvcích, komentářích apod.)."
+
+#: admin/settings.php:1071
+#@ mantra
+msgid "Choose the spacing between paragraphs."
+msgstr "Vyberte mezeru mezi odstavci."
+
+#: admin/settings.php:1086
+#@ mantra
+msgid "Choose the indent for your paragraphs."
+msgstr "Vyberte odsazení odstavců."
+
+#: admin/settings.php:1102
+#@ mantra
+msgid "Disable the default header and title indent (left margin)."
+msgstr "Vypnout defaultní název v záhlaví a odsazení (vlevo)."
+
+#: admin/settings.php:1117
+#@ mantra
+msgid "Text line height. The height between 2 rows of text. Leave 'Default' for normal settings (size value will be as set in the CSS)."
+msgstr "Výška řádků textu (výška mezi 2 řádky textu). Volba 'default' znamená normální nastavení (hodnota velikosti bude taková, jaká je uvedená v CSS)."
+
+#: admin/settings.php:1132
+#@ mantra
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."
+msgstr "Mezera mezi <i>slovy</i>. Volba 'default' zobrazí normální nastavení (hodnota velikosti bude taková, jaká je uvedená v CSS)."
+
+#: admin/settings.php:1147
+#@ mantra
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."
+msgstr "Mezera mezi <i>písmeny</i>. Volba 'default' zobrazí normální nastavení (hodnota velikosti bude taková, jaká je uvedená v CSS)."
+
+#: admin/settings.php:1164
+#@ mantra
+msgid "Disable the default text shadow on headers and titles."
+msgstr "Vypnout výchozí stín u textu v záhlaví a v titulcích."
+
+#: admin/settings.php:1172
+#@ default
+msgid "Define background image"
+msgstr "Definovat obrázek na pozadí"
+
+#: admin/settings.php:1181
+#@ mantra
+msgid "Background color (Default value is 444444)."
+msgstr "Barva pozadí (výchozí hodnota je 444444)."
+
+#: admin/settings.php:1189
+#@ mantra
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."
+msgstr "Barva pozadí záhlaví (výchozí hodnota je 333333). Přepíše všechny texty, dosud bez barvy pozadí."
+
+#: admin/settings.php:1196
+#@ mantra
+msgid "Content background color (Default value is FFFFFF). Works best with really light colors."
+msgstr "Barva pozadí obsahu (výchozí hodnota je FFFFFF). Nejlépe vynikne se světlými barvami."
+
+#: admin/settings.php:1203
+#@ mantra
+msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."
+msgstr "Barva pozadí hlavního menu (výchozí hodnota je FAFAFA). Měla by být stejné barvy jako pozadí obsahu nebo podobná, světlejší."
+
+#: admin/settings.php:1210
+#@ mantra
+msgid "First sidebar background color (Default is no color for a transparent sidebar)."
+msgstr "Barva pozadí prvního sidebaru (výchozí hodnota je transparentní sidebar)."
+
+#: admin/settings.php:1217
+#@ mantra
+msgid "Second sidebar background color (Default is no color for a transparent sidebar)."
+msgstr "Barva pozadí druhého sidebaru (výchozí hodnota je transparentní sidebar)."
+
+#: admin/settings.php:1225
+#@ mantra
+msgid "Footer widget-area background color. (Default value is 171717)."
+msgstr "Barva pozadí prostoru pro widgety v zápatí. (výchozí hodnota je 171717)."
+
+#: admin/settings.php:1233
+#@ mantra
+msgid "Footer background color (Default value is 222222)."
+msgstr "Barva pozadí zápatí (výchozí hodnota je 222222)."
+
+#: admin/settings.php:1241
+#@ mantra
+msgid "Your blog's title color (Default value is 0D85CC)."
+msgstr "Barva titulu vašeho blogu (Výchozí hodnota je 0D85CC)."
+
+#: admin/settings.php:1249
+#@ mantra
+msgid "Your blog's description color(Default value is 222222)."
+msgstr "Barva popisu vašeho blogu (výchozí hodnota je 222222)."
+
+#: admin/settings.php:1257
+#@ mantra
+msgid "Content Text Color (Default value is 333333)."
+msgstr "Barva textu obsahu (výchozí hodnota je 333333)."
+
+#: admin/settings.php:1265
+#@ mantra
+msgid "Links color (Default value is 0D85CC)."
+msgstr "Barvy odkazu (výchozí hodnota je 0D85CC)."
+
+#: admin/settings.php:1273
+#@ mantra
+msgid "Links color on mouse over (Default value is 333333)."
+msgstr "Barva zaměřeného odkazu (výchozí hodnota je 333333)."
+
+#: admin/settings.php:1281
+#@ mantra
+msgid "Post Header Text Color (Default value is 333333)."
+msgstr "Barva textu názvu příspěvku (výchozí hodnota je 333333)."
+
+#: admin/settings.php:1289
+#@ mantra
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."
+msgstr "Barva textu zaměřeného názvu příspěvku (výchozí hodnota je 000000)."
+
+#: admin/settings.php:1297
+#@ mantra
+msgid "Sidebar Header Background color (Default value is 444444)."
+msgstr "Brva pozadí záhlaví sidebaru (výchozí hodnota je 444444)"
+
+#: admin/settings.php:1306
+#@ mantra
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."
+msgstr "Barva textu v záhlaví sidebaru (výchozí hodnota je 2EA5FD)."
+
+#: admin/settings.php:1314
+#@ mantra
+msgid "Footer Widget Text Color (Default value is 0D85CC)."
+msgstr "Barva textu ve widgetu v zápatí (výchozí hodnota je 0D85CC)."
+
+#: admin/settings.php:1322
+#@ mantra
+msgid "Footer Widget Link Color (Default value is 666666)."
+msgstr "Barva odkazu ve widgetu v zápatí (výchozí hodnota je 666666)."
+
+#: admin/settings.php:1330
+#@ mantra
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."
+msgstr "Barva zaměřeného odkazu ve widgetu v zápatí (výchozí hodnota je 888888)."
+
+#: admin/settings.php:1352
+#@ mantra
+msgid "Show breadcrumbs at the top of the content area. Breadcrumbs are a form of navigation that keeps track of your location withtin the site."
+msgstr "Zobrazit drobečkovou navigaci v horní části obsahu. Drobečková navigace je forma navigaci, která zajišťuje informace o momentální poloze v daném webu."
+
+#: admin/settings.php:1367
+#@ mantra
+msgid "Show numbered pagination. Where there is more than one page, instead of the bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered pagination. "
+msgstr "Zobrazit číslování stránek ve spodní části stránky u webů, které mají více než jednu stránku. Odkazy <b>Starší příspěvky</b> a <b>Novější příspěvky</b> zobrazí čísla stránek."
+
+#: admin/settings.php:1381
+#@ mantra
+msgid "Select the desired main menu items alignment. Center option is only valid for single line menus."
+msgstr "Vyberte zarovnání položek v hlavním menu. Volba Na střed je platná pouze pro jednotlivé odkazy v menu."
+
+#: admin/settings.php:1388
+#: admin/settings.php:1451
+#@ mantra
+msgid "White"
+msgstr "Býlá"
+
+#: admin/settings.php:1388
+#@ mantra
+msgid "Light"
+msgstr "Světlá"
+
+#: admin/settings.php:1388
+#@ mantra
+msgid "Light Gray"
+msgstr "Světle šedá"
+
+#: admin/settings.php:1388
+#: admin/settings.php:1451
+#@ mantra
+msgid "Gray"
+msgstr "Šedá"
+
+#: admin/settings.php:1388
+#@ mantra
+msgid "Dark Gray"
+msgstr "Tmavě šedá"
+
+#: admin/settings.php:1388
+#@ mantra
+msgid "Black"
+msgstr "Černá"
+
+#: admin/settings.php:1396
+#@ mantra
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."
+msgstr "Toto nastavení změní vzhled vašich titulků. Na obrázky, které nejsou vloženy do titulků to nemá vliv."
+
+#: admin/settings.php:1412
+#@ mantra
+msgid "The border around your inserted images. "
+msgstr "Ohraničení kolem vložených obrázků."
+
+#: admin/settings.php:1427
+#@ mantra
+msgid "The image on top of your captions. "
+msgstr "Obrázek v horní části popisků."
+
+#: admin/settings.php:1442
+#@ mantra
+msgid "The sidebar list bullets. "
+msgstr "Odrážky v seznamu v sidebaru."
+
+#: admin/settings.php:1459
+#@ mantra
+msgid "The background for your post-metas area (under your post tiltes). Gray by default."
+msgstr "Pozadí oblasti pro Meta u příspěvku. Ve výchozím nastavení je šedé."
+
+#: admin/settings.php:1467
+#: admin/settings.php:1483
+#: admin/settings.php:1500
+#: admin/settings.php:1515
+#: admin/settings.php:1545
+#: admin/settings.php:1560
+#: admin/settings.php:1576
+#: admin/settings.php:1612
+#: admin/settings.php:1627
+#: admin/settings.php:1642
+#: admin/settings.php:1657
+#: admin/settings.php:1672
+#: admin/settings.php:1687
+#: admin/settings.php:1702
+#: admin/settings.php:1717
+#@ mantra
+msgid "Show"
+msgstr "Zobrazit"
+
+#: admin/settings.php:1467
+#: admin/settings.php:1483
+#: admin/settings.php:1500
+#: admin/settings.php:1515
+#: admin/settings.php:1545
+#: admin/settings.php:1576
+#: admin/settings.php:1612
+#: admin/settings.php:1627
+#: admin/settings.php:1642
+#: admin/settings.php:1657
+#: admin/settings.php:1672
+#: admin/settings.php:1687
+#: admin/settings.php:1702
+#: admin/settings.php:1717
+#@ mantra
+msgid "Hide"
+msgstr "Skrýt"
+
+#: admin/settings.php:1475
+#@ mantra
+msgid "Hide or show a horizontal rule to separate posts."
+msgstr "Skrýtnebo zobrazit horizontální zobrazení samostatných příspěvků."
+
+#: admin/settings.php:1491
+#@ mantra
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."
+msgstr "Skrýt nebo zobrazit odrážky u seznamů v obsahu (příspěvky, stránky, atd.)."
+
+#: admin/settings.php:1508
+#@ mantra
+msgid "Hide or show Page titles on any <i>created</i> pages. "
+msgstr "Skrýt nebo zobrazit názvy stránek na každé <i>vytvořené</i> stránce."
+
+#: admin/settings.php:1523
+#@ mantra
+msgid "Hide or show Page titles on <i>Category</i> Pages. "
+msgstr "Skrýt nebo zobrazit názvy stránek na stránce <i>Rubrika</i>."
+
+#: admin/settings.php:1538
+#@ mantra
+msgid "Hide table borders and background color."
+msgstr "Skrýt ohraničení tabulky a barvu pozadí."
+
+#: admin/settings.php:1553
+#@ mantra
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."
+msgstr "Skrýt vysvětlující text pod formulářem komentáře (začíná <i>Můžete použít tyto HTML tagy a atributy: ... </i>)."
+
+#: admin/settings.php:1560
+#@ mantra
+msgid "Hide in posts"
+msgstr "Skrýt příspěvek"
+
+#: admin/settings.php:1560
+#@ mantra
+msgid "Hide in pages"
+msgstr "Skrýt stránku"
+
+#: admin/settings.php:1560
+#@ mantra
+msgid "Hide everywhere"
+msgstr "Skrýt vše"
+
+#: admin/settings.php:1568
+#@ mantra
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."
+msgstr "Skrýt text <b>Komentáře jsou uzavřeny</b>, který se ve výchozím nastavení zobrazuje na stránkách, nebo u komentářů u příspěvků pro zdravotně postižené."
+
+#: admin/settings.php:1584
+#@ mantra
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."
+msgstr "Skrýt text <b>Komentáře jsou uzavřeny</b> u příspěvků s komentáři pro zdravotně postižené."
+
+#: admin/settings.php:1600
+#@ mantra
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."
+msgstr "Zapnout tlačítko Zpět na začátek. Zobrazí se tlačítko po rolování stránky."
+
+#: admin/settings.php:1620
+#@ mantra
+msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."
+msgstr "Skrýt nebo zobrazit <strong>Komentovat</strong> nebo <strong>x Komentářů</ strong> vedle příspěvků nebo u úryvků příspěvků."
+
+#: admin/settings.php:1635
+#@ mantra
+msgid "Hide or show the post date."
+msgstr "Skrýt nebo zobrazit datum u příspěvku."
+
+#: admin/settings.php:1650
+#@ mantra
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."
+msgstr "Zobrazit Čas odeslání s datem příspěvku. Čas nebude zobrazen, pokud je skryto Datum příspěvku."
+
+#: admin/settings.php:1665
+#@ mantra
+msgid "Hide or show the post author."
+msgstr "Skrýt nebo zobrazit autora příspěvku."
+
+#: admin/settings.php:1680
+#@ mantra
+msgid "Hide the post category."
+msgstr "Skrýt nebo zobrazit rubriku příspěvku."
+
+#: admin/settings.php:1695
+#@ mantra
+msgid "Hide the 'Bookmark permalink'."
+msgstr "Skrýt trvalý odkaz 'Záložka'."
+
+#: admin/settings.php:1710
+#@ mantra
+msgid "Hide the meta bar. All meta info in it will be hidden."
+msgstr "Skrýt panel meta. Všechny meta infomace budou skryty."
+
+#: admin/settings.php:1725
+#@ mantra
+msgid "Hide the post tags."
+msgstr "Skrýt štítky u příspěvků"
+
+#: admin/settings.php:1738
+#: admin/settings.php:1753
+#: admin/settings.php:1769
+#@ mantra
+msgid "Excerpt"
+msgstr "Úryvek"
+
+#: admin/settings.php:1738
+#: admin/settings.php:1753
+#: admin/settings.php:1769
+#@ mantra
+msgid "Full Post"
+msgstr "Celý příspěvek"
+
+#: admin/settings.php:1746
+#@ mantra
+msgid "Excerpts on the main page. Only standard posts will be affected. All other post formats (aside, image, chat, quote etc.) have their specific formating."
+msgstr "Úryvky na hlavní straně. Týká se pouze standardních příspěvků. Všechny ostatní formy příspěvků (stránky, obrázky, chat, citace atd.) mají i nadále své specifické formátování."
+
+#: admin/settings.php:1761
+#@ mantra
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "
+msgstr "Vyberte, zda mají být důležité příspěvky na vaší domovské stránce viditelné celé nebo jen v úryvcích."
+
+#: admin/settings.php:1777
+#@ mantra
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."
+msgstr "Úryvky z archivu, rubrik a vyhledávacích stránek. Stejné jako výše, týká se jen standardních příspěvků."
+
+#: admin/settings.php:1785
+#@ mantra
+msgid ""
+"The number of words an excerpt will have. When that number is reached the post will be interrupted by a <i>Continue reading</i> link that\n"
+"\t\t\t\t\t\t\twill take the reader to the full post page."
+msgstr ""
+"Počet slov v úryvku. Je-li ho dosaženo, příspěvek bude přerušen a zobrazí se odkaz <i>Číst dále</i>, Po kliknutí na něj\n"
+"\t\t\t\t\t\t\t,si čtenář může zobrazit celou stránku."
+
+#: admin/settings.php:1801
+#@ mantra
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."
+msgstr "Zapnout rozvržení časopisu. Toto uspořádání se vztahuje na stránky s příspěvky a zobrazuje 2 příspěvky vedle sebe."
+
+#: admin/settings.php:1808
+#@ mantra
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."
+msgstr "Nahradí tři tečky (\"[...])\", které jsou automaticky zobrazeny v úryvcích."
+
+#: admin/settings.php:1815
+#@ mantra
+msgid "Edit the 'Continue Reading' link added to your post excerpts."
+msgstr "Upravený odkaz na 'Číst dále\" bude přidán k úryvku vašeho příspěvku."
+
+#: admin/settings.php:1861
+#@ mantra
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."
+msgstr "Zobrazit dané obrázky jako miniatury u příspěvků. Snímky musí být vybrány pro každý příspěvek zvlášť."
+
+#: admin/settings.php:1876
+#@ mantra
+msgid "Show the first image that you inserted in a post as a thumbnail. If you enable this option, the first image in your post will be used even if you selected a Featured Image in you post."
+msgstr "Zobrazit první snímek, který jste vložili v příspěvku jako miniaturu. Pokud povolíte tuto možnost, bude použit první obrázek v příspěvku, i když jste pro publikování vybrali jiný obrázek."
+
+#: admin/settings.php:1892
+#@ mantra
+msgid "Thumbnail alignment."
+msgstr "Zarovnání náhledu"
+
+#: admin/settings.php:1909
+#@ mantra
+msgid "The size you want the thumbnails to have (in pixels). By default imges will be scaled with aspect ratio kept. Choose to crop the images if you want the exact size."
+msgstr "Velikost, jakou má mít miniatura (v pixelech). Ve výchozím nastavení bude obrázek zmenšen a zůstane zachován poměr stran. Vyberte, zda chcete obrázek oříznout, pokud chcete přesnou velikost."
+
+#: admin/settings.php:1925
+#@ mantra
+msgid ""
+"Show featured images on headers. The header will be replaced with a featured image if you selected it as a Featured Image in the post and\n"
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."
+msgstr ""
+"Zobrazit dané obrázky v záhlaví. V záhlaví bude daný obrazek nahrazen, pokud jste jej vybrali jako obrázek v příspěvku a\n"
+"\t\t\t\t\t\t\t pokud je větší nebo alespoň roven aktuální velikosti záhlaví."
+
+#: admin/settings.php:1941
+#@ mantra
+msgid "Select your desired Social network from the left dropdown menu and insert your corresponding address in the right input field. (ex: <i>http://www.facebook.com/yourname</i> )"
+msgstr "Vyberte požadovanou sociální síť z rozbalovací nabídky vlevo a vložte odpovídající adresu do pravého vstupního pole. (př: <i>http://www.facebook.com/yourname</i>)"
+
+#: admin/settings.php:1942
+#@ mantra
+msgid "You can insert up to 5 different social sites and addresses."
+msgstr "Vložte až 5 různých adres sociálních sítí."
+
+#: admin/settings.php:1943
+#@ mantra
+msgid "There are a total of 27 social networks to choose from. "
+msgstr "Vybrat si můžete celkem z 27 sociálních sítí."
+
+#: admin/settings.php:1944
+#@ mantra
+msgid "You can leave any number of inputs empty. "
+msgstr "Můžete vynechat libovolný počet prázdných vstupních polí."
+
+#: admin/settings.php:1945
+#@ mantra
+msgid "You can choose the same social media any number of times. "
+msgstr "Můžete si zvolit stejnou sociální síť, kolikrát chcete."
+
+#: admin/settings.php:2020
+#@ mantra
+msgid "Choose the <b>areas</b> where to display the social icons."
+msgstr "Vyberte <b>oblast</b> pro zobrazení ikon sociálních sítí."
+
+#: admin/settings.php:2033
+#@ mantra
+msgid "Insert custom text or HTML code that will appear last in you footer. <br /> You can use HTML to insert links, images and special characters like &copy ."
+msgstr "Vložte vlastní text nebo HTML kód, který se objeví na konci zápatí. <br /> Můžete použít HTML odkazy, obrázky a speciální znaky, jako např. ©."
+
+#: admin/settings.php:2041
+#@ mantra
+msgid "Insert your custom CSS here. Any CSS declarations made here will overwrite Mantra's (even the custom options specified right here in the Mantra Settings page). <br> Your custom CSS will be preserved when updating the theme.<br> The &ltstyle&gt tags are not needed."
+msgstr "Sem vložte své vlastní CSS. Jakýkoliv CSS sem vložený přepíše šablonu Mantra (i vlastní možnosti, uvedené přímo zde na stránce Nastavení šablony Mantra). <br> Vlastní CSS bude zachováno i při aktualizaci šablony. <br> &ltStyly&gt tagů nejsou potřeba."
+
+#: admin/settings.php:2048
+#@ mantra
+msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software).<br> The &ltscript&gt tags are not needed."
+msgstr "Zde vložte vlastní kód JavaScriptu. (Google Analytics a jakékoliv jiné formy analytického softwaru).<br> &ltScripty&gt tagů nejsou potřeba."
+
+#: admin/settings.php:2061
+#@ mantra
+msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."
+msgstr "Povolit Mantra Search Engine Optimization. To je ve výchozím nastavení povoleno a mělo by být zakázáno pouze v případě, že používáte SEO plugin."
+
+#: admin/settings.php:2073
+#@ mantra
+msgid "Auto"
+msgstr "Auto"
+
+#: admin/settings.php:2073
+#@ mantra
+msgid "Manual"
+msgstr "Manuální"
+
+#: includes/theme-comments.php:28
+#@ mantra
+msgid "says:"
+msgstr "říká:"
+
+#: includes/theme-comments.php:34
+#@ mantra
+msgid "Your comment is awaiting moderation."
+msgstr "Váš komentář čeká na schválení."
+
+#. translators: 1: date, 2: time
+#: includes/theme-comments.php:41
+#@ mantra
+msgid "at"
+msgstr "na"
+
+#: includes/theme-comments.php:41
+#: includes/theme-comments.php:58
+#@ mantra
+msgid "(Edit)"
+msgstr "(Editovat)"
+
+#: includes/theme-comments.php:58
+#@ mantra
+msgid "Pingback: "
+msgstr "Pingback: "
+
+#: includes/theme-comments.php:85
+#@ mantra
+msgid "Leave a comment"
+msgstr "Komentovat"
+
+#: includes/theme-comments.php:85
+#@ mantra
+msgid "<b>1</b> Comment"
+msgstr "<b>1</b> komentář"
+
+#: includes/theme-comments.php:85
+#@ mantra
+msgid "<b>%</b> Comments"
+msgstr "<b>%</b> komentáře"
+
+#: includes/theme-comments.php:107
+#@ mantra
+msgid "Older Comments"
+msgstr "Starší komentáře"
+
+#: includes/theme-comments.php:108
+#@ mantra
+msgid "Newer Comments"
+msgstr "Novější komentáře"
+
+#: includes/theme-functions.php:58
+#@ mantra
+msgid "Menu"
+msgstr "Menu"
+
+#: includes/theme-functions.php:269
+#@ mantra
+msgid "Home Page"
+msgstr "Domovská stránka"
+
+#: includes/theme-functions.php:342
+#@ mantra
+msgid "Powered by"
+msgstr "Vytvořil"
+
+#: includes/theme-loop.php:166
+#@ mantra
+msgid "By "
+msgstr "Autor"
+
+#: includes/theme-loop.php:206
+#@ mantra
+msgid " Bookmark the "
+msgstr "Záložka pro"
+
+#: includes/theme-loop.php:206
+#: includes/theme-loop.php:208
+#: includes/theme-loop.php:210
+#@ mantra
+msgid "Permalink to"
+msgstr "Trvalý odkaz na"
+
+#: includes/theme-loop.php:206
+#: includes/theme-loop.php:208
+#: includes/theme-loop.php:210
+#@ mantra
+msgid "permalink"
+msgstr "trvalý odkaz"
+
+#: includes/theme-loop.php:208
+#: includes/theme-loop.php:210
+#@ mantra
+msgid "Bookmark the "
+msgstr "Záložka pro"
+
+#: includes/theme-loop.php:232
+#@ mantra
+msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
+msgstr "<span class=\"meta-nav\">&laquo;</span> Starší příspěvky"
+
+#: includes/theme-loop.php:233
+#@ mantra
+msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
+msgstr "Novější příspěvky <span class=\"meta-nav\">&raquo;</span>"
+
+#: includes/theme-seo.php:26
+#, php-format
+#@ mantra
+msgid "Page %s"
+msgstr "Stránka %s"
+
+#: includes/theme-setup.php:91
+#@ mantra
+msgid "Primary Navigation"
+msgstr "Hlavní navigace"
+
+#: includes/theme-setup.php:92
+#@ mantra
+msgid "Top Navigation"
+msgstr "Vrchní navigace"
+
+#: includes/theme-setup.php:93
+#@ mantra
+msgid "Footer Navigation"
+msgstr "Navigace v zápatí"
+
+#: includes/theme-setup.php:129
+#@ mantra
+msgid "mantra"
+msgstr "Mantra"
+
+#: includes/theme-setup.php:188
+#@ mantra
+msgid "Skip to content"
+msgstr "Zpět na obsah"
+
+#: includes/theme-setup.php:215
+#@ mantra
+msgid "Primary Widget Area - Sidebar 1"
+msgstr "První prostor pro widgety - Sidebar 1"
+
+#: includes/theme-setup.php:217
+#@ mantra
+msgid "Primary widget area - Sidebar 1"
+msgstr "První prostor pro widgety - Sidebar 1"
+
+#: includes/theme-setup.php:226
+#@ mantra
+msgid "Secondary Widget Area - Sidebar 1"
+msgstr "Druhý prostor pro widgety - Sidebar 1"
+
+#: includes/theme-setup.php:228
+#@ mantra
+msgid "Secondary widget area - Sidebar 1"
+msgstr "Druhý prostor pro widgety - Sidebar 1"
+
+#: includes/theme-setup.php:237
+#@ mantra
+msgid "Third Widget Area - Sidebar 2"
+msgstr "Třetí prostor pro widgety - Sidebar 2"
+
+#: includes/theme-setup.php:239
+#@ mantra
+msgid "Third widget area - Sidebar 2"
+msgstr "Třetí prostor pro widgety - Sidebar 2"
+
+#: includes/theme-setup.php:248
+#@ mantra
+msgid "Fourth Widget Area - Sidebar 2"
+msgstr "Čtvrtý prostor pro widgety - Sidebar 2"
+
+#: includes/theme-setup.php:250
+#@ mantra
+msgid "Fourth widget area - Sidebar 2"
+msgstr "Čtvrtý prostor pro widgety - Sidebar 2"
+
+#: includes/theme-setup.php:259
+#@ mantra
+msgid "First Footer Widget Area"
+msgstr "První prostor pro widgety v zápatí"
+
+#: includes/theme-setup.php:261
+#@ mantra
+msgid "First footer widget area"
+msgstr "První prostor pro widgety v zápatí"
+
+#: includes/theme-setup.php:270
+#@ mantra
+msgid "Second Footer Widget Area"
+msgstr "Druhý prostor pro widgety v zápatí"
+
+#: includes/theme-setup.php:272
+#@ mantra
+msgid "Second footer widget area"
+msgstr "Druhý prostor pro widgety v zápatí"
+
+#: includes/theme-setup.php:281
+#@ mantra
+msgid "Third Footer Widget Area"
+msgstr "Třetí prostor pro widgety v zápatí"
+
+#: includes/theme-setup.php:283
+#@ mantra
+msgid "The third footer widget area"
+msgstr "Třetí prostor pro widgety v zápatí"
+
+#: includes/theme-setup.php:292
+#@ mantra
+msgid "Fourth Footer Widget Area"
+msgstr "Čtvrtý prostor pro widgety v zápatí"
+
+#: includes/theme-setup.php:294
+#@ mantra
+msgid "The fourth footer widget area"
+msgstr "Čtvrtý prostor pro widgety v zápatí"
+
+#: includes/theme-setup.php:303
+#: includes/theme-setup.php:305
+#@ mantra
+msgid "Above content Widget Area"
+msgstr "Horní část prostoru pro widgety"
+
+#: includes/theme-setup.php:314
+#: includes/theme-setup.php:316
+#@ mantra
+msgid "Below Content Widget Area"
+msgstr "Spodní část prostoru pro widgety"
+
+#: admin/settings.php:403
+#@ mantra
+msgid "Select the content you want to load in your slides:"
+msgstr ""
+
+#: admin/settings.php:2062
+#@ mantra
+msgid "All title tags are handled automatically by Mantra."
+msgstr ""
+
+#: admin/settings.php:2065
+#@ mantra
+msgid "Homepage Meta Description"
+msgstr ""
+
+#: admin/settings.php:2067
+#@ mantra
+msgid "This is unique and you should fill this in. Describe your site the best you can and try not to go over 160 characters."
+msgstr ""
+
+#: admin/settings.php:2081
+#@ mantra
+msgid ""
+"<u>Auto</u> - Mantra will automatically add post expcerpts to 'page' and 'post'\tmeta descriptions.<br>\n"
+"\t\t\t\t\t <u>Manual</u> - you will enable a new custom field in your post/page admin section where you can type the exact description you want for every post and page.<br>\n"
+"\t\t\t\t\t For category pages, the actual category descriptions will be used. Go to Posts > Categories and you can fill in a description for every category you have."
+msgstr ""
+
+#: admin/settings.php:2090
+#@ mantra
+msgid "Do not use"
+msgstr ""
+
+#: admin/settings.php:2100
+#@ mantra
+msgid "If you want to show an author in the meta tags."
+msgstr ""
+
+#: archive.php:29
+#@ mantra
+msgctxt "monthly archives date format"
+msgid "F Y"
+msgstr ""
+
+#: archive.php:31
+#@ mantra
+msgctxt "yearly archives date format"
+msgid "Y"
+msgstr ""
+
+#: attachment.php:33
+#: includes/theme-loop.php:168
+#, php-format
+#@ mantra
+msgid "View all posts by %s"
+msgstr ""
+
+#: content-aside.php:16
+#: content-chat.php:16
+#: content-gallery.php:19
+#: content-gallery.php:56
+#: content-image.php:15
+#: content-link.php:16
+#: content-quote.php:14
+#: content-status.php:15
+#: content.php:20
+#, php-format
+#@ mantra
+msgid "Permalink to %s"
+msgstr ""
+
+#: content-gallery.php:55
+#, php-format
+#@ mantra
+msgid "This gallery contains <a %1$s>%2$s photo</a>."
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: includes/theme-comments.php:94
+#, php-format
+#@ mantra
+msgid "One Response to %2$s"
+msgid_plural "%1$s Responses to %2$s"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: includes/theme-functions.php:344
+#@ mantra
+msgid "Semantic Personal Publishing Platform"
+msgstr ""
+
diff --git a/themes/mantra/languages/fr_FR.mo b/themes/mantra/languages/fr_FR.mo
index 23ec2a26..ecb39df6 100644
--- a/themes/mantra/languages/fr_FR.mo
+++ b/themes/mantra/languages/fr_FR.mo
Binary files differ
diff --git a/themes/mantra/languages/fr_FR.po b/themes/mantra/languages/fr_FR.po
index 2f29d5ea..e6628510 100644
--- a/themes/mantra/languages/fr_FR.po
+++ b/themes/mantra/languages/fr_FR.po
@@ -1,141 +1,144 @@
msgid ""
msgstr ""
-"Project-Id-Version: Mantra v2.0.7.1\n"
+"Project-Id-Version: Mantra v2.3.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-10 23:02+0100\n"
-"PO-Revision-Date: 2013-08-07 17:13:48+0000\n"
+"POT-Creation-Date: 2014-01-02 15:49+0100\n"
+"PO-Revision-Date: 2014-01-02 15:50+0100\n"
"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr_FR\n"
"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Generator: Poedit 1.5.7\n"
-"X-Poedit-Language: \n"
-"X-Poedit-Country: \n"
"X-Poedit-SourceCharset: UTF-8\n"
-"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_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"
+"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;esc_html;esc_html__;esc_html_e;esc_attr__;esc_attr_e\n"
"X-Poedit-Basepath: ..\n"
-"X-Poedit-Bookmarks: \n"
+"X-Textdomain-Support: yes\n"
+"X-Poedit-Language: French\n"
+"X-Poedit-Country: FRANCE\n"
"X-Poedit-SearchPath-0: .\n"
-"X-Textdomain-Support: yes"
+# @ mantra
#: 404.php:17
-#@ mantra
msgid "Not Found"
msgstr "Non trouvé"
+# @ mantra
#: 404.php:19
-#@ mantra
msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."
msgstr "Désolé, la page que vous demandez n'a pu être trouvée. Une recherche peut être utile."
-#: archive.php:26
+# @ mantra
+#: archive.php:27
#, php-format
-#@ mantra
msgid "Daily Archives: %s"
msgstr "Archives journalières: %s"
-#: archive.php:28
+# @ mantra
+#: archive.php:29
#, php-format
-#@ mantra
msgid "Monthly Archives: %s"
msgstr "Archives mensuelles: %s"
-#: archive.php:30
+# @ mantra
+#: archive.php:29
+msgctxt "monthly archives date format"
+msgid "F Y"
+msgstr "F Y"
+
+# @ mantra
+#: archive.php:31
#, php-format
-#@ mantra
msgid "Yearly Archives: %s"
msgstr "Archives annuelles: %s"
-#: archive.php:32
-#@ mantra
+# @ mantra
+#: archive.php:31
+msgctxt "yearly archives date format"
+msgid "Y"
+msgstr "Y"
+
+# @ mantra
+#: archive.php:33
msgid "Blog Archives"
msgstr "Articles archivés"
-#: archive.php:58
+# @ mantra
+#: archive.php:59
#: author.php:75
#: category.php:51
-#: index.php:41
-#: search.php:41
-#: tag.php:52
-#: template-blog.php:36
-#@ mantra
+#: content-frontpage.php:26
msgid "Nothing Found"
msgstr "Aucun article trouvé"
-#: archive.php:62
+# @ mantra
+#: archive.php:63
#: author.php:79
#: category.php:55
-#: index.php:45
-#: tag.php:56
-#: template-blog.php:40
-#@ mantra
+#: content-frontpage.php:30
msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."
msgstr "Désolé, l'archive demandée ne peut être trouvée. Essayez de rechercher un article en rapport avec elle."
+# @ mantra
#: attachment.php:18
#, php-format
-#@ mantra
msgid "Return to %s"
msgstr "Retour à %s"
-#. translators: %s - title of parent post
+# @ mantra
#: attachment.php:29
-#@ mantra
msgid "By"
msgstr "De"
+# @ mantra
#: attachment.php:33
-#: includes/theme-loop.php:147
#, php-format
-#@ mantra
msgid "View all posts by %s"
msgstr "Voir tous les artciles de %s"
+# @ mantra
#: attachment.php:40
-#@ mantra
msgid "Published"
msgstr "Publié"
+# @ mantra
#: attachment.php:50
#, php-format
-#@ mantra
msgid "Full size is %s pixels"
msgstr "Taille originelle de %s pixels"
+# @ mantra
#: attachment.php:53
-#@ mantra
msgid "Link to full-size image"
msgstr "Lien vers l'image d'origine"
+# @ mantra
#: attachment.php:60
#: attachment.php:107
#: content-aside.php:48
#: content-chat.php:49
-#: content-gallery.php:65
+#: content-gallery.php:75
#: content-image.php:42
#: content-link.php:49
#: content-page.php:22
#: content-quote.php:46
#: content-status.php:48
#: content.php:76
-#: single.php:54
-#: template-onecolumn.php:27
-#: template-page-with-intro.php:17
-#@ mantra
msgid "Edit"
msgstr "Modifier"
+# @ mantra
#: attachment.php:100
-#@ mantra
msgid "Continue reading"
msgstr "Lire la suite"
+# @ mantra
#: attachment.php:101
#: content-aside.php:39
#: content-chat.php:38
-#: content-gallery.php:55
+#: content-gallery.php:65
#: content-image.php:33
#: content-link.php:38
#: content-page.php:21
@@ -143,2337 +146,2472 @@ msgstr "Lire la suite"
#: content-status.php:39
#: content.php:49
#: content.php:65
-#: single.php:32
-#: template-onecolumn.php:26
-#: template-page-with-intro.php:16
-#@ mantra
msgid "Pages:"
msgstr "Pages:"
+# @ mantra
#: author.php:29
#, php-format
-#@ mantra
msgid "Author Archives: %s"
msgstr "Archives par auteur: %s"
+# @ mantra
#: author.php:50
-#: single.php:41
#, php-format
-#@ mantra
msgid "About %s"
msgstr "A propos de %s"
+# @ mantra
#: category.php:20
#, php-format
-#@ mantra
msgid "Category Archives: %s"
msgstr "Archives par catégorie: %s"
+# @ mantra
#: comments.php:18
-#@ mantra
msgid "This post is password protected. Enter the password to view any comments."
msgstr "Cet article est protégé par un mot de passe. Donner le mot de passe pour voir les commentaires."
+# @ mantra
#: content-aside.php:16
#: content-chat.php:16
-#: content-gallery.php:16
-#: content-gallery.php:49
+#: content-gallery.php:19
+#: content-gallery.php:56
#: content-image.php:15
#: content-link.php:16
#: content-quote.php:14
#: content-status.php:15
#: content.php:20
#, php-format
-#@ mantra
msgid "Permalink to %s"
msgstr "Permalien vers %s"
+# @ mantra
#: content-aside.php:20
-#@ mantra
msgid "Aside"
msgstr "En passant"
+# @ mantra
#: content-aside.php:38
#: content-chat.php:37
-#: content-gallery.php:33
#: content-image.php:32
#: content-link.php:37
#: content-quote.php:35
#: content-status.php:38
-#@ mantra
msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
msgstr "Lire la suite <span class=\"meta-nav\">&rarr;</span>"
+# @ mantra
#: content-aside.php:46
#: content-chat.php:45
-#: content-gallery.php:62
+#: content-gallery.php:72
#: content-image.php:39
#: content-link.php:45
#: content-quote.php:43
#: content-status.php:46
#: content.php:74
-#: includes/theme-loop.php:185
-#@ mantra
msgid "Tagged"
msgstr "Avec mots-clefs"
+# @ mantra
#: content-chat.php:20
-#@ mantra
msgid "Chat"
msgstr "Chat"
-#: content-gallery.php:20
-#@ mantra
+# @ mantra
+#: content-gallery.php:23
msgid "Gallery"
msgstr "Galerie"
-#: content-gallery.php:48
+# @ mantra
+#: content-gallery.php:55
#, php-format
-#@ mantra
msgid "This gallery contains <a %1$s>%2$s photo</a>."
msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."
msgstr[0] "Cette gallerie contient <a %1$s>%2$s photo</a>."
msgstr[1] "Cette gallerie contient <a %1$s>%2$s photos</a>."
-#: admin/settings.php:452
-#: admin/settings.php:467
-#: admin/settings.php:482
-#: admin/settings.php:497
-#: admin/settings.php:512
-#: admin/settings.php:554
-#: admin/settings.php:569
-#: admin/settings.php:584
-#: admin/settings.php:599
+# @ mantra
#: content-image.php:19
-#@ mantra
msgid "Image"
msgstr "Image"
-#: admin/settings.php:459
-#: admin/settings.php:474
-#: admin/settings.php:489
-#: admin/settings.php:504
-#: admin/settings.php:519
-#: admin/settings.php:561
-#: admin/settings.php:576
-#: admin/settings.php:591
-#: admin/settings.php:606
+# @ mantra
#: content-link.php:20
-#@ mantra
msgid "Link"
msgstr "Lien"
+# @ mantra
#: content-page.php:27
-#: includes/theme-comments.php:136
-#@ mantra
msgid "Comments are closed."
msgstr "Les commentaires sont fermés."
+# @ mantra
#: content-quote.php:18
-#@ mantra
msgid "Quote"
msgstr "Citation"
+# @ mantra
#: content-status.php:30
-#@ mantra
msgid "Status"
msgstr "Etat"
+# @ mantra
#: search.php:20
#, php-format
-#@ mantra
msgid "Search Results for: %s"
msgstr "Résultat de la recherche de: %s"
+# @ mantra
#: search.php:39
#, php-format
-#@ mantra
msgid "No search results for: %s"
msgstr "Pas de résultat pour : %s"
+# @ mantra
#: searchform.php:1
-#@ mantra
msgid "Search"
msgstr "Rechercher"
-#: single.php:45
-#@ mantra
+# @ mantra
+#: sidebar.php:26
+#: sidebar.php:92
+msgid "Sidebar 1"
+msgstr "Barre latérale 1"
+
+#: sidebar.php:28
+#: sidebar.php:94
+#, php-format
+msgid "You currently have no widgets set in the primary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."
+msgstr "Vous n'avez pas actuellement de widgets dans le barre latérale principale. Vous pouvez ajouter des widgets par le <a href=\"%s\">tableau de bord</a>."
+
+#: sidebar.php:29
+#: sidebar.php:61
+#: sidebar.php:95
+#: sidebar.php:128
+#, php-format
+msgid "To hide this sidebar, switch to a different Layout via the <a href=\"%s\">Theme Settings</a>."
+msgstr "Pour cacher cette barre latérale, choisissez une présentation diffférente par les <a href=\"%s\">paramètres du thème</a>."
+
+# @ mantra
+#: sidebar.php:58
+#: sidebar.php:125
+msgid "Sidebar 2"
+msgstr "Barre latérale 2"
+
+#: sidebar.php:60
+#: sidebar.php:127
+#, php-format
+msgid "You currently have no widgets set in the secondary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."
+msgstr "Vous n'avez pas actuellement de widgets dans le barre latérale secondaire. Vous pouvez ajouter des widgets par le <a href=\"%s\">tableau de bord</a>."
+
+# @ mantra
+#: single.php:46
msgid "View all posts by "
msgstr "Voir tous les articles de "
+# @ mantra
#: tag.php:21
#, php-format
-#@ mantra
msgid "Tag Archives: %s"
msgstr "Archives par mot-clef: %s"
+# @ mantra
#: admin/admin-functions.php:62
-#@ mantra
msgid "Before you can upload your import file, you will need to fix the following error:"
msgstr "Avant de pouvoir télécharger votre fichier, vous devez corriger l'erreur suivante :"
+# @ mantra
#: admin/admin-functions.php:70
-#@ mantra
msgid "Import Mantra Theme Options"
msgstr "Importer les options du thème Mantra"
+# @ mantra
#: admin/admin-functions.php:72
-#@ mantra
msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"
msgstr "Bonjour. C'est ici que vous pouvez importer les options du thème Mantra.<i>Attention, il s'agit toujours d'une fonction en développement.</i>"
+# @ mantra
#: admin/admin-functions.php:74
-#@ mantra
msgid "Just choose a file from your computer:"
msgstr "Choissiez un fichier sur votre ordinateur:"
+# @ mantra
#: admin/admin-functions.php:76
#, php-format
-#@ mantra
msgid "Maximum size: %s"
msgstr "Taille maximum: %s"
+# @ mantra
#: admin/admin-functions.php:82
-#@ mantra
msgid "And import!"
msgstr "Et importer!"
+# @ mantra
#: admin/admin-functions.php:148
-#@ mantra
msgid "Import Mantra Theme Options "
msgstr "Importer les options du thème Mantra"
+# @ mantra
#: admin/admin-functions.php:151
-#@ mantra
msgid "Great! The options have been imported!"
msgstr "Bravo ! Les options ont été importées !"
+# @ mantra
#: admin/admin-functions.php:152
-#@ mantra
msgid "Go back to the Mantra options page and check them out!"
msgstr "Retourner sur la page des options du thème et vérifier les !"
+# @ mantra
#: admin/admin-functions.php:155
#: admin/admin-functions.php:161
#: admin/admin-functions.php:167
-#@ mantra
msgid "Oops, there's a small problem."
msgstr "Désoler, il y a eut un problème."
+# @ mantra
#: admin/admin-functions.php:156
-#@ mantra
msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."
msgstr "Le fichier téléchargé ne contient pas des options valides pour le thème Mantra. Vérifier que ce fichier a bien été produit par un export des options du thème."
+# @ mantra
#: admin/admin-functions.php:162
-#@ mantra
msgid "The uploaded file could not be read."
msgstr "Le fichier téléchargé ne peut pas être lu."
+# @ mantra
#: admin/admin-functions.php:168
-#@ mantra
msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."
msgstr "Le fichier téléchargé n'est pas dans un format supporté. Vérifier que ce fichier a bien été produit par l'export des options du thème et qu'il est de type texte."
+# @ mantra
#: admin/admin-functions.php:177
-#@ mantra
msgid "Oops! The file is empty or there was no file. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini."
msgstr "Désoler ! Le fichier est vide ou bien il n'y a pas de fichier. Cette erreur peut aussi être causée lorsque les télépchargement sont interdits dans la configuration de php.ini ou par le paramètre post_max_size qui a une valeur plus petite que le paramètre upload_max_filesize dans le fichier php.ini."
+# @ mantra
#: admin/admin-functions.php:183
-#@ mantra
msgid "ERROR: You are not authorised to perform that operation"
msgstr "ERREUR: Vous n'êtes pas autorisé à faire cette opération"
-#: admin/main.php:100
-#@ mantra
+# @ mantra
+#: admin/defaults.php:39
+msgid "This is your caption's title"
+msgstr "Ceux-ci est le titre de votre diapositive"
+
+#: admin/defaults.php:40
+msgid "And this is the text that could accompany it. It is all optional so if you delete it in the Mantra Settings there will be no more caption with the black background."
+msgstr "Et ici mettez le texte qui peut accompager la diapositive. Tout est optionnel, donc si vous supprimez les valeurs dans les paramètres de Mantra, il n'y aura plus d'informations sur fond noir dans la diapositive."
+
+# @ mantra
+#: admin/defaults.php:43
+msgid "This is yet another caption title"
+msgstr "Ceux-ci est le titre de votre diapositive"
+
+#: admin/defaults.php:44
+msgid "And some more text to give you as an example. You can use <a href='http://www.cryoutcreations.eu' >links</a> and other type of <b>HTML</b> <i>formats</i>."
+msgstr "Et plus de texte donner en exemple. Vous pouvez utiliser <a href='http://www.cryoutcreations.eu' >des liens</a> et balises <b>HTML</b> <i>pour modifier l'affichage</i>."
+
+# @ mantra
+#: admin/defaults.php:61
+msgid "Read more"
+msgstr "En savoir plus"
+
+#: admin/defaults.php:64
+msgid "Hi there!"
+msgstr "Bonjour à tous!"
+
+#: admin/defaults.php:65
+msgid "You can also have some text here. Just like with the slider, it's all optional (including the title and the link inputs). All you need is an image, unless you want the Mantra image above to follow you everywhere."
+msgstr "Vous pouvez aussi avoir du texte ici. Comme pour les diapositives, tout est optionnel (y compris le titre et le liens). Tout ce dont vous avez besoin c'est d'une image, à moins que vous ne souhaitiez garder l'image fournie par Mantra."
+
+#: admin/defaults.php:68
+msgid " HTML tags"
+msgstr "Balises HTML"
+
+#: admin/defaults.php:69
+msgid "You can also have <a href='http://www.cryoutcreations.eu'>links</a> here as well as some <strong>HTML tags</strong>."
+msgstr "Vous pouvez utiliser <a href='http://www.cryoutcreations.eu' >des liens</a> et balises <b>HTML</b> <i>pour modifier l'affichage</i>."
+
+# @ mantra
+#: admin/defaults.php:80
+msgid "This could be a title"
+msgstr "Ceux-ci peut-être un texte"
+
+# @ mantra
+#: admin/defaults.php:81
+msgid "And this is a second title"
+msgstr "Et ici un deuxième titre"
+
+#: admin/defaults.php:83
+msgid "And here you could have a whole lot of text. Or not. It's all up to you. Deleting all text inside the appropriate input in the Mantra Settings will remove this whole text zone. It can also contain some HTML tags.<br /> Just try everything out and see what suits you. Have fun and good luck! "
+msgstr "Et ici vous pouvez saisir beaucoup de texte, ou rien. C'est comme vous le souhaitez. En supprimant tout le texte dans les différentes zones, Mantra supprimera les zones dans la page. Le texte peut bien sûr contenir des balises HTML. "
+
+# @ mantra
+#: admin/defaults.php:99
+#: admin/settings.php:738
+msgid "Site Title and Description"
+msgstr "Titre du site et sa description"
+
+# @ mantra
+#: admin/main.php:105
msgid "Layout Settings"
msgstr "Mise en page"
-#: admin/main.php:101
-#@ mantra
+# @ mantra
+#: admin/main.php:106
msgid "Header Settings"
-msgstr "Paramétrage de l'entête"
+msgstr "Entête"
-#: admin/main.php:102
-#@ mantra
+# @ mantra
+#: admin/main.php:107
msgid "Presentation Page"
msgstr "Page de présentation"
-#: admin/main.php:103
-#@ mantra
+# @ mantra
+#: admin/main.php:108
msgid "Text Settings"
msgstr "Texte"
-#: admin/main.php:104
-#@ mantra
+# @ mantra
+#: admin/main.php:109
msgid "Color Settings"
msgstr "Couleur"
-#: admin/main.php:105
-#@ mantra
+# @ mantra
+#: admin/main.php:110
msgid "Graphics Settings"
msgstr "Eléments graphiques"
-#: admin/main.php:106
-#@ mantra
+# @ mantra
+#: admin/main.php:111
msgid "Post Information Settings"
msgstr "Propriétés des articles"
-#: admin/main.php:107
-#@ mantra
+# @ mantra
+#: admin/main.php:112
msgid "Post Excerpt Settings"
msgstr "Extraits d'articles"
-#: admin/main.php:108
-#@ mantra
+# @ mantra
+#: admin/main.php:113
msgid "Featured Image Settings"
msgstr "Images à la une"
-#: admin/main.php:109
-#@ mantra
+# @ mantra
+#: admin/main.php:114
msgid "Social Media Settings"
msgstr "Réseaux sociaux"
-#: admin/main.php:110
-#@ mantra
+# @ mantra
+#: admin/main.php:115
msgid "Miscellaneous Settings"
msgstr "Divers"
-#: admin/main.php:113
-#@ mantra
+# @ mantra
+#: admin/main.php:118
msgid "Main Layout"
msgstr "Agencement global"
-#: admin/main.php:114
-#@ mantra
+# @ mantra
+#: admin/main.php:119
msgid "Content / Sidebar Width"
msgstr "Largeur contenu / volet"
-#: admin/main.php:115
-#@ mantra
+# @ mantra
+#: admin/main.php:120
msgid "Responsiveness"
msgstr "Adaptable"
-#: admin/main.php:118
-#@ mantra
+# @ mantra
+#: admin/main.php:123
msgid "Enable Presentation Page"
msgstr "Activer la page de présentation"
-#: admin/main.php:119
-#@ mantra
+# @ mantra
+#: admin/main.php:124
+msgid "Show Posts on Presentation Page"
+msgstr "Afficher les articles sur la page de présentation"
+
+# @ mantra
+#: admin/main.php:125
msgid "Slider Settings"
-msgstr "Paramétrage du diaporama"
+msgstr "Diaporama"
-#: admin/main.php:120
-#@ mantra
+# @ mantra
+#: admin/main.php:126
msgid "Slides"
msgstr "Diapos"
-#: admin/main.php:121
-#@ mantra
+# @ mantra
+#: admin/main.php:127
msgid "Presentation Page Columns"
msgstr "Colonnes de la page de présentation"
-#: admin/main.php:122
-#@ mantra
+# @ mantra
+#: admin/main.php:128
msgid "Extras"
msgstr "Extras"
-#: admin/main.php:125
-#@ mantra
+# @ mantra
+#: admin/main.php:131
msgid "Header Height"
msgstr "Hauteur de l'entête"
-#: admin/main.php:126
-#@ mantra
+# @ mantra
+#: admin/main.php:132
msgid "Header Image"
msgstr "Image de l'entête"
-#: admin/main.php:127
-#@ mantra
+# @ mantra
+#: admin/main.php:133
msgid "Site Header"
msgstr "En-tête du site"
-#: admin/main.php:128
-#@ mantra
+# @ mantra
+#: admin/main.php:134
msgid "Custom Logo Upload"
msgstr "Envoi du logo personalisé"
-#: admin/main.php:129
-#@ mantra
+# @ mantra
+#: admin/main.php:135
msgid "Header Spacing"
msgstr "Espacement de l'entête"
-#: admin/main.php:130
-#@ mantra
+# @ mantra
+#: admin/main.php:136
msgid "Rounded Menu Corners"
msgstr "Coin des menus arrondis"
-#: admin/main.php:131
-#@ mantra
+# @ mantra
+#: admin/main.php:137
msgid "FavIcon Upload"
msgstr "Envoie de la favicon"
-#: admin/main.php:133
-#@ mantra
+# @ mantra
+#: admin/main.php:139
msgid "General Font"
msgstr "Police de caractères générale"
-#: admin/main.php:134
-#@ mantra
+# @ mantra
+#: admin/main.php:140
msgid "General Font Size"
msgstr "Taille de la police générale"
-#: admin/main.php:135
-#@ mantra
+# @ mantra
+#: admin/main.php:141
msgid "Post Title Font "
msgstr "Police des titres d'article"
-#: admin/main.php:136
-#@ mantra
+# @ mantra
+#: admin/main.php:142
msgid "Post Title Font Size"
msgstr "Taille de la police des titres d'article"
-#: admin/main.php:137
-#@ mantra
+# @ mantra
+#: admin/main.php:143
msgid "Sidebar Font"
msgstr "Police pour les volets"
-#: admin/main.php:138
-#@ mantra
+# @ mantra
+#: admin/main.php:144
msgid "SideBar Font Size"
msgstr "Taille de la police pour les volets"
-#: admin/main.php:140
-#@ mantra
+# @ mantra
+#: admin/main.php:145
+msgid "Headings Font"
+msgstr "Police pour l'entête"
+
+# @ mantra
+#: admin/main.php:146
msgid "Force Text Align"
msgstr "Alignement de texte forcé"
-#: admin/main.php:141
-#@ mantra
+# @ mantra
+#: admin/main.php:147
+msgid "Paragraph spacing"
+msgstr "Espace entre les paragraphes"
+
+# @ mantra
+#: admin/main.php:148
msgid "Paragraph indent"
msgstr "Indentation de paragraphe"
-#: admin/main.php:142
-#@ mantra
+# @ mantra
+#: admin/main.php:149
msgid "Header indent"
msgstr "Indentation des titres"
-#: admin/main.php:143
-#@ mantra
+# @ mantra
+#: admin/main.php:150
msgid "Line Height"
msgstr "Hauteur de ligne"
-#: admin/main.php:144
-#@ mantra
+# @ mantra
+#: admin/main.php:151
msgid "Word spacing"
msgstr "Espacement entre mots"
-#: admin/main.php:145
-#@ mantra
+# @ mantra
+#: admin/main.php:152
msgid "Letter spacing"
msgstr "Espacement entre lettres"
-#: admin/main.php:146
-#@ mantra
+# @ mantra
+#: admin/main.php:153
msgid "Text shadow"
msgstr "Ombrage de texte"
-#: admin/main.php:148
-#@ mantra
+# @ mantra
+#: admin/main.php:155
msgid "Background Image"
msgstr "Image de fond"
-#: admin/main.php:149
-#@ mantra
+# @ mantra
+#: admin/main.php:156
msgid "Background Color"
msgstr "Couleur de fond"
-#: admin/main.php:150
-#@ mantra
+# @ mantra
+#: admin/main.php:157
msgid "Header (Banner and Menu) Background Color"
msgstr "Couleur de fond pour l'en-tête (bannière et menu)"
-#: admin/main.php:151
-#@ mantra
+# @ mantra
+#: admin/main.php:158
msgid "Content Background Color"
msgstr "Couleur de fond de la zone de contenu"
-#: admin/main.php:152
-#@ mantra
+# @ mantra
+#: admin/main.php:159
msgid "Menu Items Background Color"
msgstr "Couleur de fond du menu"
-#: admin/main.php:153
-#@ mantra
+# @ mantra
+#: admin/main.php:160
msgid "First Sidebar Background Color"
msgstr "Couleur de fond de la première barre latérale"
-#: admin/main.php:154
-#@ mantra
+# @ mantra
+#: admin/main.php:161
msgid "Second Sidebar Background Color"
msgstr "Couleur de fond de la deuxième barre latérale"
-#: admin/main.php:156
-#@ mantra
+# @ mantra
+#: admin/main.php:163
msgid "Site Title Color"
msgstr "Couleur du titre du site"
-#: admin/main.php:157
-#@ mantra
+# @ mantra
+#: admin/main.php:164
msgid "Site Description Color"
msgstr "Couleur de la description du titre du site"
-#: admin/main.php:159
-#@ mantra
+# @ mantra
+#: admin/main.php:166
msgid "Content Text Color"
msgstr "Couleur du texte dans le contenu"
-#: admin/main.php:160
-#@ mantra
+# @ mantra
+#: admin/main.php:167
msgid "Links Color"
msgstr "Couleur des liens"
-#: admin/main.php:161
-#@ mantra
+# @ mantra
+#: admin/main.php:168
msgid "Links Hover Color"
msgstr "Couleur des liens lors du passage de la souris"
-#: admin/main.php:162
-#@ mantra
+# @ mantra
+#: admin/main.php:169
msgid "Post Title Color"
msgstr "Couleur du titre des articles"
-#: admin/main.php:163
-#@ mantra
+# @ mantra
+#: admin/main.php:170
msgid "Post Title Hover Color"
msgstr "Couleur du titre des articles lors du passage de la souris"
-#: admin/main.php:164
-#@ mantra
+# @ mantra
+#: admin/main.php:171
msgid "Sidebar Header Background Color"
msgstr "Couleur de fond des titres dans les volets"
-#: admin/main.php:165
-#@ mantra
+# @ mantra
+#: admin/main.php:172
msgid "Sidebar Header Text Color"
msgstr "Couleur du texte des titres dans les volets"
-#: admin/main.php:166
-#@ mantra
+# @ mantra
+#: admin/main.php:173
msgid "Footer Widget Background Color"
msgstr "Couleur de fond des widgets en bas de page"
-#: admin/main.php:167
-#@ mantra
+# @ mantra
+#: admin/main.php:174
msgid "Footer Background Color"
msgstr "Couleur de fond de la zone bas de page"
-#: admin/main.php:168
-#@ mantra
+# @ mantra
+#: admin/main.php:175
msgid "Footer Widget Header Text Color"
msgstr "Couleur du texte des titres dans les widgets de bas de page"
-#: admin/main.php:169
-#@ mantra
+# @ mantra
+#: admin/main.php:176
msgid "Footer Widget Link Color"
msgstr "Couleur des liens dans les widgets de bas de page"
-#: admin/main.php:170
-#@ mantra
+# @ mantra
+#: admin/main.php:177
msgid "Footer Widget Hover Color"
msgstr "Couleur des liens sous la souris dans les widgets de bas de page"
-#: admin/main.php:172
-#@ mantra
+# @ mantra
+#: admin/main.php:179
msgid "Breadcrumbs"
msgstr "Aide à la navigation"
-#: admin/main.php:173
-#@ mantra
+# @ mantra
+#: admin/main.php:180
msgid "Pagination"
msgstr "Pagination"
-#: admin/main.php:174
-#@ mantra
+# @ mantra
+#: admin/main.php:181
+msgid "Main Menu Alignment"
+msgstr "Alignement du menu principal"
+
+# @ mantra
+#: admin/main.php:182
msgid "Post Images Border"
msgstr "Bordure des images dans les articles"
-#: admin/main.php:175
-#@ mantra
+# @ mantra
+#: admin/main.php:183
msgid "Caption Border"
msgstr "Bordure des légendes"
-#: admin/main.php:176
-#@ mantra
+# @ mantra
+#: admin/main.php:184
msgid "Caption Pin"
msgstr "Epingle pour les légendes"
-#: admin/main.php:177
-#@ mantra
+# @ mantra
+#: admin/main.php:185
msgid "Sidebar Menu Bullets"
msgstr "Vignette des menus de volet"
-#: admin/main.php:178
-#@ mantra
+# @ mantra
+#: admin/main.php:186
msgid "Meta Area Background"
msgstr "Couleur du fond de la zone info"
-#: admin/main.php:179
-#@ mantra
+# @ mantra
+#: admin/main.php:187
msgid "Post Separator"
msgstr "Séparateur entre articles"
-#: admin/main.php:180
-#@ mantra
+# @ mantra
+#: admin/main.php:188
msgid "Content List Bullets"
msgstr "Vignette des listes dans la zone contenu"
-#: admin/main.php:181
-#@ mantra
+# @ mantra
+#: admin/main.php:189
msgid "Page Titles"
msgstr "Titres des pages"
-#: admin/main.php:182
-#@ mantra
+# @ mantra
+#: admin/main.php:190
msgid "Category Page Titles"
msgstr "Titre lors de l'affichage d'un ensemble"
-#: admin/main.php:183
-#@ mantra
+# @ mantra
+#: admin/main.php:191
msgid "Hide Tables"
msgstr "Masquage des tableaux"
-#: admin/main.php:184
-#@ mantra
+# @ mantra
+#: admin/main.php:192
msgid "Back to Top button"
msgstr "Bouton de retour en haut de page"
-#: admin/main.php:185
-#@ mantra
+# @ mantra
+#: admin/main.php:193
msgid "Text Under Comments"
msgstr "Texte sous les commentaires"
-#: admin/main.php:186
-#@ mantra
+# @ mantra
+#: admin/main.php:194
msgid "Comments are closed text"
msgstr "Commentaires fermés"
-#: admin/main.php:187
-#@ mantra
+# @ mantra
+#: admin/main.php:195
msgid "Comments off"
msgstr "Commentaires désactivés"
-#: admin/main.php:189
-#@ mantra
+# @ mantra
+#: admin/main.php:197
msgid "Post Comments Link"
msgstr "Liens pour soumettre un commentaire"
-#: admin/main.php:190
-#@ mantra
+# @ mantra
+#: admin/main.php:198
msgid "Post Date"
msgstr "Date de publication"
-#: admin/main.php:191
-#@ mantra
+# @ mantra
+#: admin/main.php:199
msgid "Post Time"
msgstr "Heure de publication"
-#: admin/main.php:192
-#@ mantra
+# @ mantra
+#: admin/main.php:200
+#: admin/settings.php:2072
msgid "Post Author"
msgstr "Auteur de l'article"
-#: admin/main.php:193
-#@ mantra
+# @ mantra
+#: admin/main.php:201
msgid "Post Category"
msgstr "Catégorie de publication"
-#: admin/main.php:194
-#@ mantra
+# @ mantra
+#: admin/main.php:202
msgid "Meta Bar"
msgstr "Meta"
-#: admin/main.php:195
-#@ mantra
+# @ mantra
+#: admin/main.php:203
msgid "Post Tags"
msgstr "Mots-clefs associés"
-#: admin/main.php:196
-#@ mantra
+# @ mantra
+#: admin/main.php:204
msgid "Post Permalink"
msgstr "Permalien de l'article"
-#: admin/main.php:198
-#@ mantra
+# @ mantra
+#: admin/main.php:206
msgid "Post Excerpts on Home Page"
msgstr "Extraits d'articles en page d'accueil"
-#: admin/main.php:199
-#@ mantra
+# @ mantra
+#: admin/main.php:207
msgid "Affect Sticky Posts"
msgstr "Cas des articles épinglés"
-#: admin/main.php:200
-#@ mantra
+# @ mantra
+#: admin/main.php:208
msgid "Post Excerpts on Archive and Category Pages"
msgstr "Extraits des articles dans les archives et les pages de catégories"
-#: admin/main.php:201
-#@ mantra
+# @ mantra
+#: admin/main.php:209
msgid "Number of Words for Post Excerpts "
msgstr "Nombre de mots pour les extraits d'articles"
-#: admin/main.php:202
-#@ mantra
+# @ mantra
+#: admin/main.php:210
msgid "Magazine Layout"
msgstr "Mise en page de type magazine"
-#: admin/main.php:203
-#@ mantra
+# @ mantra
+#: admin/main.php:211
msgid "Excerpt suffix"
msgstr "Terminateur des extraits"
-#: admin/main.php:204
-#@ mantra
+# @ mantra
+#: admin/main.php:212
msgid "Continue reading link text "
msgstr "Texte du lien lire la suite"
-#: admin/main.php:205
-#@ mantra
+# @ mantra
+#: admin/main.php:213
msgid "HTML tags in Excerpts"
msgstr "Tags HTML dans les extraits"
-#: admin/main.php:207
-#@ mantra
+# @ mantra
+#: admin/main.php:215
msgid "Featured Images as POST Thumbnails "
msgstr "Réductions pour les images à la une"
-#: admin/main.php:208
-#@ mantra
+# @ mantra
+#: admin/main.php:216
msgid "Auto Select Images From Posts "
msgstr " Sélection automatique d'images d'articles"
-#: admin/main.php:209
-#@ mantra
+# @ mantra
+#: admin/main.php:217
msgid "Thumbnails Alignment "
msgstr "Emplacement des réductions"
-#: admin/main.php:210
-#@ mantra
+# @ mantra
+#: admin/main.php:218
msgid "Thumbnails Size "
msgstr "Taille des réductions"
-#: admin/main.php:211
-#@ mantra
+# @ mantra
+#: admin/main.php:219
msgid "Featured Images as HEADER Images "
msgstr "Images à la une utilisées comme images d'en-tête"
-#: admin/main.php:213
-#@ mantra
+# @ mantra
+#: admin/main.php:221
msgid "Link nr. 1"
msgstr "Lien N°1"
-#: admin/main.php:214
-#@ mantra
+# @ mantra
+#: admin/main.php:222
msgid "Link nr. 2"
msgstr "Lien N°2"
-#: admin/main.php:215
-#@ mantra
+# @ mantra
+#: admin/main.php:223
msgid "Link nr. 3"
msgstr "Lien N°3"
-#: admin/main.php:216
-#@ mantra
+# @ mantra
+#: admin/main.php:224
msgid "Link nr. 4"
msgstr "Lien N°4"
-#: admin/main.php:217
-#@ mantra
+# @ mantra
+#: admin/main.php:225
msgid "Link nr. 5"
msgstr "Lien N°5"
-#: admin/main.php:218
-#@ mantra
+# @ mantra
+#: admin/main.php:226
msgid "Socials display"
msgstr "Affichage des réseaux sociaux"
-#: admin/main.php:220
-#@ mantra
+# @ mantra
+#: admin/main.php:228
msgid "SEO Settings"
-msgstr "Paramètres SEO"
+msgstr "SEO"
-#: admin/main.php:221
-#@ mantra
+# @ mantra
+#: admin/main.php:229
msgid "Custom Footer Text"
msgstr "Text de pied de page"
-#: admin/main.php:222
-#@ mantra
+# @ mantra
+#: admin/main.php:230
msgid "Custom CSS"
msgstr "CSS spécifique"
-#: admin/main.php:223
-#@ mantra
+# @ mantra
+#: admin/main.php:231
msgid "Custom JavaScript"
msgstr "JavaScript personalisé"
-#: admin/main.php:240
-#@ mantra
+# @ mantra
+#: admin/main.php:248
msgid "Sorry, but you do not have sufficient permissions to access this page."
msgstr "Désolé, vos droits ne vous permettent pas d'accéder à cette page."
-#: admin/main.php:262
-#@ mantra
+# @ mantra
+#: admin/main.php:268
msgid "Mantra settings updated successfully."
msgstr "Configuration de Mantra mise à jour"
-#: admin/main.php:274
-#@ mantra
+# @ mantra
+#: admin/main.php:283
msgid "Save Changes"
msgstr "Enregistrer les modifications"
-#: admin/main.php:275
-#@ mantra
+# @ mantra
+#: admin/main.php:284
msgid "Reset to Defaults"
msgstr "Retour à configuration par défaut"
-#: admin/main.php:307
-#@ mantra
+# @ mantra
+#: admin/main.php:316
msgid "Import/Export Settings"
msgstr "Import/export de la configuration"
-#: admin/main.php:313
-#@ mantra
+# @ mantra
+#: admin/main.php:322
msgid "Export Theme options"
msgstr "Exporter les options du thème"
-#: admin/main.php:314
-#@ mantra
+# @ mantra
+#: admin/main.php:323
msgid "It's that easy: a mouse click away - the ability to export your Mantra settings and save them on your computer. Feeling safer? You should!"
msgstr "C'est facile : juste un clic de la souriis pour exporter toutes les options de votre thème Mantra et les sauvegarder sur votre ordinateur. Vous sentez vous rassuré ? Vous le devriez !"
-#: admin/main.php:319
-#@ mantra
+# @ mantra
+#: admin/main.php:328
msgid "Import Theme options"
msgstr "Importer les options du thème"
-#: admin/main.php:320
-#@ mantra
+# @ mantra
+#: admin/main.php:329
msgid " Without the import, the export would just be a fool's exercise. Make sure you have the exported file ready and see you after the mouse click."
msgstr "Sans l'import, l'export ne servirait à rien. Vérifier de disposer du fichier d'export puis cliquer."
-#: admin/main.php:328
-#@ mantra
+# @ mantra
+#: admin/main.php:337
msgid "Mantra Latest News"
msgstr "Dernières nouvelles de Mantra"
-#: admin/main.php:339
-#@ mantra
+# @ mantra
+#: admin/main.php:348
msgid "No news items."
msgstr "Pas de nouvel élément."
-#: admin/main.php:343
-#@ mantra
+# @ mantra
+#: admin/main.php:352
msgid "Posted on"
msgstr "Publié sur"
+# @ mantra
#: admin/settings.php:66
-#@ mantra
msgid "One column (no sidebars)"
msgstr "Une colonne (pas de volet)"
+# @ mantra
#: admin/settings.php:67
-#@ mantra
msgid "Two columns, sidebar on the right"
msgstr "Deux colonnes, volet à droite"
+# @ mantra
#: admin/settings.php:68
-#@ mantra
msgid "Two columns, sidebar on the left"
msgstr "Deux colonnes, volet à gauche"
+# @ mantra
#: admin/settings.php:69
-#@ mantra
msgid "Three columns, sidebars on the right"
msgstr "Trois colonnes dont deux volets à droite"
+# @ mantra
#: admin/settings.php:70
-#@ mantra
msgid "Three columns, sidebars on the left"
msgstr "Trois colonnes dont deux volets à gauche"
+# @ mantra
#: admin/settings.php:71
-#@ mantra
msgid "Three columns, one sidebar on each side"
msgstr "Trois colonnes, un volet de chaque côté"
+# @ mantra
#: admin/settings.php:86
-#@ mantra
-msgid ""
-"Choose your layout. Possible options are: <br> No sidebar, a single sidebar on either left of right, two sidebars on either left or\n"
-"\t\tright and two sidebars on each side."
-msgstr "Choisissez votre structure. Les options possibles sont : <br /> Pas de colonne, une colonne soit à gauche ou à droite, deux colones soient à gauche ou à droite ou une de chaque côté."
+msgid "Choose your layout. Possible options are: <br> No sidebar, a single sidebar on either left of right, two sidebars on either left or right and two sidebars on each side."
+msgstr "Choisissez votre structure. Les options possibles sont : <br />Pas de colonne, une colonne soit à gauche ou à droite, deux colonnes soient à gauche ou à droite ou une de chaque côté."
-#: admin/settings.php:95
-#@ mantra
+# @ mantra
+#: admin/settings.php:94
msgid "Absolute"
msgstr "Absolue"
-#: admin/settings.php:95
-#@ mantra
+# @ mantra
+#: admin/settings.php:94
msgid "Relative *DEPRECATED"
msgstr "Relatif (* Plus supporter)"
-#: admin/settings.php:96
-#@ mantra
+# @ mantra
+#: admin/settings.php:95
msgid "Dimensions to use: "
msgstr "Dimensions "
-#: admin/settings.php:178
-#: admin/settings.php:198
-#@ mantra
+# @ mantra
+#: admin/settings.php:177
+#: admin/settings.php:195
msgid "Content ="
msgstr "Contenu ="
-#: admin/settings.php:179
-#: admin/settings.php:199
-#@ mantra
+# @ mantra
+#: admin/settings.php:178
+#: admin/settings.php:196
msgid "Sidebar(s) ="
msgstr "Volet(s) ="
-#: admin/settings.php:180
-#: admin/settings.php:200
-#@ mantra
+# @ mantra
+#: admin/settings.php:179
+#: admin/settings.php:197
msgid "Total width ="
msgstr "Largeur totale="
-#: admin/settings.php:189
-#@ mantra
-msgid ""
-"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"
-" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"
-"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."
-msgstr ""
-"Choisir la largeur des zones <b>contenu</b> et <b>volet(s)</b>. \n"
-" \t\tLa largeur minimale de la zone contenu est de 500px. Celle de la zone volet doit être comprise entre 220px et 800px.<br />\n"
-"\tDans le cas d'une mise en page à 3 colonnes avec 2 volets, chaque volet occupe la moitié de la largeur choisie pour la zone volet."
-
-#: admin/settings.php:209
-#@ mantra
-msgid ""
-"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"
-" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"
-"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"
-"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."
-msgstr ""
-"Choisir la largeur des zones <b>contenu</b> et <b>volet</b>. \n"
-" \t\tCes dimensions sont relatives à la largeur de la fenêtre du navigateur utilisateur (largeur navigateur).<br />\n"
-"\t La largeur de la zone contenu ne peut être inférieure à 40% de la largeur navigateur. Celle de la zone volet doit être comprise entre 20% et 50% de la largeur navigateur.<br />\n"
-"\tDans le cas d'une mise en page à 3 colonnes avec 2 volets, chaque volet occupe la moitié de la zone volet."
-
-#: admin/settings.php:223
-#: admin/settings.php:246
-#: admin/settings.php:712
-#: admin/settings.php:1060
-#: admin/settings.php:1122
-#: admin/settings.php:1310
-#: admin/settings.php:1325
-#: admin/settings.php:1482
-#: admin/settings.php:1544
-#: admin/settings.php:1745
-#: admin/settings.php:1774
-#: admin/settings.php:1797
-#: admin/settings.php:1820
-#: admin/settings.php:1869
-#: admin/settings.php:2005
-#@ mantra
+# @ mantra
+#: admin/settings.php:188
+msgid "Select the width of your <b>content</b> and <b>sidebar(s)</b>. While the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />If you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."
+msgstr "Choisir la largeur des zones <b>contenu</b> et <b>volet(s)</b>. La largeur minimale de la zone contenu est de 500px. Celle de la zone volet doit être comprise entre 220px et 800px.<br />Dans le cas d'une mise en page à 3 colonnes avec 2 volets, chaque volet occupe la moitié de la largeur choisie pour la zone volet."
+
+# @ mantra
+#: admin/settings.php:206
+msgid "Select the width of your <b>content</b> and <b>sidebar(s)</b>. These are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />If you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."
+msgstr "Choisir la largeur des zones <b>contenu</b> et <b>volet</b>. Ces dimensions sont relatives à la largeur de la fenêtre du navigateur utilisateur (largeur navigateur).<br />La largeur de la zone contenu ne peut être inférieure à 40% de la largeur navigateur. Celle de la zone volet doit être comprise entre 20% et 50% de la largeur navigateur.<br />Dans le cas d'une mise en page à 3 colonnes avec 2 volets, chaque volet occupe la moitié de la zone volet."
+
+# @ mantra
+#: admin/settings.php:217
+#: admin/settings.php:240
+#: admin/settings.php:255
+#: admin/settings.php:722
+#: admin/settings.php:1085
+#: admin/settings.php:1147
+#: admin/settings.php:1335
+#: admin/settings.php:1350
+#: admin/settings.php:1521
+#: admin/settings.php:1583
+#: admin/settings.php:1783
+#: admin/settings.php:1812
+#: admin/settings.php:1833
+#: admin/settings.php:1856
+#: admin/settings.php:1905
+#: admin/settings.php:2040
msgid "Enable"
msgstr "Activer"
-#: admin/settings.php:223
-#: admin/settings.php:246
-#: admin/settings.php:712
-#: admin/settings.php:1060
-#: admin/settings.php:1122
-#: admin/settings.php:1310
-#: admin/settings.php:1325
-#: admin/settings.php:1482
-#: admin/settings.php:1544
-#: admin/settings.php:1745
-#: admin/settings.php:1774
-#: admin/settings.php:1797
-#: admin/settings.php:1820
-#: admin/settings.php:1869
-#: admin/settings.php:2005
-#@ mantra
+# @ mantra
+#: admin/settings.php:217
+#: admin/settings.php:240
+#: admin/settings.php:255
+#: admin/settings.php:722
+#: admin/settings.php:1085
+#: admin/settings.php:1147
+#: admin/settings.php:1335
+#: admin/settings.php:1350
+#: admin/settings.php:1521
+#: admin/settings.php:1583
+#: admin/settings.php:1783
+#: admin/settings.php:1812
+#: admin/settings.php:1833
+#: admin/settings.php:1856
+#: admin/settings.php:1905
+#: admin/settings.php:2040
msgid "Disable"
msgstr "Désactiver"
-#: admin/settings.php:232
-#@ mantra
+# @ mantra
+#: admin/settings.php:226
msgid "Enable to make Mantra fully responsive. The layout and general sizes of your blog will adjust depending on what device and what resolution it is viewed in.<br> Do not disable unless you have a good reason to."
msgstr "Activer la version pour mobile pour rendre Mantra plus adaptable. La forme et l'affichage de votre site vont changer en fonction du terminal utilisé et de sa résolution.<br />Ne pas désactivé sans une bonne raison."
-#: admin/settings.php:254
-#@ mantra
-msgid ""
-"Enable the presentation front-page. This will become your new home page. It has a slider and columns for presentation\n"
-"\t\ttext and images.<br>If you have this enabled but don't see a Presentation page then go to <a href='options-reading.php'> Settings &raquo; Reading </a> and make sure you have selected <strong>Front Page Displays</strong> as <Strong>Your Latest Posts</strong>."
-msgstr "Activer la page de présentation. Cette page deviendra votre nouvelle page d'accueil. Elle possède un diaporama, et des colonnes pour la présentation"
+# @ mantra
+#: admin/settings.php:248
+msgid "Enable the presentation front-page. This will become your new home page. It has a slider and columns for presentation text and images.<br>If you have this enabled but don't see a Presentation page then go to <a href='options-reading.php'> Settings &raquo; Reading </a> and make sure you have selected <strong>Front Page Displays</strong> as <Strong>Your Latest Posts</strong>."
+msgstr "Activer la page de présentation. Cette page deviendra votre nouvelle page d'accueil. Elle possède un diaporama, et des colonnes pour la présentation.<br>Si vous l'avez activé et que vous ne voyez pas de page de présentation, allez aux <a href='options-reading.php'>Réglages &raquo; Lecture </a> et vérifier que vous avez sélectionné <strong>Affichage de la page de présentation</strong> comme <Strong>votre dernier article</strong>."
#: admin/settings.php:264
-#@ mantra
+msgid "posts"
+msgstr "articles"
+
+#: admin/settings.php:265
+msgid "Enable to display latest posts on the presentation page, below the columns. Sticky posts are always displayed and not counted."
+msgstr "Activer pour afficher les derniers articles sur la page de présentation, sous les colonnes. Les articles mis en avant sont toujours affichés et ne sont pas comptés."
+
+# @ mantra
+#: admin/settings.php:273
msgid "Slider Dimensions:"
msgstr "Taille des diapos:"
-#: admin/settings.php:265
-#@ mantra
+# @ mantra
+#: admin/settings.php:274
msgid "width"
msgstr "largeur"
-#: admin/settings.php:266
-#@ mantra
+# @ mantra
+#: admin/settings.php:275
msgid "height"
msgstr "hauteur"
-#: admin/settings.php:267
-#@ mantra
+# @ mantra
+#: admin/settings.php:276
msgid "The dimensions of your slider. Make sure your images are of the same size."
msgstr "Dimensions de l'affichage du diaporama. S'assurer que les images utilisées sont de la même taille."
-#: admin/settings.php:269
-#@ mantra
+# @ mantra
+#: admin/settings.php:278
msgid "Animation:"
msgstr "Animation:"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "Random"
msgstr "Au hasard"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "Fold"
msgstr "Balayage"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "Fade"
msgstr "Fondu"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "SlideInRight"
msgstr "Glisser depuis la droite"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "SlideInLeft"
msgstr "Glisser depuis la gauche"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "SliceDown"
msgstr "Glisser vers le bas et la droite"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "SliceDownLeft"
msgstr "Glisser vers le bas et la gauche"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "SliceUp"
msgstr "Glisser vers le haut et la droite"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "SliceUpLeft"
msgstr "Glisser vers le haut et la gauche"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "SliceUpDown"
msgstr "Glisser du haut et du bas à partir de la gauche"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "SliceUpDownLeft"
msgstr "Glisser du haut et du bas à partir de la droite"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "BoxRandom"
msgstr "Boites au hasard"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "BoxRain"
msgstr "Carrés du haut en bas vers la droite"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "BoxRainReverse"
msgstr "Carrés du bas en haut vers la gauche"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "BoxRainGrow"
msgstr "Carrés s'agrandissant de haut en bas vers la droite"
-#: admin/settings.php:271
-#@ mantra
+# @ mantra
+#: admin/settings.php:280
msgid "BoxRainGrowReverse"
msgstr "Carrés s'agrandissant de bas en haut vers la gauche"
-#: admin/settings.php:279
-#@ mantra
+# @ mantra
+#: admin/settings.php:288
msgid "The transition effect your slider will have."
msgstr "Type d'effet lors des transitions du diaporama."
-#: admin/settings.php:281
-#@ mantra
+# @ mantra
+#: admin/settings.php:290
msgid "Border Settings:"
-msgstr "Paramètres des bordures:"
+msgstr "Bordures:"
-#: admin/settings.php:282
-#@ mantra
+# @ mantra
+#: admin/settings.php:291
msgid "Width"
msgstr "Largeur"
-#: admin/settings.php:283
-#@ mantra
+# @ mantra
+#: admin/settings.php:292
msgid "Color"
msgstr "Couleur"
-#: admin/settings.php:285
-#@ mantra
+# @ mantra
+#: admin/settings.php:294
msgid "The width and color of the slider's border."
msgstr "La taille et la couleur de la bordure du diaporama"
-#: admin/settings.php:287
-#@ mantra
+# @ mantra
+#: admin/settings.php:296
msgid "Animation Time:"
msgstr "Durée d'animation:"
-#: admin/settings.php:288
-#: admin/settings.php:292
-#@ mantra
+# @ mantra
+#: admin/settings.php:297
+#: admin/settings.php:301
msgid "milliseconds"
msgstr "milliseconds"
-#: admin/settings.php:289
-#@ mantra
+# @ mantra
+#: admin/settings.php:298
msgid "The time in which the transition animation will take place."
msgstr "Durée de l'effet lors des transitions."
-#: admin/settings.php:291
-#@ mantra
+# @ mantra
+#: admin/settings.php:300
msgid "Pause Time:"
msgstr "Temps de pose:"
-#: admin/settings.php:293
-#@ mantra
+# @ mantra
+#: admin/settings.php:302
msgid "The time in which a slide will be still and visible."
msgstr "Durée pendant laquelle chaque vue est stable et visible."
-#: admin/settings.php:296
-#@ mantra
+# @ mantra
+#: admin/settings.php:305
msgid "Slider navigation:"
msgstr "Navigation entre diapos:"
-#: admin/settings.php:298
-#@ mantra
+# @ mantra
+#: admin/settings.php:307
msgid "Numbers"
msgstr "Numéros"
-#: admin/settings.php:298
-#@ mantra
+# @ mantra
+#: admin/settings.php:307
msgid "Bullets"
msgstr "Marqueurs"
-#: admin/settings.php:298
-#: admin/settings.php:1403
-#@ mantra
+# @ mantra
+#: admin/settings.php:307
+#: admin/settings.php:1442
msgid "None"
msgstr "Aucun"
-#: admin/settings.php:306
-#@ mantra
+# @ mantra
+#: admin/settings.php:315
msgid "Your slider navigation type. Shown under the slider."
msgstr "Mode de navigation entre vues pour le diaporama. Affiché sous le passe-vues."
-#: admin/settings.php:308
-#@ mantra
+# @ mantra
+#: admin/settings.php:317
msgid "Slider arrows:"
msgstr "Flèches pour navigation:"
-#: admin/settings.php:310
-#@ mantra
+# @ mantra
+#: admin/settings.php:319
msgid "Always Visible"
msgstr "Toujours visible"
-#: admin/settings.php:310
-#@ mantra
+# @ mantra
+#: admin/settings.php:319
msgid "Visible on Hover"
msgstr "Visible sous la souris"
-#: admin/settings.php:310
-#@ mantra
+# @ mantra
+#: admin/settings.php:319
msgid "Hidden"
msgstr "Caché"
-#: admin/settings.php:318
-#@ mantra
+# @ mantra
+#: admin/settings.php:327
msgid "The Left and Right arrows on your slider"
msgstr "Flèches gauche et droite sur le passe-vues"
-#: admin/settings.php:359
-#: admin/settings.php:428
-#@ mantra
+# @ mantra
+#: admin/settings.php:368
+#: admin/settings.php:437
msgid "Select Category"
msgstr "Choisir une catégorie"
-#: admin/settings.php:386
-#@ mantra
+# @ mantra
+#: admin/settings.php:395
msgid "Custom Slides"
msgstr "Diaporama personalisé"
-#: admin/settings.php:386
-#@ mantra
+# @ mantra
+#: admin/settings.php:395
msgid "Latest Posts"
msgstr "Derniers articles"
-#: admin/settings.php:386
-#@ mantra
+# @ mantra
+#: admin/settings.php:395
msgid "Random Posts"
msgstr "Articles au hasard"
-#: admin/settings.php:386
-#@ mantra
+# @ mantra
+#: admin/settings.php:395
msgid "Sticky Posts"
msgstr "Articles épinglés"
-#: admin/settings.php:386
-#@ mantra
+# @ mantra
+#: admin/settings.php:395
msgid "Latest Posts from Category"
msgstr "Derniers articles de la catégorie"
-#: admin/settings.php:386
-#@ mantra
+# @ mantra
+#: admin/settings.php:395
msgid "Random Posts from Category"
msgstr "Articles au hasard de la catégorie"
-#: admin/settings.php:386
-#@ mantra
+# @ mantra
+#: admin/settings.php:395
msgid "Specific Posts"
msgstr "Articles spécifiques"
-#: admin/settings.php:395
-#@ mantra
+#: admin/settings.php:396
+msgid "Select the content you want to load in your slides:"
+msgstr "Choisissez le contenu que vous voulez mettre dans le diaporama :"
+
+# @ mantra
+#: admin/settings.php:404
msgid "Your slides' content. Only the image is required, all other fields are optional. Only the slides with an image selected will become acitve and visible in the live slider."
msgstr "Description des diverses vues affichées par le diaporama. Seul le champ image est obligatoire. Ne sont actives et visibles que les vues dont le champ image est renseigné."
-#: admin/settings.php:400
-#@ mantra
+# @ mantra
+#: admin/settings.php:409
msgid "Latest posts will be loaded into the slider."
msgstr "Les derniers articles seront mis dans le diaporama."
-#: admin/settings.php:404
-#@ mantra
+# @ mantra
+#: admin/settings.php:413
msgid "Random posts will be loaded into the slider."
msgstr "Des articles au hasard seront mis dans le diaporama."
-#: admin/settings.php:408
-#@ mantra
+# @ mantra
+#: admin/settings.php:417
msgid "Latest posts from the category you choose will be loaded in the slider."
msgstr "Les derniers articles de la catégorie sélectionnée seront mis dans le diaporama."
-#: admin/settings.php:413
-#@ mantra
+# @ mantra
+#: admin/settings.php:422
msgid "Random posts from the category you choose will be loaded into the slider."
msgstr "Des articles au hasard de la catégorie sélectionnée seront mis dans le diaporama."
-#: admin/settings.php:417
-#@ mantra
+# @ mantra
+#: admin/settings.php:426
msgid "Only sticky posts will be loaded into the slider."
msgstr "Seuls les articles sélectionnés seront mis dans le diaporama."
-#: admin/settings.php:421
-#@ mantra
+# @ mantra
+#: admin/settings.php:430
msgid "List the post IDs you want to display (separated by a comma): "
msgstr "Listes des articles (identifiés par leurs ID) à mettre dans le diaporama (séparés par des virgules)"
-#: admin/settings.php:426
-#@ mantra
+# @ mantra
+#: admin/settings.php:435
msgid "<br> Choose the cateogry: "
msgstr "<br/> Choisir la catégorie: "
-#: admin/settings.php:443
-#@ mantra
+# @ mantra
+#: admin/settings.php:452
msgid "Number of posts to show:"
msgstr "Nombre d'articles à montrer :"
-#: admin/settings.php:450
-#@ mantra
+# @ mantra
+#: admin/settings.php:459
msgid "Slide 1"
msgstr "Diapo 1"
-#: admin/settings.php:454
-#: admin/settings.php:469
-#: admin/settings.php:484
-#: admin/settings.php:499
-#: admin/settings.php:514
-#: admin/settings.php:556
-#: admin/settings.php:571
-#: admin/settings.php:586
-#: admin/settings.php:601
-#: admin/settings.php:747
-#: admin/settings.php:770
-#@ mantra
+# @ mantra
+#: admin/settings.php:463
+#: admin/settings.php:478
+#: admin/settings.php:493
+#: admin/settings.php:508
+#: admin/settings.php:523
+#: admin/settings.php:565
+#: admin/settings.php:580
+#: admin/settings.php:595
+#: admin/settings.php:610
+#: admin/settings.php:757
+#: admin/settings.php:780
msgid "Select / Upload Image"
msgstr "Sélectionner / Charger une image"
-#: admin/settings.php:455
-#: admin/settings.php:470
-#: admin/settings.php:485
-#: admin/settings.php:500
-#: admin/settings.php:515
-#: admin/settings.php:557
-#: admin/settings.php:572
-#: admin/settings.php:602
-#@ mantra
+# @ mantra
+#: admin/settings.php:464
+#: admin/settings.php:479
+#: admin/settings.php:494
+#: admin/settings.php:509
+#: admin/settings.php:524
+#: admin/settings.php:566
+#: admin/settings.php:581
+#: admin/settings.php:611
msgid "Title"
msgstr "Titre"
-#: admin/settings.php:457
-#: admin/settings.php:472
-#: admin/settings.php:487
-#: admin/settings.php:502
-#: admin/settings.php:517
-#: admin/settings.php:559
-#: admin/settings.php:574
-#: admin/settings.php:589
-#: admin/settings.php:604
-#@ mantra
+# @ mantra
+#: admin/settings.php:466
+#: admin/settings.php:481
+#: admin/settings.php:496
+#: admin/settings.php:511
+#: admin/settings.php:526
+#: admin/settings.php:568
+#: admin/settings.php:583
+#: admin/settings.php:598
+#: admin/settings.php:613
msgid "Text"
msgstr "Texte"
-#: admin/settings.php:465
-#@ mantra
+# @ mantra
+#: admin/settings.php:474
msgid "Slide 2"
msgstr "Diapo 2"
-#: admin/settings.php:480
-#@ mantra
+# @ mantra
+#: admin/settings.php:489
msgid "Slide 3"
msgstr "Diapo 3"
-#: admin/settings.php:495
-#@ mantra
+# @ mantra
+#: admin/settings.php:504
msgid "Slide 4"
msgstr "Diapo 4"
-#: admin/settings.php:510
-#@ mantra
+# @ mantra
+#: admin/settings.php:519
msgid "Slide 5"
msgstr "Diapo 5"
-#: admin/settings.php:532
-#@ mantra
+# @ mantra
+#: admin/settings.php:541
msgid "Number of columns:"
msgstr "Nombre de colonnes:"
-#: admin/settings.php:542
-#@ mantra
+# @ mantra
+#: admin/settings.php:551
msgid "Image Height:"
msgstr "Hauteur des images:"
-#: admin/settings.php:545
-#@ mantra
+# @ mantra
+#: admin/settings.php:554
msgid "Read more text:"
msgstr "Texte suite:"
-#: admin/settings.php:548
-#@ mantra
+# @ mantra
+#: admin/settings.php:557
msgid "The linked text that appears at the bottom of all the columns. You can delete all text inside if you don't want it."
msgstr "Texte du lien apparaissant au bas de chaque colonne. Ce texte peut être vide, auquel cas aucun lien n'est affiché."
-#: admin/settings.php:552
-#@ mantra
+# @ mantra
+#: admin/settings.php:561
msgid "1st Column"
msgstr "1ère colonne"
-#: admin/settings.php:567
-#@ mantra
+# @ mantra
+#: admin/settings.php:576
msgid "2nd Column"
msgstr "2ème colonne"
-#: admin/settings.php:582
-#@ mantra
+# @ mantra
+#: admin/settings.php:591
msgid "3rd Column"
msgstr "3ème colonne"
-#: admin/settings.php:597
-#@ mantra
+# @ mantra
+#: admin/settings.php:606
msgid "4th Column"
msgstr "4ème colonne"
-#: admin/settings.php:619
-#@ mantra
+# @ mantra
+#: admin/settings.php:628
msgid "Extra Text"
msgstr "Texte supplémentaire"
-#: admin/settings.php:621
-#@ mantra
-msgid ""
-"More text for your front page. The top title is above the slider, the second title between the slider and the columns and 2 more rows of text under the columns.\n"
-"\t\t It's all optional so leave any input field empty if it's not required. "
+# @ mantra
+#: admin/settings.php:630
+msgid "More text for your front page. The top title is above the slider, the second title between the slider and the columns and 2 more rows of text under the columns. It's all optional so leave any input field empty if it's not required. "
msgstr "Texte supplémentaire dans la page de présentation. Le titre du haut est affiché au-dessus du diaporama. Le second titre apparaît entre le diaporama et la zone des colonnes. Sous cette zone sont affichés les deux textes du bas 1 et 2.Tout est optionnel. Les champs vides ne seront pas affichés."
-#: admin/settings.php:624
-#@ mantra
+# @ mantra
+#: admin/settings.php:632
msgid "Top Title"
msgstr "Titre du haut"
-#: admin/settings.php:625
-#@ mantra
+# @ mantra
+#: admin/settings.php:633
msgid "Second Title"
msgstr "Second titre"
-#: admin/settings.php:628
-#@ mantra
+# @ mantra
+#: admin/settings.php:636
msgid "Title color"
msgstr "Couleur des titres"
-#: admin/settings.php:632
-#@ mantra
+# @ mantra
+#: admin/settings.php:640
msgid "Bottom Text 1"
msgstr "Texte du bas N°1"
-#: admin/settings.php:634
-#@ mantra
+# @ mantra
+#: admin/settings.php:642
msgid "Bottom Text 2"
msgstr "Texte du bas N°2"
-#: admin/settings.php:642
-#@ mantra
+# @ mantra
+#: admin/settings.php:650
msgid "Hide areas"
msgstr "Masquage de zones"
-#: admin/settings.php:644
-#@ mantra
+# @ mantra
+#: admin/settings.php:652
msgid "Choose the areas to hide on the first page."
msgstr "Choisir les zones à cacher en première page."
-#: admin/settings.php:656
-#@ mantra
+# @ mantra
+#: admin/settings.php:664
msgid "Hide the header area (image or background color)."
msgstr "Masquer la zone en-tête (image et fond)"
-#: admin/settings.php:660
-#@ mantra
+# @ mantra
+#: admin/settings.php:668
msgid "Hide the main menu (the top navigation tabs)."
msgstr "Masquer le menu principal (onglets de navigation)"
-#: admin/settings.php:664
-#@ mantra
+# @ mantra
+#: admin/settings.php:672
msgid "Hide the footer widgets. "
msgstr "Masquer la zone widget du bas."
-#: admin/settings.php:668
-#@ mantra
+# @ mantra
+#: admin/settings.php:676
msgid "Hide the footer (copyright area)."
msgstr "Masquer le bas de page (zone du copyright)"
-#: admin/settings.php:672
-#@ mantra
+# @ mantra
+#: admin/settings.php:680
msgid "Hide the white color. Only the background color remains."
msgstr "Dans la zone à fond blanc, remplacer le blanc par la couleur de fond choisie."
-#: admin/settings.php:696
-#@ mantra
+# @ mantra
+#: admin/settings.php:700
msgid "Select the header's height. After saving the settings make sure you reupload a new header image (if you're using one). The header's width will be = "
msgstr "Choisir la hauteur de l'en-tête. Après enregistrement du paramétrage, télécharger sur le site une nouvelle image d'en-tête (si vous en avez une). La largeur de l'en-tête sera égale à la largeur totale du site ="
-#: admin/settings.php:702
-#@ default
+# @ default
+#: admin/settings.php:707
msgid "Define header image"
msgstr "Définir l'image de l'entête"
-#: admin/settings.php:720
-#@ mantra
+#: admin/settings.php:708
+msgid "The header image should not be used to display logos.<br> Enable ratio preservation to force the header image aspect ratio. Keep in mind that short images will become very small on mobile devices."
+msgstr "L'image d'entête ne doit pas être utilisée pour afficher des logos.<br>Activer la préservation du ratio pour forcer cette conservation sur l'image d'entête. Garder à l'esprit que les images petites vont devenir très petites sur les appareils mobiles."
+
+#: admin/settings.php:711
+msgid "Center the header image horizontally"
+msgstr "Centrer l'image de l'entête horizontallement"
+
+# @ default
+#: admin/settings.php:714
+msgid "Keep header image aspect ratio"
+msgstr "Conserver les ratios de l'image"
+
+# @ mantra
+#: admin/settings.php:730
msgid "Enable or disable the round corners for the main menu items."
msgstr "Activié ou désactivé les coins arrondis pour le menu principal"
-#: admin/settings.php:728
-#@ mantra
-msgid "Site Title and Description"
-msgstr "Titre du site et sa description"
-
-#: admin/settings.php:728
-#@ mantra
+# @ mantra
+#: admin/settings.php:738
msgid "Custom Logo"
msgstr "Logo personalisé"
-#: admin/settings.php:728
-#@ mantra
+# @ mantra
+#: admin/settings.php:738
msgid "Clickable header image"
msgstr "Image d'entête avec un lien"
-#: admin/settings.php:728
-#@ mantra
+# @ mantra
+#: admin/settings.php:738
msgid "Empty"
msgstr "Vide"
-#: admin/settings.php:736
-#@ mantra
+# @ mantra
+#: admin/settings.php:746
msgid "Choose what to display inside your header area."
msgstr "Choisir ce qu'il faut afficher dans la zone d'entête"
-#: admin/settings.php:746
-#@ mantra
+# @ mantra
+#: admin/settings.php:756
msgid "Custom Logo upload. The logo will appear over the heder image if you have used one."
msgstr "Chargement du logo personalisé. Le logo apparaitra par dessus l'image dans l'entête si vous en avez sélectionné une."
-#: admin/settings.php:755
-#@ mantra
+# @ mantra
+#: admin/settings.php:765
msgid "top"
msgstr "haut"
-#: admin/settings.php:756
-#@ mantra
+# @ mantra
+#: admin/settings.php:766
msgid "left"
msgstr "gauche"
-#: admin/settings.php:759
-#@ mantra
+# @ mantra
+#: admin/settings.php:769
msgid "Select the top spacing for the header. Use it to better position your site title and description or custom logo inside the header. "
-msgstr "Définir l'espace avant l'entête. A utilsier pour mieux positionner le titre et la description du site ainsi que le logo personalisé dans l'entête."
+msgstr "Définir l'espace avant l'entête. A utiliser pour mieux positionner le titre et la description du site ainsi que le logo personalisé dans l'entête."
-#: admin/settings.php:769
-#@ mantra
+# @ mantra
+#: admin/settings.php:779
msgid "Limitations: It has to be an image. It should be max 64x64 pixels in dimensions. Recommended file extensions .ico and .png. <br/><b>Note that some browsers do not display the changed favicon instantly.</b>"
msgstr "Limitations: cela doit être une image. Elle doit avoir une taille maximum de 64x64 pixels. L'extension recommandée est .ico ou .png. <br/><b>Certains navigateurs n'affichent pas immédiatement le changement de l'icône.</b>"
-#: admin/settings.php:792
-#@ mantra
+# @ mantra
+#: admin/settings.php:802
msgid "Select the font size you'll use in your blog. Pages, posts and comments will be affected. Buttons, Headers and Side menus will remain the same."
msgstr "Choisir la taille de la police à utiliser sur le site. Sont concernés les pages, les articles et les commentaires. Les boutons, les titres et les menus latéraux restent inchangés."
-#: admin/settings.php:836
-#@ mantra
+# @ mantra
+#: admin/settings.php:846
msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "
msgstr "Choisir la police à utiliser sur le site. Sont concernés tous les textes de contenu (y compris les boutons de menus)."
-#: admin/settings.php:838
-#: admin/settings.php:888
-#: admin/settings.php:939
-#: admin/settings.php:991
-#@ mantra
+# @ mantra
+#: admin/settings.php:848
+#: admin/settings.php:898
+#: admin/settings.php:949
+#: admin/settings.php:1001
msgid "Or insert your Google Font below. Please only isert the <strong>name</strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google.com/webfonts' > google fonts </a> for some font inspiration."
msgstr "Ou bien insérer votre font Google ci-dessous. Merci d'insérer le <strong>nom</strong> de la font. <br /> Ex: Marko One. Aller sur<a href='http://www.google.com/webfonts' > les fontes de Google </a> pour chercher de l'inspiration."
-#: admin/settings.php:885
-#@ mantra
+# @ mantra
+#: admin/settings.php:895
msgid "Select the font family you want for your titles. It will affect post titles and page titles. Leave 'Default' and the general font you selected will be used."
msgstr "Choisir la police à utiliser pour les titres. Cela concerne les titres d'article et de page. Le choix par défaut correspond à la police générale."
-#: admin/settings.php:937
-#@ mantra
+# @ mantra
+#: admin/settings.php:947
msgid "Select the font family you want your sidebar(s) to have. Text in sidebars will be affected, including any widgets. Leave 'Default' and the general font you selected will be used."
msgstr "Choisir la police de caractères souhaitée pour la ou les volets. Seront affectés le texte dans les volets et les éventuels widgets. Au cas où est choisie la police par défaut, la police générale sélectionnée par ailleurs sera utilisée."
-#: admin/settings.php:1000
-#: admin/settings.php:1015
-#: admin/settings.php:1030
-#: admin/settings.php:1075
-#: admin/settings.php:1090
-#: admin/settings.php:1105
-#@ mantra
+# @ mantra
+#: admin/settings.php:998
+msgid "Select the font family you want your headings to have (h1 - h6 tags will be affected). Leave 'Default' and the general font you selected will be used."
+msgstr "Choisissez la famille de font que vous souhaitez pour les titres (les tags h1 à h6 seront modifiés). Laissez 'Défaut' et la font globale que vous avez sélectionné sera utlisée."
+
+# @ mantra
+#: admin/settings.php:1010
+#: admin/settings.php:1025
+#: admin/settings.php:1040
+#: admin/settings.php:1100
+#: admin/settings.php:1115
+#: admin/settings.php:1130
msgid "Default"
msgstr "Par défaut"
-#: admin/settings.php:1008
-#@ mantra
+# @ mantra
+#: admin/settings.php:1018
msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."
msgstr "Taille de la police des titres des articles. Le choix de la taille par défaut correspond à la taille telle que définie dans la feuille de style (CSS)."
-#: admin/settings.php:1023
-#@ mantra
+# @ mantra
+#: admin/settings.php:1033
msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."
msgstr "Taille de la police dans les volets. Le choix de la taille par défaut correspond à la taille telle que définie dans la feuille de style (CSS)."
-#: admin/settings.php:1030
-#: admin/settings.php:1836
-#@ mantra
+# @ mantra
+#: admin/settings.php:1040
+#: admin/settings.php:1364
+#: admin/settings.php:1872
msgid "Left"
msgstr "A gauche"
-#: admin/settings.php:1030
-#: admin/settings.php:1836
-#@ mantra
+# @ mantra
+#: admin/settings.php:1040
+#: admin/settings.php:1364
+#: admin/settings.php:1872
msgid "Right"
msgstr "A droite"
-#: admin/settings.php:1030
-#@ mantra
+# @ mantra
+#: admin/settings.php:1040
msgid "Justify"
msgstr "Justifié"
-#: admin/settings.php:1030
-#: admin/settings.php:1836
-#@ mantra
+# @ mantra
+#: admin/settings.php:1040
+#: admin/settings.php:1364
+#: admin/settings.php:1872
msgid "Center"
msgstr "Centré"
-#: admin/settings.php:1038
-#@ mantra
+# @ mantra
+#: admin/settings.php:1048
msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."
msgstr "Ceci redéfinit l'alignement de texte dans les articles et les pages. L'alignement par défaut correspond à celui déclaré dans les articles, les commentaires etc..."
-#: admin/settings.php:1052
-#@ mantra
+# @ mantra
+#: admin/settings.php:1062
+msgid "Choose the spacing between paragraphs."
+msgstr "Choisir l'espace entre les paragraphes."
+
+# @ mantra
+#: admin/settings.php:1077
msgid "Choose the indent for your paragraphs."
msgstr "Choisir l'indentation des paragraphes."
-#: admin/settings.php:1068
-#@ mantra
+# @ mantra
+#: admin/settings.php:1093
msgid "Disable the default header and title indent (left margin)."
msgstr "Activer/désactiver l'indentation par défaut des titres d'article et de paragraphe (marge gauche)."
-#: admin/settings.php:1083
-#@ mantra
+# @ mantra
+#: admin/settings.php:1108
msgid "Text line height. The height between 2 rows of text. Leave 'Default' for normal settings (size value will be as set in the CSS)."
msgstr "Taille de l'interligne, c'est-à-dire hauteur de l'espace entre deux lignes de texte. La taille par défaut correspond au paramétrage"
-#: admin/settings.php:1098
-#@ mantra
+# @ mantra
+#: admin/settings.php:1123
msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."
msgstr "Espacement entre <i>mots</i>. Choisir l'espacement par défaut pour celui défini normalement dans la feuille de style (CSS)."
-#: admin/settings.php:1113
-#@ mantra
+# @ mantra
+#: admin/settings.php:1138
msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."
msgstr "Espacement entre <i>lettres</i>. Choisir l'espacement par défaut pour celui défini normalement dans la feuille de style (CSS)."
-#: admin/settings.php:1130
-#@ mantra
+# @ mantra
+#: admin/settings.php:1155
msgid "Disable the default text shadow on headers and titles."
msgstr "Activer/désactiver l'ombrage de texte sur les divers titres (articles, pages et paragraphes)."
-#: admin/settings.php:1138
-#@ default
+# @ default
+#: admin/settings.php:1163
msgid "Define background image"
msgstr "Définir l'image de fond"
-#: admin/settings.php:1147
-#@ mantra
+# @ mantra
+#: admin/settings.php:1172
msgid "Background color (Default value is 444444)."
msgstr "Couleur de fond (444444 par défaut)."
-#: admin/settings.php:1155
-#@ mantra
+# @ mantra
+#: admin/settings.php:1180
msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."
msgstr "Couleur de fond de l'en-tête (333333 par défaut). Si le champ est vide, aucune couleur de fond spécifique n'est définie."
-#: admin/settings.php:1162
-#@ mantra
+# @ mantra
+#: admin/settings.php:1187
msgid "Content background color (Default value is FFFFFF). Works best with really light colors."
msgstr "Couleur du fond du contenu (valeur par défaut FFFFFF). Fonctionne mieux avec des couleurs très claires."
-#: admin/settings.php:1169
-#@ mantra
+# @ mantra
+#: admin/settings.php:1194
msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."
msgstr "Couleur de fond du menu principal (La valeur par défaut est FAFAFA). Devrait être la même couleur que celle du contenu ou quelque chose d'un peu plus clair."
-#: admin/settings.php:1176
-#@ mantra
+# @ mantra
+#: admin/settings.php:1201
msgid "First sidebar background color (Default is no color for a transparent sidebar)."
msgstr "Couleur de fond de la première barre latérale (Par défaut pas de couleur pour une barre transparente)."
-#: admin/settings.php:1183
-#@ mantra
+# @ mantra
+#: admin/settings.php:1208
msgid "Second sidebar background color (Default is no color for a transparent sidebar)."
msgstr "Couleur de fond de la deuxième barre latérale (Par défaut, aucune couleur pour une barre latérale transparente)"
-#: admin/settings.php:1191
-#@ mantra
+# @ mantra
+#: admin/settings.php:1216
msgid "Footer widget-area background color. (Default value is 171717)."
msgstr "Couleur de fond de la zone des widgets de bas de page (171717 par défaut)."
-#: admin/settings.php:1199
-#@ mantra
+# @ mantra
+#: admin/settings.php:1224
msgid "Footer background color (Default value is 222222)."
msgstr "Couleur de fond de la zone de bas de page (222222 par défaut)."
-#: admin/settings.php:1207
-#@ mantra
+# @ mantra
+#: admin/settings.php:1232
msgid "Your blog's title color (Default value is 0D85CC)."
msgstr "Couleur du titre du site (0D85CC par défaut)."
-#: admin/settings.php:1215
-#@ mantra
+# @ mantra
+#: admin/settings.php:1240
msgid "Your blog's description color(Default value is 222222)."
msgstr "Couleur du texte de description du site (222222 par défaut)."
-#: admin/settings.php:1223
-#@ mantra
+# @ mantra
+#: admin/settings.php:1248
msgid "Content Text Color (Default value is 333333)."
msgstr "Couleur du texte dans la zone de contenu (333333 par défaut)."
-#: admin/settings.php:1231
-#@ mantra
+# @ mantra
+#: admin/settings.php:1256
msgid "Links color (Default value is 0D85CC)."
msgstr "Couleur des liens (0D85CC par défaut)."
-#: admin/settings.php:1239
-#@ mantra
+# @ mantra
+#: admin/settings.php:1264
msgid "Links color on mouse over (Default value is 333333)."
msgstr "Couleur des liens lors du passage de la souris (333333 par défaut)."
-#: admin/settings.php:1247
-#@ mantra
+# @ mantra
+#: admin/settings.php:1272
msgid "Post Header Text Color (Default value is 333333)."
msgstr "Couleur du texte des titres d'article (333333 par défaut)."
-#: admin/settings.php:1255
-#@ mantra
+# @ mantra
+#: admin/settings.php:1280
msgid "Post Header Text Color on Mouse over (Default value is 000000)."
msgstr "Couleur du texte des titres d'articles lors du passage de la souris (000000 par défaut)."
-#: admin/settings.php:1263
-#@ mantra
+# @ mantra
+#: admin/settings.php:1288
msgid "Sidebar Header Background color (Default value is 444444)."
msgstr "Couleur de fond des titres dans les volets (444444 par défaut)."
-#: admin/settings.php:1272
-#@ mantra
+# @ mantra
+#: admin/settings.php:1297
msgid "Sidebar Header Text Color(Default value is 2EA5FD)."
msgstr "Couleur du texte des titres dans les volets (2EA5FD par défaut)."
-#: admin/settings.php:1280
-#@ mantra
+# @ mantra
+#: admin/settings.php:1305
msgid "Footer Widget Text Color (Default value is 0D85CC)."
msgstr "Couleur du texte dans les widgets en bas de page (0D85CC par défaut)."
-#: admin/settings.php:1288
-#@ mantra
+# @ mantra
+#: admin/settings.php:1313
msgid "Footer Widget Link Color (Default value is 666666)."
msgstr "Couleur des liens dans les widgets de bas de page (666666 par défaut)."
-#: admin/settings.php:1296
-#@ mantra
+# @ mantra
+#: admin/settings.php:1321
msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."
msgstr "Couleur des liens lors du passage de la souris dans les widgets de bas de page (888888 par défaut)."
-#: admin/settings.php:1318
-#@ mantra
+# @ mantra
+#: admin/settings.php:1343
msgid "Show breadcrumbs at the top of the content area. Breadcrumbs are a form of navigation that keeps track of your location withtin the site."
msgstr "Afficher une aide à la navigation en haut de la zone de contenu. Cette aide affiche une trace du cheminement récent au travers du site."
-#: admin/settings.php:1333
-#@ mantra
+# @ mantra
+#: admin/settings.php:1358
msgid "Show numbered pagination. Where there is more than one page, instead of the bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered pagination. "
msgstr "Lors de l'affichage d'un ensemble d'articles sur plusieurs pages, utilisation de numéros pour naviguer entre ces pages en lieu et place des liens <b>Articles antérieurs</b> et <b>Articles plus récents</b>."
-#: admin/settings.php:1340
-#: admin/settings.php:1403
-#@ mantra
+#: admin/settings.php:1372
+msgid "Select the desired main menu items alignment. Center option is only valid for single line menus."
+msgstr "Choisissez l'alignement du menu principal souhaiter. L'option centrer est valide uniquement pour les menus sur une seule ligne."
+
+# @ mantra
+#: admin/settings.php:1379
+#: admin/settings.php:1442
msgid "White"
msgstr "Blanc"
-#: admin/settings.php:1340
-#@ mantra
+# @ mantra
+#: admin/settings.php:1379
msgid "Light"
msgstr "Clair"
-#: admin/settings.php:1340
-#@ mantra
+# @ mantra
+#: admin/settings.php:1379
msgid "Light Gray"
msgstr "Gris clair"
-#: admin/settings.php:1340
-#: admin/settings.php:1403
-#@ mantra
+# @ mantra
+#: admin/settings.php:1379
+#: admin/settings.php:1442
msgid "Gray"
msgstr "Gris"
-#: admin/settings.php:1340
-#@ mantra
+# @ mantra
+#: admin/settings.php:1379
msgid "Dark Gray"
msgstr "Gris foncé"
-#: admin/settings.php:1340
-#@ mantra
+# @ mantra
+#: admin/settings.php:1379
msgid "Black"
msgstr "Noir"
-#: admin/settings.php:1348
-#@ mantra
+# @ mantra
+#: admin/settings.php:1387
msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."
msgstr "Ce paramétrage change l'apparence des légendes. Les images qui ne sont pas dotées de légendes ne sont pas affectées."
-#: admin/settings.php:1364
-#@ mantra
+# @ mantra
+#: admin/settings.php:1403
msgid "The border around your inserted images. "
msgstr "Bordure autour des images insérées dans les articles ou pages."
-#: admin/settings.php:1379
-#@ mantra
+# @ mantra
+#: admin/settings.php:1418
msgid "The image on top of your captions. "
msgstr "Icône apparaissant au sommet des cadres avec légende."
-#: admin/settings.php:1394
-#@ mantra
+# @ mantra
+#: admin/settings.php:1433
msgid "The sidebar list bullets. "
msgstr "Marqueur d'élément de liste dans les volets."
-#: admin/settings.php:1411
-#@ mantra
+# @ mantra
+#: admin/settings.php:1450
msgid "The background for your post-metas area (under your post tiltes). Gray by default."
msgstr "Fond de la zone d'info associée à l’article (sous le titre de l'article). Gris par défaut."
-#: admin/settings.php:1419
-#: admin/settings.php:1435
-#: admin/settings.php:1452
-#: admin/settings.php:1467
-#: admin/settings.php:1497
-#: admin/settings.php:1512
-#: admin/settings.php:1528
-#: admin/settings.php:1564
-#: admin/settings.php:1579
-#: admin/settings.php:1594
-#: admin/settings.php:1609
-#: admin/settings.php:1624
-#: admin/settings.php:1639
-#: admin/settings.php:1654
-#: admin/settings.php:1669
-#@ mantra
+# @ mantra
+#: admin/settings.php:1458
+#: admin/settings.php:1474
+#: admin/settings.php:1491
+#: admin/settings.php:1506
+#: admin/settings.php:1536
+#: admin/settings.php:1551
+#: admin/settings.php:1567
+#: admin/settings.php:1603
+#: admin/settings.php:1618
+#: admin/settings.php:1633
+#: admin/settings.php:1648
+#: admin/settings.php:1663
+#: admin/settings.php:1678
+#: admin/settings.php:1693
+#: admin/settings.php:1708
msgid "Show"
msgstr "Afficher"
-#: admin/settings.php:1419
-#: admin/settings.php:1435
-#: admin/settings.php:1452
-#: admin/settings.php:1467
-#: admin/settings.php:1497
-#: admin/settings.php:1528
-#: admin/settings.php:1564
-#: admin/settings.php:1579
-#: admin/settings.php:1594
-#: admin/settings.php:1609
-#: admin/settings.php:1624
-#: admin/settings.php:1639
-#: admin/settings.php:1654
-#: admin/settings.php:1669
-#@ mantra
+# @ mantra
+#: admin/settings.php:1458
+#: admin/settings.php:1474
+#: admin/settings.php:1491
+#: admin/settings.php:1506
+#: admin/settings.php:1536
+#: admin/settings.php:1567
+#: admin/settings.php:1603
+#: admin/settings.php:1618
+#: admin/settings.php:1633
+#: admin/settings.php:1648
+#: admin/settings.php:1663
+#: admin/settings.php:1678
+#: admin/settings.php:1693
+#: admin/settings.php:1708
msgid "Hide"
msgstr "Cacher"
-#: admin/settings.php:1427
-#@ mantra
+# @ mantra
+#: admin/settings.php:1466
msgid "Hide or show a horizontal rule to separate posts."
msgstr "Afficher ou non une ligne horizontale de séparation entre les articles."
-#: admin/settings.php:1443
-#@ mantra
+# @ mantra
+#: admin/settings.php:1482
msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."
msgstr "Cacher ou afficher les marqueurs d'éléments de liste dans la zone contenu (articles, pages, etc...)."
-#: admin/settings.php:1460
-#@ mantra
+# @ mantra
+#: admin/settings.php:1499
msgid "Hide or show Page titles on any <i>created</i> pages. "
msgstr "Afficher ou non les titres de page pour chaque page <i>créée</i>."
-#: admin/settings.php:1475
-#@ mantra
+# @ mantra
+#: admin/settings.php:1514
msgid "Hide or show Page titles on <i>Category</i> Pages. "
msgstr "Afficher ou non un titre lors de l'affichage d'un ensemble de pages ou d'articles."
-#: admin/settings.php:1490
-#@ mantra
+# @ mantra
+#: admin/settings.php:1529
msgid "Hide table borders and background color."
msgstr "Activer ou non le masquage des bordures de tableau et de la couleur de fond associée"
-#: admin/settings.php:1505
-#@ mantra
+# @ mantra
+#: admin/settings.php:1544
msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."
msgstr "Afficher ou masquer le texte explicatif sous le formulaire de saisie de commentaire (celui commençant par <i>Vous pouvez utiliser...</i>)."
-#: admin/settings.php:1512
-#@ mantra
+# @ mantra
+#: admin/settings.php:1551
msgid "Hide in posts"
msgstr "Cacher dans les articles"
-#: admin/settings.php:1512
-#@ mantra
+# @ mantra
+#: admin/settings.php:1551
msgid "Hide in pages"
msgstr "Cacher dans les pages"
-#: admin/settings.php:1512
-#@ mantra
+# @ mantra
+#: admin/settings.php:1551
msgid "Hide everywhere"
msgstr "Cacher partout"
-#: admin/settings.php:1520
-#@ mantra
+# @ mantra
+#: admin/settings.php:1559
msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."
msgstr "Afficher ou non le texte du message <b>Commentaires fermés</b> qui apparaît par défaut sur chaque page ou article pour lequel les commentaires ont été fermés."
-#: admin/settings.php:1536
-#@ mantra
+# @ mantra
+#: admin/settings.php:1575
msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."
msgstr "Afficher ou non le texte du message <b>Commentaires désactivés</b> qui apparaît pour les articles dont les commentaires ont été désactivés."
-#: admin/settings.php:1552
-#@ mantra
+# @ mantra
+#: admin/settings.php:1591
msgid "Enable the Back to Top button. The button appears after scrolling the page down."
msgstr "Activer/ désactiver le bouton de retour en haut de page. Ce bouton apparaît en bas de page après un défilement vertical."
-#: admin/settings.php:1572
-#@ mantra
+# @ mantra
+#: admin/settings.php:1611
msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."
msgstr "Montrer ou cacher l'option <strong>Laisser un commentaire</strong> ou <strong>Commentaires</strong> à côté de l'article ou du résummé."
-#: admin/settings.php:1587
-#@ mantra
+# @ mantra
+#: admin/settings.php:1626
msgid "Hide or show the post date."
msgstr "Cacher ou afficher la date de publication."
-#: admin/settings.php:1602
-#@ mantra
+# @ mantra
+#: admin/settings.php:1641
msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."
msgstr "Afficher/cacher l'heure de publication avec la date. L'heure ne peut être affichée si la date ne l'est pas."
-#: admin/settings.php:1617
-#@ mantra
+# @ mantra
+#: admin/settings.php:1656
msgid "Hide or show the post author."
msgstr "Cacher ou afficher le nom de l'auteur de l'article."
-#: admin/settings.php:1632
-#@ mantra
+# @ mantra
+#: admin/settings.php:1671
msgid "Hide the post category."
msgstr "Afficher ou cacher la catégorie associée à l'article."
-#: admin/settings.php:1647
-#@ mantra
+# @ mantra
+#: admin/settings.php:1686
msgid "Hide the 'Bookmark permalink'."
msgstr "Afficher ou non le permalien pour marque-pages."
-#: admin/settings.php:1662
-#@ mantra
+# @ mantra
+#: admin/settings.php:1701
msgid "Hide the meta bar. All meta info in it will be hidden."
msgstr "Cacher permet d'empêcher l'affichage de toute meta-information associée aux articles."
-#: admin/settings.php:1677
-#@ mantra
+# @ mantra
+#: admin/settings.php:1716
msgid "Hide the post tags."
msgstr "Afficher ou non les mots-clefs associés à l'article."
-#: admin/settings.php:1690
-#: admin/settings.php:1705
-#: admin/settings.php:1721
-#@ mantra
+# @ mantra
+#: admin/settings.php:1729
+#: admin/settings.php:1744
+#: admin/settings.php:1760
msgid "Excerpt"
msgstr "Extrait"
-#: admin/settings.php:1690
-#: admin/settings.php:1705
-#: admin/settings.php:1721
-#@ mantra
+# @ mantra
+#: admin/settings.php:1729
+#: admin/settings.php:1744
+#: admin/settings.php:1760
msgid "Full Post"
msgstr "Article entier"
-#: admin/settings.php:1698
-#@ mantra
+# @ mantra
+#: admin/settings.php:1737
msgid "Excerpts on the main page. Only standard posts will be affected. All other post formats (aside, image, chat, quote etc.) have their specific formating."
msgstr "Mode d'affichage des articles en page principale (sous forme d'extraits ou en totalité). Ne concerne que les articles standards. Les articles de format spécifique (en passant, image, chat, citation...) disposent de leur propre mode d'affichage."
-#: admin/settings.php:1713
-#@ mantra
+# @ mantra
+#: admin/settings.php:1752
msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "
msgstr "Sélectionner la façon dont les articles épinglés sont affichés en page d'accueil (extraits ou en totalité)."
-#: admin/settings.php:1729
-#@ mantra
+# @ mantra
+#: admin/settings.php:1768
msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."
msgstr "Mode d'affichage de chaque article (extrait ou article entier) lors de l'affichage d'un ensemble d'articles (sélection d'articles d'une période donnée, rattachés à une catégorie donnée, en réponse à une recherche, etc...). Comme plus haut, ne concerne que les articles standards."
-#: admin/settings.php:1737
-#@ mantra
-msgid ""
-"The number of words an excerpt will have. When that number is reached the post will be interrupted by a <i>Continue reading</i> link that\n"
-"\t\t\t\t\t\t\twill take the reader to the full post page."
+# @ mantra
+#: admin/settings.php:1776
+msgid "The number of words an excerpt will have. When that number is reached the post will be interrupted by a <i>Continue reading</i> link that will take the reader to the full post page."
msgstr "Nombre de mots dont est composé un extrait. Quand ce nombre est atteint, l'affichage est interrompu et un lien <i>Lire la suite</i> est inséré, conduisant à la totalité de l'article."
-#: admin/settings.php:1753
-#@ mantra
+# @ mantra
+#: admin/settings.php:1791
msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."
msgstr "Activer ou désactiver la mise en page magazine. Cette mise en page concerne les pages contenant plusieurs articles et provoque un affichage de 2 articles ou extraits par ligne."
-#: admin/settings.php:1760
-#@ mantra
+# @ mantra
+#: admin/settings.php:1798
msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."
msgstr "Définir la chaîne ajoutée automatiquement à la fin des extraits (par défaut une suite de points)."
-#: admin/settings.php:1767
-#@ mantra
+# @ mantra
+#: admin/settings.php:1805
msgid "Edit the 'Continue Reading' link added to your post excerpts."
msgstr "Définir le texte du lien de fin d'extrait conduisant à la totalité de l'article."
-#: admin/settings.php:1813
-#@ mantra
-msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."
+#: admin/settings.php:1820
+msgid "By default WordPress excerpts remove all HTML tags ("
+msgstr "Par défaut le résumé WordPress supprime tous les tags HTML ("
+
+#: admin/settings.php:1846
+msgid "Link the thumbail to the post"
+msgstr "Lié l'image à la une à l'article"
+
+# @ mantra
+#: admin/settings.php:1849
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image Section."
msgstr "Lors d'une affichage d'un ensemble d’articles, pour les articles disposant d'une image à la une (à sélectionner au cas par cas dans la section Image à la une), afficher ou non cette image sous forme de réduction. "
-#: admin/settings.php:1828
-#@ mantra
+# @ mantra
+#: admin/settings.php:1864
msgid "Show the first image that you inserted in a post as a thumbnail. If you enable this option, the first image in your post will be used even if you selected a Featured Image in you post."
msgstr "Lors de l'affichage d'un ensemble d'articles, afficher ou non la première image associée à chaque article sous forme de réduction. Si cette option est activée, elle prévaut sur l'affichage d'une éventuelle image à la une."
-#: admin/settings.php:1844
-#@ mantra
+# @ mantra
+#: admin/settings.php:1880
msgid "Thumbnail alignment."
msgstr "Endroit où doit être affichée une réduction d'image."
-#: admin/settings.php:1861
-#@ mantra
+#: admin/settings.php:1894
+msgid "Crop images to exact size."
+msgstr "Réduire les images à la taille exacte."
+
+# @ mantra
+#: admin/settings.php:1897
msgid "The size you want the thumbnails to have (in pixels). By default imges will be scaled with aspect ratio kept. Choose to crop the images if you want the exact size."
msgstr "La taille que vous souhaitez pour les vignettes (en pixels). Par défaut les imgaes seront dimentionnées avec le respect du ratio. Choisissez l'option 'crop' si vous souhaitez une taille exacte."
-#: admin/settings.php:1877
-#@ mantra
-msgid ""
-"Show featured images on headers. The header will be replaced with a featured image if you selected it as a Featured Image in the post and\n"
-"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."
+# @ mantra
+#: admin/settings.php:1913
+msgid "Show featured images on headers. The header will be replaced with a featured image if you selected it as a Featured Image in the post and and if it is bigger or at least equal to the current header size."
msgstr "Lors de l'affichage d'un article complet, activer ou désactiver l'affichage en en-tête de l'éventuelle image à la une qui lui est associée. Cette affichage n'a lieu que si la taille de l'image à la une est au moins égale à la taille courante de l'en-tête."
-#: admin/settings.php:1893
-#@ mantra
+# @ mantra
+#: admin/settings.php:1928
msgid "Select your desired Social network from the left dropdown menu and insert your corresponding address in the right input field. (ex: <i>http://www.facebook.com/yourname</i> )"
msgstr "Sélectionner un réseau social dans le menu déroulant et saisir l'adresse correspondante (ex: <i>http://www.facebook.com/monnom</i>)"
-#: admin/settings.php:1894
-#@ mantra
+# @ mantra
+#: admin/settings.php:1929
msgid "You can insert up to 5 different social sites and addresses."
msgstr "Il est possible d'insérer jusqu'à 5 références à des réseaux sociaux."
-#: admin/settings.php:1895
-#@ mantra
+# @ mantra
+#: admin/settings.php:1930
msgid "There are a total of 27 social networks to choose from. "
msgstr "Choisir l'un des 27 réseaux sociaux disponibles."
-#: admin/settings.php:1896
-#@ mantra
+# @ mantra
+#: admin/settings.php:1931
msgid "You can leave any number of inputs empty. "
msgstr "Chaque champ peut être laissé vide."
-#: admin/settings.php:1897
-#@ mantra
+# @ mantra
+#: admin/settings.php:1932
msgid "You can choose the same social media any number of times. "
msgstr "Il est possible de choisir plusieurs fois le même réseau social."
-#: admin/settings.php:1972
-#@ mantra
+#: admin/settings.php:1991
+msgid "Top right corner of header"
+msgstr "En haut et à droite du titre"
+
+#: admin/settings.php:1995
+msgid "Under menu - left side"
+msgstr "Sous le menu - à gauche"
+
+#: admin/settings.php:1999
+msgid "Under menu - right side"
+msgstr "Sous le menu - à droite"
+
+#: admin/settings.php:2003
+msgid "In the footer (smaller icons)"
+msgstr "Dans le pied de page (petites icônes)"
+
+# @ mantra
+#: admin/settings.php:2007
msgid "Choose the <b>areas</b> where to display the social icons."
msgstr "Sélectionner la ou les zones où afficher les icônes des réseaux sociaux choisis."
-#: admin/settings.php:1985
-#@ mantra
+# @ mantra
+#: admin/settings.php:2020
msgid "Insert custom text or HTML code that will appear last in you footer. <br /> You can use HTML to insert links, images and special characters like &copy ."
msgstr "Insérer du texte ou du code HTML qui apparaît en dernier lieu en bas de page.<br />Il est possible d'utiliser HTML pour insérer des liens, des images et des caractères spéciaux tels que &copy ."
-#: admin/settings.php:1993
-#@ mantra
+# @ mantra
+#: admin/settings.php:2028
msgid "Insert your custom CSS here. Any CSS declarations made here will overwrite Mantra's (even the custom options specified right here in the Mantra Settings page). <br> Your custom CSS will be preserved when updating the theme.<br> The &ltstyle&gt tags are not needed."
msgstr "Insérer ici votre feuille de style CSS spécifique. Toute déclaration CSS faite ici prévaudra sur celles du thème Mantra (y compris sur les déclarations issues du paramétrage du thème fait via le paramétrage). Vos CSS seront préservés lors des mises à jour du thème. Les tags &ltstyle&gt ne sont pas nécessaires."
-#: admin/settings.php:2000
-#@ mantra
+# @ mantra
+#: admin/settings.php:2035
msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software).<br> The &ltscript&gt tags are not needed."
msgstr "Insérer votre code JavaScript personalisé ici. (Google Analytics ou n'importe quel autre code d'un fournisseur). Le tag &ltscript&gt n'est pas nécessaire."
-#: admin/settings.php:2013
-#@ mantra
+# @ mantra
+#: admin/settings.php:2048
msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."
msgstr "Activer l'optimisation des moteurs de recherche de Mantra. Cette option est active par défaut et ne devrait être supprimée que si vous utilisez une extension SEO."
-#: admin/settings.php:2025
-#@ mantra
+#: admin/settings.php:2049
+msgid "All title tags are handled automatically by Mantra."
+msgstr "Toutes les balises de titre sont automatiquement pris en compte par Mantra."
+
+# @ mantra
+#: admin/settings.php:2052
+msgid "Homepage Meta Description"
+msgstr "Contenu de la balise description pour la page d'accueil"
+
+#: admin/settings.php:2054
+msgid "This is unique and you should fill this in. Describe your site the best you can and try not to go over 160 characters."
+msgstr "Cela doit être unique et vous devriez le remplir. Décriver votre site de la meilleur façon et si possible en moins de 160 caractères."
+
+# @ mantra
+#: admin/settings.php:2058
+msgid "Meta Descriptions for all other pages:"
+msgstr "Contenu de la balise description pour toutes les autres pages:"
+
+#: admin/settings.php:2060
msgid "Auto"
-msgstr "Automatique"
+msgstr "Auto"
-#: admin/settings.php:2025
-#@ mantra
+# @ mantra
+#: admin/settings.php:2060
msgid "Manual"
-msgstr "Manuelle"
+msgstr "Manuel"
+
+#: admin/settings.php:2068
+msgid "<u>Auto</u> - Mantra will automatically add post expcerpts to 'page' and 'post'\tmeta descriptions.<br><u>Manual</u> - you will enable a new custom field in your post/page admin section where you can type the exact description you want for every post and page.<br>For category pages, the actual category descriptions will be used. Go to Posts > Categories and you can fill in a description for every category you have."
+msgstr "<u>Auto</u> - Mantra va ajouter automatiquement le résumé aux 'page' et 'article' dans la balise meta de description.<br><u>Manuel</u> - Vous aurez à disposition un nouveau champ dans l'interface de rédaction de vos page/article où vous pourrez écrire la description exacte que vous souhaitez pour chaque page et chaque article.<br>Pour les pages des catégories, la description de la catégorie sera utilisée pour la balise méta. Aller dans Articles > Catégories et remplissez la description de chaque catégorie."
+
+#: admin/settings.php:2075
+msgid "Do not use"
+msgstr "Ne pas utiliser"
+#: admin/settings.php:2085
+msgid "If you want to show an author in the meta tags."
+msgstr "Si vous souhaitez afficher un autheur dans les balises méta."
+
+# @ mantra
#: includes/theme-comments.php:28
-#@ mantra
msgid "says:"
msgstr "a écrit:"
+# @ mantra
#: includes/theme-comments.php:34
-#@ mantra
msgid "Your comment is awaiting moderation."
msgstr "Votre commentaire est en attente de validation."
-#. translators: 1: date, 2: time
+# @ mantra
#: includes/theme-comments.php:41
-#@ mantra
msgid "at"
msgstr "à"
+# @ mantra
#: includes/theme-comments.php:41
#: includes/theme-comments.php:58
-#@ mantra
msgid "(Edit)"
msgstr "(Modifier)"
+# @ mantra
#: includes/theme-comments.php:58
-#@ mantra
msgid "Pingback: "
msgstr "Pingback:"
+# @ mantra
#: includes/theme-comments.php:85
-#@ mantra
msgid "Leave a comment"
msgstr "Réagir"
+# @ mantra
#: includes/theme-comments.php:85
-#@ mantra
msgid "<b>1</b> Comment"
msgstr "<b>1</b> Commentaire"
+# @ mantra
#: includes/theme-comments.php:85
-#@ mantra
msgid "<b>%</b> Comments"
msgstr "<b>%</b> Commentaires"
+# @ mantra
#: includes/theme-comments.php:94
#, php-format
-#@ mantra
msgid "One Response to %2$s"
msgid_plural "%1$s Responses to %2$s"
msgstr[0] "Une réaction à %2$s"
msgstr[1] "%1$s réactions à %2$s"
+# @ mantra
#: includes/theme-comments.php:107
-#@ mantra
msgid "Older Comments"
msgstr "Commentaires antérieurs"
+# @ mantra
#: includes/theme-comments.php:108
-#@ mantra
msgid "Newer Comments"
msgstr "Commentaires plus récents"
-#: includes/theme-functions.php:280
-#@ mantra
+# @ mantra
+#: includes/theme-functions.php:58
+msgid "Menu"
+msgstr "Menu"
+
+# @ mantra
+#: includes/theme-functions.php:269
msgid "Home Page"
msgstr "Page d'accueil"
-#: includes/theme-functions.php:344
-#@ mantra
+# @ mantra
+#: includes/theme-functions.php:342
msgid "Powered by"
msgstr "Propulsé par"
-#: includes/theme-functions.php:346
-#@ mantra
+# @ mantra
+#: includes/theme-functions.php:344
msgid "Semantic Personal Publishing Platform"
msgstr "Semantic Personal Publishing Platform"
-#: includes/theme-loop.php:145
-#@ mantra
+# @ mantra
+#: includes/theme-loop.php:166
msgid "By "
msgstr "De"
-#: includes/theme-loop.php:185
-#@ mantra
+# @ mantra
+#: includes/theme-loop.php:206
msgid " Bookmark the "
msgstr "Lien pour marque-pages : "
-#: includes/theme-loop.php:185
-#: includes/theme-loop.php:187
-#: includes/theme-loop.php:189
-#@ mantra
+# @ mantra
+#: includes/theme-loop.php:206
+#: includes/theme-loop.php:208
+#: includes/theme-loop.php:210
msgid "Permalink to"
msgstr "Permalien vers"
-#: includes/theme-loop.php:185
-#: includes/theme-loop.php:187
-#: includes/theme-loop.php:189
-#@ mantra
+# @ mantra
+#: includes/theme-loop.php:206
+#: includes/theme-loop.php:208
+#: includes/theme-loop.php:210
msgid "permalink"
msgstr "permalien"
-#: includes/theme-loop.php:187
-#: includes/theme-loop.php:189
-#@ mantra
+# @ mantra
+#: includes/theme-loop.php:208
+#: includes/theme-loop.php:210
msgid "Bookmark the "
msgstr "Pour marque-pages : "
-#: includes/theme-loop.php:211
-#@ mantra
+# @ mantra
+#: includes/theme-loop.php:232
msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
msgstr "<span class=\"meta-nav\">&laquo;</span> Articles antérieurs"
-#: includes/theme-loop.php:212
-#@ mantra
+# @ mantra
+#: includes/theme-loop.php:233
msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
msgstr "Articles postérieurs <span class=\"meta-nav\">&raquo;</span>"
+# @ mantra
#: includes/theme-seo.php:26
#, php-format
-#@ mantra
msgid "Page %s"
msgstr "Page %s"
-#: includes/theme-setup.php:90
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:91
msgid "Primary Navigation"
msgstr "Navigation principale"
-#: includes/theme-setup.php:91
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:92
msgid "Top Navigation"
msgstr "Navigation haut de page"
-#: includes/theme-setup.php:92
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:93
msgid "Footer Navigation"
msgstr "Navigation bas de page"
-#: includes/theme-setup.php:127
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:129
msgid "mantra"
msgstr "mantra"
-#: includes/theme-setup.php:186
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:188
msgid "Skip to content"
msgstr "Passer directement au contenu"
-#: includes/theme-setup.php:213
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:215
msgid "Primary Widget Area - Sidebar 1"
msgstr "Zone widget primaire - Volet 1"
-#: includes/theme-setup.php:215
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:217
msgid "Primary widget area - Sidebar 1"
msgstr "Zone widget N°1 - Volet 1"
-#: includes/theme-setup.php:224
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:226
msgid "Secondary Widget Area - Sidebar 1"
msgstr "Zone widget secondaire - Volet 1"
-#: includes/theme-setup.php:226
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:228
msgid "Secondary widget area - Sidebar 1"
msgstr "Zone widget N°2 - Volet 1"
-#: includes/theme-setup.php:235
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:237
msgid "Third Widget Area - Sidebar 2"
msgstr "3ème zone widget - Volet 2"
-#: includes/theme-setup.php:237
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:239
msgid "Third widget area - Sidebar 2"
msgstr "Zone widget N°3 - Volet 2"
-#: includes/theme-setup.php:246
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:248
msgid "Fourth Widget Area - Sidebar 2"
msgstr "4ème zone widget - Volet 2"
-#: includes/theme-setup.php:248
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:250
msgid "Fourth widget area - Sidebar 2"
msgstr "Zone widget N°4 - Volet 2"
-#: includes/theme-setup.php:257
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:259
msgid "First Footer Widget Area"
msgstr "1ère zone widget de bas de page"
-#: includes/theme-setup.php:259
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:261
msgid "First footer widget area"
msgstr "Zone widget de bas de page N°1"
-#: includes/theme-setup.php:268
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:270
msgid "Second Footer Widget Area"
msgstr "2ème zone widget de bas de page"
-#: includes/theme-setup.php:270
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:272
msgid "Second footer widget area"
msgstr "Zone widget de bas de page N°2"
-#: includes/theme-setup.php:279
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:281
msgid "Third Footer Widget Area"
msgstr "3ème zone widget de bas de page"
-#: includes/theme-setup.php:281
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:283
msgid "The third footer widget area"
msgstr "Zone widget de bas de page N°3"
-#: includes/theme-setup.php:290
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:292
msgid "Fourth Footer Widget Area"
msgstr "4ème zone widget de bas de page"
-#: includes/theme-setup.php:292
-#@ mantra
+# @ mantra
+#: includes/theme-setup.php:294
msgid "The fourth footer widget area"
msgstr "Zone widget de bas de page N°4"
-#: includes/theme-setup.php:301
+# @ mantra
#: includes/theme-setup.php:303
-#@ mantra
+#: includes/theme-setup.php:305
msgid "Above content Widget Area"
msgstr "Au dessus de la zone de Widget"
-#: includes/theme-setup.php:312
+# @ mantra
#: includes/theme-setup.php:314
-#@ mantra
+#: includes/theme-setup.php:316
msgid "Below Content Widget Area"
msgstr "En dessous de la zone de Widget"
-#: admin/main.php:139
-#@ mantra
-msgid "Headings Font"
-msgstr ""
-
-#: admin/settings.php:988
-#@ mantra
-msgid "Select the font family you want your headings to have (h1 - h6 tags will be affected). Leave 'Default' and the general font you selected will be used."
-msgstr ""
-
-#: archive.php:28
-#@ mantra
-msgctxt "monthly archives date format"
-msgid "F Y"
-msgstr ""
-
-#: archive.php:30
-#@ mantra
-msgctxt "yearly archives date format"
-msgid "Y"
-msgstr ""
-
-#: includes/theme-functions.php:58
-#@ mantra
-msgid "Menu"
-msgstr ""
-
diff --git a/themes/mantra/readme.txt b/themes/mantra/readme.txt
index ed0aaef2..743c5724 100644
--- a/themes/mantra/readme.txt
+++ b/themes/mantra/readme.txt
@@ -18,6 +18,7 @@ The Mantra Theme uses:
Translations credits:
Chinese (Simplified) - Ln Xuan Li
+Czech - Satapouch
Danish - IT-Fidusen
Dutch - Tim De Keyser
French - Luc Capronnier, Ikiu91
diff --git a/themes/mantra/screenshot.png b/themes/mantra/screenshot.png
index aa516900..9d636905 100644
--- a/themes/mantra/screenshot.png
+++ b/themes/mantra/screenshot.png
Binary files differ
diff --git a/themes/mantra/sidebar.php b/themes/mantra/sidebar.php
index 83923432..387ba4b8 100644
--- a/themes/mantra/sidebar.php
+++ b/themes/mantra/sidebar.php
@@ -18,7 +18,21 @@ if (is_page_template() && !is_page_template('template-blog.php') && !is_page_tem
<div id="primary" class="widget-area" role="complementary">
<?php cryout_before_primary_widgets_hook(); ?>
-
+
+
+ <?php if (!is_active_sidebar('primary-widget-area') && !is_active_sidebar('secondary-widget-area')): ?>
+ <ul class="xoxo">
+ <li class="widget-container widget-placeholder">
+ <h3 class="widget-title"><?php _e('Sidebar 1','mantra'); ?></h3>
+ <p><?php
+ printf( __('You currently have no widgets set in the primary sidebar. You can add widgets via the <a href="%s">Dashboard</a>.','mantra'),esc_url( admin_url()."widgets.php") ); echo "<br/>";
+ printf( __('To hide this sidebar, switch to a different Layout via the <a href="%s">Theme Settings</a>.','mantra'), esc_url( admin_url()."themes.php?page=mantra-page") );
+ ?></p>
+ </li>
+ </ul>
+ <?php endif; ?>
+
+
<ul class="xoxo">
<?php dynamic_sidebar( 'primary-widget-area' ); ?>
</ul>
@@ -38,6 +52,18 @@ if (is_page_template() && !is_page_template('template-blog.php') && !is_page_tem
<?php cryout_before_secondary_widgets_hook(); ?>
+ <?php if (!is_active_sidebar('third-widget-area') && !is_active_sidebar('fourth-widget-area')): ?>
+ <ul class="xoxo">
+ <li class="widget-container widget-placeholder">
+ <h3 class="widget-title"><?php _e('Sidebar 2','mantra'); ?></h3>
+ <p><?php
+ printf( __('You currently have no widgets set in the secondary sidebar. You can add widgets via the <a href="%s">Dashboard</a>.','mantra'),esc_url( admin_url()."widgets.php") ); echo "<br/>";
+ printf( __('To hide this sidebar, switch to a different Layout via the <a href="%s">Theme Settings</a>.','mantra'), esc_url( admin_url()."themes.php?page=mantra-page") );
+ ?></p>
+ </li>
+ </ul>
+ <?php endif; ?>
+
<ul class="xoxo">
<?php dynamic_sidebar( 'third-widget-area' ); ?>
</ul>
@@ -59,6 +85,19 @@ if ($mantra_side != "1c") { ?>
<?php cryout_before_primary_widgets_hook(); ?>
+ <?php
+ if (!is_active_sidebar('primary-widget-area') && !is_active_sidebar('secondary-widget-area')): ?>
+ <ul class="xoxo">
+ <li class="widget-container widget-placeholder">
+ <h3 class="widget-title"><?php _e('Sidebar 1','mantra'); ?></h3>
+ <p><?php
+ printf( __('You currently have no widgets set in the primary sidebar. You can add widgets via the <a href="%s">Dashboard</a>.','mantra'),esc_url( admin_url()."widgets.php") ); echo "<br/>";
+ printf( __('To hide this sidebar, switch to a different Layout via the <a href="%s">Theme Settings</a>.','mantra'), esc_url( admin_url()."themes.php?page=mantra-page") );
+ ?></p>
+ </li>
+ </ul>
+ <?php endif; ?>
+
<ul class="xoxo">
<?php dynamic_sidebar( 'primary-widget-area' ) ; ?>
</ul>
@@ -67,18 +106,30 @@ if ($mantra_side != "1c") { ?>
<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
</ul>
+
<?php cryout_after_primary_widgets_hook(); ?>
</div><!-- #primary .widget-area -->
<?php
// A second sidebar for widgets, just because.
- if ( is_active_sidebar( 'third-widget-area' ) || is_active_sidebar( 'fourth-widget-area' )) {
+
if ( $mantra_side != "2cSr" && $mantra_side != "2cSl") { ?>
<div id="secondary" class="widget-area" role="complementary" >
<?php cryout_before_secondary_widgets_hook(); ?>
+ <?php if (!is_active_sidebar('third-widget-area') && !is_active_sidebar('fourth-widget-area')): ?>
+ <ul class="xoxo">
+ <li class="widget-container widget-placeholder">
+ <h3 class="widget-title"><?php _e('Sidebar 2','mantra'); ?></h3>
+ <p><?php
+ printf( __('You currently have no widgets set in the secondary sidebar. You can add widgets via the <a href="%s">Dashboard</a>.','mantra'),esc_url( admin_url()."widgets.php") ); echo "<br/>";
+ printf( __('To hide this sidebar, switch to a different Layout via the <a href="%s">Theme Settings</a>.','mantra'), esc_url( admin_url()."themes.php?page=mantra-page") );
+ ?></p>
+ </li>
+ </ul>
+ <?php endif; ?>
<ul class="xoxo">
<?php dynamic_sidebar( 'third-widget-area' ); ?>
@@ -91,5 +142,5 @@ if ($mantra_side != "1c") { ?>
<?php cryout_after_secondary_widgets_hook(); ?>
</div><!-- #secondary .widget-area -->
- <?php }}
+ <?php }
}?> <!-- 1c --> \ No newline at end of file
diff --git a/themes/mantra/style-mobile.css b/themes/mantra/style-mobile.css
index 850781f0..7b937a00 100644
--- a/themes/mantra/style-mobile.css
+++ b/themes/mantra/style-mobile.css
@@ -1,129 +1,106 @@
-
/* =Responsive Structure
----------------------------------------------- */
+@media (max-width: 1100px) {
+ body.mobile #content {
+ float:none;
+ margin:0 2%;
+ width:96%;
+ height:auto; }
+ body.mobile #access, body.mobile #branding {width:100%;}
+ body.mobile #wrapper, body.mobile #colophon, body.mobile #main, body.mobile article.post, body.mobile #container, body.mobile #linky { width: auto; }
+ body.mobile #branding { height:auto; min-height:90px; }
+ body.mobile #bg_image { min-height:90px; width:100%; }
+
+ body.mobile #header-container > div {
+ margin-top:7px;
+ margin-left:14px;
+ height:100%; }
+
+ body.mobile a#logo { height:100%; display: block !important; }
+
+ body.mobile a#logo img { height:80%; width:auto; max-width:90%; }
+ body.mobile #site-title {margin-top:22px;}
+ body.mobile #site-description {clear:both;margin-left:0;}
+ body.mobile.safari a#logo img { max-height: 80px; height:auto;}
+
+ body.mobile #smenul, body.mobile #smenur { margin-top:0; }
+
+ body.mobile .socials a { margin:0; padding-left:5px; display: block; }
+ body.mobile .socials a img { width:22px; }
+ body.mobile #wrapper { margin:10px; }
+ body.mobile #access .menu-header, body.mobile div.menu { width:95%; }
+ body.mobile #primary, body.mobile #secondary { width:100%; height:auto !important; }
+
+ body.mobile #content img, body.mobile content article.post img, body.mobile #content article .wp-caption, body.mobile article embed {
+ max-width:90% !important; }
+ body.mobile #access { /*background:#ddd;*/ }
+ body.mobile #slider { width:auto; height:auto; }
+ body.mobile #footer-widget-area .widget-title { background:none !important; padding-left:10px; }
+ body.mobile .widget-title { -moz-border-radius:0; -webkit-border-radius:0; border-radius:0; }
+ body.mobile .xoxo .widget-title { margin-left:-10px !important; text-align:left !important; }
+ body.mobile #site-title { font-size:30px; line-height: 30px; padding-left:0; }
+ body.mobile #site-description { margin-top:5px; font-size:15px; line-height: 15px; }
+
+ body.mobile #main .widget-area ul.xoxo { padding-left:10px; }
+
+ body.mobile .footertwo .widget-area, body.mobile .footerthree .widget-area, body.mobile .footerfour .widget-area {
+ width:95%; margin-left:2.5%; }
+ body.mobile #sfooter { display:table; float:none; text-align:center; margin:0 auto; padding:0; top:0; margin-top:10px; }
+}
+
@media (max-width: 800px) {
#content {
float:none;
margin:0 2%;
width:96%;
- height:auto;
- }
+ height:auto; }
#access, #branding {width:100%;}
- #wrapper, #colophon, #main, article.post, #container, #linky {
- width: auto ;
- }
- #branding {
- height:auto;
- min-height:90px;
- }
-
- #bg_image {
- min-height:90px;
- width:100%;
- }
-
+ #wrapper, #colophon, #main, article.post, #container, #linky { width: auto; }
+ #branding { height:auto; min-height:90px; }
+ #bg_image { min-height:90px; width:100%; }
+
#header-container > div {
- margin-top:7px;
- margin-left:14px;
- height:100%;
- }
-
-
- a#logo {
- height:100%;
- display: block !important;
- }
-
- a#logo img {
- height:80%;
- width:auto;
- max-width:90%;
- }
+ margin-top:7px;
+ margin-left:14px;
+ height:100%; }
+
+ a#logo { height:100%; display: block !important; }
+
+ a#logo img { height:80%; width:auto; max-width:90%; }
#site-title {margin-top:22px;}
#site-description {clear:both;margin-left:0;}
-
.safari a#logo img { max-height: 80px; height:auto;}
-
- #smenul, #smenur {
- margin-top:0;
- }
- .socials a {
- margin:0;
- padding-left:5px;
- display: block;
- }
- .socials a img {
- width:22px;
- }
- #wrapper {
- margin:10px;
- }
- #access .menu-header, div.menu {
- width:95%;
- }
- #primary, #secondary {
- width:100%;
- height:auto !important;
- }
- .slider-wrapper {
- width:95%;
- }
- #slider, #slider img {
- width:100%;
- }
- #front-columns > div {
- width:45% ;
- }
- #front-columns .column-image {height:auto;}
- #content img, content article.post img, #content article .wp-caption, article embed {
- max-width:90% !important;
- }
- #access {
- /*background:#ddd;*/
- }
- #column3 {
- clear:left;
- }
- #slider {
- width:auto;
- height:auto;
- }
- #footer-widget-area .widget-title {
- background:none !important;
- padding-left:10px;
- }
- .widget-title {
- -moz-border-radius:0;
- -webkit-border-radius:0;
- border-radius:0;
- }
- .xoxo .widget-title {
- margin-left:-10px !important;
- text-align:left !important;
- }
- #site-title {
- font-size:30px;
- line-height: 30px;
- padding-left:0;
- }
- #site-description {
- margin-top:5px;
- font-size:15px;
- line-height: 15px;
- }
-
- #main .widget-area ul.xoxo {
- padding-left:10px;
- }
-
+ #smenul, #smenur { margin-top:0; }
+
+ .socials a { margin:0; padding-left:5px; display: block; }
+ .socials a img { width:22px; }
+ #wrapper { margin:10px; }
+ #access .menu-header, div.menu { width:95%; }
+ #primary, #secondary { width:100%; height:auto !important; }
+
+ .slider-wrapper { width:95%; }
+ #slider, #slider img { width:100%; }
+ #front-columns > div { width:45%; }
+ #front-columns .column-image, #front-columns .column-image img { height:inherit; }
+
+ #content img, #content article.post img, #content .wp-caption, article embed { max-width:100% !important;}
+ #access { /*background:#ddd;*/ }
+ #column3 { clear:left; }
+ #slider { width:auto; height:auto; }
+ #footer-widget-area .widget-title { background:none !important; padding-left:10px; }
+ .widget-title { -moz-border-radius:0; -webkit-border-radius:0; border-radius:0; }
+ .xoxo .widget-title { margin-left:-10px !important; text-align:left !important; }
+ #site-title { font-size:30px; line-height: 30px; padding-left:0; }
+ #site-description { margin-top:5px; font-size:15px; line-height: 15px; }
+
+ #main .widget-area ul.xoxo { padding-left:10px; }
+
.footertwo .widget-area, .footerthree .widget-area, .footerfour .widget-area {
- width:95%;
- margin-left:2.5%;
- }
-
- #sfooter {display:table;float:none;text-align:center;margin:0 auto;padding:0;top:0;margin-top:10px;}
+ width:95%; margin-left:2.5%; }
+
+ #sfooter { display:table; float:none; text-align:center; margin:0 auto; padding:0; top:0; margin-top:10px; }
}
@media (max-width: 650px) {
@@ -155,7 +132,7 @@
font-size: 10px !important;
background:none !important;
-moz-box-shadow:none !important;
- -webkit-box-shadow:none !important;
+ -webkit-box-shadow:none !important;
box-shadow:none !important;
}
#content .entry-title {
@@ -166,31 +143,32 @@
}
.widget-area a:link, .widget-area a:visited {
font-size:10px !important;
- }
- .tinynav {
- display: block;
}
- #access .menu ul:first-child {
+ .tinynav {
+ display: block;
+ }
+ #access .menu ul:first-child {
display: none;
}
.theme-default .nivo-caption {
font-size:9px;
}
-
-
+ .short-columns {
+ width:100%;
+ }
}
@media (max-width: 480px) {
/* @media (max-width: 450px) Reduce font-sizes for better readability on the smalles of devices */
-
+
body, #content p, #content ul, #content ol,#content code, #content pre, #content blockquote {
font-size: 12px !important;
}
-
- #site-title a{
+
+ #site-title span a{
font-size: 18px;
line-height:18px;
}
@@ -201,7 +179,7 @@ body, #content p, #content ul, #content ol,#content code, #content pre, #content
#front-columns > div {
width:90% ;
}
-
+
body {
padding: 0;
}
@@ -212,6 +190,5 @@ body, #content p, #content ul, #content ol,#content code, #content pre, #content
border-top: none;
}
-
}
diff --git a/themes/mantra/style.css b/themes/mantra/style.css
index 3a37c486..90952faa 100644
--- a/themes/mantra/style.css
+++ b/themes/mantra/style.css
@@ -4,10 +4,10 @@
* Description: Mantra is a do-it-yourself WordPress theme, featuring a pack of over 100 customization options and easy to use tweaks capable of tuning WordPress to your very specific needs and likes. With the help of a simple and efficient user interface you can customize everything:the layout (1,2 or 3 columns), total and partial site widths, colors (all texts, links, backgrounds etc.), fonts (over 35 font-families plus all Google Fonts), text and header sizes, post metas, post excerpts, post formats, header and background images, custom menus, 27 social media links and icons, pins, bullets and much much more. With a fully responsive layout,a customizable showcase presentation page, animated slider, magazine and blog layouts, 8 widget areas, modern graphics and an easy and intuitive admin section, you can start creating your dream site right now.
* Author: Cryout Creations
* Author URI: http://www.cryoutcreations.eu
- * Version: 2.2.0
+ * Version: 2.3.4
* License: GNU General Public License v2.0
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
- * Tags: black, red, blue, white, silver, light, dark, one-column, two-columns, three-columns, right-sidebar, left-sidebar, flexible-width, fixed-width, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, front-page-post-form, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
+ * Tags: black, red, blue, white, silver, light, dark, one-column, two-columns, three-columns, right-sidebar, left-sidebar, fixed-layout, fluid-layout, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, front-page-post-form, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
*
* Copyright (c) 2011-2013 Cryout Creations
* http://www.cryoutcreations.eu
@@ -183,7 +183,6 @@ code {
-------------------------------------------------------------- */
/* The main theme structure */
-div.menu,
#colophon,
#branding,
#main,
@@ -370,17 +369,27 @@ sup {
sub {
top: .5ex;
}
-input[type="text"],
+input[type="text"],input[type="password"],input[type="email"],
textarea {
background: #fff;
border: 1px solid #DDD;
- box-shadow: inset 2px 2px 3px #EEE;
- -moz-box-shadow: inset 1px 1px 1px #EEE;
- -webkit-box-shadow: inset 2px 2px 3px #EEE;
padding-left:5px;
- border-radius:5px;
- -moz-border-radius:5px;
- -webkit-border-radius:5px
+ border-radius:2px;
+ -moz-border-radius:2px;
+ -webkit-border-radius:2px;
+ height:32px;
+ -webkit-transition:.2s border ease;
+ -moz-transition:.2s border ease;
+ -o-transition:.2s border ease;
+ transition:.2s border ease;
+ -moz-box-sizing:border-box;
+ -webkit-box-sizing:border-box;
+ box-sizing:border-box;
+}
+
+input[type="text"]:hover,input[type="password"]:hover,input[type="email"]:hover,
+textarea:hover {
+border:1px solid #CCC !important;
}
a:link {
color: #0D85CC;text-decoration:none;
@@ -461,6 +470,10 @@ margin-left: 40px;
margin-top:10px;
}
+#access .menu-header, div.menu {
+margin:0 6px;
+}
+
#access ul {
margin-bottom:0px;
}
@@ -697,6 +710,7 @@ font-size:1.9em;
}
.entry-content tr {
background-color:#FFF;
+ vertical-align:top;
}
.entry-content .alternate {
background-color:#FFF;
@@ -712,6 +726,7 @@ font-size:1.9em;
.entry-content tr td {
border-top: 1px solid #e7e7e7;
padding: 6px 24px;
+ vertical-align:top;
}
.entry-content tr.odd td {
background: #f2f7fc;
@@ -776,9 +791,9 @@ font-size:1.9em;
font-size: 12px;
margin: 0px 1px;
padding: 0 6px;
- box-shadow:1px 1px 3px #DDD;
- -moz-box-shadow:1px 1px 3px #DDD;
- -webkit-box-shadow:1px 1px 3px #DDD;
+ box-shadow:0px 0px 1px #DDD;
+ -moz-box-shadow:0px 0px 1px #DDD;
+ -webkit-box-shadow:0px 0px 1px #DDD;
clear:both;
line-height:2em;
}
@@ -797,11 +812,11 @@ font-size:1.9em;
padding:0px 10px;
padding-bottom:0px;
font-size:12px;
- box-shadow: inset 1px 1px 1px #DDD;
- -moz-box-shadow: inset 1px 1px 1px #DDD;
- -webkit-box-shadow: inset 1px 1px 1px #DDD;
- line-height:1.8em;
- margin-top:1px;
+ box-shadow: inset 1px 1px 0px #DDD;
+ -moz-box-shadow: inset 1px 1px 0px #DDD;
+ -webkit-box-shadow: inset 1px 1px 0px #DDD;
+ line-height:1.9em;
+ margin-top:0px;
}
#content h3.entry-format {
@@ -881,22 +896,28 @@ font-size:1.9em;
}
.page-link {
- margin: 20px 0 20px 0;
+ margin: 20px 0;
clear:both;
- font-size: 11px;
- line-height: 13px;
+ font-size: 12px;
+ line-height: 14px;
}
- .page-link a, .page-link span {
+ .page-link em {
font-weight: normal;
+ font-style:normal;
text-decoration: none;
- background: #EEE;
- margin: 2px 2px 2px 2px;
- padding: 6px 9px 5px;
+ margin:0px;
+ padding: 2px 8px;
+ background:#f7f7f7;
+ border-bottom:1px solid #eee;
+ -moz-transition:.2s background ease-in;
+ -o-transition:.2s background ease-in;
+ -webkit-transition:.2s background ease-in;
+ transition:.2s background ease-in;
}
- .page-link a:hover {
- background:#F7F7F7;
+ .page-link a:hover em {
+ background:#eee;
}
body.page .edit-link {
@@ -920,6 +941,10 @@ body.page .edit-link {
height: 60px;
margin: 0 -104px 0 0;
padding: 11px;
+ -moz-box-shadow:0 0 10px #EEEEEE inset;
+ -webkit-box-shadow:0 0 10px #EEEEEE inset;
+ box-shadow:0 0 10px #EEEEEE inset;
+
}
#entry-author-info #author-description {
float: left;
@@ -1189,6 +1214,9 @@ article.format-chat h3.entry-format, article.format-aside h3.entry-format { disp
margin: 0;
height: auto;
max-width:100%;
+ -webkit-box-sizing:border-box;
+ -moz-box-sizing:border-box;
+ box-sizing:border-box;
}
#content img:hover {
@@ -1224,28 +1252,30 @@ article.format-chat h3.entry-format, article.format-aside h3.entry-format { disp
#content .wp-caption {
background:url(images/pins/Pin2.png) no-repeat center 1px #F9F9F9;
border: 1px solid #DDD;
- box-shadow: 2px 2px 3px #888;
- -moz-box-shadow: 2px 2px 3px #888;
- -webkit-box-shadow: 2px 2px 3px #888;
border-radius:4px;
-moz-border-radius:4px;
-webkit-border-radius:4px;
line-height: 18px;
margin-bottom: 20px;
- padding: 4px;
- padding-top:22px;
+ padding:22px 7px 4px;
text-align: center;
- max-width:810px;
color: #333;
+ max-width:100%;
+ -moz-box-sizing:border-box;
+ -webkit-box-sizing:border-box;
+ box-sizing:border-box;
}
#content .wp-caption img {
- margin: 5px 5px 0;
+ margin: 5px 0 0;
border:none !important;
padding:0px;
box-shadow: none !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
-
+ border-radius:4px;
+ -moz-border-radius:4px;
+ -webkit-border-radius:4px;
+ width:100%;
}
#content .wp-caption p.wp-caption-text {
font-size: 12px;
@@ -1261,6 +1291,7 @@ article.format-chat h3.entry-format, article.format-aside h3.entry-format { disp
background: none !important;
border: 0 !important;
vertical-align: middle;
+ width:auto !important;
}
@@ -1344,29 +1375,33 @@ h3#comments-title {
margin: 0;
}
.commentlist li.comment {
- border: 1px solid #e7e7e7;
padding:10px;
line-height: 24px;
margin: 0 0 10px 0;
- padding: 0 10px 10px 56px;
+ padding: 0 0px 10px 56px;
position: relative;
- -moz-box-shadow:1px 1px 3px #EEE;
- -webkit-box-shadow:1px 1px 3px #EEE;
- box-shadow:1px 1px 3px #EEE;
background:#FFF;
background-image:none;
list-style:none;
}
+.reply a.comment-reply-link {
+padding:0 3px;
+color:#CCC;
+font-weight:bold;
+-moz-transition:.2s color ease;
+-webkit-transition:.2s color ease;
+transition:.2s color ease;
+}
+
.commentlist li:last-child {
- border-bottom: none;
margin-bottom: 0;
}
#comments .comment-body ul,
#comments .comment-body ol {
}
#comments .comment-body p:last-child {
- margin-bottom: 6px;
+ margin-bottom: 0px;
}
#comments .comment-body blockquote p:last-child {
margin-bottom: 24px;
@@ -1374,50 +1409,58 @@ h3#comments-title {
.commentlist ol {
list-style: decimal;
}
-.commentlist .avatar {
+.commentlist img.avatar {
position: absolute;
top: 4px;
left: 5px;
- border:1px solid #EEE !important;
- -moz-border-radius:0 !important;
- -webkit-border-radius:0 !important;
- border-radius:0 !important;
- background:#FFF !important;
- padding-bottom:5px !important;
+ border:1px solid #EEE ;
+ -moz-border-radius:0 ;
+ -webkit-border-radius:0;
+ border-radius:0;
+ background:#FFF;
}
.comment-author {
- padding-top:4px;
+ display:block;
+ float:left;
}
.comment-author cite {
color: #000;
- font-style: normal;
- font-weight: bold;
- margin-left:10px;
-
}
.comment-author .says {
font-style: italic;
+ display:none;
}
.comment-meta {
font-size: 12px;
- margin: 0 0 15px 10px;
+ margin-bottom: 5px;
+ display:block;
+ float:left;
+ margin-left:5px;
}
.comment-meta a:link,
.comment-meta a:visited {
- color: #666;
+ color: #999;
text-decoration: none;
}
.comment-meta a:active,
.comment-meta a:hover {
color: #0D85CC;
}
+
+.comment-body {
+padding:5px 10px;
+background:#F9F9F9;
+border:1px solid #EEE;
+clear:both;
+}
.commentlist .even {
}
.commentlist .bypostauthor {
}
.reply {
font-size: 12px;
- padding: 0 0 24px 0;
+ padding: 0 0 10px 0;
+ text-align:right;
}
.reply a,
a.comment-edit-link {
@@ -1440,9 +1483,6 @@ a.comment-edit-link:hover {
background-image:none !important;
margin: 0;
text-indent:0px !important;
- border:1px solid #EEE;
- margin-right:10px;
- margin-bottom:10px;
}
.nopassword,
@@ -1475,7 +1515,6 @@ input[type="submit"] {
color: #333;
}
#respond {
- border-top: 1px solid #e7e7e7;
margin: 24px 0;
overflow: hidden;
position: relative;
@@ -1484,7 +1523,7 @@ input[type="submit"] {
margin: 0;
}
#respond .comment-notes {
- margin-bottom: 0.2em;
+ margin-bottom: 1.5em;
font-size:0.8em;
color:#999;
}
@@ -1496,7 +1535,7 @@ input[type="submit"] {
min-width:400px;
}
h3#reply-title {
- margin: 18px 0;
+ margin: 18px 0 0 0;
}
#comments-list #respond {
margin: 0 0 18px 0;
@@ -1511,7 +1550,6 @@ h3#reply-title {
}
#respond .required {
color: #0D85CC;
- font-weight: bold;
display:inline;
}
@@ -1530,15 +1568,12 @@ h3#reply-title {
#respond input {
margin: 0 0 9px;
- border-color:#EEE;
- border-width:1px;
}
.comment-form-comment textarea {
width:80%;
- border-color:#EEE;
display:block;
float:right;
margin-left:12px;
@@ -1560,11 +1595,6 @@ display:block;
margin-left:12px;
}
-
-#respond input:hover, #respond textarea:hover {
- border-color:#D7D7D7;
-}
-
#respond .form-allowed-tags {
color: #666;
font-size: 12px;
@@ -1574,6 +1604,7 @@ display:block;
clear:both;
display:block;
float:none;
+ padding-top:8px;
}
#respond .form-allowed-tags code {
font-size: 11px;
@@ -1643,12 +1674,18 @@ overflow:hidden;
.contentsearch #s {
display:block;float:left;
margin-bottom:20px;
- padding-top: 5px;
- padding-bottom:5px;
padding-left:10px;
- font-size:18px;
- height:29px;
-}
+ font-size:15px;
+ height:40px;
+ min-width:250px;
+ -moz-border-radius:0 10px 10px 0;
+ -webkit-border-radius:0 10px 10px 0;
+ border-radius:0 10px 10px 0;
+ -moz-transition:background .2s ease-in;
+ -o-transition:background .2s ease-in;
+ -webkit-transition:background .2s ease-in;
+ transition:background .2s ease-in;
+ }
.contentsearch #searchsubmit {
display:block;
float:left;
@@ -1656,17 +1693,16 @@ padding:0;
margin:0;
text-align:center;
position:relative;
-left:-41px; top:0px;
+left:-40px; top:0px;
background: #777;
-width:41px;height:41px;
+width:40px;height:40px;
border:none;
cursor:pointer;
font-size:12px;
color:#EEE;
--moz-text-shadow::0px -1px 0px #000;
--webkit-text-shadow:0px -1px 0px #000;
-text-shadow:0px -1px 0px #000;
-font-family:Arial !important;
+-moz-border-radius:0 10px 10px 0;
+-webkit-border-radius:0 10px 10px 0;
+border-radius:0 10px 10px 0;
}
#searchform {
@@ -1683,17 +1719,18 @@ margin-right:10px;
.widget_search #s, #search #s {/* This keeps the search inputs in line This is the Sidebar Search*/
position:absolute;
right:0;top:0;
- width: 90%;
display:block;
- padding-top:6px;
- padding-bottom:4px;
+ width:100%;
padding-left:10px;
margin:0;
- border-radius:10px 0 0 0 ;
- -moz-border-radius:10px 0 0 0 ;
- -webkit-border-radius:10px 0 0 0 ;
+ -moz-border-radius:0px 0 0 0;
+ -webkit-border-radius:0px 0 0 0;
+ border-radius:0px 6px 6px 0;
font-family:Arial !important;
font-size:14px;
+ -moz-box-sizing:border-box;
+ -webkit-box-sizing:border-box;
+ box-sizing:border-box;
}
#searchform #s:hover , #container #s:hover {
@@ -1705,15 +1742,20 @@ display:block;
padding:0;margin:0;
position:absolute;
top:0px;right:0px;
-width:27px;height:29px;
+width:36px;height:32px;
border:none;cursor:pointer;
-color:#EEE;background: #777;
-text-shadow:0px -1px 0px #000;-moz-text-shadow:0px -1px 0px #000;-webkit-text-shadow:0px -1px 0px #000;
-font-size:12px;font-family:Arial !important;
+color:#FFF;background: #999;
+font-size:12px;
+-moz-border-radius:0px 0 0 0;
+-webkit-border-radius:0px 0 0 0;
+border-radius:0px 6px 6px 0;
+-moz-transition:.2s background ease-in;
+-webkit-transition:.2s background ease-in;
+transition:.2s background ease-in;
}
#searchsubmit:hover {
-background:#888;
+background:#AAA;
}
.widget_search label {
@@ -2002,7 +2044,7 @@ code {
position:relative;
}
.socials img {
- width:37px;
+ width:26px;
}
#header-container >div#sheader {
@@ -2012,11 +2054,13 @@ top:5px;
right:5px;
}
#smenul, #smenur {
- margin-top:-8px;
- margin-bottom:-12px;
+ margin-top:3px;
+ margin-bottom:-6px;
}
+#smenul a img, #smenur a img {width:34px;}
#smenul {
float:left;
+ padding-left:20px;
}
#sfooter {
float:right;
@@ -2024,12 +2068,10 @@ right:5px;
top:-24px;
overflow:visible;
}
-#sfooter img {
- width:25px;
-}
+
#sfooter a {
- width:25px;
- height:25px;
+ width:26px;
+ height:26px;
margin-left:5px;
}
@@ -2041,7 +2083,15 @@ article.post {
}
article.sticky {
-background: url("images/icon-back.png") repeat;
+/*background: url("images/icon-back.png") repeat;*/
+background: #fafafa;
+background: -moz-linear-gradient(top, #eeeeee 0%, #f7f7f7 7%, #ffffff 61%, #ffffff 100%);
+background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(7%,#f7f7f7), color-stop(61%,#ffffff), color-stop(100%,#ffffff));
+background: -webkit-linear-gradient(top, #eeeeee 0%,#f7f7f7 7%,#ffffff 61%,#ffffff 100%);
+background: -o-linear-gradient(top, #eeeeee 0%,#f7f7f7 7%,#ffffff 61%,#ffffff 100%);
+background: -ms-linear-gradient(top, #eeeeee 0%,#f7f7f7 7%,#ffffff 61%,#ffffff 100%);
+background: linear-gradient(to bottom, #eeeeee 0%,#f7f7f7 7%,#ffffff 61%,#ffffff 100%);
+filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
@@ -2051,10 +2101,6 @@ padding:10px;
.sticky hgroup {
}
-#content article.post img, #content article .wp-caption , article embed {
- max-width:99%;
-}
-
/* BACK TO TOP BUTTON */
@@ -2171,6 +2217,10 @@ background:#FAFAFA;
width:auto;
color:#fff;
background: #EEE;
+ -moz-transition:background .5s ease-in-out;
+ -o-transition:background .5s ease-in-out;
+ -webkit-transition:background .5s ease-in-out;
+ transition:background .5s ease-in-out;
}
.pagination a:hover{
color:#fff;
@@ -2584,6 +2634,10 @@ a.short-button-color:hover, a.short-button-light:hover, a.short-button-dark:hove
/* shareaddy compat */ .sharedaddy ul > li { background: none !important; text-indent: 0 !important; }
/* sociable compat */ .entry-content .sociable ul li { background: none; padding-left: 2px; }
/* woocommerce compat */ .woocommerce .product .entry-summary { clear:none; }
-
+/* video fix */ #content embed, #content iframe {max-width:100%;}
+/* a bit of captcha fixes */
+#recaptcha_widget_div { display:block; float:none; clear:both; }
+.math-captcha-form { display:block; float:none; clear:both; }
+.cptch_block { display:block; float:none; clear:both; }
/* FIN! */ \ No newline at end of file
diff --git a/themes/mantra/template-page-with-intro.php b/themes/mantra/template-page-with-intro.php
index 94a8f0b0..1edf1a98 100644
--- a/themes/mantra/template-page-with-intro.php
+++ b/themes/mantra/template-page-with-intro.php
@@ -29,21 +29,19 @@ Template Name: Category page with intro
<hr>
<br />
<?php
- // replace $slub with get_the_title() in the line below if you want to get posts based
- // on category name instead of slug ?>
- <?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
- if (is_numeric($slug)&&($slug>0)):
- query_posts('cat='.$slug.'&post_status=publish,future&orderby=date&order=desc&posts_per_page='.get_option('posts_per_page').'&paged=' . $paged);
- else:
- query_posts('category_name='.$slug.'&post_status=publish,future&orderby=date&order=desc&posts_per_page='.get_option('posts_per_page').'&paged=' . $paged);
- endif;
+ if (is_numeric($slug)&&($slug>0)):
+ $the_query = new WP_Query( 'cat='.$slug.'&post_status=publish&orderby=date&order=desc&posts_per_page='.get_option('posts_per_page').'&paged=' . $paged );
+ else:
+ $the_query = new WP_Query( 'category_name='.$slug.'&post_status=publish&orderby=date&order=desc&posts_per_page='.get_option('posts_per_page').'&paged=' . $paged );
+ endif;
+ /* Start the Loop */
+ while ( $the_query->have_posts() ) : $the_query->the_post();
+ global $more; $more=0; // more gets lost inside page templates
+ get_template_part( 'content', get_post_format() );
+ endwhile;
+ if($mantra_pagination=="Enable") mantra_pagination($the_query->max_num_pages); else mantra_content_nav( 'nav-below' );
?>
- <?php /* Start the Loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
- <?php if($mantra_pagination=="Enable") mantra_pagination(); else mantra_content_nav( 'nav-below' ); ?>
</div><!-- #content -->