--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying 404 pages (Not Found).\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+\r
+get_header(); ?>\r
+\r
+ <div id="container">\r
+ \r
+ <div id="content" role="main">\r
+\r
+ <div id="post-0" class="post error404 not-found">\r
+ <h1 class="entry-title"><?php _e( 'Not Found', 'mantra' ); ?></h1>\r
+ <div class="entry-content">\r
+ <p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'mantra' ); ?></p>\r
+ <div class="contentsearch"><?php get_search_form(); ?></div>\r
+ </div><!-- .entry-content -->\r
+ </div><!-- #post-0 -->\r
+\r
+ </div><!-- #content -->\r
+<?php get_sidebar(); ?>\r
+ </div><!-- #container -->\r
+ <script type="text/javascript">\r
+ // focus on search field after it has loaded\r
+ document.getElementById('s') && document.getElementById('s').focus();\r
+ </script>\r
+\r
+<?php get_footer(); ?>
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * Export Mantra settings to file\r
+ */\r
+\r
+function mantra_export_options(){\r
+\r
+ if (ob_get_contents()) ob_clean();\r
+ \r
+ /* Check authorisation */\r
+ $authorised = true;\r
+ // Check nonce\r
+ if ( ! wp_verify_nonce( $_POST['mantra-export'], 'mantra-export' ) ) { \r
+ $authorised = false;\r
+ }\r
+ // Check permissions\r
+ if ( ! current_user_can( 'edit_theme_options' ) ){\r
+ $authorised = false;\r
+ }\r
+\r
+ if ( $authorised) {\r
+global $mantra_options;\r
+/*date_default_timezone_set('UTC');\r
+$today = date("YmdGis");\r
+$name = 'mantra-settings'.$today.'.txt';*/\r
+ $name = 'mantra-settings.txt';\r
+ $data = $mantra_options;\r
+ $data = json_encode( $data );\r
+ $size = strlen( $data );\r
+ \r
+ header( 'Content-Type: text/plain' );\r
+ header( 'Content-Disposition: attachment; filename="'.$name.'"' );\r
+ header( "Content-Transfer-Encoding: binary" );\r
+ header( 'Accept-Ranges: bytes' );\r
+ \r
+ /* The three lines below basically make the download non-cacheable */\r
+ header( "Cache-control: private" );\r
+ header( 'Pragma: private' );\r
+ header( "Expires: Mon, 26 Jul 1997 05:00:00 GMT" );\r
+ \r
+ header( "Content-Length: " . $size);\r
+ print( $data );\r
+}\r
+die();\r
+}\r
+\r
+if ( isset( $_POST['mantra_export'] ) ){\r
+ add_action( 'init', 'mantra_export_options' );\r
+}\r
+\r
+/**\r
+ * This file manages the theme settings uploading and import operations.\r
+ * Uses the theme page to create a new form for uplaoding the settings\r
+ * Uses WP_Filesystem\r
+*/\r
+function mantra_import_form(){ \r
+ \r
+ $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );\r
+ $size = size_format( $bytes );\r
+ $upload_dir = wp_upload_dir();\r
+ if ( ! empty( $upload_dir['error'] ) ) :\r
+ ?><div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:', 'mantra'); ?></p>\r
+ <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php\r
+ else :\r
+ ?>\r
+\r
+ <div class="wrap">\r
+ <div style="width:400px;display:block;margin-left:30px;">\r
+ <div id="icon-tools" class="icon32"><br></div>\r
+ <h2><?php echo __( 'Import Mantra Theme Options', 'mantra' );?></h2> \r
+ <form enctype="multipart/form-data" id="import-upload-form" method="post" action="">\r
+ <p><?php _e('Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>', 'mantra'); ?></p>\r
+ <p>\r
+ <label for="upload"><strong><?php _e('Just choose a file from your computer:', 'mantra'); ?> </strong><i>(mantra-settings.txt)</i></label> \r
+ <input type="file" id="upload" name="import" size="25" />\r
+ <span style="font-size:10px;">(<?php printf( __( 'Maximum size: %s', 'mantra' ), $size ); ?> )</span>\r
+ <input type="hidden" name="action" value="save" />\r
+ <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />\r
+ <?php wp_nonce_field('mantra-import', 'mantra-import'); ?>\r
+ <input type="hidden" name="mantra_import_confirmed" value="true" />\r
+ </p>\r
+ <input type="submit" class="button" value="<?php _e('And import!', 'mantra'); ?>" /> \r
+ </form>\r
+ </div>\r
+ </div> <!-- end wrap -->\r
+ <?php\r
+ endif;\r
+} // Closes the mantra_import_form() function definition \r
+\r
+\r
+/**\r
+ * This actual import of the options from the file to the settings array.\r
+*/\r
+function mantra_import_file() {\r
+ global $mantra_options;\r
+ \r
+ /* Check authorisation */\r
+ $authorised = true;\r
+ // Check nonce\r
+ if (!wp_verify_nonce($_POST['mantra-import'], 'mantra-import')) {$authorised = false;}\r
+ // Check permissions\r
+ if (!current_user_can('edit_theme_options')){ $authorised = false; }\r
+ \r
+ // If the user is authorised, import the theme's options to the database\r
+ if ($authorised) {?>\r
+ <?php\r
+ // make sure there is an import file uploaded\r
+ if ( (isset($_FILES["import"]["size"]) && ($_FILES["import"]["size"] > 0) ) ) {\r
+\r
+ $form_fields = array('import');\r
+ $method = '';\r
+ \r
+ $url = wp_nonce_url('themes.php?page=mantra-page', 'mantra-import');\r
+ \r
+ // Get file writing credentials\r
+ if (false === ($creds = request_filesystem_credentials($url, $method, false, false, $form_fields) ) ) {\r
+ return true;\r
+ }\r
+ \r
+ if ( ! WP_Filesystem($creds) ) {\r
+ // our credentials were no good, ask the user for them again\r
+ request_filesystem_credentials($url, $method, true, false, $form_fields);\r
+ return true;\r
+ }\r
+ \r
+ // Write the file if credentials are good\r
+ $upload_dir = wp_upload_dir();\r
+ $filename = trailingslashit($upload_dir['path']).'mantra_options.txt';\r
+ \r
+ // by this point, the $wp_filesystem global should be working, so let's use it to create a file\r
+ global $wp_filesystem;\r
+ if ( ! $wp_filesystem->move($_FILES['import']['tmp_name'], $filename, true) ) {\r
+ echo 'Error saving file!';\r
+ return;\r
+ }\r
+ \r
+ $file = $_FILES['import'];\r
+ \r
+ if ($file['type'] == 'text/plain') {\r
+ $data = $wp_filesystem->get_contents($filename);\r
+ // try to read the file\r
+ if ($data !== FALSE){\r
+ $settings = json_decode($data, true);\r
+ // try to read the settings array\r
+ if (isset($settings['mantra_db'])){ ?>\r
+ <div class="wrap">\r
+ <div id="icon-tools" class="icon32"><br></div>\r
+ <h2><?php echo __( 'Import Mantra Theme Options ', 'mantra' );?></h2> <?php \r
+ $settings = array_merge($mantra_options, $settings);\r
+ update_option('ma_options', $settings);\r
+ echo '<div class="updated fade"><p>'. __('Great! The options have been imported!', 'mantra').'<br />';\r
+ echo '<a href="themes.php?page=mantra-page">'.__('Go back to the Mantra options page and check them out!', 'mantra').'<a></p></div>';\r
+ } \r
+ else { // else: try to read the settings array\r
+ echo '<div class="error"><p><strong>'.__('Oops, there\'s a small problem.', 'mantra').'</strong><br />';\r
+ echo __('The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page.', 'mantra').'</p></div>';\r
+ mantra_import_form();\r
+ } \r
+ } \r
+ else { // else: try to read the file\r
+ echo '<div class="error"><p><strong>'.__('Oops, there\'s a small problem.', 'mantra').'</strong><br />';\r
+ echo __('The uploaded file could not be read.', 'mantra').'</p></div>';\r
+ mantra_import_form();\r
+ } \r
+ }\r
+ else { // else: make sure the file uploaded was a plain text file\r
+ echo '<div class="error"><p><strong>'.__('Oops, there\'s a small problem.', 'mantra').'</strong><br />';\r
+ echo __('The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file.', 'mantra').'</p></div>';\r
+ mantra_import_form();\r
+ }\r
+ \r
+ // Delete the file after we're done\r
+ $wp_filesystem->delete($filename);\r
+ \r
+ }\r
+ else { // else: make sure there is an import file uploaded \r
+ echo '<div class="error"><p>'.__( '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.', 'mantra' ).'</p></div>';\r
+ mantra_import_form(); \r
+ }\r
+ echo '</div> <!-- end wrap -->';\r
+ }\r
+ else {\r
+ wp_die(__('ERROR: You are not authorised to perform that operation', 'mantra')); \r
+ } \r
+} // Closes the mantra_import_file() function definition \r
+\r
+// Truncate function for use in the Admin RSS feed \r
+function mantra_truncate_words($string,$words=20, $ellipsis=' ...') {\r
+ $new = preg_replace('/((\w+\W+\'*){'.($words-1).'}(\w+))(.*)/', '${1}', $string);\r
+ return $new.$ellipsis;\r
+}\r
+\r
+// Synchronizing the tinymce width with the content width\r
+add_filter('tiny_mce_before_init', 'mantra_dynamic_editor_styles', 10);\r
+function mantra_dynamic_editor_styles($settings){\r
+ $settings['content_css'] .= ",".admin_url('admin-ajax.php') ."/?action=dynamic_styles";\r
+ return $settings;\r
+}\r
+\r
+// add wp_ajax callback\r
+add_action('wp_ajax_dynamic_styles', 'mantra_dynamic_styles_callback');\r
+function mantra_dynamic_styles_callback(){\r
+ global $mantra_options;\r
+ echo "html .mceContentBody , .mceContentBody img {max-width:".$mantra_options['mantra_sidewidth']."px;}";\r
+}\r
+?>
\ No newline at end of file
--- /dev/null
+ /* Farbtastic overwrites */\r
+\r
+.farbtastic {\r
+ position: absolute !important;\r
+ z-index:2;\r
+margin-left:50px;\r
+margin-top:-110px;\r
+background-color:#F7F7F7;\r
+border:1px solid #CCC;\r
+}\r
+.farbtastic * {\r
+ position: absolute;\r
+ cursor: crosshair;\r
+}\r
+.farbtastic, .farbtastic .wheel {\r
+ width: 195px;\r
+ height: 195px;\r
+}\r
+.farbtastic .color, .farbtastic .overlay {\r
+ top: 47px;\r
+ left: 47px;\r
+ width: 101px;\r
+ height: 101px;\r
+}\r
+\r
+\r
+/* end of Farbtastic overwrites */\r
+\r
+.form-table, .form-table td, .form-table th, .form-table td p, .form-wrap label {\r
+font-size:13px;\r
+}\r
+\r
+\r
+#lefty {\r
+clear:left;\r
+float:left;\r
+width:60%;\r
+min-width:500px;\r
+max-width:820px;\r
+margin-right:1%;\r
+}\r
+\r
+#main-options {\r
+width:100%;\r
+display:block;\r
+clear:left;\r
+/*border:1px solid #DFDFDF;\r
+background:#F5F5F5;\r
+border-radius:5px;\r
+-moz-border-radius:5px;\r
+-webkit-border-radius:5px;\r
+*/\r
+padding-top:10px;\r
+font-family: Segoe UI !important;\r
+font-size: 12px;\r
+margin-bottom:10px;\r
+\r
+}\r
+\r
+ #righty {\r
+float:left;\r
+width:39%;\r
+margin-top:10px;\r
+}\r
+#righty p, #righty span, .form-table small, #righty ul li, #righty h3 {\r
+font-size: 12px;\r
+color:#444;\r
+font-family:Segoe UI;\r
+}\r
+\r
+.form-table small {\r
+font-style:italic;\r
+display:block;\r
+float:none;\r
+clear:both;\r
+}\r
+\r
+ .donate, .support {\r
+width:100%;\r
+}\r
+\r
+.postbox .hndle {\r
+ cursor: auto;\r
+ font-size: 13px;\r
+ margin: 0;\r
+ padding: 6px 10px 7px;\r
+}\r
+\r
+\r
+.wrap h2 {\r
+font-family: Calibri, Arial !important;\r
+margin-bottom:5px;\r
+}\r
+\r
+#accordion {\r
+margin:0px auto;\r
+font-family:Segoe UI,Calibri, Arial !important;\r
+display:block;\r
+float:none;\r
+border:10px solid #FFF;\r
+-moz-box-sizing:border-box;\r
+-webkit-box-sizing:border-box;\r
+box-sizing:border-box;\r
+}\r
+\r
+#submitDiv {\r
+display:block;\r
+float:none;\r
+height:30px;\r
+margin:10px 40px;\r
+font-family:Segoe UI,Calibri, Arial !important;\r
+}\r
+\r
+#version {\r
+display:block;\r
+float:none;\r
+clear:both;\r
+padding-top:10px;\r
+margin-left:20px;\r
+color:#666;\r
+}\r
+\r
+#accordion h3 {\r
+border:none;\r
+background-image:none;\r
+background:#F5F5F5;\r
+margin:0;\r
+padding:8px;\r
+clear:both;\r
+display:block;\r
+float:none;\r
+font-size: 17px ;\r
+padding-left:30px ;\r
+font-weight:normal;\r
+text-transform:uppercase;\r
+color:#555;\r
+border-top:1px solid #FFF;\r
+border-bottom:1px solid #E5E5E5;\r
+line-height: 1.3;\r
+-moz-border-radius:0;\r
+-webkit-border-radius:0;\r
+border-radius:0;\r
+transition:background ease .3s;\r
+}\r
+\r
+#accordion h3:hover {\r
+background:#FFF;\r
+}\r
+\r
+#accordion select option {\r
+font-size:1.1em;\r
+}\r
+\r
+.form-table th, .form-wrap label {\r
+ color: #444 !important;\r
+font-size: 15px;\r
+font-weight:normal;\r
+text-transform:uppercase;\r
+background:#F7F7F7;\r
+border-bottom:1px solid #FFF;\r
+padding:10px;\r
+}\r
+\r
+.form-table tr {\r
+border-bottom:1px solid #F7F7F7;\r
+}\r
+\r
+.form-table tr:last-child {\r
+border-bottom:none;\r
+}\r
+\r
+.form-table td {\r
+vertical-align:middle;\r
+}\r
+\r
+input[type="text"] , select {\r
+border:1px solid #AAA !important;\r
+border-radius:2px;\r
+-moz-border-radius:2px;\r
+-webkit-border-radius:2px;\r
+}\r
+\r
+.submit {\r
+text-align:right;\r
+margin-right:20px;\r
+}\r
+\r
+ #accordion select {\r
+min-width:120px;\r
+max-width:200px;\r
+padding:3px 5px;\r
+}\r
+\r
+ #accordion textarea, #mantra_favicon {\r
+max-width:90%;\r
+}\r
+\r
+.googlefonts {\r
+width:200px;\r
+}\r
+\r
+/* Images */\r
+\r
+\r
+.images {\r
+display:inline-block;\r
+}\r
+\r
+#imageOne {\r
+border:1px solid #DDD !important;\r
+padding:3px;\r
+ height: auto;\r
+}\r
+\r
+#imageTwo{\r
+ background-color: #FFFFFF;\r
+ border: 1px solid #EEE;\r
+ -moz-border-radius: 3px;\r
+ -webkit-border-radius: 3px;\r
+ border-radius: 3px;\r
+ padding: 3px;\r
+ -moz-box-shadow:0px 0px 4px #CCC;\r
+ -webkit-box-shadow:0px 0px 4px #CCC;\r
+ box-shadow:0px 0px 4px #CCC;\r
+}\r
+\r
+#imageThree{\r
+ background-color: #FFFFFF;\r
+ border: 6px solid #EEEEEE;\r
+ -moz-border-radius: 5px 5px 5px 5px;\r
+ -webkit-border-radius: 5px 5px 5px 5px;\r
+ border-radius: 5px 5px 5px 5px;\r
+ padding: 3px;\r
+}\r
+\r
+\r
+\r
+#imageFour{\r
+border:1px solid #666 !important;\r
+ -moz-box-shadow:0px 0px 4px #666;\r
+ -webkit-box-shadow:0px 0px 4px #666;\r
+ box-shadow:0px 3px 4px #999;\r
+}\r
+\r
+#imageFive{\r
+border:3px solid #DDD !important;\r
+}\r
+\r
+#imageSix{\r
+border:8px solid #BBB !important;\r
+ -moz-box-shadow:0px 0px 5px #333;\r
+ -webkit-box-shadow:0px 0px 5px #333;\r
+ box-shadow: 0px 0px 5px #333;\r
+}\r
+\r
+#imageSeven{\r
+ background-color: #FFFFFF;\r
+ border: 1px solid #CCC;\r
+ padding: 7px;\r
+ -moz-box-shadow:2px 2px 2px #CCC;\r
+ -webkit-box-shadow:2px 2px 2px #CCC;\r
+ box-shadow:inset 0px 0px 7px #CCC;\r
+}\r
+\r
+/* Labels */\r
+\r
+label {\r
+display:inline-block;\r
+width:auto;\r
+border:2px solid #FFF;\r
+text-align:center;\r
+background-color:#FFF;\r
+padding:5px 2px;\r
+-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";\r
+filter: alpha(opacity=80);\r
+opacity:0.8;\r
+}\r
+\r
+label.hideareas {\r
+display:block;\r
+float:none;\r
+text-align:left;\r
+\r
+}\r
+\r
+label:hover {\r
+ -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r
+ filter: alpha(opacity=100);\r
+ opacity:1;\r
+background-color:#EEE;\r
+}\r
+\r
+\r
+label input[type=radio] {\r
+display:none;\r
+}\r
+\r
+label.layouts {\r
+display:block;\r
+float:left;\r
+padding:3px;\r
+height:55px;\r
+}\r
+\r
+label.layouts:hover {\r
+background:none;\r
+border:2px solid #CCC;\r
+}\r
+\r
+\r
+.layouts img {\r
+width:60px;\r
+}\r
+\r
+.layouts img, .images img {\r
+pointer-events: none;\r
+}\r
+\r
+\r
+.borderful {\r
+border-color:#F6A828 ;\r
+ -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r
+ filter: alpha(opacity=100);\r
+ opacity:1;\r
+}\r
+\r
+ label.layouts.checkedClass, label.images.checkedClass, label.pins.checkedClass, label.sidebullets.checkedClass {\r
+border-color:#F6A828;\r
+-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";\r
+filter: alpha(opacity=100);\r
+opacity:1;\r
+}\r
+\r
+\r
+#accordion input[type="text"] {\r
+font-family:"Lucida Console", Monaco, monospace !important;\r
+font-size:12px;\r
+padding:6px;\r
+}\r
+\r
+#accordion > * {\r
+display:none;\r
+}\r
+\r
+#accrodion > h3 {\r
+display:block;\r
+}\r
+\r
+.ui-accordion-content {\r
+background:#FFF !important;\r
+margin-bottom:10px !important;\r
+border:none !important;\r
+overflow: hidden;\r
+padding:1em !important;\r
+}\r
+.ui-accordion .ui-accordion-content { overflow: hidden !important;padding:0 !important; }\r
+.ui-accordion .ui-accordion-content-overflow { overflow: visible !important; }\r
+\r
+.ui-state-active {\r
+ background:#444 !important;\r
+ color:#FFF !important;\r
+ border:none !important;\r
+}\r
+\r
+.darkbg{\r
+ background:#ddd !important;\r
+}\r
+#status{\r
+ font-family:Arial; padding:5px;\r
+}\r
+ul#files{ list-style:none; padding:0; margin:0; }\r
+ul#files li{ padding:10px; margin-bottom:2px; width:400px; float:left; margin-right:10px;}\r
+ul#files li img{ max-width:180px; max-height:150px; }\r
+.success{ background:#99f099; border:1px solid #339933; }\r
+.error{ background:#f0c6c3; border:1px solid #cc6622; }\r
+\r
+#uploadpreview {\r
+max-width:64px;\r
+display:block;float:left;\r
+border:1px solid #DDD;\r
+padding:2px;\r
+}\r
+\r
+#filename {\r
+display:block;\r
+width:auto;\r
+float:left;\r
+margin-left:10px;\r
+font-weight:bold;\r
+}\r
+\r
+#uploadarea {\r
+margin-top:10px;\r
+}\r
+\r
+#absolutedim, #relativedim {\r
+margin-top:30px;\r
+position:relative;\r
+}\r
+#absolutedim small, #relativedim small{\r
+margin-top:20px;}\r
+\r
+.slmini, #cdimensions {\r
+display:block;\r
+float:none;\r
+}\r
+\r
+.slmini {\r
+background:#F9F9F9;\r
+border-bottom:1px solid #E7E7E7;\r
+padding:15px 5px 15px 10px;\r
+}\r
+\r
+.slmini b {\r
+width:130px;\r
+display:inline-block;\r
+float:left;\r
+text-transform:uppercase;\r
+font-weight:normal;\r
+font-style:italic;\r
+}\r
+\r
+.slidebox {\r
+background:#F7F7F7;\r
+border-bottom:2px solid #eaeaea;\r
+transition:border-color .3s ease-in-out;\r
+}\r
+\r
+.slidebox:hover {\r
+border-color:#8CB3B3;\r
+}\r
+\r
+.slidercontent{\r
+display:none;\r
+padding:0 10px 10px;\r
+}\r
+\r
+\r
+.slidetitle{\r
+color:#777;\r
+background:#F7F7F7;\r
+padding: 2px 10px;\r
+margin:3px;\r
+cursor:pointer;\r
+}\r
+\r
+.slidetitle:after {\r
+content:"\25BC";\r
+float:right;\r
+margin-right:5px;\r
+color:#AAA;\r
+font-size:10px;\r
+}\r
+\r
+.slidetitle:hover{\r
+background:#F6F6F6;\r
+}\r
+\r
+.slidetitle:hover:after {\r
+color:#6C9393;\r
+}\r
+\r
+.slidebox h5 {\r
+display:inline-block;\r
+float:none;\r
+font-size:12px;\r
+background:#FFF;\r
+color:#777;\r
+padding:0 10px;\r
+margin:10px 0px 0 10px;\r
+position:relative;\r
+top:2px;\r
+border:1px solid #DFDFDF;\r
+border-bottom:none;\r
+-moz-border-radius:4px;\r
+-webkit-border-radius:4px;\r
+border-radius:4px;\r
+}\r
+\r
+.slidebox .description {\r
+display:block;\r
+float:none;\r
+}\r
+\r
+.slidebox input[type="text"], .slidebox textarea {\r
+width:100%;\r
+border-color:#DFDFDF !important;\r
+color:#444;\r
+}\r
+\r
+#sliderCustomSlides {margin-top:10px;}\r
+\r
+a.upload_image_button {\r
+text-decoration:none;\r
+clear:both;\r
+padding:2px 4px;\r
+display:block;\r
+float:none;\r
+}\r
+\r
+\r
+.wp-core-ui .button, .wp-core-ui .button-secondary {\r
+background:#FFF;\r
+text-transform:uppercase;\r
+-moz-border-radius:0;\r
+-webkit-border-radius:0;\r
+border-radius:0;\r
+border-bottom:1px solid #555;\r
+}\r
+\r
+.wp-core-ui .button:hover, .wp-core-ui .button-secondary:hover {\r
+border-bottom:1px solid #000;\r
+}\r
+\r
+#submitDiv input.button {\r
+font-size:13px !important;\r
+padding:4px 10px !important;\r
+height:auto;\r
+text-transform:uppercase;\r
+border-bottom:3px solid #555;\r
+}\r
+\r
+.header_upload_inputs {\r
+width:300px;\r
+}\r
+\r
+/* NEWS LISTS */\r
+\r
+#righty .news-list li {\r
+background:#FFF;\r
+padding:7px;\r
+border:1px solid #EEE;\r
+}\r
+\r
+#righty span.news-item-date {\r
+color:#999;\r
+font-size:11px;\r
+}\r
+\r
+a.news-header {\r
+text-decoration:none;\r
+color:#4C7373;\r
+font-size:14px;\r
+font-weight:bold;\r
+text-transform:uppercase;\r
+}\r
+\r
+a.news-header:hover, a.news-read:hover {\r
+color:#C47D09 !important;\r
+}\r
+\r
+/*Tooltip */\r
+\r
+.tooltip_div{\r
+display:inline-block;\r
+clear:none;\r
+height:22px;\r
+line-height:22px;\r
+}\r
+\r
+a.tooltip{\r
+display:inline-block;\r
+clear:none;\r
+height:22px;\r
+line-height:22px;\r
+margin-left:7px;\r
+}\r
+\r
+a.tooltip img {\r
+vertical-align:bottom;\r
+}\r
+\r
+.ui-tooltip {\r
+display:block;\r
+max-width:300px;\r
+padding:5px;\r
+z-index:3;\r
+}\r
+\r
+/* ADMIN HEADER AND LINKS */\r
+\r
+#admin_header {\r
+ padding-top:10px;\r
+ padding-left:20px;\r
+ display:block;\r
+ float:left;\r
+ }\r
+#admin_links {\r
+ display:block;\r
+ float:left;\r
+ clear:both;\r
+ text-align:left;\r
+ margin-left:97px;\r
+ margin-top:-17px;\r
+ }\r
+\r
+#admin_links a {\r
+display:block;\r
+float:left;\r
+margin-left:3px;\r
+margin-right:9px;\r
+text-decoration:none;\r
+font-family:Segoe UI, Arial;\r
+font-size:11px;\r
+color:#000000;\r
+text-transform:uppercase;\r
+}\r
+\r
+#admin_links a:hover {\r
+color:#C47D09;\r
+}\r
+\r
+.wrap div.updated, .wrap div.error {\r
+margin-left: 15px; margin-right: 15px; \r
+margin-top: 20px; }\r
+\r
+#jsAlert {\r
+margin: 0 15px 10px;\r
+background-color: #F4F8FA;\r
+border-color: #BCE8F1; border-style: solid; border-radius: 0; border-width: 0 0 0 3px; \r
+padding:5px 10px;\r
+}\r
+\r
+/* FB button fix */\r
+\r
+.fb-like.fb_iframe_widget > span {\r
+ vertical-align: baseline !important;\r
+}\r
+.twitter-follow-button.twitter-follow-button {\r
+ margin:0 8px;\r
+}\r
+\r
--- /dev/null
+<?php\r
+\r
+function cryout_optset($var,$val1,$val2='',$val3='',$val4=''){\r
+$vals = array($val1,$val2,$val3,$val4);\r
+if (in_array($var,$vals)): return false; else: return true; endif;\r
+}\r
+\r
+function mantra_custom_styles() {\r
+\r
+/* This retrieves admin options. */\r
+$mantra_options= mantra_get_theme_options();\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = esc_attr($value) ;\r
+}\r
+if ($mantra_dimselect=="Absolute") {\r
+$totalwidth = $mantra_sidewidth+$mantra_sidebar+50;\r
+$contentSize = $mantra_sidewidth;\r
+$sidebarSize = $mantra_sidebar;\r
+}\r
+else if ($mantra_dimselect=="Relative") {\r
+$totalwidth = $mantra_sidewidthRel+$mantra_sidebarRel;\r
+$contentSize = intval(($mantra_sidewidthRel/$totalwidth*100)-2);\r
+$sidebarSize = intval(($mantra_sidebarRel/$totalwidth*100)-2);\r
+}\r
+ob_start(); ?>\r
+\r
+<style type="text/css">\r
+<?php\r
+/*\r
+ * LAYOUT CSS\r
+ */\r
+\r
+/* ABSOLUTE DIMENSIONS. */\r
+\r
+if ($mantra_dimselect=="Absolute") { ?>\r
+#wrapper, #access, #colophon, #branding, #main { width:<?php echo ($totalwidth) ?>px ;}\r
+<?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')) {\r
+\r
+ if (is_page_template("template-twocolumns-right.php") ) { ?>\r
+#content { width:<?php echo ($contentSize- 10) ?>px;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize ) ?>px;}<?php }\r
+\r
+?><?php if ( is_page_template("template-twocolumns-left.php")) { ?>\r
+#content { width:<?php echo ($contentSize - 10) ?>px;float:right;margin:0px 20px 0 0;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize ) ?>px;float:left;padding-left:0px;clear:left;border:none;border-right:1px dashed #EEE;padding-right:20px;}\r
+.widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ;text-align:right;}\r
+ #primary ul.xoxo {padding:0 0 0 10px ;} <?php }\r
+\r
+?><?php if ( is_page_template("template-threecolumns-right.php")) { ?>\r
+#content { width:<?php echo ($contentSize- 20) ?>px;}\r
+#primary,#secondary {width:<?php echo ($mantra_sidebar/2 ) ?>px;} <?php }\r
+\r
+?><?php if ( is_page_template("template-threecolumns-left.php")) { ?>\r
+#content { width:<?php echo ($contentSize - 20) ?>px;float:right;margin:0px 20px 0 0;display:block;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize/2 ) ?>px;float:left;padding-left:0px;;border:none;border-right:1px dashed #EEE;padding-right:20px;}\r
+.widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ;text-align:right;}\r
+#main .widget-area ul.xoxo {padding:0 0 0 10px ;} <?php }\r
+\r
+?><?php if (is_page_template("template-threecolumns-center.php")) { ?>\r
+#content { width:<?php echo ($contentSize - 20) ?>px;float:right;margin:0px <?php echo $sidebarSize/2+35 ?>px 0 <?php echo -($contentSize+$sidebarSize) ?>px;display:block;}\r
+#primary {width:<?php echo ($sidebarSize/2 ) ?>px;float:left;padding-left:0px;border:none;border-right:1px dashed #EEE;padding-right:20px;}\r
+#secondary {width:<?php echo ($sidebarSize/2 ) ?>px;float:right;}\r
+#primary .widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ; text-align:right;padding-right:15px;width:100%;margin-left:-15px;}\r
+#primary ul.xoxo {padding:0 0 0 10px;}<?php }\r
+\r
+ } //is_page_template\r
+ else { // IF NO PAGE TEMPLATE HAS BEEN SELECTED\r
+\r
+ if ($mantra_side == "1c" ) { ?>\r
+#content {width:<?php echo ($totalwidth-40) ?>px; margin:20px;margin-top:0px;} <?php }\r
+\r
+?><?php if ($mantra_side == "2cSr" ) { ?>\r
+#content { width:<?php echo ($contentSize- 10) ?>px;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize ) ?>px;}<?php }\r
+\r
+?><?php if ($mantra_side == "2cSl" ) { ?>\r
+#content { width:<?php echo ($contentSize - 10) ?>px;float:right;margin:0px 20px 0 0;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize ) ?>px;float:left;padding-left:0px;clear:left;border:none;border-right:1px dashed #EEE;padding-right:20px;}\r
+ .widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ; text-align:right;width:100%;}\r
+ #primary ul.xoxo {padding:0 0 0 10px ;}<?php }\r
+\r
+?><?php if ($mantra_side == "3cSr" ) { ?>\r
+#content { width:<?php echo ($contentSize- 20) ?>px;}\r
+#primary,#secondary {width:<?php echo ($mantra_sidebar/2 ) ?>px;} <?php }\r
+\r
+?><?php if ($mantra_side == "3cSl" ) { ?>\r
+#content { width:<?php echo ($contentSize - 20) ?>px;float:right;margin:0px 20px 0 0;display:block;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize/2 ) ?>px;float:left;padding-left:0px;;border:none;border-right:1px dashed #EEE;padding-right:20px;}\r
+ .widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ; text-align:right;}\r
+#main .widget-area ul.xoxo {padding:0 0 0 10px ;} <?php }\r
+\r
+?><?php if ($mantra_side == "3cSs") { ?>\r
+#content { width:<?php echo ($contentSize - 20) ?>px;float:right;margin:0px <?php echo $sidebarSize/2+35 ?>px 0 <?php echo -($contentSize+$sidebarSize) ?>px;display:block;}\r
+#primary {width:<?php echo ($sidebarSize/2 ) ?>px;float:left;padding-left:0px;border:none;border-right:1px dashed #EEE;padding-right:20px;}\r
+#secondary {width:<?php echo ($sidebarSize/2 ) ?>px;float:right;}\r
+#primary .widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ; text-align:right;padding-right:15px;width:100%;margin-left:-15px;}\r
+#primary ul.xoxo {padding:0 0 0 10px ;} <?php }\r
+\r
+ }//else\r
+}//absolute dim\r
+\r
+/* RELATIVE DIMENSIONS. */\r
+\r
+else if ($mantra_dimselect=="Relative") { ?>\r
+#wrapper { width:<?php echo ($totalwidth) ?>% ;}\r
+#access, #colophon, #branding, #main {width:100%;}\r
+#access .menu-header, div.menu {width:96% ;}\r
+#content {margin-left:2%;}\r
+#primary, #secondary {padding-left:1%;}\r
+<?php\r
+ if (is_page_template() && !is_page_template('template-blog.php') && !is_page_template('template-onecolumn.php') && !is_page_template('template-page-with-intro.php')) {\r
+\r
+?><?php if (is_page_template("template-twocolumns-right.php")) { ?>\r
+#content { width:<?php echo ($contentSize) ?>%;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize ) ?>%;}<?php }\r
+\r
+?><?php if (is_page_template("template-twocolumns-left.php")) { ?>\r
+#content { width:<?php echo ($contentSize ) ?>%;float:right;margin:0px 20px 0 0;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize ) ?>%;float:left;padding-left:0px;clear:left;border:none;border-right:1px dashed #EEE;padding-right:20px;}\r
+ .widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ; text-align:right;padding-right:5%;width:95%;margin-left:-10px;}\r
+#primary ul.xoxo {padding:0 0 0 10px ;} <?php }\r
+\r
+?><?php if ( is_page_template("template-threecolumns-right.php")) { ?>\r
+#content { width:<?php echo ($contentSize-2) ?>%;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize/2 ) ?>%;} <?php }\r
+\r
+?><?php if (is_page_template("template-threecolumns-left.php")) { ?>\r
+#content { width:<?php echo ($contentSize-2) ?>%;float:right;margin:0px 20px 0 0;display:block;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize/2 ) ?>%;float:left;padding-left:0px;;border:none;border-right:1px dashed #EEE;padding-right:10px;}\r
+ .widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ; text-align:right;padding-right:8%;width:95%;margin-left:-10px;}\r
+#main .widget-area ul.xoxo {margin:0 0 0 10px ;} <?php }\r
+\r
+?><?php if ( is_page_template("template-threecolumns-center.php")) { ?>\r
+#content { width:<?php echo ($contentSize-1 ) ?>%;float:right;margin:0px <?php echo $sidebarSize/2+2 ?>% 0 <?php echo -($contentSize+$sidebarSize) ?>%;display:block;}\r
+#primary {width:<?php echo ($sidebarSize/2 ) ?>%;float:left;padding-left:0px;border:none;border-right:1px dashed #EEE;padding-right:20px;}\r
+#secondary {width:<?php echo ($sidebarSize/2 ) ?>%;float:right;}\r
+#primary .widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ; text-align:right;padding-right:8%;width:100%;margin-left:-10px;}\r
+#primary ul.xoxo {padding:0 0 0 10px ;} <?php }\r
+ }// is_page_template\r
+\r
+ else { // IF NO PAGE TEMPLATE HAS BEEN SELECTED\r
+\r
+ if ($mantra_side == "1c") { ?>\r
+#content {width:96%; margin:20px;} <?php }\r
+\r
+?><?php if ($mantra_side == "2cSr" ) { ?>\r
+#content { width:<?php echo ($contentSize) ?>%;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize ) ?>%;}<?php }\r
+\r
+?><?php if ($mantra_side == "2cSl" ) { ?>\r
+#content { width:<?php echo ($contentSize ) ?>%;float:right;margin:0px 20px 0 0;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize ) ?>%;float:left;padding-left:0px;clear:left;border:none;border-right:1px dashed #EEE;padding-right:20px;}\r
+ .widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ; text-align:right;padding-right:5%;width:95%;margin-left:-10px;}\r
+#primary ul.xoxo {padding:0 0 0 10px ;} <?php }\r
+\r
+?><?php if ($mantra_side == "3cSr" ) { ?>\r
+#content { width:<?php echo ($contentSize-2) ?>%;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize/2 ) ?>%;} <?php }\r
+\r
+?><?php if ($mantra_side == "3cSl" ) { ?>\r
+#content { width:<?php echo ($contentSize-2) ?>%;float:right;margin:0px 20px 0 0;display:block;}\r
+#primary,#secondary {width:<?php echo ($sidebarSize/2 ) ?>%;float:left;padding-left:0px;;border:none;border-right:1px dashed #EEE;padding-right:15px;}\r
+ .widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ; text-align:right;padding-right:8%;width:100%;margin-left:-10px;}\r
+#main .widget-area ul.xoxo {margin:0 0 0 10px ;} <?php }\r
+\r
+?><?php if ($mantra_side == "3cSs") { ?>\r
+#content { width:<?php echo ($contentSize-1 ) ?>%;float:right;margin:0px <?php echo $sidebarSize/2+2 ?>% 0 <?php echo -($contentSize+$sidebarSize) ?>%;display:block;}\r
+#primary {width:<?php echo ($sidebarSize/2 ) ?>%;float:left;padding-left:0px;border:none;border-right:1px dashed #EEE;padding-right:20px;}\r
+#secondary {width:<?php echo ($sidebarSize/2 ) ?>%;float:right;}\r
+#primary .widget-title { -moz-border-radius:0 10px 0 0; -webkit-border-radius:0 10px 0 0;border-radius:0 10px 0 0 ; text-align:right;padding-right:8%;width:100%;margin-left:-10px;}\r
+#primary ul.xoxo {padding:0 0 0 10px ;} <?php }\r
+\r
+ }//else\r
+}\r
+\r
+/*\r
+ * THE REST OF THE CSS\r
+ */\r
+?>\r
+#content, #content p, #content ul, #content ol, #content input, #content select, #content textarea{\r
+font-size:<?php echo $mantra_fontsize ?>;\r
+<?php if ($mantra_lineheight != "Default") { ?>line-height:<?php echo $mantra_lineheight ?>; <?php }\r
+?><?php if ($mantra_wordspace != "Default") { ?>word-spacing:<?php echo $mantra_wordspace ?>;<?php }\r
+?><?php if ($mantra_letterspace != "Default") { ?>letter-spacing:<?php echo $mantra_letterspace ?>;<?php }\r
+?><?php if ($mantra_textalign != "Default") { ?>text-align:<?php echo $mantra_textalign; ?> ; <?php } ?>}\r
+\r
+<?php if ($mantra_hcenter != "") { ?> #bg_image { display:block;margin:0 auto;} <?php }\r
+?><?php if ($mantra_contentbg != "#FFFFFF") { ?> #main, #access ul li.current_page_item, #access ul li.current-menu-item ,#access ul ul li { background-color:<?php echo $mantra_contentbg; ?>} <?php }\r
+?><?php if ($mantra_menubg != "#FAFAFA") { ?> #access ul li { background-color:<?php echo $mantra_menubg; ?>} <?php }\r
+?><?php if (cryout_optset($mantra_s1bg, "")) { ?> #primary { background-color:<?php echo $mantra_s1bg; ?>} <?php }\r
+?><?php if (cryout_optset($mantra_s2bg ,"" )){ ?> #secondary { background-color:<?php echo $mantra_s2bg; ?>} <?php }\r
+\r
+$mantra_googlefont = str_replace('+',' ',preg_replace('/:.*/i','',$mantra_googlefont));\r
+$mantra_googlefonttitle = str_replace('+',' ',preg_replace('/:.*/i','',$mantra_googlefonttitle));\r
+$mantra_googlefontside = str_replace('+',' ',preg_replace('/:.*/i','',$mantra_googlefontside));\r
+$mantra_googlefontsubheader = str_replace('+',' ',preg_replace('/:.*/i','',$mantra_googlefontsubheader));\r
+\r
+?><?php if (stripslashes($mantra_fontfamily) != '"Segoe UI", Arial, sans-serif' || $mantra_googlefont) { ?> * , .widget-title {font-family:<?php if (!$mantra_googlefont) echo $mantra_fontfamily; else echo "\"$mantra_googlefont\""; ?> ; }<?php }\r
+?><?php if ($mantra_fonttitle != "Default" || $mantra_googlefonttitle) { ?> #content h1.entry-title a, #content h2.entry-title a, #content h1.entry-title , #content h2.entry-title {font-family:<?php if (!$mantra_googlefonttitle) echo $mantra_fonttitle; else echo "\"$mantra_googlefonttitle\""; ?> ; }<?php }\r
+?><?php if ($mantra_fontside != "Default" || $mantra_googlefontside) { ?> .widget-area * {font-family:<?php if (!$mantra_googlefontside) echo $mantra_fontside; else echo "\"$mantra_googlefontside\""; ?> ; }<?php }\r
+?><?php if ($mantra_fontsubheader != "Default" || $mantra_googlefontsubheader ) { ?> .entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {font-family:<?php if (!$mantra_googlefontsubheader) echo $mantra_fontsubheader; else echo "\"$mantra_googlefontsubheader\""; ?> ; }<?php }\r
+?><?php if ($mantra_caption != "Light") { ?> #content .wp-caption { <?php }\r
+?><?php if ($mantra_caption == "White") { ?> background-color:#FFF;}\r
+ <?php } else if ($mantra_caption == "Light Gray") {?> background-color:#EEE; }\r
+ <?php } else if ($mantra_caption == "Gray") {?> background-color:#CCC;}\r
+ <?php } else if ($mantra_caption == "Dark Gray") {?> background-color:#444;color:#CCC;}\r
+ <?php } else if ($mantra_caption == "Black") {?> background-color:#000;color:#CCC;}\r
+<?php }\r
+?><?php if ($mantra_menurounded == "Disable") { ?> #access ul li { border-radius:0;-moz-border-radius:0;border-radius:0;}<?php }\r
+?><?php if ($mantra_metaback == "White") { ?> .entry-meta { background:#FFF;} <?php } else if ($mantra_metaback == "None") { ?> .entry-meta { background:#FFF;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} <?php }\r
+?><?php if ($mantra_postseparator == "Show") { ?> article.post, article.page { padding-bottom:10px;border-bottom:3px solid #EEE} <?php }\r
+?><?php if ($mantra_contentlist == "Hide") { ?> .entry-content ul li { background-image:none ; padding-left:0;} .entry-content ul { margin-left:0;} <?php }\r
+?><?php if ($mantra_comtext == "Hide") { ?> #respond .form-allowed-tags { display:none;} <?php }\r
+?><?php if ($mantra_comclosed == "Hide in posts") { ?> .nocomments { display:none;} <?php } elseif ($mantra_comclosed == "Hide in pages") { ?> .nocomments2 {display:none;} <?php } elseif ($mantra_comclosed == "Hide everywhere") { ?> .nocomments, .nocomments2 {display:none;} <?php }\r
+?><?php if ($mantra_comoff == "Hide") { ?> .comments-link span { display:none;} <?php }\r
+?><?php if ($mantra_tables == "Enable") { ?> #content table {border:none;} #content tr {background:none;} #content table {border:none;} #content tr th,\r
+#content thead th {background:none;} #content tr td {border:none;}<?php }\r
+?><?php if ($mantra_headfontsize != "Default") { ?> #content h1.entry-title, #content h2.entry-title { font-size:<?php echo $mantra_headfontsize; ?> ;}<?php }\r
+?><?php if ($mantra_sidefontsize != "Default") { ?> .widget-area, .widget-area a:link, .widget-area a:visited { font-size:<?php echo $mantra_sidefontsize; ?> ;}<?php }\r
+?><?php if ($mantra_textshadow != "Enable") { ?> #content h1, #content h2, #content h3, #content h4, #content h5, #content h6, #content .entry-title, #site-title a , #site-description { text-shadow:none; moz-text-shadow:none; -webkit-text-shadow:none ;}<?php }\r
+?><?php if ($mantra_headerindent == "Enable") { ?> #content h1, #content h2, #content h3, #content h4, #content h5, #content h6 { margin-left:20px;} .sticky hgroup { background: url(<?php echo get_template_directory_uri().'/images/icon-featured.png' ; ?>) no-repeat 12px 10px transparent; padding-left: 15px;}<?php } ?>\r
+\r
+#header-container > div { margin-top:<?php echo $mantra_headermargintop; ?>px;}\r
+#header-container > div { margin-left:<?php echo $mantra_headermarginleft; ?>px;}\r
+<?php if ($mantra_backcolor != "444444") { ?> body { background-color:<?php echo $mantra_backcolor; ?> !important ;}<?php }\r
+?><?php if ($mantra_headercolor != "333333") { ?> #header { background-color:<?php echo $mantra_headercolor; ?> ;}<?php }\r
+?><?php if ($mantra_prefootercolor != "222222") { ?> #footer { background-color:<?php echo $mantra_prefootercolor; ?> ;}<?php }\r
+?><?php if ($mantra_footercolor != "171717") { ?> #footer2 { background-color:<?php echo $mantra_footercolor; ?> ;}<?php }\r
+?><?php if ($mantra_titlecolor != "0D85CC") { ?> #site-title span a { color:<?php echo $mantra_titlecolor; ?> ;}<?php }\r
+?><?php if ($mantra_descriptioncolor != "0D85CC") { ?> #site-description { color:<?php echo $mantra_descriptioncolor; ?> ;}<?php }\r
+?><?php if ($mantra_contentcolor != "333333") { ?> #content, #content p, #content ul, #content ol { color:<?php echo $mantra_contentcolor; ?> ;}<?php }\r
+?><?php if ($mantra_linkscolor != "0D85CC") { ?> .widget-area a:link, .widget-area a:visited, a:link, a:visited ,#searchform #s:hover , #container #s:hover, #access a:hover, #wp-calendar tbody td a , #site-info a ,#site-copyright a, #access li:hover > a, #access ul ul :hover > a { color:<?php echo $mantra_linkscolor; ?>;}<?php }\r
+?><?php if ($mantra_hovercolor != "333333") { ?> a:hover, .entry-meta a:hover, .entry-utility a:hover , .widget-area a:hover { color:<?php echo $mantra_hovercolor; ?> ;}<?php }\r
+?><?php if ($mantra_headtextcolor != "333333") { ?> #content .entry-title a, #content .entry-title, #content h1, #content h2, #content h3, #content h4, #content h5, #content h6{ color:<?php echo $mantra_headtextcolor; ?> ;}<?php }\r
+?><?php if ($mantra_headtexthover != "000000") { ?> #content .entry-title a:hover { color:<?php echo $mantra_headtexthover; ?> ;}<?php }\r
+?><?php if ($mantra_sideheadbackcolor != "444444") { ?> .widget-title,#footer-widget-area .widget-title { background-color:<?php echo $mantra_sideheadbackcolor; ?> ;}<?php }\r
+?><?php if ($mantra_sideheadtextcolor != "2EA5FD") { ?> .widget-title { color:<?php echo $mantra_sideheadtextcolor; ?> ;}<?php }\r
+\r
+?><?php if ($mantra_magazinelayout == "Enable") { ?> #content article.post{float:left;width:47%;margin-right:3%; } #content article.sticky { margin-right:3%;padding:0; } #content article.sticky > * {margin:2%;} #content article:nth-of-type(2n+1) {clear: both;} <?php }\r
+\r
+?><?php if (1) { ?> #footer-widget-area .widget-title { color:<?php echo $mantra_footerheader; ?> ; ;}<?php }\r
+?><?php if (1) { ?> #footer-widget-area a { color:<?php echo $mantra_footertext; ?> ;}<?php }\r
+?><?php if (1) { ?> #footer-widget-area a:hover { color:<?php echo $mantra_footerhover; ?> ;}<?php }\r
+\r
+switch ($mantra_menualign):\r
+ case "center": ?> #access ul { display: table; margin: 0 auto; } <?php break;\r
+ case "right": ?> #access .menu-header, div.menu { float: right; } <?php break;\r
+ default: break;\r
+endswitch;\r
+\r
+?><?php if ($mantra_pin != "Pin2") { ?> #content .wp-caption { background-image:url(<?php echo get_template_directory_uri()."/images/pins/".$mantra_pin; ?>.png) ;} <?php }\r
+?><?php if ($mantra_sidebullet != "arrow_white") { ?>.widget-area ul ul li{ background-image:url(<?php echo get_template_directory_uri()."/images/bullets/".$mantra_sidebullet; ?>.png);background-position: 0px 8px ;}<?php }\r
+\r
+?><?php if ($mantra_pagetitle == "Hide") { ?> .page h1.entry-title, .home .page h2.entry-title { display:none;} <?php }\r
+?><?php if ($mantra_categtitle == "Hide") { ?> h1.page-title { display:none;} <?php }\r
+?><?php if (($mantra_postdate == "Hide" && $mantra_postcateg == "Hide") || ($mantra_postauthor == "Hide" && $mantra_postcateg == "Hide") ) { ?>.entry-meta .bl_sep {display:none;} <?php }\r
+?><?php if ($mantra_postdate == "Hide") { ?>.entry-meta span.entry-date,.entry-meta span.onDate {display:none;} <?php }\r
+?><?php if ($mantra_postcomlink == "Hide") { ?>.entry-meta .comments-link,.entry-meta2 .comments-link{display:none;} <?php }\r
+?><?php if ($mantra_postauthor == "Hide") { ?>.entry-meta .author {display:none;} <?php }\r
+?><?php if ($mantra_postcateg == "Hide") { ?>.entry-meta span.bl_categ, .entry-meta2 span.bl_categ {display:none;} <?php }\r
+?><?php if ($mantra_posttag == "Hide") { ?> .entry-utility span.bl_posted, .entry-meta2 span.bl_tagg,.entry-meta3 span.bl_tagg {display:none;} <?php }\r
+?><?php if ($mantra_postbook == "Hide") { ?> .entry-utility span.bl_bookmark {display:none;} <?php }\r
+?><?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 } \r
+?><?php if ($mantra_parindent != "0px") { ?> p {text-indent:<?php echo $mantra_parindent;?> ;} <?php }\r
+?><?php if ($mantra_posttime == "Hide") { ?> .entry-meta .entry-time {display:none;} <?php }\r
+?><?php if ($mantra_postmetas == "Hide") { ?> #content .entry-meta, #content .entry-header div.entry-meta2 > * {display:none;} <?php }\r
+?><?php if (($mantra_mobile == "Enable") && $mantra_hcontain) { ?> #branding{ -webkit-background-size:contain !important;-moz-background-size:contain !important;background-size:contain !important; } <?php } ?>\r
+#branding { height:<?php echo HEADER_IMAGE_HEIGHT; ?>px ;}\r
+<?php if ($mantra_hratio) { ?> @media (max-width: 800px) {#branding, #bg_image { min-height:inherit !important; } } <?php } ?>\r
+</style>\r
+\r
+<?php $mantra_custom_styling = ob_get_contents();\r
+ ob_end_clean();\r
+\r
+return $mantra_custom_styling;\r
+}\r
+\r
+// Mantra function for inseting into the header the Custom Css field in the theme options\r
+\r
+function mantra_customcss() {\r
+$mantra_options= mantra_get_theme_options();\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = esc_attr($value) ; }\r
+\r
+if ($mantra_customcss != "") {\r
+ return '<style>'.htmlspecialchars_decode($mantra_customcss, ENT_QUOTES).'</style>';\r
+ }\r
+}\r
+\r
+function mantra_customjs() {\r
+$mantra_options= mantra_get_theme_options();\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = esc_attr($value) ; }\r
+\r
+if ($mantra_customjs != "") {\r
+ echo '<script>'.htmlspecialchars_decode($mantra_customjs, ENT_QUOTES).'</script>';\r
+ }\r
+}\r
+?>
\ No newline at end of file
--- /dev/null
+<?php\r
+\r
+// DEFAULT OPTIONS ARRAY\r
+\r
+$mantra_defaults = array(\r
+\r
+"mantra_db" => "1.0",\r
+\r
+"mantra_side" => "2cSr",\r
+"mantra_dimselect" => 'Absolute',\r
+"mantra_sidewidth" => 800,\r
+"mantra_sidebar" => 250,\r
+"mantra_sidewidthRel" => 60,\r
+"mantra_sidebarRel" => 20,\r
+"mantra_mobile" => "Enable",\r
+"mantra_zoom" => 0,\r
+"mantra_hcontain" => "",\r
+\r
+\r
+"mantra_frontpage" => "Disable",\r
+"mantra_frontposts" => "Disable",\r
+"mantra_frontpostscount" => 5,\r
+"mantra_menualign" => "left",\r
+"mantra_fpsliderwidth" => "800",\r
+"mantra_fpsliderheight" => "250",\r
+"mantra_fpslideranim" => "random",\r
+"mantra_fpsliderborderwidth" => "10",\r
+"mantra_fpsliderbordercolor" => "#EEEEEE",\r
+"mantra_fpslidertime" => "750",\r
+"mantra_fpsliderpause" => "5000",\r
+"mantra_fpslidernav" => "Bullets",\r
+"mantra_fpsliderarrows" => "Visible on Hover",\r
+\r
+"mantra_slideType" => "Custom Slides",\r
+"mantra_slideCateg" => "",\r
+"mantra_slideNumber" => "5",\r
+"mantra_slideSpecific" => "",\r
+\r
+"mantra_sliderimg1" => get_template_directory_uri()."/images/slider/mantra-slide1.jpg",\r
+"mantra_slidertitle1" => "This is the caption title",\r
+"mantra_slidertext1" => "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.",\r
+"mantra_sliderlink1" => "",\r
+"mantra_sliderimg2" => get_template_directory_uri()."/images/slider/mantra-slide2.jpg",\r
+"mantra_slidertitle2" => "This is yet another caption title",\r
+"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>.',\r
+"mantra_sliderlink2" => "",\r
+"mantra_sliderimg3" => "",\r
+"mantra_slidertitle3" => "",\r
+"mantra_slidertext3" => "",\r
+"mantra_sliderlink3" => "",\r
+"mantra_sliderimg4" => "",\r
+"mantra_slidertitle4" => "",\r
+"mantra_slidertext4" => "",\r
+"mantra_sliderlink4" => "",\r
+"mantra_sliderimg5" => "",\r
+"mantra_slidertitle5" => "",\r
+"mantra_slidertext5" => "",\r
+"mantra_sliderlink5" => "",\r
+\r
+"mantra_nrcolumns" => "4",\r
+"mantra_colimageheight" => "120",\r
+"mantra_columnreadmore" => "Read more",\r
+\r
+"mantra_columnimg1" => get_template_directory_uri()."/images/slider/mantra-column.jpg",\r
+"mantra_columntitle1" => "Hi there!",\r
+"mantra_columntext1" => "You can also have some text here. Just like with the slider, it is 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.",\r
+"mantra_columnlink1" => "",\r
+"mantra_columnimg2" => get_template_directory_uri()."/images/slider/mantra-column.jpg",\r
+"mantra_columntitle2" => " HTML tags",\r
+"mantra_columntext2" => 'You can also have <a href="http://www.cryoutcreations.eu">links</a> here as well as some <strong>HTML tags</strong>.',\r
+"mantra_columnlink2" => "",\r
+"mantra_columnimg3" => get_template_directory_uri()."/images/slider/mantra-column.jpg",\r
+"mantra_columntitle3" => "",\r
+"mantra_columntext3" => "",\r
+"mantra_columnlink3" => "",\r
+"mantra_columnimg4" => get_template_directory_uri()."/images/slider/mantra-column.jpg",\r
+"mantra_columntitle4" => "",\r
+"mantra_columntext4" => "",\r
+"mantra_columnlink4" => "",\r
+\r
+"mantra_fronttext1" => "This could be a title",\r
+"mantra_fronttext2" => "And this is a second title",\r
+"mantra_fronttitlecolor" => "#333333",\r
+"mantra_fronttext3" => "And here you could have a whole lot of text. Or not. It is 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! ",\r
+"mantra_fronttext4" => "",\r
+\r
+"mantra_fronthideheader" => "",\r
+"mantra_fronthidemenu" => "",\r
+"mantra_fronthidewidget" => "",\r
+"mantra_fronthidefooter" => "",\r
+"mantra_fronthideback" => "",\r
+\r
+\r
+"mantra_hheight" => "75",\r
+"mantra_hcenter" => "",\r
+"mantra_hratio" => "",\r
+"mantra_menurounded" => "Enable",\r
+"mantra_logoupload" => "",\r
+"mantra_favicon" => "",\r
+"mantra_siteheader" => "Site Title and Description",\r
+"mantra_headermargintop" => "20",\r
+"mantra_headermarginleft" => "40",\r
+\r
+"mantra_fontfamily" => 'Segoe UI, Arial, sans-serif',\r
+"mantra_googlefont" => '',\r
+"mantra_googlefont2" => '',\r
+"mantra_fontsize" => "14px",\r
+"mantra_fonttitle" => 'Georgia, Times New Roman, Times, serif',\r
+"mantra_googlefonttitle" => '',\r
+"mantra_googlefonttitle2" => '',\r
+"mantra_headfontsize" => "Default",\r
+"mantra_fontside" => 'Helvetica, sans-serif',\r
+"mantra_googlefontside" => '',\r
+"mantra_googlefontside2" => '',\r
+"mantra_sidefontsize" => "Default",\r
+"mantra_fontsubheader" => 'Georgia, Times New Roman, Times, serif',\r
+"mantra_googlefontsubheader" => '',\r
+"mantra_googlefontsubheader2" => '',\r
+"mantra_textalign" => "Default",\r
+"mantra_parmargin" => "1.5em",\r
+"mantra_parindent" => "0px",\r
+"mantra_headerindent" => "Disable",\r
+"mantra_lineheight" => "Default",\r
+"mantra_wordspace" => "Default",\r
+"mantra_letterspace" => "Default",\r
+"mantra_textshadow" => "Enable",\r
+\r
+"mantra_contentbg" => "#FFFFFF",\r
+"mantra_menubg" => "#FAFAFA",\r
+"mantra_s1bg" => "",\r
+"mantra_s2bg" => "",\r
+"mantra_backcolor" => "#444444",\r
+"mantra_headercolor" => "#333333",\r
+"mantra_prefootercolor" => "#222222",\r
+"mantra_footercolor" => "#171717",\r
+"mantra_titlecolor" => "#0D85CC",\r
+"mantra_descriptioncolor" => "#999999",\r
+"mantra_contentcolor" => "#333333",\r
+"mantra_linkscolor" => "#0D85CC",\r
+"mantra_hovercolor" => "#12a7ff",\r
+"mantra_headtextcolor" => "#444444",\r
+"mantra_headtexthover" => "#000000",\r
+"mantra_sideheadbackcolor" => "#444444",\r
+"mantra_sideheadtextcolor" => "#2EA5FD",\r
+\r
+"mantra_footerheader" => "#0C85CD",\r
+"mantra_footertext" => "#666666",\r
+"mantra_footerhover" => "#888888",\r
+\r
+"mantra_breadcrumbs" => "Disable",\r
+"mantra_pagination" => "Enable",\r
+"mantra_caption" => "Light",\r
+"mantra_image" => "Seven",\r
+"mantra_pin" => "Pin2",\r
+"mantra_sidebullet" => "arrow_white",\r
+"mantra_metaback" => "Gray",\r
+"mantra_postseparator" => "Hide",\r
+"mantra_contentlist" => "Show",\r
+"mantra_pagetitle" => "Show",\r
+"mantra_categtitle" => "Show",\r
+"mantra_tables" => "Disable",\r
+"mantra_backtop" => "Enable",\r
+"mantra_comtext" => "Show",\r
+"mantra_comclosed" => "Hide everywhere",\r
+"mantra_comoff" => "Show",\r
+\r
+"mantra_postcomlink" => "Show",\r
+"mantra_postdate" => "Show",\r
+"mantra_posttime" => "Hide",\r
+"mantra_postauthor" => "Show",\r
+"mantra_postcateg" => "Show",\r
+"mantra_posttag" => "Show",\r
+"mantra_postbook" => "Show",\r
+"mantra_postmetas" => "Show",\r
+\r
+"mantra_excerpthome" => "Full Post",\r
+"mantra_excerptsticky" => "Full Post",\r
+"mantra_excerptarchive" => "Full Post",\r
+"mantra_excerptwords" => "50",\r
+"mantra_magazinelayout" => "Disable",\r
+"mantra_excerptdots" => " …",\r
+"mantra_excerptcont" => " Continue reading",\r
+"mantra_excerpttags" => "Disable",\r
+\r
+"mantra_fpost" => "Disable",\r
+"mantra_fpostlink" => "1",\r
+"mantra_fauto" => "Disable",\r
+"mantra_falign" => "Left",\r
+"mantra_fwidth" => "250",\r
+"mantra_fheight" => "150",\r
+"mantra_fcrop" => "",\r
+"mantra_fheader" => "Disable",\r
+\r
+"mantra_social1" => "Facebook",\r
+"mantra_social2" => "#",\r
+"mantra_social3" => "Twitter",\r
+"mantra_social4" => "#",\r
+"mantra_social5" => "RSS",\r
+"mantra_social6" => "#",\r
+"mantra_social7" => "",\r
+"mantra_social8" => "",\r
+"mantra_social9" => "",\r
+"mantra_social10" => "",\r
+"mantra_socialsdisplay0" => "1",\r
+"mantra_socialsdisplay1" => "",\r
+"mantra_socialsdisplay2" => "",\r
+"mantra_socialsdisplay3" => "1",\r
+\r
+"mantra_copyright" => "",\r
+"mantra_customcss" => "/* Mantra Custom CSS */ ",\r
+"mantra_customjs" => "",\r
+"mantra_seo" => "Enable",\r
+"mantra_seo_home_desc" => "",\r
+"mantra_seo_gen_desc" => "Auto",\r
+"mantra_seo_author" => "Do not use");\r
+\r
+?>
\ No newline at end of file
--- /dev/null
+/*!\r
+ * jQuery UI Widget 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Widget\r
+ */\r
+(function(b,j){if(b.cleanData){var k=b.cleanData;b.cleanData=function(a){for(var c=0,d;(d=a[c])!=null;c++)try{b(d).triggerHandler("remove")}catch(e){}k(a)}}else{var l=b.fn.remove;b.fn.remove=function(a,c){return this.each(function(){if(!c)if(!a||b.filter(a,[this]).length)b("*",this).add([this]).each(function(){try{b(this).triggerHandler("remove")}catch(d){}});return l.call(b(this),a,c)})}}b.widget=function(a,c,d){var e=a.split(".")[0],f;a=a.split(".")[1];f=e+"-"+a;if(!d){d=c;c=b.Widget}b.expr[":"][f]=\r
+function(h){return!!b.data(h,a)};b[e]=b[e]||{};b[e][a]=function(h,g){arguments.length&&this._createWidget(h,g)};c=new c;c.options=b.extend(true,{},c.options);b[e][a].prototype=b.extend(true,c,{namespace:e,widgetName:a,widgetEventPrefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.widget.bridge(a,b[e][a])};b.widget.bridge=function(a,c){b.fn[a]=function(d){var e=typeof d==="string",f=Array.prototype.slice.call(arguments,1),h=this;d=!e&&f.length?b.extend.apply(null,[true,d].concat(f)):\r
+d;if(e&&d.charAt(0)==="_")return h;e?this.each(function(){var g=b.data(this,a),i=g&&b.isFunction(g[d])?g[d].apply(g,f):g;if(i!==g&&i!==j){h=i;return false}}):this.each(function(){var g=b.data(this,a);g?g.option(d||{})._init():b.data(this,a,new c(d,this))});return h}};b.Widget=function(a,c){arguments.length&&this._createWidget(a,c)};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(a,c){b.data(c,this.widgetName,this);this.element=b(c);this.options=\r
+b.extend(true,{},this.options,this._getCreateOptions(),a);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+\r
+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(a,c){var d=a;if(arguments.length===0)return b.extend({},this.options);if(typeof a==="string"){if(c===j)return this.options[a];d={};d[a]=c}this._setOptions(d);return this},_setOptions:function(a){var c=this;b.each(a,function(d,e){c._setOption(d,e)});return this},_setOption:function(a,c){this.options[a]=c;if(a==="disabled")this.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",\r
+c);return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(a,c,d){var e=this.options[a];c=b.Event(c);c.type=(a===this.widgetEventPrefix?a:this.widgetEventPrefix+a).toLowerCase();d=d||{};if(c.originalEvent){a=b.event.props.length;for(var f;a;){f=b.event.props[--a];c[f]=c.originalEvent[f]}}this.element.trigger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)===false||c.isDefaultPrevented())}}})(jQuery);\r
+;/*!\r
+ * jQuery UI Mouse 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Mouse\r
+ *\r
+ * Depends:\r
+ * jquery.ui.widget.js\r
+ */\r
+(function(b){var d=false;b(document).mouseup(function(){d=false});b.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var a=this;this.element.bind("mousedown."+this.widgetName,function(c){return a._mouseDown(c)}).bind("click."+this.widgetName,function(c){if(true===b.data(c.target,a.widgetName+".preventClickEvent")){b.removeData(c.target,a.widgetName+".preventClickEvent");c.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+\r
+this.widgetName)},_mouseDown:function(a){if(!d){this._mouseStarted&&this._mouseUp(a);this._mouseDownEvent=a;var c=this,f=a.which==1,g=typeof this.options.cancel=="string"&&a.target.nodeName?b(a.target).closest(this.options.cancel).length:false;if(!f||g||!this._mouseCapture(a))return true;this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet)this._mouseDelayTimer=setTimeout(function(){c.mouseDelayMet=true},this.options.delay);if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){this._mouseStarted=\r
+this._mouseStart(a)!==false;if(!this._mouseStarted){a.preventDefault();return true}}true===b.data(a.target,this.widgetName+".preventClickEvent")&&b.removeData(a.target,this.widgetName+".preventClickEvent");this._mouseMoveDelegate=function(e){return c._mouseMove(e)};this._mouseUpDelegate=function(e){return c._mouseUp(e)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);a.preventDefault();return d=true}},_mouseMove:function(a){if(b.browser.msie&&\r
+!(document.documentMode>=9)&&!a.button)return this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a);return a.preventDefault()}if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=\r
+false;a.target==this._mouseDownEvent.target&&b.data(a.target,this.widgetName+".preventClickEvent",true);this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true}})})(jQuery);\r
+;/*\r
+ * jQuery UI Accordion 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Accordion\r
+ *\r
+ * Depends:\r
+ * jquery.ui.core.js\r
+ * jquery.ui.widget.js\r
+ */\r
+(function(c){c.widget("ui.accordion",{options:{active:0,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){var a=this,b=a.options;a.running=0;a.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix");\r
+a.headers=a.element.find(b.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){b.disabled||c(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){b.disabled||c(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){b.disabled||c(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){b.disabled||c(this).removeClass("ui-state-focus")});a.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");\r
+if(b.navigation){var d=a.element.find("a").filter(b.navigationFilter).eq(0);if(d.length){var h=d.closest(".ui-accordion-header");a.active=h.length?h:d.closest(".ui-accordion-content").prev()}}a.active=a._findActive(a.active||b.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");a.active.next().addClass("ui-accordion-content-active");a._createIcons();a.resize();a.element.attr("role","tablist");a.headers.attr("role","tab").bind("keydown.accordion",\r
+function(f){return a._keydown(f)}).next().attr("role","tabpanel");a.headers.not(a.active||"").attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide();a.active.length?a.active.attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}):a.headers.eq(0).attr("tabIndex",0);c.browser.safari||a.headers.find("a").attr("tabIndex",-1);b.event&&a.headers.bind(b.event.split(" ").join(".accordion ")+".accordion",function(f){a._clickHandler.call(a,f,this);f.preventDefault()})},_createIcons:function(){var a=\r
+this.options;if(a.icons){c("<span></span>").addClass("ui-icon "+a.icons.header).prependTo(this.headers);this.active.children(".ui-icon").toggleClass(a.icons.header).toggleClass(a.icons.headerSelected);this.element.addClass("ui-accordion-icons")}},_destroyIcons:function(){this.headers.children(".ui-icon").remove();this.element.removeClass("ui-accordion-icons")},destroy:function(){var a=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex");\r
+this.headers.find("a").removeAttr("tabIndex");this._destroyIcons();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");if(a.autoHeight||a.fillHeight)b.css("height","");return c.Widget.prototype.destroy.call(this)},_setOption:function(a,b){c.Widget.prototype._setOption.apply(this,arguments);a=="active"&&this.activate(b);if(a=="icons"){this._destroyIcons();\r
+b&&this._createIcons()}if(a=="disabled")this.headers.add(this.headers.next())[b?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(a){if(!(this.options.disabled||a.altKey||a.ctrlKey)){var b=c.ui.keyCode,d=this.headers.length,h=this.headers.index(a.target),f=false;switch(a.keyCode){case b.RIGHT:case b.DOWN:f=this.headers[(h+1)%d];break;case b.LEFT:case b.UP:f=this.headers[(h-1+d)%d];break;case b.SPACE:case b.ENTER:this._clickHandler({target:a.target},a.target);\r
+a.preventDefault()}if(f){c(a.target).attr("tabIndex",-1);c(f).attr("tabIndex",0);f.focus();return false}return true}},resize:function(){var a=this.options,b;if(a.fillSpace){if(c.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}b=this.element.parent().height();c.browser.msie&&this.element.parent().css("overflow",d);this.headers.each(function(){b-=c(this).outerHeight(true)});this.headers.next().each(function(){c(this).height(Math.max(0,b-c(this).innerHeight()+\r
+c(this).height()))}).css("overflow","auto")}else if(a.autoHeight){b=0;this.headers.next().each(function(){b=Math.max(b,c(this).height("").height())}).height(b)}return this},activate:function(a){this.options.active=a;a=this._findActive(a)[0];this._clickHandler({target:a},a);return this},_findActive:function(a){return a?typeof a==="number"?this.headers.filter(":eq("+a+")"):this.headers.not(this.headers.not(a)):a===false?c([]):this.headers.filter(":eq(0)")},_clickHandler:function(a,b){var d=this.options;\r
+if(!d.disabled)if(a.target){a=c(a.currentTarget||b);b=a[0]===this.active[0];d.active=d.collapsible&&b?false:this.headers.index(a);if(!(this.running||!d.collapsible&&b)){var h=this.active;j=a.next();g=this.active.next();e={options:d,newHeader:b&&d.collapsible?c([]):a,oldHeader:this.active,newContent:b&&d.collapsible?c([]):j,oldContent:g};var f=this.headers.index(this.active[0])>this.headers.index(a[0]);this.active=b?c([]):a;this._toggle(j,g,e,b,f);h.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);\r
+if(!b){a.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);a.next().addClass("ui-accordion-content-active")}}}else if(d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var g=this.active.next(),\r
+e={options:d,newHeader:c([]),oldHeader:d.active,newContent:c([]),oldContent:g},j=this.active=c([]);this._toggle(j,g,e)}},_toggle:function(a,b,d,h,f){var g=this,e=g.options;g.toShow=a;g.toHide=b;g.data=d;var j=function(){if(g)return g._completed.apply(g,arguments)};g._trigger("changestart",null,g.data);g.running=b.size()===0?a.size():b.size();if(e.animated){d={};d=e.collapsible&&h?{toShow:c([]),toHide:b,complete:j,down:f,autoHeight:e.autoHeight||e.fillSpace}:{toShow:a,toHide:b,complete:j,down:f,autoHeight:e.autoHeight||\r
+e.fillSpace};if(!e.proxied)e.proxied=e.animated;if(!e.proxiedDuration)e.proxiedDuration=e.duration;e.animated=c.isFunction(e.proxied)?e.proxied(d):e.proxied;e.duration=c.isFunction(e.proxiedDuration)?e.proxiedDuration(d):e.proxiedDuration;h=c.ui.accordion.animations;var i=e.duration,k=e.animated;if(k&&!h[k]&&!c.easing[k])k="slide";h[k]||(h[k]=function(l){this.slide(l,{easing:k,duration:i||700})});h[k](d)}else{if(e.collapsible&&h)a.toggle();else{b.hide();a.show()}j(true)}b.prev().attr({"aria-expanded":"false",\r
+"aria-selected":"false",tabIndex:-1}).blur();a.prev().attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()},_completed:function(a){this.running=a?0:--this.running;if(!this.running){this.options.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""});this.toHide.removeClass("ui-accordion-content-active");if(this.toHide.length)this.toHide.parent()[0].className=this.toHide.parent()[0].className;this._trigger("change",null,this.data)}}});c.extend(c.ui.accordion,{version:"1.8.16",\r
+animations:{slide:function(a,b){a=c.extend({easing:"swing",duration:300},a,b);if(a.toHide.size())if(a.toShow.size()){var d=a.toShow.css("overflow"),h=0,f={},g={},e;b=a.toShow;e=b[0].style.width;b.width(parseInt(b.parent().width(),10)-parseInt(b.css("paddingLeft"),10)-parseInt(b.css("paddingRight"),10)-(parseInt(b.css("borderLeftWidth"),10)||0)-(parseInt(b.css("borderRightWidth"),10)||0));c.each(["height","paddingTop","paddingBottom"],function(j,i){g[i]="hide";j=(""+c.css(a.toShow[0],i)).match(/^([\d+-.]+)(.*)$/);\r
+f[i]={value:j[1],unit:j[2]||"px"}});a.toShow.css({height:0,overflow:"hidden"}).show();a.toHide.filter(":hidden").each(a.complete).end().filter(":visible").animate(g,{step:function(j,i){if(i.prop=="height")h=i.end-i.start===0?0:(i.now-i.start)/(i.end-i.start);a.toShow[0].style[i.prop]=h*f[i.prop].value+f[i.prop].unit},duration:a.duration,easing:a.easing,complete:function(){a.autoHeight||a.toShow.css("height","");a.toShow.css({width:e,overflow:d});a.complete()}})}else a.toHide.animate({height:"hide",\r
+paddingTop:"hide",paddingBottom:"hide"},a);else a.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},a)},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1E3:200})}}})})(jQuery);\r
+;/*\r
+ * jQuery UI Slider 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Slider\r
+ *\r
+ * Depends:\r
+ * jquery.ui.core.js\r
+ * jquery.ui.mouse.js\r
+ * jquery.ui.widget.js\r
+ */\r
+(function(d){d.widget("ui.slider",d.ui.mouse,{widgetEventPrefix:"slide",options:{animate:false,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null},_create:function(){var a=this,b=this.options,c=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),f=b.values&&b.values.length||1,e=[];this._mouseSliding=this._keySliding=false;this._animateOff=true;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+\r
+this.orientation+" ui-widget ui-widget-content ui-corner-all"+(b.disabled?" ui-slider-disabled ui-disabled":""));this.range=d([]);if(b.range){if(b.range===true){if(!b.values)b.values=[this._valueMin(),this._valueMin()];if(b.values.length&&b.values.length!==2)b.values=[b.values[0],b.values[0]]}this.range=d("<div></div>").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(b.range==="min"||b.range==="max"?" ui-slider-range-"+b.range:""))}for(var j=c.length;j<f;j+=1)e.push("<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>");\r
+this.handles=c.add(d(e.join("")).appendTo(a.element));this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(g){g.preventDefault()}).hover(function(){b.disabled||d(this).addClass("ui-state-hover")},function(){d(this).removeClass("ui-state-hover")}).focus(function(){if(b.disabled)d(this).blur();else{d(".ui-slider .ui-state-focus").removeClass("ui-state-focus");d(this).addClass("ui-state-focus")}}).blur(function(){d(this).removeClass("ui-state-focus")});this.handles.each(function(g){d(this).data("index.ui-slider-handle",\r
+g)});this.handles.keydown(function(g){var k=true,l=d(this).data("index.ui-slider-handle"),i,h,m;if(!a.options.disabled){switch(g.keyCode){case d.ui.keyCode.HOME:case d.ui.keyCode.END:case d.ui.keyCode.PAGE_UP:case d.ui.keyCode.PAGE_DOWN:case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:k=false;if(!a._keySliding){a._keySliding=true;d(this).addClass("ui-state-active");i=a._start(g,l);if(i===false)return}break}m=a.options.step;i=a.options.values&&a.options.values.length?\r
+(h=a.values(l)):(h=a.value());switch(g.keyCode){case d.ui.keyCode.HOME:h=a._valueMin();break;case d.ui.keyCode.END:h=a._valueMax();break;case d.ui.keyCode.PAGE_UP:h=a._trimAlignValue(i+(a._valueMax()-a._valueMin())/5);break;case d.ui.keyCode.PAGE_DOWN:h=a._trimAlignValue(i-(a._valueMax()-a._valueMin())/5);break;case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:if(i===a._valueMax())return;h=a._trimAlignValue(i+m);break;case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:if(i===a._valueMin())return;h=a._trimAlignValue(i-\r
+m);break}a._slide(g,l,h);return k}}).keyup(function(g){var k=d(this).data("index.ui-slider-handle");if(a._keySliding){a._keySliding=false;a._stop(g,k);a._change(g,k);d(this).removeClass("ui-state-active")}});this._refreshValue();this._animateOff=false},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy();\r
+return this},_mouseCapture:function(a){var b=this.options,c,f,e,j,g;if(b.disabled)return false;this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();c=this._normValueFromMouse({x:a.pageX,y:a.pageY});f=this._valueMax()-this._valueMin()+1;j=this;this.handles.each(function(k){var l=Math.abs(c-j.values(k));if(f>l){f=l;e=d(this);g=k}});if(b.range===true&&this.values(1)===b.min){g+=1;e=d(this.handles[g])}if(this._start(a,g)===false)return false;\r
+this._mouseSliding=true;j._handleIndex=g;e.addClass("ui-state-active").focus();b=e.offset();this._clickOffset=!d(a.target).parents().andSelf().is(".ui-slider-handle")?{left:0,top:0}:{left:a.pageX-b.left-e.width()/2,top:a.pageY-b.top-e.height()/2-(parseInt(e.css("borderTopWidth"),10)||0)-(parseInt(e.css("borderBottomWidth"),10)||0)+(parseInt(e.css("marginTop"),10)||0)};this.handles.hasClass("ui-state-hover")||this._slide(a,g,c);return this._animateOff=true},_mouseStart:function(){return true},_mouseDrag:function(a){var b=\r
+this._normValueFromMouse({x:a.pageX,y:a.pageY});this._slide(a,this._handleIndex,b);return false},_mouseStop:function(a){this.handles.removeClass("ui-state-active");this._mouseSliding=false;this._stop(a,this._handleIndex);this._change(a,this._handleIndex);this._clickOffset=this._handleIndex=null;return this._animateOff=false},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(a){var b;if(this.orientation==="horizontal"){b=\r
+this.elementSize.width;a=a.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{b=this.elementSize.height;a=a.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}b=a/b;if(b>1)b=1;if(b<0)b=0;if(this.orientation==="vertical")b=1-b;a=this._valueMax()-this._valueMin();return this._trimAlignValue(this._valueMin()+b*a)},_start:function(a,b){var c={handle:this.handles[b],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(b);\r
+c.values=this.values()}return this._trigger("start",a,c)},_slide:function(a,b,c){var f;if(this.options.values&&this.options.values.length){f=this.values(b?0:1);if(this.options.values.length===2&&this.options.range===true&&(b===0&&c>f||b===1&&c<f))c=f;if(c!==this.values(b)){f=this.values();f[b]=c;a=this._trigger("slide",a,{handle:this.handles[b],value:c,values:f});this.values(b?0:1);a!==false&&this.values(b,c,true)}}else if(c!==this.value()){a=this._trigger("slide",a,{handle:this.handles[b],value:c});\r
+a!==false&&this.value(c)}},_stop:function(a,b){var c={handle:this.handles[b],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(b);c.values=this.values()}this._trigger("stop",a,c)},_change:function(a,b){if(!this._keySliding&&!this._mouseSliding){var c={handle:this.handles[b],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(b);c.values=this.values()}this._trigger("change",a,c)}},value:function(a){if(arguments.length){this.options.value=\r
+this._trimAlignValue(a);this._refreshValue();this._change(null,0)}else return this._value()},values:function(a,b){var c,f,e;if(arguments.length>1){this.options.values[a]=this._trimAlignValue(b);this._refreshValue();this._change(null,a)}else if(arguments.length)if(d.isArray(arguments[0])){c=this.options.values;f=arguments[0];for(e=0;e<c.length;e+=1){c[e]=this._trimAlignValue(f[e]);this._change(null,e)}this._refreshValue()}else return this.options.values&&this.options.values.length?this._values(a):\r
+this.value();else return this._values()},_setOption:function(a,b){var c,f=0;if(d.isArray(this.options.values))f=this.options.values.length;d.Widget.prototype._setOption.apply(this,arguments);switch(a){case "disabled":if(b){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.propAttr("disabled",true);this.element.addClass("ui-disabled")}else{this.handles.propAttr("disabled",false);this.element.removeClass("ui-disabled")}break;case "orientation":this._detectOrientation();\r
+this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue();break;case "value":this._animateOff=true;this._refreshValue();this._change(null,0);this._animateOff=false;break;case "values":this._animateOff=true;this._refreshValue();for(c=0;c<f;c+=1)this._change(null,c);this._animateOff=false;break}},_value:function(){var a=this.options.value;return a=this._trimAlignValue(a)},_values:function(a){var b,c;if(arguments.length){b=this.options.values[a];\r
+return b=this._trimAlignValue(b)}else{b=this.options.values.slice();for(c=0;c<b.length;c+=1)b[c]=this._trimAlignValue(b[c]);return b}},_trimAlignValue:function(a){if(a<=this._valueMin())return this._valueMin();if(a>=this._valueMax())return this._valueMax();var b=this.options.step>0?this.options.step:1,c=(a-this._valueMin())%b;a=a-c;if(Math.abs(c)*2>=b)a+=c>0?b:-b;return parseFloat(a.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var a=\r
+this.options.range,b=this.options,c=this,f=!this._animateOff?b.animate:false,e,j={},g,k,l,i;if(this.options.values&&this.options.values.length)this.handles.each(function(h){e=(c.values(h)-c._valueMin())/(c._valueMax()-c._valueMin())*100;j[c.orientation==="horizontal"?"left":"bottom"]=e+"%";d(this).stop(1,1)[f?"animate":"css"](j,b.animate);if(c.options.range===true)if(c.orientation==="horizontal"){if(h===0)c.range.stop(1,1)[f?"animate":"css"]({left:e+"%"},b.animate);if(h===1)c.range[f?"animate":"css"]({width:e-\r
+g+"%"},{queue:false,duration:b.animate})}else{if(h===0)c.range.stop(1,1)[f?"animate":"css"]({bottom:e+"%"},b.animate);if(h===1)c.range[f?"animate":"css"]({height:e-g+"%"},{queue:false,duration:b.animate})}g=e});else{k=this.value();l=this._valueMin();i=this._valueMax();e=i!==l?(k-l)/(i-l)*100:0;j[c.orientation==="horizontal"?"left":"bottom"]=e+"%";this.handle.stop(1,1)[f?"animate":"css"](j,b.animate);if(a==="min"&&this.orientation==="horizontal")this.range.stop(1,1)[f?"animate":"css"]({width:e+"%"},\r
+b.animate);if(a==="max"&&this.orientation==="horizontal")this.range[f?"animate":"css"]({width:100-e+"%"},{queue:false,duration:b.animate});if(a==="min"&&this.orientation==="vertical")this.range.stop(1,1)[f?"animate":"css"]({height:e+"%"},b.animate);if(a==="max"&&this.orientation==="vertical")this.range[f?"animate":"css"]({height:100-e+"%"},{queue:false,duration:b.animate})}}});d.extend(d.ui.slider,{version:"1.8.16"})})(jQuery);\r
+;
\ No newline at end of file
--- /dev/null
+/*!\r
+ * Admin js\r
+ */\r
+\r
+function media_upload( button_class) {\r
+ if (!window.wp || !window.wp.media || !window.wp.media.editor || !window.wp.media.editor.send || !window.wp.media.editor.send.attachment) return; \r
+ var _custom_media = true,\r
+ _orig_send_attachment = wp.media.editor.send.attachment;\r
+ jQuery('body').on('click',button_class, function(e) {\r
+ uploadparent = jQuery(this).closest('div');\r
+ var button_id ='#'+jQuery(this).attr('id');\r
+ /* console.log(button_id); */\r
+ var self = jQuery(button_id);\r
+ var send_attachment_bkp = wp.media.editor.send.attachment;\r
+ var button = jQuery(button_id);\r
+ /* var id = button.attr('id').replace('_button', ''); */\r
+ _custom_media = true;\r
+ wp.media.editor.send.attachment = function(props, attachment){\r
+ if ( _custom_media ) {\r
+ /* jQuery('.custom_media_id').val(attachment.id); */ \r
+ uploadparent.find('.slideimages').val(attachment.url);\r
+ uploadparent.find('.imagebox').attr('src',attachment.url);\r
+ /* jQuery('.custom_media_image').attr('src',attachment.url).css('display','block'); */\r
+ } else {\r
+ return _orig_send_attachment.apply( button_id, [props, attachment] );\r
+ }\r
+ }\r
+ wp.media.editor.open(button);\r
+ return false;\r
+ });\r
+} \r
+ \r
+jQuery(document).ready(function() { \r
+\r
+var uploadparent = 0;\r
+ media_upload( '.upload_image_button' ); \r
+ \r
+// Show/hide slides\r
+ jQuery('.slidetitle').click(function() {\r
+ jQuery(this).next().toggle("fast");\r
+ });\r
+\r
+\r
+// Jquery confim window on reset to defaults\r
+jQuery('#mantra_defaults').click (function() {\r
+ if (!confirm('Reset Mantra Settings to Defaults?')) { return false;}\r
+ });\r
+\r
+// Hide or show dimmensions\r
+jQuery('#mantra_dimselect').change(function() {\r
+ if (jQuery('#mantra_dimselect option:selected').val()=="Absolute") {\r
+ jQuery('#relativedim').hide("normal");jQuery('#absolutedim').show("normal");\r
+ }\r
+ else {\r
+ jQuery('#relativedim').show("normal");jQuery('#absolutedim').hide("normal");\r
+ }\r
+ });\r
+\r
+if (jQuery('#mantra_dimselect option:selected').val()=="Absolute") {\r
+ jQuery('#relativedim').hide("normal");jQuery('#absolutedim').show("normal");}\r
+else {\r
+ jQuery('#relativedim').show("normal");jQuery('#absolutedim').hide("normal");\r
+ }\r
+\r
+\r
+// Hide or show slider settings\r
+jQuery('#mantra_slideType').change(function() {\r
+ jQuery('.slideDivs').hide("normal");\r
+ switch (jQuery('#mantra_slideType option:selected').val()) {\r
+\r
+ case "Custom Slides" :\r
+ jQuery('#sliderCustomSlides').show("normal");\r
+ break;\r
+\r
+ case "Latest Posts" :\r
+ jQuery('#sliderLatestPosts').show("normal");\r
+ break;\r
+\r
+ case "Random Posts" :\r
+ jQuery('#sliderRandomPosts').show("normal");\r
+ break;\r
+\r
+ case "Sticky Posts" :\r
+ jQuery('#sliderStickyPosts').show("normal");\r
+ break;\r
+\r
+ case "Latest Posts from Category" :\r
+ jQuery('#sliderLatestCateg').show("normal");\r
+ break;\r
+\r
+ case "Random Posts from Category" :\r
+ jQuery('#sliderRandomCateg').show("normal");\r
+ break;\r
+\r
+ case "Specific Posts" :\r
+ jQuery('#sliderSpecificPosts').show("normal");\r
+ break;\r
+\r
+ }//switch\r
+\r
+});//function\r
+\r
+jQuery('.slideDivs').hide("normal");\r
+ switch (jQuery('#mantra_slideType option:selected').val()) {\r
+\r
+ case "Custom Slides" :\r
+ jQuery('#sliderCustomSlides').show("normal");\r
+ break;\r
+\r
+ case "Latest Posts" :\r
+ jQuery('#sliderLatestPosts').show("normal");\r
+ break;\r
+\r
+ case "Random Posts" :\r
+ jQuery('#sliderRandomPosts').show("normal");\r
+ break;\r
+\r
+ case "Sticky Posts" :\r
+ jQuery('#sliderStickyPosts').show("normal");\r
+ break;\r
+\r
+ case "Latest Posts from Category" :\r
+ jQuery('#sliderLatestCateg').show("normal");\r
+ break;\r
+\r
+ case "Random Posts from Category" :\r
+ jQuery('#sliderRandomCateg').show("normal");\r
+ break;\r
+\r
+ case "Specific Posts" :\r
+ jQuery('#sliderSpecificPosts').show("normal");\r
+ break;\r
+};//switch\r
+\r
+//Slide type value\r
+$sliderNr=jQuery('#mantra_slideType').val();\r
+\r
+//Show category if a category type is selected\r
+if ($sliderNr=="Latest Posts from Category" || $sliderNr=="Random Posts from Category" )\r
+ jQuery('#slider-category').show();\r
+else jQuery('#slider-category').hide();\r
+\r
+//Show number of slides if that's the case\r
+if ($sliderNr=="Latest Posts" || $sliderNr =="Random Posts" || $sliderNr =="Sticky Posts" || $sliderNr=="Latest Posts from Category" || $sliderNr=="Random Posts from Category" )\r
+ jQuery('#slider-post-number').show();\r
+else jQuery('#slider-post-number').hide();\r
+\r
+//On change\r
+jQuery('#mantra_slideType').change(function(){\r
+ $sliderNr=jQuery('#mantra_slideType').val();\r
+//Show category if a category type is selected\r
+ if ($sliderNr=="Latest Posts from Category" || $sliderNr=="Random Posts from Category" )\r
+ jQuery('#slider-category').show();\r
+ else jQuery('#slider-category').hide();\r
+//Show number of slides if that's the case\r
+ if ($sliderNr=="Latest Posts" || $sliderNr =="Random Posts" || $sliderNr =="Sticky Posts" || $sliderNr=="Latest Posts from Category" || $sliderNr=="Random Posts from Category" )\r
+ jQuery('#slider-post-number').show();\r
+else jQuery('#slider-post-number').hide();\r
+ });//onchange funciton\r
+\r
+\r
+\r
+// Create accordion from existing settings table\r
+ jQuery('.form-table').wrap('<div>');\r
+ jQuery(function() {\r
+ jQuery( "#accordion" ).accordion({\r
+ header: 'h3',\r
+ autoHeight: false, // for jQueryUI <1.10\r
+ heightStyle: "content", // required in jQueryUI 1.10\r
+ collapsible: true,\r
+ navigation: true,\r
+ active: false\r
+ });\r
+ });\r
+\r
+\r
+ });// ready\r
+\r
+ // Change border for selecte inputs\r
+function changeBorder (idName, className) {\r
+ jQuery('.'+className).removeClass( 'checkedClass' );\r
+ jQuery('.'+className).removeClass( 'borderful' );\r
+ jQuery('#'+idName).addClass( 'borderful' );\r
+\r
+return 0;\r
+}\r
+\r
+/* FB like button */\r
+(function(d, s, id) {\r
+ var js, fjs = d.getElementsByTagName(s)[0];\r
+ if (d.getElementById(id)) return;\r
+ js = d.createElement(s); js.id = id;\r
+ js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";\r
+ fjs.parentNode.insertBefore(js, fjs);\r
+}(document, 'script', 'facebook-jssdk'));\r
+\r
+/* Twitter follow button */\r
+window.twttr = (function (d, s, id) {\r
+ var t, js, fjs = d.getElementsByTagName(s)[0];\r
+ if (d.getElementById(id)) return;\r
+ js = d.createElement(s); js.id = id;\r
+ js.src= "https://platform.twitter.com/widgets.js";\r
+ fjs.parentNode.insertBefore(js, fjs);\r
+ return window.twttr || (t = { _e: [], ready: function (f) { t._e.push(f) } });\r
+}(document, "script", "twitter-wjs"));\r
+\r
+/* FIN */
\ No newline at end of file
--- /dev/null
+<?php\r
+// Loading files for frontend\r
+\r
+// Loading Default values\r
+require_once(dirname(__FILE__) . "/defaults.php");\r
+// Loading function that generates the custom css\r
+require_once(dirname(__FILE__) . "/custom-styles.php");\r
+\r
+// Loading the admin files\r
+\r
+if( is_admin() ) {\r
+// Loading the settings arrays\r
+require_once(dirname(__FILE__) . "/settings.php");\r
+// Loading the callback functions\r
+require_once(dirname(__FILE__) . "/admin-functions.php");\r
+// Loading the sanitize funcions\r
+require_once(dirname(__FILE__) . "/sanitize.php");\r
+}\r
+\r
+// Getting the theme options and making sure defaults are used if no values are set\r
+function mantra_get_theme_options() {\r
+ global $mantra_defaults;\r
+ $optionsMantra = get_option( 'ma_options', (array)$mantra_defaults );\r
+ $optionsMantra = array_merge((array)$mantra_defaults, (array)$optionsMantra);\r
+return $optionsMantra;\r
+}\r
+\r
+$mantra_options= mantra_get_theme_options();\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;\r
+}\r
+\r
+\r
+// Hooks/Filters\r
+add_action('admin_init', 'mantra_init_fn' );\r
+add_action('admin_menu', 'mantra_add_page_fn');\r
+add_action('init', 'mantra_init');\r
+\r
+\r
+$mantra_options= mantra_get_theme_options();\r
+\r
+// Registering and enqueuing all scripts and styles for the init hook\r
+function mantra_init() {\r
+//Loading Mantra text domain into the admin section\r
+ load_theme_textdomain( 'mantra', get_template_directory_uri() . '/languages' );\r
+}\r
+\r
+// Creating the mantra subpage\r
+function mantra_add_page_fn() {\r
+$page = add_theme_page('Mantra Settings', 'Mantra Settings', 'edit_theme_options', 'mantra-page', 'mantra_page_fn');\r
+ add_action( 'admin_print_styles-'.$page, 'mantra_admin_styles' );\r
+ add_action('admin_print_scripts-'.$page, 'mantra_admin_scripts');\r
+\r
+}\r
+\r
+// Adding the styles for the Mantra admin page used when mantra_add_page_fn() is launched\r
+function mantra_admin_styles() {\r
+\r
+ wp_register_style( 'mantra-admin-style',get_template_directory_uri() . '/admin/css/admin.css' );\r
+ wp_register_style( 'jquery-ui-style',get_template_directory_uri() . '/js/jqueryui/css/ui-lightness/jquery-ui-1.8.16.custom.css' );\r
+ wp_enqueue_style( 'mantra-admin-style' );\r
+ wp_enqueue_style( 'jquery-ui-style' );\r
+\r
+}\r
+\r
+// Adding the styles for the Mantra admin page used when mantra_add_page_fn() is launched\r
+function mantra_admin_scripts() {\r
+// The farbtastic color selector already included in WP\r
+ wp_enqueue_script("farbtastic");\r
+ wp_enqueue_style( 'farbtastic' );\r
+\r
+//Jquery accordion and slider libraries alreay included in WP\r
+ wp_enqueue_script('jquery-ui-accordion');\r
+ wp_enqueue_script('jquery-ui-slider');\r
+ wp_enqueue_script('jquery-ui-tooltip');\r
+// For backwards compatibility where Mantra is installed on older versions of WP where the ui accordion and slider are not included\r
+ if (!wp_script_is('jquery-ui-accordion',$list='registered')) {\r
+ wp_register_script('cryout_accordion',get_template_directory_uri() . '/admin/js/accordion-slider.js', array('jquery') );\r
+ wp_enqueue_script('cryout_accordion');\r
+ }\r
+ // For the WP uploader\r
+ if(function_exists('wp_enqueue_media')) {\r
+ wp_enqueue_media();\r
+ }\r
+ else {\r
+ wp_enqueue_script('media-upload');\r
+ wp_enqueue_script('thickbox');\r
+ wp_enqueue_style('thickbox');\r
+ }\r
+// The js used in the admin\r
+ wp_register_script('cryout-admin-js',get_template_directory_uri() . '/admin/js/admin.js' );\r
+ wp_enqueue_script('cryout-admin-js');\r
+}\r
+\r
+// The settings sectoions. All the referenced functions are found in admin-functions.php\r
+function mantra_init_fn(){\r
+\r
+\r
+ register_setting('ma_options', 'ma_options', 'ma_options_validate' );\r
+\r
+/**************\r
+ sections\r
+**************/\r
+\r
+ add_settings_section('layout_section', __('Layout Settings','mantra'), 'cryout_section_layout_fn', __FILE__);\r
+ add_settings_section('header_section', __('Header Settings','mantra'), 'cryout_section_header_fn', __FILE__);\r
+ add_settings_section('presentation_section', __('Presentation Page','mantra'), 'cryout_section_presentation_fn', __FILE__);\r
+ add_settings_section('text_section', __('Text Settings','mantra'), 'cryout_section_text_fn', __FILE__);\r
+ add_settings_section('appereance_section',__('Color Settings','mantra') , 'cryout_section_appereance_fn', __FILE__);\r
+ add_settings_section('graphics_section', __('Graphics Settings','mantra') , 'cryout_section_graphics_fn', __FILE__);\r
+ add_settings_section('post_section', __('Post Information Settings','mantra') , 'cryout_section_post_fn', __FILE__);\r
+ add_settings_section('excerpt_section', __('Post Excerpt Settings','mantra') , 'cryout_section_excerpt_fn', __FILE__);\r
+ add_settings_section('featured_section', __('Featured Image Settings','mantra') , 'cryout_section_featured_fn', __FILE__);\r
+ add_settings_section('socials_section', __('Social Media Settings','mantra') , 'cryout_section_social_fn', __FILE__);\r
+ add_settings_section('misc_section', __('Miscellaneous Settings','mantra') , 'cryout_section_misc_fn', __FILE__);\r
+\r
+/*** layout ***/\r
+ add_settings_field('mantra_side', __('Main Layout','mantra') , 'cryout_setting_side_fn', __FILE__, 'layout_section');\r
+ add_settings_field('mantra_sidewidth', __('Content / Sidebar Width','mantra') , 'cryout_setting_sidewidth_fn', __FILE__, 'layout_section');\r
+ add_settings_field('mantra_mobile', __('Responsiveness','mantra') , 'cryout_setting_mobile_fn', __FILE__, 'layout_section');\r
+/*** presentation ***/\r
+\r
+ add_settings_field('mantra_frontpage', __('Enable Presentation Page','mantra') , 'cryout_setting_frontpage_fn', __FILE__, 'presentation_section');\r
+ add_settings_field('mantra_frontposts', __('Show Posts on Presentation Page','mantra') , 'cryout_setting_frontposts_fn', __FILE__, 'presentation_section');\r
+ add_settings_field('mantra_frontslider', __('Slider Settings','mantra') , 'cryout_setting_frontslider_fn', __FILE__, 'presentation_section');\r
+ add_settings_field('mantra_frontslider2', __('Slides','mantra') , 'cryout_setting_frontslider2_fn', __FILE__, 'presentation_section');\r
+ add_settings_field('mantra_frontcolumns', __('Presentation Page Columns','mantra') , 'cryout_setting_frontcolumns_fn', __FILE__, 'presentation_section');\r
+ add_settings_field('mantra_fronttext', __('Extras','mantra') , 'cryout_setting_fronttext_fn', __FILE__, 'presentation_section');\r
+\r
+/*** header ***/\r
+ add_settings_field('mantra_hheight', __('Header Height','mantra') , 'cryout_setting_hheight_fn', __FILE__, 'header_section');\r
+ add_settings_field('mantra_himage', __('Header Image','mantra') , 'cryout_setting_himage_fn', __FILE__, 'header_section');\r
+ add_settings_field('mantra_siteheader', __('Site Header','mantra') , 'cryout_setting_siteheader_fn', __FILE__, 'header_section');\r
+ add_settings_field('mantra_logoupload', __('Custom Logo Upload','mantra') , 'cryout_setting_logoupload_fn', __FILE__, 'header_section');\r
+ add_settings_field('mantra_headermargin', __('Header Spacing','mantra') , 'cryout_setting_headermargin_fn', __FILE__, 'header_section');\r
+ add_settings_field('mantra_menurounded', __('Rounded Menu Corners','mantra') , 'cryout_setting_menurounded_fn', __FILE__, 'header_section');\r
+ add_settings_field('mantra_favicon', __('FavIcon Upload','mantra') , 'cryout_setting_favicon_fn', __FILE__, 'header_section');\r
+/*** text ***/\r
+ add_settings_field('mantra_fontfamily', __('General Font','mantra') , 'cryout_setting_fontfamily_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_fontsize', __('General Font Size','mantra') , 'cryout_setting_fontsize_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_fonttitle', __('Post Title Font ','mantra') , 'cryout_setting_fonttitle_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_headfontsize', __('Post Title Font Size','mantra') , 'cryout_setting_headfontsize_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_fontside', __('Sidebar Font','mantra') , 'cryout_setting_fontside_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_sidefontsize', __('SideBar Font Size','mantra') , 'cryout_setting_sidefontsize_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_fontsubheader', __('Headings Font','mantra') , 'cryout_setting_fontsubheader_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_textalign', __('Force Text Align','mantra') , 'cryout_setting_textalign_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_parmargin', __('Paragraph spacing','mantra') , 'cryout_setting_parmargin_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_parindent', __('Paragraph indent','mantra') , 'cryout_setting_parindent_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_headerindent', __('Header indent','mantra') , 'cryout_setting_headerindent_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_lineheight', __('Line Height','mantra') , 'cryout_setting_lineheight_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_wordspace', __('Word spacing','mantra') , 'cryout_setting_wordspace_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_letterspace', __('Letter spacing','mantra') , 'cryout_setting_letterspace_fn', __FILE__, 'text_section');\r
+ add_settings_field('mantra_textshadow', __('Text shadow','mantra') , 'cryout_setting_textshadow_fn', __FILE__, 'text_section');\r
+/*** appereance ***/\r
+ add_settings_field('mantra_sitebackground', __('Background Image','mantra') , 'cryout_setting_sitebackground_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_backcolor', __('Background Color','mantra') , 'cryout_setting_backcolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_headercolor', __('Header (Banner and Menu) Background Color','mantra') , 'cryout_setting_headercolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_contentbg', __('Content Background Color','mantra') , 'cryout_setting_contentbg_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_menubg', __('Menu Items Background Color','mantra') , 'cryout_setting_menubg_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_s1bg', __('First Sidebar Background Color','mantra') , 'cryout_setting_first_sidebar_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_s2bg', __('Second Sidebar Background Color','mantra') , 'cryout_setting_second_sidebar_fn', __FILE__, 'appereance_section');\r
+\r
+ add_settings_field('mantra_titlecolor', __('Site Title Color','mantra') , 'cryout_setting_titlecolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_descriptioncolor', __('Site Description Color','mantra') , 'cryout_setting_descriptioncolor_fn', __FILE__, 'appereance_section');\r
+\r
+ add_settings_field('mantra_contentcolor', __('Content Text Color','mantra') , 'cryout_setting_contentcolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_linkscolor', __('Links Color','mantra') , 'cryout_setting_linkscolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_hovercolor', __('Links Hover Color','mantra') , 'cryout_setting_hovercolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_headtextcolor',__( 'Post Title Color','mantra') , 'cryout_setting_headtextcolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_headtexthover', __('Post Title Hover Color','mantra') , 'cryout_setting_headtexthover_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_sideheadbackcolor', __('Sidebar Header Background Color','mantra') , 'cryout_setting_sideheadbackcolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_sideheadtextcolor', __('Sidebar Header Text Color','mantra') , 'cryout_setting_sideheadtextcolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_prefootercolor', __('Footer Widget Background Color','mantra') , 'cryout_setting_prefootercolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_footercolor', __('Footer Background Color','mantra') , 'cryout_setting_footercolor_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_footerheader', __('Footer Widget Header Text Color','mantra') , 'cryout_setting_footerheader_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_footertext', __('Footer Widget Link Color','mantra') , 'cryout_setting_footertext_fn', __FILE__, 'appereance_section');\r
+ add_settings_field('mantra_footerhover', __('Footer Widget Hover Color','mantra') , 'cryout_setting_footerhover_fn', __FILE__, 'appereance_section');\r
+/*** graphics ***/\r
+ add_settings_field('mantra_breadcrumbs', __('Breadcrumbs','mantra') , 'cryout_setting_breadcrumbs_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_pagination', __('Pagination','mantra') , 'cryout_setting_pagination_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_menualign', __('Main Menu Alignment','mantra') , 'cryout_setting_menualign_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_image', __('Post Images Border','mantra') , 'cryout_setting_image_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_caption', __('Caption Border','mantra') , 'cryout_setting_caption_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_pin', __('Caption Pin','mantra') , 'cryout_setting_pin_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_sidebullet', __('Sidebar Menu Bullets','mantra') , 'cryout_setting_sidebullet_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_metaback', __('Meta Area Background','mantra') , 'cryout_setting_metaback_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_postseparator', __('Post Separator','mantra') , 'cryout_setting_postseparator_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_contentlist', __('Content List Bullets','mantra') , 'cryout_setting_contentlist_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_pagetitle', __('Page Titles','mantra') , 'cryout_setting_pagetitle_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_categetitle', __('Category Page Titles','mantra') , 'cryout_setting_categtitle_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_tables', __('Hide Tables','mantra') , 'cryout_setting_tables_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_backtop', __('Back to Top button','mantra') , 'cryout_setting_backtop_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_comtext', __('Text Under Comments','mantra') , 'cryout_setting_comtext_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_comclosed', __('Comments are closed text','mantra') , 'cryout_setting_comclosed_fn', __FILE__, 'graphics_section');\r
+ add_settings_field('mantra_comoff', __('Comments off','mantra') , 'cryout_setting_comoff_fn', __FILE__, 'graphics_section');\r
+/*** post metas***/\r
+ add_settings_field('mantra_postcomlink', __('Post Comments Link','mantra') , 'cryout_setting_postcomlink_fn', __FILE__, 'post_section');\r
+ add_settings_field('mantra_postdate', __('Post Date','mantra') , 'cryout_setting_postdate_fn', __FILE__, 'post_section');\r
+ add_settings_field('mantra_posttime', __('Post Time','mantra') , 'cryout_setting_posttime_fn', __FILE__, 'post_section');\r
+ add_settings_field('mantra_postauthor', __('Post Author','mantra') , 'cryout_setting_postauthor_fn', __FILE__, 'post_section');\r
+ add_settings_field('mantra_postcateg', __('Post Category','mantra') , 'cryout_setting_postcateg_fn', __FILE__, 'post_section');\r
+ add_settings_field('mantra_postmetas', __('Meta Bar','mantra') , 'cryout_setting_postmetas_fn', __FILE__, 'post_section');\r
+ add_settings_field('mantra_posttag', __('Post Tags','mantra') , 'cryout_setting_posttag_fn', __FILE__, 'post_section');\r
+ add_settings_field('mantra_postbook', __('Post Permalink','mantra') , 'cryout_setting_postbook_fn', __FILE__, 'post_section');\r
+/*** post exceprts***/\r
+ add_settings_field('mantra_excerpthome', __('Post Excerpts on Home Page','mantra') , 'cryout_setting_excerpthome_fn', __FILE__, 'excerpt_section');\r
+ add_settings_field('mantra_excerptsticky', __('Affect Sticky Posts','mantra') , 'cryout_setting_excerptsticky_fn', __FILE__, 'excerpt_section');\r
+ add_settings_field('mantra_excerptarchive', __('Post Excerpts on Archive and Category Pages','mantra') , 'cryout_setting_excerptarchive_fn', __FILE__, 'excerpt_section');\r
+ add_settings_field('mantra_excerptwords', __('Number of Words for Post Excerpts ','mantra') , 'cryout_setting_excerptwords_fn', __FILE__, 'excerpt_section');\r
+ add_settings_field('mantra_magazinelayout', __('Magazine Layout','mantra') , 'cryout_setting_magazinelayout_fn', __FILE__, 'excerpt_section');\r
+ add_settings_field('mantra_excerptdots', __('Excerpt suffix','mantra') , 'cryout_setting_excerptdots_fn', __FILE__, 'excerpt_section');\r
+ add_settings_field('mantra_excerptcont', __('Continue reading link text ','mantra') , 'cryout_setting_excerptcont_fn', __FILE__, 'excerpt_section');\r
+ add_settings_field('mantra_excerpttags', __('HTML tags in Excerpts','mantra') , 'cryout_setting_excerpttags_fn', __FILE__, 'excerpt_section');\r
+/*** featured ***/\r
+ add_settings_field('mantra_fpost', __('Featured Images as POST Thumbnails ','mantra') , 'cryout_setting_fpost_fn', __FILE__, 'featured_section');\r
+ add_settings_field('mantra_fauto', __('Auto Select Images From Posts ','mantra') , 'cryout_setting_fauto_fn', __FILE__, 'featured_section');\r
+ add_settings_field('mantra_falign', __('Thumbnails Alignment ','mantra') , 'cryout_setting_falign_fn', __FILE__, 'featured_section');\r
+ add_settings_field('mantra_fsize', __('Thumbnails Size ','mantra') , 'cryout_setting_fsize_fn', __FILE__, 'featured_section');\r
+ add_settings_field('mantra_fheader', __('Featured Images as HEADER Images ','mantra') , 'cryout_setting_fheader_fn', __FILE__, 'featured_section');\r
+/*** socials ***/\r
+ add_settings_field('mantra_socials1', __('Link nr. 1','mantra') , 'cryout_setting_socials1_fn', __FILE__, 'socials_section');\r
+ add_settings_field('mantra_socials2', __('Link nr. 2','mantra') , 'cryout_setting_socials2_fn', __FILE__, 'socials_section');\r
+ add_settings_field('mantra_socials3', __('Link nr. 3','mantra') , 'cryout_setting_socials3_fn', __FILE__, 'socials_section');\r
+ add_settings_field('mantra_socials4', __('Link nr. 4','mantra') , 'cryout_setting_socials4_fn', __FILE__, 'socials_section');\r
+ add_settings_field('mantra_socials5', __('Link nr. 5','mantra') , 'cryout_setting_socials5_fn', __FILE__, 'socials_section');\r
+ add_settings_field('mantra_socialshow', __('Socials display','mantra') , 'cryout_setting_socialsdisplay_fn', __FILE__, 'socials_section');\r
+/*** misc ***/\r
+ add_settings_field('mantra_seo', __('SEO Settings','mantra') , 'cryout_setting_seo_fn', __FILE__, 'misc_section');\r
+ add_settings_field('mantra_copyright', __('Custom Footer Text','mantra') , 'cryout_setting_copyright_fn', __FILE__, 'misc_section');\r
+ add_settings_field('mantra_customcss', __('Custom CSS','mantra') , 'cryout_setting_customcss_fn', __FILE__, 'misc_section');\r
+ add_settings_field('mantra_customjs', __('Custom JavaScript','mantra') , 'cryout_setting_customjs_fn', __FILE__, 'misc_section');\r
+}\r
+\r
+ // Display the admin options page\r
+function mantra_page_fn() {\r
+ // Load the import form page if the import button has been pressed\r
+ if (isset($_POST['mantra_import'])) {\r
+ mantra_import_form();\r
+ return;\r
+ }\r
+ // Load the import form page after upload button has been pressed\r
+ if (isset($_POST['mantra_import_confirmed'])) {\r
+ mantra_import_file();\r
+ return;\r
+ }\r
+\r
+ if (!current_user_can('edit_theme_options')) {\r
+ wp_die( __('Sorry, but you do not have sufficient permissions to access this page.','mantra') );\r
+ }?>\r
+\r
+\r
+<div class="wrap"><!-- Admin wrap page -->\r
+\r
+<div id="lefty"><!-- Left side of page - the options area -->\r
+ <div>\r
+<div id="admin_header"><img src="<?php echo get_template_directory_uri() . '/admin/images/mantra-logo.png' ?>" /> </div>\r
+\r
+<div id="admin_links">\r
+ <a target="_blank" href="http://www.cryoutcreations.eu/mantra">Mantra Homepage</a>\r
+ <a target="_blank" href="http://www.cryoutcreations.eu/forum">Support</a>\r
+ <a target="_blank" href="http://www.cryoutcreations.eu">Cryout Creations</a>\r
+</div>\r
+ <div style="clear: both;"></div>\r
+</div>\r
+\r
+<?php if ( isset( $_GET['settings-updated'] ) ) {\r
+ echo "<div class='updated fade' style='clear:left;'><p>";\r
+ echo _e('Mantra settings updated successfully.','mantra');\r
+ echo "</p></div>";\r
+} ?>\r
+\r
+<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.\r
+The Parabola Settings page cannot function without jQuery. </em></div>\r
+\r
+ <div id="main-options">\r
+ <form name="mantra_form" action="options.php" method="post" enctype="multipart/form-data">\r
+ <div id="accordion">\r
+ <?php settings_fields('ma_options'); ?>\r
+ <?php do_settings_sections(__FILE__); ?>\r
+ </div>\r
+ <div id="submitDiv">\r
+ <br>\r
+ <input class="button" name="ma_options[mantra_submit]" type="submit" style="float:right;" value="<?php _e('Save Changes','mantra'); ?>" />\r
+ <input class="button" name="ma_options[mantra_defaults]" id="mantra_defaults" type="submit" style="float:left;" value="<?php _e('Reset to Defaults','mantra'); ?>" />\r
+ </div>\r
+ </form>\r
+ <?php $mantra_theme_data = get_transient( 'mantra_theme_info'); ?>\r
+ <span id="version">\r
+ Mantra v <?php echo MANTRA_VERSION; ?> by <a href="http://www.cryoutcreations.eu" target="_blank">Cryout Creations</a>\r
+ </span>\r
+ </div><!-- main-options -->\r
+</div><!--lefty -->\r
+\r
+\r
+<div id="righty" ><!-- Right side of page - Coffee, RSS tips and others -->\r
+ <div class="postbox donate">\r
+ <h3 class="hndle"> Coffee Break </h3>\r
+ <div class="inside"><?php echo "<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we spend night after night improving the Mantra Theme. We fix a lot of bugs (that we previously created); we add more and more customization options while also trying to keep things as simple as possible; then... we might play a game or two but rest assured that we return to read and (in most cases) reply to your late night emails and comments, take notes and draw dashboards of things to implement in future versions.</p>\r
+ <p>So you might ask yourselves: <i>How do they do it? How can they keep so fresh after all that hard labor for that darned theme? </i> Well folks, it's simple. We drink coffee. Industrial quantities of hot boiling coffee. We love it! So if you want to help with the further development of the Mantra Theme...</p>"; ?>\r
+ <div style="display:block;float:none;margin:0 auto;text-align:center;">\r
+\r
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">\r
+ <input type="hidden" name="cmd" value="_donations">\r
+ <input type="hidden" name="business" value="KYL26KAN4PJC8">\r
+ <input type="hidden" name="item_name" value="Cryout Creations / Mantra Theme donation">\r
+ <input type="hidden" name="currency_code" value="EUR">\r
+ <input type="hidden" name="bn" value="PP-DonationsBF:btn_donate_SM.gif:NonHosted">\r
+ <input type="image" src="<?php echo get_template_directory_uri() . '/admin/images/coffee.png' ?>" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">\r
+ <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">\r
+ </form>\r
+\r
+ </div>\r
+ <p>Or socially smother, caress and embrace us:</p>\r
+ <div style="display:table;float:none;margin:0 auto;">\r
+ <div id="fb-root"></div><div class="fb-like" data-href="https://www.facebook.com/CryoutCreations" data-layout="button" data-action="like" data-show-faces="false" data-share="false"></div>\r
+ <a href="https://twitter.com/cryoutcreations" class="twitter-follow-button" data-show-count="false" data-show-screen-name="false">Follow @cryoutcreations</a>\r
+ <script src="https://apis.google.com/js/platform.js" async defer></script> <div class="g-plusone" data-href="https://plus.google.com/+CryoutcreationsEuCR2" data-size="medium" data-annotation="none"></div>\r
+ </div>\r
+ </div><!-- inside -->\r
+ </div><!-- donate -->\r
+\r
+ <div class="postbox export non-essential-option" style="overflow:hidden;">\r
+ <div class="head-wrap">\r
+ <div title="Click to toggle" class="handlediv"><br /></div>\r
+ <h3 class="hndle"><?php _e( 'Import/Export Settings', 'mantra' ); ?></h3>\r
+ </div><!-- head-wrap -->\r
+ <div class="panel-wrap inside">\r
+ <form action="" method="post">\r
+ <?php wp_nonce_field('mantra-export', 'mantra-export'); ?>\r
+ <input type="hidden" name="mantra_export" value="true" />\r
+ <input type="submit" class="button" value="<?php _e('Export Theme options', 'mantra'); ?>" />\r
+ <p style="display:block;float:left;clear:left;margin-top:0;"><?php _e("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!","mantra"); ?></p>\r
+ </form>\r
+ <br />\r
+ <form action="" method="post">\r
+ <input type="hidden" name="mantra_import" value="true" />\r
+ <input type="submit" class="button" value="<?php _e('Import Theme options', 'mantra'); ?>" />\r
+ <p style="display:block;float:left;clear:left;margin-top:0;"><?php _e(" 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.","mantra"); ?></p>\r
+ </form>\r
+ </div><!-- inside -->\r
+ </div><!-- export -->\r
+\r
+\r
+ <div class="postbox news" >\r
+ <div>\r
+ <h3 class="hndle"><?php _e( 'Mantra Latest News', 'mantra' ); ?></h3>\r
+ </div>\r
+ <div class="panel-wrap inside" style="height:200px;overflow:auto;">\r
+ <?php\r
+ $mantra_news = fetch_feed( array( 'http://www.cryoutcreations.eu/cat/mantra/feed') );\r
+ if ( ! is_wp_error( $mantra_news ) ) {\r
+ $maxitems = $mantra_news->get_item_quantity( 10 );\r
+ $news_items = $mantra_news->get_items( 0, $maxitems );\r
+ }\r
+ ?>\r
+ <ul class="news-list">\r
+ <?php if ( $maxitems == 0 ) : echo '<li>' . __( 'No news items.', 'mantra' ) . '</li>'; else :\r
+ foreach( $news_items as $news_item ) : ?>\r
+ <li>\r
+ <a class="news-header" href='<?php echo esc_url( $news_item->get_permalink() ); ?>'><?php echo esc_html( $news_item->get_title() ); ?></a><br />\r
+ <span class="news-item-date"><?php _e('Posted on','mantra');echo $news_item->get_date(' j F Y'); ?></span><br />\r
+ <a class="news-read" href='<?php echo esc_url( $news_item->get_permalink() ); ?>'>Read more »</a>\r
+ </li>\r
+ <?php endforeach; endif; ?>\r
+ </ul>\r
+ </div><!-- inside -->\r
+ </div><!-- news -->\r
+\r
+\r
+</div><!-- righty -->\r
+</div><!-- wrap -->\r
+\r
+<script>\r
+\r
+function startfarb(a,b) {\r
+ jQuery(b).css('display','none');\r
+ jQuery(b).farbtastic(a);\r
+\r
+ jQuery(a).click(function() {\r
+ if(jQuery(b).css('display') == 'none') {\r
+ jQuery(b).parents('div:eq(0)').addClass('ui-accordion-content-overflow');\r
+ jQuery(b).css('display','inline-block').hide().show(300);\r
+ }\r
+ });\r
+\r
+ jQuery(document).mousedown( function() {\r
+ jQuery(b).hide(700, function(){ jQuery(b).parents('div:eq(0)').removeClass('ui-accordion-content-overflow'); });\r
+ // todo: find a better way to remove class after the fade on IEs\r
+ });\r
+}\r
+\r
+function tooltip_terain() {\r
+jQuery('#accordion small').parent('div').append('<a class="tooltip"><img src="<?php echo get_template_directory_uri(); ?>/images/icon-tooltip.png" /></a>').\r
+ each(function() {\r
+ //jQuery(this).children('a.tooltip').attr('title',jQuery(this).children('small').html() );\r
+ var tooltip_info = jQuery(this).children('small').html();\r
+ jQuery(this).children('.tooltip').tooltip({content : tooltip_info});\r
+ jQuery(this).children('.tooltip').tooltip( "option", "items", "a" );\r
+ //jQuery(this).children('.tooltip').tooltip( "option", "show", "false");\r
+ jQuery(this).children('.tooltip').tooltip( "option", "hide", "false");\r
+ jQuery(this).children('small').remove();\r
+ if (!jQuery(this).hasClass('slmini') && !jQuery(this).hasClass('slidercontent') && !jQuery(this).hasClass('slideDivs')) jQuery(this).addClass('tooltip_div');\r
+ });\r
+}\r
+\r
+function coloursel(el){\r
+ var id = "#"+jQuery(el).attr('id');\r
+ jQuery(id+"2").hide();\r
+ var bgcolor = jQuery(id).val();\r
+ if (bgcolor <= "#666666") { jQuery(id).css('color','#ffffff'); } else { jQuery(id).css('color','#000000'); };\r
+ jQuery(id).css('background-color',jQuery(id).val());\r
+}\r
+\r
+function vercomp(ver, req) {\r
+ var v = ver.split('.');\r
+ var q = req.split('.');\r
+ for (var i = 0; i < v.length; ++i) {\r
+ if (q.length == i) { return true; } // v is bigger \r
+ if (parseInt(v[i]) == parseInt(q[i])) { continue; } // nothing to do here, move along\r
+ else if (parseInt(v[i]) > parseInt(q[i])) { return true; } // v is bigger\r
+ else { return false; } // q is bigger\r
+ }\r
+ if (v.length != q.length) { return false; } // q is bigger\r
+ return true; // v = q;\r
+}\r
+\r
+jQuery(document).ready(function(){\r
+ //var _jQueryVer = parseFloat('.'+jQuery().jquery.replace(/\./g, '')); // jQuery version as float, eg: 0.183\r
+ //var _jQueryUIVer = parseFloat('.'+jQuery.ui.version.replace(/\./g, '')); // jQuery UI version as float, eg: 0.192\r
+ //if (_jQueryUIVer >= 0.190) {\r
+ if (vercomp(jQuery.ui.version,"1.9.0")) {\r
+ // tooltip function is included since jQuery UI 1.9.0\r
+ tooltip_terain();\r
+ startfarb("#mantra_backcolor","#mantra_backcolor2");\r
+ startfarb("#mantra_headercolor","#mantra_headercolor2");\r
+ startfarb("#mantra_contentbg","#mantra_contentbg2");\r
+ startfarb("#mantra_menubg","#mantra_menubg2");\r
+ startfarb("#mantra_s1bg","#mantra_s1bg2");\r
+ startfarb("#mantra_s2bg","#mantra_s2bg2");\r
+ startfarb("#mantra_prefootercolor","#mantra_prefootercolor2");\r
+ startfarb("#mantra_footercolor","#mantra_footercolor2");\r
+ startfarb("#mantra_titlecolor","#mantra_titlecolor2");\r
+ startfarb("#mantra_descriptioncolor","#mantra_descriptioncolor2");\r
+ startfarb("#mantra_contentcolor","#mantra_contentcolor2");\r
+ startfarb("#mantra_linkscolor","#mantra_linkscolor2");\r
+ startfarb("#mantra_hovercolor","#mantra_hovercolor2");\r
+ startfarb("#mantra_headtextcolor","#mantra_headtextcolor2");\r
+ startfarb("#mantra_headtexthover","#mantra_headtexthover2");\r
+ startfarb("#mantra_sideheadbackcolor","#mantra_sideheadbackcolor2");\r
+ startfarb("#mantra_sideheadtextcolor","#mantra_sideheadtextcolor2");\r
+ startfarb("#mantra_footerheader","#mantra_footerheader2");\r
+ startfarb("#mantra_footertext","#mantra_footertext2");\r
+ startfarb("#mantra_footerhover","#mantra_footerhover2");\r
+ startfarb("#mantra_fpsliderbordercolor","#mantra_fpsliderbordercolor2");\r
+ startfarb("#mantra_fronttitlecolor","#mantra_fronttitlecolor2"); \r
+ } else {\r
+ jQuery("#mantra_backcolor").addClass('colorthingy');\r
+ jQuery("#mantra_headercolor").addClass('colorthingy');\r
+ jQuery("#mantra_contentbg").addClass('colorthingy');\r
+ jQuery("#mantra_menubg").addClass('colorthingy');\r
+ jQuery("#mantra_s1bg").addClass('colorthingy');\r
+ jQuery("#mantra_s2bg").addClass('colorthingy');\r
+ jQuery("#mantra_prefootercolor").addClass('colorthingy');\r
+ jQuery("#mantra_footercolor").addClass('colorthingy');\r
+ jQuery("#mantra_titlecolor").addClass('colorthingy');\r
+ jQuery("#mantra_descriptioncolor").addClass('colorthingy');\r
+ jQuery("#mantra_contentcolor").addClass('colorthingy');\r
+ jQuery("#mantra_linkscolor").addClass('colorthingy');\r
+ jQuery("#mantra_hovercolor").addClass('colorthingy');\r
+ jQuery("#mantra_headtextcolor").addClass('colorthingy');\r
+ jQuery("#mantra_sideheadbackcolor").addClass('colorthingy');\r
+ jQuery("#mantra_sideheadtextcolor").addClass('colorthingy');\r
+ jQuery("#mantra_footerheader").addClass('colorthingy');\r
+ jQuery("#mantra_footertext").addClass('colorthingy');\r
+ jQuery("#mantra_headtexthover").addClass('colorthingy');\r
+ jQuery("#mantra_footerhover").addClass('colorthingy');\r
+ jQuery("#mantra_fpsliderbordercolor").addClass('colorthingy');\r
+ jQuery("#mantra_fronttitlecolor").addClass('colorthingy');\r
+ jQuery('.colorthingy').each(function(){\r
+ id = "#"+jQuery(this).attr('id');\r
+ jQuery(this).on('keyup',function(){coloursel(this)});\r
+ coloursel(this);\r
+ });\r
+ // inform the user about the old partially unsupported version\r
+ jQuery("#jsAlert").after("<div class='updated fade' style='clear:left; font-size: 16px;'><p>Mantra has detected you are running an old version of Wordpress (jQuery) and will be running in compatibility mode. Some features may not work correctly. Consider updating your Wordpress to the latest version.</p></div>");\r
+ }\r
+\r
+});\r
+\r
+jQuery('#jsAlert').hide();\r
+</script>\r
+\r
+<?php } // mantra_page_fn()\r
+?>\r
--- /dev/null
+<?php\r
+\r
+/*\r
+ *\r
+ * Settings arrays\r
+ *\r
+ */\r
+\r
+/* Font family arrays */\r
+\r
+ $fontSans = array("Segoe UI, Arial, sans-serif",\r
+ "Verdana, Geneva, sans-serif " ,\r
+ "Geneva, sans-serif ",\r
+ "Helvetica Neue, Arial, Helvetica, sans-serif",\r
+ "Helvetica, sans-serif" ,\r
+ "Century Gothic, AppleGothic, sans-serif",\r
+ "Futura, Century Gothic, AppleGothic, sans-serif",\r
+ "Calibri, Arian, sans-serif",\r
+ "Myriad Pro, Myriad,Arial, sans-serif",\r
+ "Trebuchet MS, Arial, Helvetica, sans-serif" ,\r
+ "Gill Sans, Calibri, Trebuchet MS, sans-serif",\r
+ "Impact, Haettenschweiler, Arial Narrow Bold, sans-serif ",\r
+ "Tahoma, Geneva, sans-serif" ,\r
+ "Arial, Helvetica, sans-serif" ,\r
+ "Arial Black, Gadget, sans-serif",\r
+ "Lucida Sans Unicode, Lucida Grande, sans-serif ");\r
+\r
+ $fontSerif = array("Georgia, Times New Roman, Times, serif" ,\r
+ "Times New Roman, Times, serif",\r
+ "Cambria, Georgia, Times, Times New Roman, serif",\r
+ "Palatino Linotype, Book Antiqua, Palatino, serif",\r
+ "Book Antiqua, Palatino, serif",\r
+ "Palatino, serif",\r
+ "Baskerville, Times New Roman, Times, serif",\r
+ "Bodoni MT, serif",\r
+ "Copperplate Light, Copperplate Gothic Light, serif",\r
+ "Garamond, Times New Roman, Times, serif");\r
+\r
+ $fontMono = array( "Courier New, Courier, monospace" ,\r
+ "Lucida Console, Monaco, monospace",\r
+ "Consolas, Lucida Console, Monaco, monospace",\r
+ "Monaco, monospace");\r
+\r
+ $fontCursive = array( "Lucida Casual, Comic Sans MS , cursive ",\r
+ "Brush Script MT,Phyllis,Lucida Handwriting,cursive",\r
+ "Phyllis,Lucida Handwriting,cursive",\r
+ "Lucida Handwriting,cursive",\r
+ "Comic Sans MS, cursive");\r
+\r
+/* Social media links */\r
+\r
+ $socialNetworks = array ("Amazon", "Dailymotion", "Delicious", "DeviantArt", "Digg", "Etsy", "Facebook", "Flickr", \r
+ "Google", "GoodReads", "GooglePlus", "IMDb", "Instagram", "LastFM", "LinkedIn", "Mail", \r
+ "MySpace", "Picasa", "Pinterest", "Reddit", "RSS", "Skype", "Steam", "SoundCloud", \r
+ "StumbleUpon", "Technorati", "Tumblr", "Twitch", "Twitter", "Vimeo", "VK", "WordPress",\r
+ "Xing", "Yahoo", "Yelp", "YouTube" );\r
+\r
+\r
+\r
+\r
+if (!function_exists ('ma_options_validate') ) :\r
+/*\r
+ *\r
+ * Validate user data\r
+ *\r
+ */\r
+function ma_options_validate($input) {\r
+global $mantra_defaults;\r
+ // Sanitize the texbox input\r
+\r
+/*** 1 ***/\r
+ if(isset($input['mantra_sidewidth']) && is_numeric($input['mantra_sidewidth']) && $input['mantra_sidewidth']>=500 && $input['mantra_sidewidth'] <=1760) {} else {$input['mantra_sidewidth']=$mantra_defaults['mantra_sidewidth']; }\r
+ if(isset($input['mantra_sidebar']) && is_numeric($input['mantra_sidebar']) && $input['mantra_sidebar']>=220 && $input['mantra_sidebar'] <=800) {} else {$input['mantra_sidebar']=$mantra_defaults['mantra_sidebar']; }\r
+\r
+ if(isset($input['mantra_sidewidthRel']) && is_numeric($input['mantra_sidewidthRel']) && $input['mantra_sidewidthRel']>=40 && $input['mantra_sidewidthRel'] <=80) {} else {$input['mantra_sidewidthRel']=$mantra_defaults['mantra_sidewidthRel']; }\r
+ if(isset($input['mantra_sidebarRel']) && is_numeric($input['mantra_sidebarRel']) && $input['mantra_sidebarRel']>=20 && $input['mantra_sidebarRel'] <=50) {} else {$input['mantra_sidebarRel']=$mantra_defaults['mantra_sidebarRel']; }\r
+\r
+ if (isset($input['mantra_zoom'])) $input['mantra_zoom'] = "1"; else $input['mantra_zoom'] = 0;\r
+\r
+ $input['mantra_hheight'] = intval(wp_kses_data($input['mantra_hheight']));\r
+\r
+ $input['mantra_copyright'] = trim(wp_kses_post($input['mantra_copyright']));\r
+\r
+ $input['mantra_backcolor'] = wp_kses_data($input['mantra_backcolor']);\r
+ $input['mantra_headercolor'] = wp_kses_data($input['mantra_headercolor']);\r
+ $input['mantra_contentbg'] = wp_kses_data($input['mantra_contentbg']);\r
+ $input['mantra_menubg'] = wp_kses_data($input['mantra_menubg']);\r
+ $input['mantra_s1bg'] = wp_kses_data($input['mantra_s1bg']);\r
+ $input['mantra_s2bg'] = wp_kses_data($input['mantra_s2bg']);\r
+ $input['mantra_prefootercolor'] = wp_kses_data($input['mantra_prefootercolor']);\r
+ $input['mantra_footercolor'] = wp_kses_data($input['mantra_footercolor']);\r
+ $input['mantra_titlecolor'] = wp_kses_data($input['mantra_titlecolor']);\r
+ $input['mantra_descriptioncolor'] = wp_kses_data($input['mantra_descriptioncolor']);\r
+ $input['mantra_contentcolor'] = wp_kses_data($input['mantra_contentcolor']);\r
+ $input['mantra_linkscolor'] = wp_kses_data($input['mantra_linkscolor']);\r
+ $input['mantra_hovercolor'] = wp_kses_data($input['mantra_hovercolor']);\r
+ $input['mantra_headtextcolor'] = wp_kses_data($input['mantra_headtextcolor']);\r
+ $input['mantra_headtexthover'] = wp_kses_data($input['mantra_headtexthover']);\r
+ $input['mantra_sideheadbackcolor'] = wp_kses_data($input['mantra_sideheadbackcolor']);\r
+ $input['mantra_sideheadtextcolor'] = wp_kses_data($input['mantra_sideheadtextcolor']);\r
+ $input['mantra_footerheader'] = wp_kses_data($input['mantra_footerheader']);\r
+ $input['mantra_footertext'] = wp_kses_data($input['mantra_footertext']);\r
+ $input['mantra_footerhover'] = wp_kses_data($input['mantra_footerhover']);\r
+\r
+ $input['mantra_excerptwords'] = intval(wp_kses_data($input['mantra_excerptwords']));\r
+ $input['mantra_excerptdots'] = wp_kses_data($input['mantra_excerptdots']);\r
+ $input['mantra_excerptcont'] = wp_kses_data($input['mantra_excerptcont']);\r
+\r
+ $input['mantra_fwidth'] = intval(wp_kses_data($input['mantra_fwidth']));\r
+ $input['mantra_fheight'] = intval(wp_kses_data($input['mantra_fheight']));\r
+\r
+/*** 2 ***/\r
+\r
+ $cryout_special_terms = array('mailto:','callto://');\r
+ $cryout_special_keys = array('Mail', 'Skype');\r
+ for ($i=1;$i<10;$i+=2) {\r
+ $j=$i+1;\r
+ if (in_array($input['mantra_social'.$i],$cryout_special_keys)) :\r
+ $input['mantra_social'.$j] = wp_kses_data(str_replace($cryout_special_terms,'',$input['mantra_social'.$j]));\r
+ if ($input['mantra_social'.$i]=='Mail') {$input['mantra_social'.$j]='mailto:'.$input['mantra_social'.$j];};\r
+ if ($input['mantra_social'.$i]=='Skype') {$input['mantra_social'.$j]='callto://'.$input['mantra_social'.$j];};\r
+ else :\r
+ $input['mantra_social'.$j] = esc_url_raw($input['mantra_social'.$j]);\r
+ endif;\r
+ }\r
+ for ($i=0;$i<=5;$i++) {\r
+ if (!isset($input['mantra_socialsdisplay'.$i])) {$input['mantra_socialsdisplay'.$i] = "0";}\r
+ }\r
+\r
+ $input['mantra_favicon'] = esc_url_raw($input['mantra_favicon']);\r
+ $input['mantra_logoupload'] = esc_url_raw($input['mantra_logoupload']);\r
+ $input['mantra_headermargintop'] = intval(wp_kses_data($input['mantra_headermargintop']));\r
+ $input['mantra_headermarginleft'] = intval(wp_kses_data($input['mantra_headermarginleft']));\r
+\r
+ $input['mantra_customcss'] = wp_kses_post(trim($input['mantra_customcss']));\r
+ $input['mantra_customjs'] = wp_kses_post(trim($input['mantra_customjs']));\r
+ $input['mantra_seo_home_desc'] = wp_kses_post(trim($input['mantra_seo_home_desc']));\r
+\r
+ $input['mantra_googlefont'] = trim(wp_kses_data($input['mantra_googlefont']));\r
+ $input['mantra_googlefonttitle'] = trim(wp_kses_data($input['mantra_googlefonttitle']));\r
+ $input['mantra_googlefontside'] = trim(wp_kses_data($input['mantra_googlefontside']));\r
+ $input['mantra_googlefontsubheader'] = trim(wp_kses_data($input['mantra_googlefontsubheader']));\r
+\r
+ if($input['mantra_googlefont']) {\r
+ $mantra_googlefont2 = $input['mantra_googlefont'];\r
+ $mantra_googlefont2= preg_replace( '/\s+/', '+', $mantra_googlefont2 );\r
+ $mantra_googlefont2= "//fonts.googleapis.com/css?family=".$mantra_googlefont2;\r
+ $input['mantra_googlefont2'] = $mantra_googlefont2;\r
+ } else $input['mantra_googlefont2'] = '';\r
+ if($input['mantra_googlefonttitle']) {\r
+ $mantra_googlefonttitle2 = $input['mantra_googlefonttitle'];\r
+ $mantra_googlefonttitle2= preg_replace( '/\s+/', '+', $mantra_googlefonttitle2 );\r
+ $mantra_googlefonttitle2= "//fonts.googleapis.com/css?family=".$mantra_googlefonttitle2;\r
+ $input['mantra_googlefonttitle2'] = $mantra_googlefonttitle2;\r
+ } else $input['mantra_googlefonttitle2'] = '';\r
+ if($input['mantra_googlefontside']) {\r
+ $mantra_googlefontside2 = $input['mantra_googlefontside'];\r
+ $mantra_googlefontside2= preg_replace( '/\s+/', '+', $mantra_googlefontside2 );\r
+ $mantra_googlefontside2= "//fonts.googleapis.com/css?family=".$mantra_googlefontside2;\r
+ $input['mantra_googlefontside2'] = $mantra_googlefontside2;\r
+ } else $input['mantra_googlefontside2'] = '';\r
+ if($input['mantra_googlefontsubheader']) {\r
+ $mantra_googlefontsubheader2 = $input['mantra_googlefontsubheader'];\r
+ $mantra_googlefontsubheader2= preg_replace( '/\s+/', '+', $mantra_googlefontsubheader2 );\r
+ $mantra_googlefontsubheader2= "//fonts.googleapis.com/css?family=".$mantra_googlefontsubheader2;\r
+ $input['mantra_googlefontsubheader2'] = $mantra_googlefontsubheader2;\r
+ } else $input['mantra_googlefontsubheader2'] = '';\r
+\r
+\r
+ $input['mantra_frontpostscount'] = intval(wp_kses_data($input['mantra_frontpostscount']));\r
+\r
+ $input['mantra_fpsliderborderwidth'] = intval(wp_kses_data($input['mantra_fpsliderborderwidth']));\r
+\r
+ $input['mantra_slideNumber'] = intval(wp_kses_data($input['mantra_slideNumber']));\r
+ $input['mantra_slideSpecific'] = wp_kses_data($input['mantra_slideSpecific']);\r
+\r
+ $input['mantra_fpsliderwidth'] = intval(wp_kses_data($input['mantra_fpsliderwidth']));\r
+ $input['mantra_fpsliderheight'] = intval(wp_kses_data($input['mantra_fpsliderheight']));\r
+\r
+/** 3 ***/\r
+ $input['mantra_sliderimg1'] = wp_kses_data($input['mantra_sliderimg1']);\r
+ $input['mantra_slidertitle1'] = wp_kses_data($input['mantra_slidertitle1']);\r
+ $input['mantra_slidertext1'] = wp_kses_post($input['mantra_slidertext1']);\r
+ $input['mantra_sliderlink1'] = esc_url_raw($input['mantra_sliderlink1']);\r
+ $input['mantra_sliderimg2'] = wp_kses_data($input['mantra_sliderimg2']);\r
+ $input['mantra_slidertitle2'] = wp_kses_data($input['mantra_slidertitle2']);\r
+ $input['mantra_slidertext2'] = wp_kses_post($input['mantra_slidertext2']);\r
+ $input['mantra_sliderlink2'] = esc_url_raw($input['mantra_sliderlink2']);\r
+ $input['mantra_sliderimg3'] = wp_kses_data($input['mantra_sliderimg3']);\r
+ $input['mantra_slidertitle3'] = wp_kses_data($input['mantra_slidertitle3']);\r
+ $input['mantra_slidertext3'] = wp_kses_post($input['mantra_slidertext3']);\r
+ $input['mantra_sliderlink3'] = esc_url_raw($input['mantra_sliderlink3']);\r
+ $input['mantra_sliderimg4'] = wp_kses_data($input['mantra_sliderimg4']);\r
+ $input['mantra_slidertitle4'] = wp_kses_data($input['mantra_slidertitle4']);\r
+ $input['mantra_slidertext4'] = wp_kses_post($input['mantra_slidertext4']);\r
+ $input['mantra_sliderlink4'] = esc_url_raw($input['mantra_sliderlink4']);\r
+ $input['mantra_sliderimg5'] = wp_kses_data($input['mantra_sliderimg5']);\r
+ $input['mantra_slidertitle5'] = wp_kses_data($input['mantra_slidertitle5']);\r
+ $input['mantra_slidertext5'] = wp_kses_post($input['mantra_slidertext5']);\r
+ $input['mantra_sliderlink5'] = esc_url_raw($input['mantra_sliderlink5']);\r
+\r
+ $input['mantra_colimageheight'] = intval(wp_kses_data($input['mantra_colimageheight']));\r
+\r
+/** 4 **/\r
+ $input['mantra_columnimg1'] = wp_kses_data($input['mantra_columnimg1']);\r
+ $input['mantra_columntitle1'] = wp_kses_data($input['mantra_columntitle1']);\r
+ $input['mantra_columntext1'] = wp_kses_post($input['mantra_columntext1']);\r
+ $input['mantra_columnlink1'] = esc_url_raw($input['mantra_columnlink1']);\r
+ $input['mantra_columnimg2'] = wp_kses_data($input['mantra_columnimg2']);\r
+ $input['mantra_columntitle2'] = wp_kses_data($input['mantra_columntitle2']);\r
+ $input['mantra_columntext2'] = wp_kses_post($input['mantra_columntext2']);\r
+ $input['mantra_columnlink2'] = esc_url_raw($input['mantra_columnlink2']);\r
+ $input['mantra_columnimg3'] = wp_kses_data($input['mantra_columnimg3']);\r
+ $input['mantra_columntitle3'] = wp_kses_data($input['mantra_columntitle3']);\r
+ $input['mantra_columntext3'] = wp_kses_post($input['mantra_columntext3']);\r
+ $input['mantra_columnlink3'] = esc_url_raw($input['mantra_columnlink3']);\r
+ $input['mantra_columnimg4'] = wp_kses_data($input['mantra_columnimg4']);\r
+ $input['mantra_columntitle4'] = wp_kses_data($input['mantra_columntitle4']);\r
+ $input['mantra_columntext4'] = wp_kses_post($input['mantra_columntext4']);\r
+ $input['mantra_columnlink4'] = esc_url_raw($input['mantra_columnlink4']);\r
+\r
+ $input['mantra_columnreadmore'] = wp_kses($input['mantra_columnreadmore'],'');\r
+\r
+ $input['mantra_fronttext1'] = wp_kses_data($input['mantra_fronttext1']);\r
+ $input['mantra_fronttext2'] = wp_kses_data($input['mantra_fronttext2']);\r
+ $input['mantra_fpsliderbordercolor'] = wp_kses_data($input['mantra_fpsliderbordercolor']);\r
+ $input['mantra_fronttitlecolor'] = wp_kses_data($input['mantra_fronttitlecolor']);\r
+ $input['mantra_fronttext3'] = trim( wp_kses_post($input['mantra_fronttext3']));\r
+ $input['mantra_fronttext4'] = trim (wp_kses_post($input['mantra_fronttext4']));\r
+\r
+ $resetDefault = ( ! empty( $input['mantra_defaults']) ? true : false );\r
+\r
+ if ($resetDefault) {$input=$mantra_defaults;}\r
+\r
+ return $input; // return validated input\r
+\r
+}\r
+\r
+endif;\r
+?>\r
--- /dev/null
+<?php\r
+// Callback functions\r
+\r
+// General suboptions description\r
+\r
+function cryout_section_layout_fn() {\r
+\r
+// echo "<p>".__("Settings for adjusting your blog's layout.", "mantra")."</p>";\r
+}\r
+\r
+function cryout_section_presentation_fn() {\r
+\r
+// echo "<p>".__("Settings for adjusting your blog's layout.", "mantra")."</p>";\r
+}\r
+\r
+function cryout_section_header_fn() {\r
+\r
+// echo "<p>".__("Settings for adjusting your blog's layout.", "mantra")."</p>";\r
+}\r
+\r
+\r
+function cryout_section_text_fn() {\r
+ //echo "<p>".__("All text related customization options.", "mantra")."</p>";\r
+}\r
+\r
+function cryout_section_graphics_fn() {\r
+// echo "<p>".__("Settings for hiding or showing different graphics.", "mantra")."</p>";\r
+}\r
+\r
+function cryout_section_post_fn() {\r
+ //echo "<p>".__("Settings for hiding or showing different post tags.", "mantra")."</p>";\r
+}\r
+\r
+function cryout_section_excerpt_fn() {\r
+// echo "<p>".__("Settings for post excerpts", "mantra")."</p>";\r
+}\r
+\r
+function cryout_section_appereance_fn() {\r
+// echo "<p>".__("Set text and background colors.", "mantra")."</p>";\r
+}\r
+\r
+\r
+function cryout_section_featured_fn() {\r
+// echo "<p>".__("Insert the addreses for your social media. Leave blank if not the case.\r
+// Please type the whole address (including <i>http://</i> ) Example : <u>http://www.facebook.com</u>.", "mantra")."</p>";\r
+}\r
+\r
+function cryout_section_social_fn() {\r
+// echo "<p>".__("Insert the addreses for your social media. Leave blank if not the case.\r
+// Please type the whole address (including <i>http://</i> ) Example : <u>http://www.facebook.com</u>.", "mantra")."</p>";\r
+}\r
+\r
+function cryout_section_misc_fn() {\r
+\r
+}\r
+\r
+////////////////////////////////\r
+//// LAYOUT SETTINGS ///////////\r
+////////////////////////////////\r
+\r
+\r
+// RADIO-BUTTON - Name: ma_options[side]\r
+function cryout_setting_side_fn() {\r
+global $mantra_options;\r
+ $items = array("1c", "2cSr", "2cSl", "3cSr" , "3cSl", "3cSs");\r
+ $layout_text["1c"] = __("One column (no sidebars)","mantra");\r
+ $layout_text["2cSr"] = __("Two columns, sidebar on the right","mantra");\r
+ $layout_text["2cSl"] = __("Two columns, sidebar on the left","mantra");\r
+ $layout_text["3cSr"] = __("Three columns, sidebars on the right","mantra");\r
+ $layout_text["3cSl"] = __("Three columns, sidebars on the left","mantra");\r
+ $layout_text["3cSs"] = __("Three columns, one sidebar on each side","mantra");\r
+\r
+// For backward compatibility;\r
+ if ($mantra_options['mantra_side'] == 'Disable') $mantra_options['mantra_side'] = '1c';\r
+ if ($mantra_options['mantra_side'] == 'Right') $mantra_options['mantra_side'] = '2cSr';\r
+ if ($mantra_options['mantra_side'] == 'Left') $mantra_options['mantra_side'] = '2cSl';\r
+\r
+\r
+ foreach($items as $item) {\r
+\r
+ $checkedClass = ($mantra_options['mantra_side']==$item) ? ' checkedClass' : '';\r
+ echo "<label id='$item' class='layouts $checkedClass'><input ";\r
+ checked($mantra_options['mantra_side'],$item);\r
+ echo " value='$item' onClick=\"changeBorder('$item','layouts');\" name='ma_options[mantra_side]' type='radio' /><img title='$layout_text[$item]' src='".get_template_directory_uri()."/admin/images/".$item.".png'/></label>";\r
+ }\r
+ echo "<div><small>".__("Choose your layout. Possible options are: <br> No sidebar, a single sidebar on either left of right, two sidebars on either left or\r
+ right and two sidebars on each side.","mantra")."</small></div>";\r
+}\r
+\r
+ //SLIDER - Name: ma_options[sidewidth]\r
+function cryout_setting_sidewidth_fn()\r
+ {\r
+global $mantra_options;\r
+ $items = array ("Absolute" , "Relative");\r
+ $itemsare = array( __("Absolute","mantra"), __("Relative *DEPRECATED","mantra"));\r
+ echo __("Dimensions to use: ","mantra")." <select id='mantra_dimselect' name='ma_options[mantra_dimselect]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_dimselect'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+echo "</select>";\r
+?>\r
+<script>\r
+\r
+jQuery(document).ready(function() {\r
+\r
+ jQuery( "#slider-range" ).slider({\r
+ range: true,\r
+ step:10,\r
+ min: 0,\r
+ max: 1980,\r
+ values: [ <?php echo $mantra_options['mantra_sidewidth'] ?>, <?php echo ($mantra_options['mantra_sidewidth']+$mantra_options['mantra_sidebar']); ?> ],\r
+ slide: function( event, ui ) {\r
+ range=ui.values[ 1 ] - ui.values[ 0 ];\r
+ if (ui.values[ 0 ]<500) {ui.values[ 0 ]=500; return false;};\r
+ if( range<220 || range>800 ){ ui.values[ 1 ] = <?php echo $mantra_options['mantra_sidebar']+$mantra_options['mantra_sidewidth'];?>; return false; };\r
+ jQuery( "#mantra_sidewidth" ).val( ui.values[ 0 ] );\r
+ jQuery( "#mantra_sidebar" ).val( ui.values[ 1 ] - ui.values[ 0 ] );\r
+ jQuery( "#totalsize" ).html( ui.values[ 1 ]);\r
+ jQuery( "#contentsize" ).html( ui.values[ 0 ]);jQuery( "#barsize" ).html( ui.values[ 1 ]-ui.values[ 0 ]);\r
+ var percentage = parseInt( jQuery( "#slider-range .ui-slider-range" ).css('width') );\r
+ var leftwidth = parseInt(jQuery( "#slider-range .ui-slider-range" ).position().left );\r
+ jQuery( "#barb" ).css('left',-80+leftwidth+percentage/2+"px");\r
+ jQuery( "#contentb" ).css('left',-50+leftwidth/2+"px");\r
+ jQuery( "#totalb" ).css('left',-100+(percentage+leftwidth)/2+"px");\r
+ }\r
+ });\r
+\r
+ jQuery( "#mantra_sidewidth" ).val( <?php echo $mantra_options['mantra_sidewidth'];?> );\r
+ jQuery( "#mantra_sidebar" ).val( <?php echo $mantra_options['mantra_sidebar'];?> );\r
+ var percentage = <?php echo ($mantra_options['mantra_sidebar']/1980)*100;?> ;\r
+ var leftwidth = <?php echo ($mantra_options['mantra_sidewidth']/1980)*100;?> ;\r
+ jQuery( "#barb" ).css('left',-18+leftwidth+percentage/2+"%");\r
+ jQuery( "#contentb" ).css('left',-8+leftwidth/2+"%");\r
+ jQuery( "#totalb" ).css('left',-20+(percentage+leftwidth)/2+"%");\r
+\r
+});\r
+\r
+jQuery(function() {\r
+\r
+ jQuery( "#slider-rangeRel" ).slider({\r
+ range: true,\r
+ step:1,\r
+ min: 0,\r
+ max: 100,\r
+ values: [ <?php echo $mantra_options['mantra_sidewidthRel'] ?>, <?php echo ($mantra_options['mantra_sidewidthRel']+$mantra_options['mantra_sidebarRel']); ?> ],\r
+ slide: function( event, ui ) {\r
+ range=ui.values[ 1 ] - ui.values[ 0 ];\r
+ if (ui.values[ 0 ]<40) {ui.values[ 0 ]=40; return false;};\r
+ if( range<20 || range>50 ){ ui.values[ 1 ] = <?php echo $mantra_options['mantra_sidebarRel']+$mantra_options['mantra_sidewidthRel'];?>; return false; };\r
+ jQuery( "#mantra_sidewidthRel" ).val( ui.values[ 0 ] );\r
+ jQuery( "#mantra_sidebarRel" ).val( ui.values[ 1 ] - ui.values[ 0 ] );\r
+ jQuery( "#totalsizeRel" ).html( ui.values[ 1 ]);\r
+ jQuery( "#contentsizeRel" ).html( ui.values[ 0 ]);jQuery( "#barsizeRel" ).html( ui.values[ 1 ]-ui.values[ 0 ]);\r
+ var percentageRel = parseInt( jQuery( "#slider-rangeRel .ui-slider-range" ).css('width') );\r
+ var leftwidthRel = parseInt( jQuery( "#slider-rangeRel .ui-slider-range" ).position().left );\r
+ jQuery( "#barbRel" ).css('left',-80+leftwidthRel+percentageRel/2+"px");\r
+ jQuery( "#contentbRel" ).css('left',-50+leftwidthRel/2+"px");\r
+ jQuery( "#totalbRel" ).css('left',-100+(percentageRel+leftwidthRel)/2+"px");\r
+ }\r
+ });\r
+\r
+ jQuery( "#mantra_sidewidthRel" ).val( <?php echo $mantra_options['mantra_sidewidthRel'];?> );\r
+ jQuery( "#mantra_sidebarRel" ).val( <?php echo $mantra_options['mantra_sidebarRel'];?> );\r
+ var percentageRel = <?php echo $mantra_options['mantra_sidebarRel'];?> ;\r
+ var leftwidthRel = <?php echo $mantra_options['mantra_sidewidthRel'];?> ;\r
+ jQuery( "#barbRel" ).css('left',-18+leftwidthRel+percentageRel/2+"%");\r
+ jQuery( "#contentbRel" ).css('left',-8+leftwidthRel/2+"%");\r
+ jQuery( "#totalbRel" ).css('left',-20+(percentageRel+leftwidthRel)/2+"%");\r
+});\r
+\r
+\r
+</script>\r
+\r
+<div id="absolutedim">\r
+\r
+ <b id="contentb" style="display:block;float:left;position:absolute;margin-top:-20px;"><?php _e("Content =","mantra");?> <span id="contentsize"><?php echo $mantra_options['mantra_sidewidth'];?></span>px</b>\r
+ <b id="barb" style="margin-left:40px;color:#F6A828;display:block;float:left;position:absolute;margin-top:-20px;" ><?php _e("Sidebar(s) =","mantra");?> <span id="barsize"><?php echo $mantra_options['mantra_sidebar'];?></span>px</b>\r
+ <b id="totalb" style="margin-left:40px;color:#999;display:block;float:left;position:absolute;margin-top:12px;" >^——— <?php _e("Total width =","mantra");?> <span id="totalsize"><?php echo $mantra_options['mantra_sidewidth']+ $mantra_options['mantra_sidebar'];?></span>px ———^</b>\r
+\r
+<p>\r
+ <?php echo "<input type='hidden' name='ma_options[mantra_sidewidth]' id='mantra_sidewidth' />";\r
+ echo "<input type='hidden' name='ma_options[mantra_sidebar]' id='mantra_sidebar' />";?>\r
+</p>\r
+<div id="slider-range"></div>\r
+\r
+ <?php\r
+ echo "<br><div><small>".__("Select the width of your <b>content</b> and <b>sidebar(s)</b>.\r
+ While the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\r
+ If you went for a 3 column area ( with 2 sidebars) they will each have half the selected width.","mantra")."</small></div>"; ?>\r
+\r
+\r
+</div><!-- End absolutedim -->\r
+\r
+<div id="relativedim">\r
+\r
+ <b id="contentbRel" style="display:block;float:left;position:absolute;margin-top:-20px;"><?php _e("Content =","mantra");?> <span id="contentsizeRel"><?php echo $mantra_options['mantra_sidewidthRel'];?></span>%</b>\r
+ <b id="barbRel" style="margin-left:40px;color:#F6A828;display:block;float:left;position:absolute;margin-top:-20px;" ><?php _e("Sidebar(s) =","mantra");?> <span id="barsizeRel"><?php echo $mantra_options['mantra_sidebarRel'];?></span>%</b>\r
+ <b id="totalbRel" style="margin-left:40px;color:#999;display:block;float:left;position:absolute;margin-top:12px;" >^——— <?php _e("Total width =","mantra");?> <span id="totalsizeRel"><?php echo $mantra_options['mantra_sidewidthRel']+$mantra_options['mantra_sidebarRel'];?></span>% ———^</b>\r
+\r
+<p>\r
+ <?php echo "<input type='hidden' name='ma_options[mantra_sidewidthRel]' id='mantra_sidewidthRel' />";\r
+ echo "<input type='hidden' name='ma_options[mantra_sidebarRel]' id='mantra_sidebarRel' />";?>\r
+\r
+</p>\r
+<div id="slider-rangeRel"></div>\r
+ <?php\r
+ echo "<br><div><small>".__("Select the width of your <b>content</b> and <b>sidebar(s)</b>.\r
+ These are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\r
+ While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\r
+ If you went for a 3 column area ( with 2 sidebars) they will each have half the selected width.","mantra")."</small></div>"; ?>\r
+</div><!-- End relativedim -->\r
+<?php\r
+\r
+ }\r
+\r
+\r
+//CHECKBOX - Name: ma_options[mobile]\r
+function cryout_setting_mobile_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_mobile' name='ma_options[mantra_mobile]'>";\r
+ foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_mobile'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+ }\r
+ echo "</select>";\r
+\r
+ echo " <label style='border:none;margin-left:10px;' for='mantra_zoom' class='socialsdisplay'><input ";\r
+ checked($mantra_options['mantra_zoom'],'1');\r
+ echo " value='". $mantra_options['mantra_zoom'] ."' id='mantra_zoom' name='ma_options[mantra_zoom]' type='checkbox' /> Allow zoom </label>"; \r
+ \r
+ echo "<div><small>".__("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.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+\r
+////////////////////////////////\r
+//// PRESENTATION SETTINGS /////////////\r
+////////////////////////////////\r
+\r
+\r
+//CHECKBOX - Name: ma_options[frontpage]\r
+function cryout_setting_frontpage_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_frontpage' name='ma_options[mantra_frontpage]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_frontpage'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Enable the presentation front-page. This will become your new home page. It has a slider and columns for presentation\r
+ 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 » Reading </a> and make sure you have selected <strong>Front Page Displays</strong> as <Strong>Your Latest Posts</strong>.","mantra")."</small></div>";\r
+\r
+}\r
+\r
+function cryout_setting_frontposts_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_frontposts' name='ma_options[mantra_frontposts]'>";\r
+ foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_frontposts'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+ }\r
+ echo "</select> ";\r
+ echo "<input type='text' id='mantra_frontpostscount' name='ma_options[mantra_frontpostscount]' size='3' value='";\r
+ echo $mantra_options['mantra_frontpostscount']."'> ".__('posts','mantra');\r
+ echo "<div><small>".__("Enable to display latest posts on the presentation page, below the columns. Sticky posts are always displayed and not counted.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[frontslider]\r
+function cryout_setting_frontslider_fn() {\r
+ global $mantra_options;\r
+\r
+\r
+ echo "<div class='slmini'><b>".__("Slider Dimensions:","mantra")."</b> ";\r
+ echo "<input id='mantra_fpsliderwidth' name='ma_options[mantra_fpsliderwidth]' size='4' type='text' value='".esc_attr( $mantra_options['mantra_fpsliderwidth'] )."' /> px (".__("width","mantra").") <strong>X</strong> ";\r
+ echo "<input id='mantra_fpsliderheight' name='ma_options[mantra_fpsliderheight]' size='4' type='text' value='".esc_attr( $mantra_options['mantra_fpsliderheight'] )."' /> px (".__("height","mantra").")";\r
+ echo "<small>".__("The dimensions of your slider. Make sure your images are of the same size.","mantra")."</small></div>";\r
+\r
+ echo "<div class='slmini'><b>".__("Animation:","mantra")."</b> ";\r
+ $items = array ("random" , "fold", "fade", "slideInRight", "slideInLeft", "sliceDown", "sliceDownLeft", "sliceUp", "sliceUpLeft", "sliceUpDown" , "sliceUpDownLeft", "boxRandom", "boxRain", "boxRainReverse", "boxRainGrow" , "boxRainGrowReverse");\r
+ $itemsare = array( __("Random","mantra"), __("Fold","mantra"), __("Fade","mantra"), __("SlideInRight","mantra"), __("SlideInLeft","mantra"), __("SliceDown","mantra"), __("SliceDownLeft","mantra"), __("SliceUp","mantra"), __("SliceUpLeft","mantra"), __("SliceUpDown","mantra"), __("SliceUpDownLeft","mantra"), __("BoxRandom","mantra"), __("BoxRain","mantra"), __("BoxRainReverse","mantra"), __("BoxRainGrow","mantra"), __("BoxRainGrowReverse","mantra"));\r
+ echo "<select id='mantra_fpslideranim' name='ma_options[mantra_fpslideranim]'>";\r
+ foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_fpslideranim'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<small>".__("The transition effect your slider will have.","mantra")."</small></div>";\r
+\r
+ echo "<div class='slmini'><b>".__("Border Settings:","mantra")."</b> ";\r
+ echo __('Width' ,'mantra').": <input id='mantra_fpsliderborderwidth' name='ma_options[mantra_fpsliderborderwidth]' size='2' type='text' value='".esc_attr( $mantra_options['mantra_fpsliderborderwidth'] )."' /> px / ";\r
+ echo __('Color','mantra').': <input type="text" id="mantra_fpsliderbordercolor" name="ma_options[mantra_fpsliderbordercolor]" style="width:100px;" value="'.esc_attr( $mantra_options['mantra_fpsliderbordercolor'] ).'" />';\r
+ echo '<div id="mantra_fpsliderbordercolor2"></div>';\r
+ echo "<small>".__("The width and color of the slider's border.","mantra")."</small></div>";\r
+\r
+ echo "<div class='slmini'><b>".__("Animation Time:","mantra")."</b> ";\r
+ echo "<input id='mantra_fpslidertime' name='ma_options[mantra_fpslidertime]' size='4' type='text' value='".esc_attr( $mantra_options['mantra_fpslidertime'] )."' /> ".__("milliseconds","mantra");\r
+ echo "<small>".__("The time in which the transition animation will take place.","mantra")."</small></div>";\r
+\r
+ echo "<div class='slmini'><b>".__("Pause Time:","mantra")."</b> ";\r
+ echo "<input id='mantra_fpsliderpause' name='ma_options[mantra_fpsliderpause]' size='4' type='text' value='".esc_attr( $mantra_options['mantra_fpsliderpause'] )."' /> ".__("milliseconds","mantra");\r
+ echo "<small>".__("The time in which a slide will be still and visible.","mantra")."</small></div>";\r
+\r
+\r
+ echo "<div class='slmini'><b>".__("Slider navigation:","mantra")."</b> ";\r
+ $items = array ("Numbers" , "Bullets" ,"None");\r
+ $itemsare = array( __("Numbers","mantra"), __("Bullets","mantra"), __("None","mantra"));\r
+ echo "<select id='mantra_fpslidernav' name='ma_options[mantra_fpslidernav]'>";\r
+ foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_fpslidernav'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<small>".__("Your slider navigation type. Shown under the slider.","mantra")."</small></div>";\r
+\r
+ echo "<div class='slmini'><b>".__("Slider arrows:","mantra")."</b> ";\r
+ $items = array ("Always Visible" , "Visible on Hover" ,"Hidden");\r
+ $itemsare = array( __("Always Visible","mantra"), __("Visible on Hover","mantra"), __("Hidden","mantra"));\r
+ echo "<select id='mantra_fpsliderarrows' name='ma_options[mantra_fpsliderarrows]'>";\r
+ foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_fpsliderarrows'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<small>".__("The Left and Right arrows on your slider","mantra")."</small></div>";\r
+\r
+?>\r
+\r
+<script>\r
+var $categoryName;\r
+\r
+jQuery(document).ready(function(){\r
+ jQuery('#categ-dropdown').change(function(){\r
+ $categoryName=this.options[this.selectedIndex].value.replace(/\/category\/archives\//i,"");\r
+ doAjaxRequest();\r
+ });\r
+\r
+});\r
+function doAjaxRequest(){\r
+ // here is where the request will happen\r
+ jQuery.ajax({\r
+ url: ajaxurl,\r
+ data:{\r
+ 'action':'do_ajax',\r
+ 'fn':'get_latest_posts',\r
+ 'count':10,\r
+ 'categName':$categoryName\r
+ },\r
+ dataType: 'JSON',\r
+ success:function(data){\r
+ jQuery('#post-dropdown').html(data);\r
+\r
+\r
+ },\r
+ error: function(errorThrown){\r
+ alert('error');\r
+ console.log(errorThrown);\r
+ }\r
+\r
+ });\r
+\r
+}\r
+</script>\r
+<!--\r
+<select name="categ-dropdown" id="categ-dropdown" multiple='multiple' >\r
+ <option value=""><?php echo esc_attr(__('Select Category','mantra')); ?></option>\r
+ <?php\r
+ $categories= get_categories();\r
+ foreach ($categories as $category) {\r
+ $option = '<option value="/category/archives/'.$category->category_nicename.'">';\r
+ $option .= $category->cat_name;\r
+ $option .= ' ('.$category->category_count.')';\r
+ $option .= '</option>';\r
+ echo $option;\r
+ }\r
+ ?>\r
+</select>\r
+<select name="post-dropdown" id="post-dropdown">\r
+</select>\r
+-->\r
+\r
+<?php\r
+\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[frontslider2]\r
+function cryout_setting_frontslider2_fn() {\r
+ global $mantra_options;\r
+?>\r
+\r
+<?php\r
+$items = array("Custom Slides", "Latest Posts", "Random Posts", "Sticky Posts", "Latest Posts from Category" , "Random Posts from Category", "Specific Posts");\r
+ $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"));\r
+ echo "<em>".__("Select the content you want to load in your slides:","mantra")." </em> ";\r
+ echo "<select id='mantra_slideType' name='ma_options[mantra_slideType]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_slideType'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("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.","mantra")."</small></div>";\r
+\r
+?>\r
+\r
+<div id="sliderLatestPosts" class="slideDivs">\r
+<span><?php _e('Latest posts will be loaded into the slider.','mantra'); ?> </span>\r
+</div>\r
+\r
+<div id="sliderRandomPosts" class="slideDivs">\r
+<span><?php _e('Random posts will be loaded into the slider.','mantra'); ?> </span>\r
+</div>\r
+\r
+<div id="sliderLatestCateg" class="slideDivs">\r
+<span><?php _e('Latest posts from the category you choose will be loaded in the slider.','mantra'); ?> </span>\r
+\r
+</div>\r
+\r
+<div id="sliderRandomCateg" class="slideDivs">\r
+<span><?php _e('Random posts from the category you choose will be loaded into the slider.','mantra'); ?> </span>\r
+</div>\r
+\r
+<div id="sliderStickyPosts" class="slideDivs">\r
+<span><?php _e('Only sticky posts will be loaded into the slider.','mantra'); ?> </span>\r
+</div>\r
+\r
+<div id="sliderSpecificPosts" class="slideDivs">\r
+<span><?php _e('List the post IDs you want to display (separated by a comma): ','mantra'); ?> </span>\r
+ <input id='mantra_slideSpecific' name='ma_options[mantra_slideSpecific]' size='44' type='text' value='<?php echo esc_attr( $mantra_options['mantra_slideSpecific'] ) ?>' />\r
+</div>\r
+\r
+<div id="slider-category">\r
+<span><?php _e('<br> Choose the cateogry: ','mantra'); ?> </span>\r
+<select id="mantra_slideCateg" name='ma_options[mantra_slideCateg]' >\r
+ <option value=""><?php echo esc_attr(__('Select Category','mantra')); ?></option>\r
+ <?php echo $mantra_options["mantra_slideCateg"];\r
+ $categories= get_categories();\r
+ foreach ($categories as $category) {\r
+ $option = '<option value="'.$category->category_nicename.'" ';\r
+ $option .= selected($mantra_options["mantra_slideCateg"], $category->category_nicename, false).' >';\r
+ $option .= $category->cat_name;\r
+ $option .= ' ('.$category->category_count.')';\r
+ $option .= '</option>';\r
+ echo $option;\r
+ }\r
+ ?>\r
+</select>\r
+</div>\r
+\r
+<span id="slider-post-number"><?php _e('Number of posts to show:','mantra'); ?>\r
+ <input id='mantra_slideNumber' name='ma_options[mantra_slideNumber]' size='3' type='text' value='<?php echo esc_attr( $mantra_options['mantra_slideNumber'] ) ?>' />\r
+ </span>\r
+\r
+\r
+<div id="sliderCustomSlides" class="slideDivs">\r
+<div class="slidebox">\r
+<h4 class="slidetitle" ><?php _e("Slide 1","mantra");?> </h4>\r
+<div class="slidercontent">\r
+<h5><?php _e("Image","mantra");?></h5>\r
+<input type="text" value="<?php echo esc_url($mantra_options['mantra_sliderimg1']); ?>" name="ma_options[mantra_sliderimg1]" id="mantra_sliderimg1" class="slideimages" />\r
+<span class="description"><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+<h5> <?php _e("Title","mantra");?> </h5>\r
+<input id='mantra_slidertitle1' name='ma_options[mantra_slidertitle1]' size='50' type='text' value='<?php echo esc_attr( $mantra_options['mantra_slidertitle1'] ) ?>' />\r
+<h5> <?php _e("Text","mantra");?> </h5>\r
+<textarea id='mantra_slidertext1' name='ma_options[mantra_slidertext1]' rows='3' cols='50' type='textarea' ><?php echo esc_attr($mantra_options['mantra_slidertext1']) ?></textarea>\r
+<h5> <?php _e("Link","mantra");?> </h5>\r
+<input id='mantra_sliderlink1' name='ma_options[mantra_sliderlink1]' size='50' type='text' value='<?php echo esc_url( $mantra_options['mantra_sliderlink1'] ) ?>' />\r
+</div>\r
+</div>\r
+\r
+<div class="slidebox">\r
+<h4 class="slidetitle" > <?php _e("Slide 2","mantra");?> </h4>\r
+<div class="slidercontent">\r
+<h5><?php _e("Image","mantra");?></h5>\r
+<input type="text" value="<?php echo esc_url($mantra_options['mantra_sliderimg2']); ?>" name="ma_options[mantra_sliderimg2]" id="mantra_sliderimg2" class="slideimages" />\r
+<span class="description"><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+<h5> <?php _e("Title","mantra");?> </h5>\r
+<input id='mantra_slidertitle2' name='ma_options[mantra_slidertitle2]' size='50' type='text' value='<?php echo esc_attr( $mantra_options['mantra_slidertitle2'] ) ?>' />\r
+<h5> <?php _e("Text","mantra");?> </h5>\r
+<textarea id='mantra_slidertext2' name='ma_options[mantra_slidertext2]' rows='3' cols='50' type='textarea' ><?php echo esc_attr($mantra_options['mantra_slidertext2']) ?></textarea>\r
+<h5> <?php _e("Link","mantra");?> </h5>\r
+<input id='mantra_sliderlink2' name='ma_options[mantra_sliderlink2]' size='50' type='text' value='<?php echo esc_url( $mantra_options['mantra_sliderlink2'] ) ?>' />\r
+</div>\r
+</div>\r
+\r
+<div class="slidebox">\r
+<h4 class="slidetitle" > <?php _e("Slide 3","mantra");?> </h4>\r
+<div class="slidercontent">\r
+<h5><?php _e("Image","mantra");?></h5>\r
+<input type="text" value="<?php echo esc_url($mantra_options['mantra_sliderimg3']); ?>" name="ma_options[mantra_sliderimg3]" id="mantra_sliderimg3" class="slideimages" />\r
+<span class="description"><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+<h5> <?php _e("Title","mantra");?> </h5>\r
+<input id='mantra_slidertitle3' name='ma_options[mantra_slidertitle3]' size='50' type='text' value='<?php echo esc_attr( $mantra_options['mantra_slidertitle3'] ) ?>' />\r
+<h5> <?php _e("Text","mantra");?> </h5>\r
+<textarea id='mantra_slidertext3' name='ma_options[mantra_slidertext3]' rows='3' cols='50' type='textarea' ><?php echo esc_attr($mantra_options['mantra_slidertext3']) ?></textarea>\r
+<h5> <?php _e("Link","mantra");?> </h5>\r
+<input id='mantra_sliderlink3' name='ma_options[mantra_sliderlink3]' size='50' type='text' value='<?php echo esc_url( $mantra_options['mantra_sliderlink3'] ) ?>' />\r
+</div>\r
+</div>\r
+\r
+<div class="slidebox">\r
+<h4 class="slidetitle" > <?php _e("Slide 4","mantra");?> </h4>\r
+<div class="slidercontent">\r
+<h5><?php _e("Image","mantra");?></h5>\r
+<input type="text" value="<?php echo esc_url($mantra_options['mantra_sliderimg4']); ?>" name="ma_options[mantra_sliderimg4]" id="mantra_sliderimg4" class="slideimages" />\r
+<span class="description"><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+<h5> <?php _e("Title","mantra");?> </h5>\r
+<input id='mantra_slidertitle4' name='ma_options[mantra_slidertitle4]' size='50' type='text' value='<?php echo esc_attr( $mantra_options['mantra_slidertitle4'] ) ?>' />\r
+<h5> <?php _e("Text","mantra");?> </h5>\r
+<textarea id='mantra_slidertext4' name='ma_options[mantra_slidertext4]' rows='3' cols='50' type='textarea' ><?php echo esc_attr($mantra_options['mantra_slidertext4']) ?></textarea>\r
+<h5> <?php _e("Link","mantra");?> </h5>\r
+<input id='mantra_sliderlink4' name='ma_options[mantra_sliderlink4]' size='50' type='text' value='<?php echo esc_url( $mantra_options['mantra_sliderlink4'] ) ?>' />\r
+</div>\r
+</div>\r
+\r
+<div class="slidebox">\r
+<h4 class="slidetitle" > <?php _e("Slide 5","mantra");?></h4>\r
+<div class="slidercontent">\r
+<h5><?php _e("Image","mantra");?></h5>\r
+<input type="text" value="<?php echo esc_url($mantra_options['mantra_sliderimg5']); ?>" name="ma_options[mantra_sliderimg5]" id="mantra_sliderimg5" class="slideimages" />\r
+<span class="description"><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+<h5> <?php _e("Title","mantra");?> </h5>\r
+<input id='mantra_slidertitle5' name='ma_options[mantra_slidertitle5]' size='50' type='text' value='<?php echo esc_attr( $mantra_options['mantra_slidertitle5'] ) ?>' />\r
+<h5> <?php _e("Text","mantra");?> </h5>\r
+<textarea id='mantra_slidertext5' name='ma_options[mantra_slidertext5]' rows='3' cols='50' type='textarea' ><?php echo esc_attr($mantra_options['mantra_slidertext5']) ?></textarea>\r
+<h5> <?php _e("Link","mantra");?> </h5>\r
+<input id='mantra_sliderlink5' name='ma_options[mantra_sliderlink5]' size='50' type='text' value='<?php echo esc_url( $mantra_options['mantra_sliderlink5'] ) ?>' />\r
+</div>\r
+</div>\r
+\r
+</div> <!-- customSlides -->\r
+<?php\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[frontcolumns]\r
+function cryout_setting_frontcolumns_fn() {\r
+ global $mantra_options;\r
+\r
+echo "<div class='slmini'><b>".__("Number of columns:","mantra")."</b> ";\r
+ $items = array ("0" ,"1", "2" , "3" , "4");\r
+ echo "<select id='mantra_nrcolumns' name='ma_options[mantra_nrcolumns]'>";\r
+foreach($items as $item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_nrcolumns'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</select></div>";\r
+\r
+echo "<div class='slmini'><b>".__("Image Height:","mantra")."</b> ";\r
+ echo "<input id='mantra_colimageheight' name='ma_options[mantra_colimageheight]' size='4' type='text' value='".esc_attr( $mantra_options['mantra_colimageheight'] )."' /> px </div>";\r
+?>\r
+<div class='slmini'><b><?php _e("Read more text:","mantra");?></b>\r
+<input id='mantra_columnreadmore' name='ma_options[mantra_columnreadmore]' size='30' type='text' value='<?php echo esc_attr( $mantra_options['mantra_columnreadmore'] ) ?>' />\r
+<?php\r
+ echo "<small>".__("The linked text that appears at the bottom of all the columns. You can delete all text inside if you don't want it.","mantra")."</small></div>";\r
+\r
+?>\r
+<div class="slidebox">\r
+<h4 class="slidetitle" > <?php _e("1st Column","mantra");?> </h4>\r
+<div class="slidercontent">\r
+<h5><?php _e("Image","mantra");?></h5>\r
+<input type="text" value="<?php echo esc_url($mantra_options['mantra_columnimg1']); ?>" name="ma_options[mantra_columnimg1]" id="mantra_columnimg1" class="slideimages" />\r
+<span class="description"><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+<h5> <?php _e("Title","mantra");?> </h5>\r
+<input id='mantra_columntitle1' name='ma_options[mantra_columntitle1]' size='50' type='text' value='<?php echo esc_attr( $mantra_options['mantra_columntitle1'] ) ?>' />\r
+<h5> <?php _e("Text","mantra");?> </h5>\r
+<textarea id='mantra_columntext1' name='ma_options[mantra_columntext1]' rows='3' cols='50' type='textarea' ><?php echo esc_attr($mantra_options['mantra_columntext1']) ?></textarea>\r
+<h5> <?php _e("Link","mantra");?> </h5>\r
+<input id='mantra_columnlink1' name='ma_options[mantra_columnlink1]' size='50' type='text' value='<?php echo esc_url( $mantra_options['mantra_columnlink1'] ) ?>' />\r
+</div>\r
+</div>\r
+\r
+<div class="slidebox">\r
+<h4 class="slidetitle" > <?php _e("2nd Column","mantra");?></h4>\r
+<div class="slidercontent">\r
+<h5><?php _e("Image","mantra");?></h5>\r
+<input type="text" value="<?php echo esc_url($mantra_options['mantra_columnimg2']); ?>" name="ma_options[mantra_columnimg2]" id="mantra_columnimg2" class="slideimages" />\r
+<span class="description"><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+<h5> <?php _e("Title","mantra");?> </h5>\r
+<input id='mantra_columntitle2' name='ma_options[mantra_columntitle2]' size='50' type='text' value='<?php echo esc_attr( $mantra_options['mantra_columntitle2'] ) ?>' />\r
+<h5> <?php _e("Text","mantra");?> </h5>\r
+<textarea id='mantra_columntext2' name='ma_options[mantra_columntext2]' rows='3' cols='50' type='textarea' ><?php echo esc_attr($mantra_options['mantra_columntext2']) ?></textarea>\r
+<h5> <?php _e("Link","mantra");?> </h5>\r
+<input id='mantra_columnlink2' name='ma_options[mantra_columnlink2]' size='50' type='text' value='<?php echo esc_url( $mantra_options['mantra_columnlink2'] ) ?>' />\r
+</div>\r
+</div>\r
+\r
+<div class="slidebox">\r
+<h4 class="slidetitle" > <?php _e("3rd Column","mantra");?> </h4>\r
+<div class="slidercontent">\r
+<h5><?php _e("Image","mantra");?></h5>\r
+<input type="text" value="<?php echo esc_url($mantra_options['mantra_columnimg3']); ?>" name="ma_options[mantra_columnimg3]" id="mantra_columnimg3" class="slideimages" />\r
+<span class="description"><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+<h5> Title </h5>\r
+<input id='mantra_columntitle3' name='ma_options[mantra_columntitle3]' size='50' type='text' value='<?php echo esc_attr( $mantra_options['mantra_columntitle3'] ) ?>' />\r
+<h5> <?php _e("Text","mantra");?> </h5>\r
+<textarea id='mantra_columntext3' name='ma_options[mantra_columntext3]' rows='3' cols='50' type='textarea' ><?php echo esc_attr($mantra_options['mantra_columntext3']) ?></textarea>\r
+<h5> <?php _e("Link","mantra");?> </h5>\r
+<input id='mantra_columnlink3' name='ma_options[mantra_columnlink3]' size='50' type='text' value='<?php echo esc_url( $mantra_options['mantra_columnlink3'] ) ?>' />\r
+</div>\r
+</div>\r
+\r
+<div class="slidebox">\r
+<h4 class="slidetitle" > <?php _e("4th Column","mantra");?> </h4>\r
+<div class="slidercontent">\r
+<h5><?php _e("Image","mantra");?></h5>\r
+<input type="text" value="<?php echo esc_url($mantra_options['mantra_columnimg4']); ?>" name="ma_options[mantra_columnimg4]" id="mantra_columnimg4" class="slideimages" />\r
+<span class="description"><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+<h5> <?php _e("Title","mantra");?> </h5>\r
+<input id='mantra_columntitle4' name='ma_options[mantra_columntitle4]' size='50' type='text' value='<?php echo esc_attr( $mantra_options['mantra_columntitle4'] ) ?>' />\r
+<h5> <?php _e("Text","mantra");?> </h5>\r
+<textarea id='mantra_columntext4' name='ma_options[mantra_columntext4]' rows='3' cols='50' type='textarea' ><?php echo esc_attr($mantra_options['mantra_columntext4']) ?></textarea>\r
+<h5> <?php _e("Link","mantra");?> </h5>\r
+<input id='mantra_columnlink4' name='ma_options[mantra_columnlink4]' size='50' type='text' value='<?php echo esc_url( $mantra_options['mantra_columnlink4'] ) ?>' />\r
+</div>\r
+</div>\r
+\r
+<?php\r
+}\r
+\r
+\r
+//CHECKBOX - Name: ma_options[fronttext]\r
+function cryout_setting_fronttext_fn() {\r
+ global $mantra_options;\r
+\r
+echo "<div class='slidebox'><h4 class='slidetitle'> ".__("Extra Text","mantra")." </h4><div class='slidercontent'> ";\r
+\r
+echo "<div style='width:100%;'><span>Text for the Presentation Page</span><small>".__("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.\r
+ It's all optional so leave any input field empty if it's not required. ","mantra")."</small></div>";\r
+\r
+ echo "<h5>".__("Top Title","mantra")."</h5><br><input id='mantra_fronttext1' name='ma_options[mantra_fronttext1]' size='50' type='text' value='".esc_attr( $mantra_options['mantra_fronttext1'] )."' />";\r
+echo "<h5>".__("Second Title","mantra")."</h5> ";\r
+ echo "<input id='mantra_fronttext2' name='ma_options[mantra_fronttext2]' size='50' type='text' value='".esc_attr( $mantra_options['mantra_fronttext2'] )."' />";\r
+\r
+echo "<h5>".__("Title color","mantra")."</h5> ";\r
+ echo '<input type="text" id="mantra_fronttitlecolor" name="ma_options[mantra_fronttitlecolor]" style="width:100px;display:block;float:none;" value="'.esc_attr( $mantra_options['mantra_fronttitlecolor'] ).'" />';\r
+ echo '<div id="mantra_fronttitlecolor2"></div>';\r
+\r
+echo "<h5>".__("Bottom Text 1","mantra")."</h5> ";\r
+ echo "<textarea id='mantra_fronttext3' name='ma_options[mantra_fronttext3]' rows='3' cols='50' type='textarea' >".esc_attr($mantra_options['mantra_fronttext3'])." </textarea>";\r
+echo "<h5>".__("Bottom Text 2","mantra")." </h5> ";\r
+ echo "<textarea id='mantra_fronttext4' name='ma_options[mantra_fronttext4]' rows='3' cols='50' type='textarea' >".esc_attr($mantra_options['mantra_fronttext4'])." </textarea></div></div>";\r
+\r
+\r
+\r
+\r
+\r
+\r
+echo "<div class='slidebox'><h4 class='slidetitle'>".__("Hide areas","mantra")." </h4><div class='slidercontent'>";\r
+\r
+echo "<div style='width:100%;'>".__("Choose the areas to hide on the first page.","mantra")."</div>";\r
+\r
+ $items = array( "FronHeader", "FrontMenu", "FrontWidget" , "FrontFooter","FrontBack");\r
+\r
+ $checkedClass0 = ($mantra_options['mantra_fronthideheader']=='1') ? ' checkedClass0' : '';\r
+ $checkedClass1 = ($mantra_options['mantra_fronthidemenu']=='1') ? ' checkedClass1' : '';\r
+ $checkedClass2 = ($mantra_options['mantra_fronthidewidget']=='1') ? ' checkedClass2' : '';\r
+ $checkedClass3 = ($mantra_options['mantra_fronthidefooter']=='1') ? ' checkedClass3' : '';\r
+ $checkedClass4 = ($mantra_options['mantra_fronthideback']=='1') ? ' checkedClass4' : '';\r
+\r
+ echo " <label id='$items[0]' for='$items[0]$items[0]' class='hideareas $checkedClass0'><input ";\r
+ checked($mantra_options['mantra_fronthideheader'],'1');\r
+ echo "value='1' id='$items[0]$items[0]' name='ma_options[mantra_fronthideheader]' type='checkbox' /> ".__("Hide the header area (image or background color).","mantra")." </label>";\r
+\r
+ echo " <label id='$items[1]' for='$items[1]$items[1]' class='hideareas $checkedClass1'><input ";\r
+ checked($mantra_options['mantra_fronthidemenu'],'1');\r
+ echo "value='1' id='$items[1]$items[1]' name='ma_options[mantra_fronthidemenu]' type='checkbox' /> ".__("Hide the main menu (the top navigation tabs).","mantra")." </label>";\r
+\r
+ echo " <label id='$items[2]' for='$items[2]$items[2]' class='hideareas $checkedClass2'><input ";\r
+ checked($mantra_options['mantra_fronthidewidget'],'1');\r
+ echo "value='1' id='$items[2]$items[2]' name='ma_options[mantra_fronthidewidget]' type='checkbox' /> ".__("Hide the footer widgets. ","mantra")." </label>";\r
+\r
+ echo " <label id='$items[3]' for='$items[3]$items[3]' class='hideareas $checkedClass3'><input ";\r
+ checked($mantra_options['mantra_fronthidefooter'],'1');\r
+ echo "value='1' id='$items[3]$items[3]' name='ma_options[mantra_fronthidefooter]' type='checkbox' /> ".__("Hide the footer (copyright area).","mantra")." </label>";\r
+\r
+ echo " <label id='$items[4]' for='$items[4]$items[4]' class='hideareas $checkedClass4'><input ";\r
+ checked($mantra_options['mantra_fronthideback'],'1');\r
+ echo "value='1' id='$items[4]$items[4]' name='ma_options[mantra_fronthideback]' type='checkbox' /> ".__("Hide the white color. Only the background color remains.","mantra")." </label>";\r
+\r
+\r
+echo "</div></div>";\r
+\r
+\r
+}\r
+\r
+\r
+//////////////////////////////\r
+/////HEADER SETTINGS//////////\r
+/////////////////////////////\r
+\r
+ //SELECT - Name: ma_options[hheight]\r
+function cryout_setting_hheight_fn() {\r
+ global $mantra_options;?>\r
+<input id='mantra_hheight' name='ma_options[mantra_hheight]' size='4' type='text' value='<?php echo esc_attr( intval($mantra_options['mantra_hheight'] )) ?>' /> px\r
+<?php\r
+$totally = $mantra_options['mantra_sidebar']+$mantra_options['mantra_sidewidth']+50;\r
+\r
+echo "<div><small>".__("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 = ","mantra").$totally."px.</small></div>";\r
+}\r
+\r
+function cryout_setting_himage_fn() {\r
+ global $mantra_options;\r
+ $checkedClass = ($mantra_options['mantra_hcenter']=='1') ? ' checkedClass' : '';\r
+ $checkedClass2 = ($mantra_options['mantra_hratio']=='1') ? ' checkedClass' : '';\r
+ echo "<a href=\"?page=custom-header\" class=\"button\" target=\"_blank\">".__('Define header image','mantra')."</a>";\r
+ echo "<div><small>".__("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.","mantra")."</small></div>";\r
+ echo "<br><label id='hcenter' for='mantra_hcenter' class='socialsdisplay $checkedClass'><input ";\r
+ checked($mantra_options['mantra_hcenter'],'1');\r
+ echo " value='1' id='mantra_hcenter' name='ma_options[mantra_hcenter]' type='checkbox'/> Center the header image horizontally </label>";\r
+\r
+ echo " <label id='hratio' for='mantra_hratio' class='socialsdisplay $checkedClass2'><input ";\r
+ checked($mantra_options['mantra_hratio'],'1');\r
+ echo " value='1' id='mantra_hratio' name='ma_options[mantra_hratio]' type='checkbox' style='margin-left:10px;'/> Keep header image aspect ratio </label>";\r
+ \r
+}\r
+\r
+//CHECKBOX - Name: ma_options[menurounded]\r
+function cryout_setting_menurounded_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_menurounded' name='ma_options[mantra_menurounded]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_menurounded'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Enable or disable the round corners for the main menu items.","mantra")."</small></div>";\r
+\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[linkheader]\r
+function cryout_setting_siteheader_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Site Title and Description" , "Custom Logo" , "Clickable header image" , "Empty");\r
+ $itemsare = array( __("Site Title and Description","mantra"), __("Custom Logo","mantra"), __("Clickable header image","mantra"), __("Empty","mantra"));\r
+ echo "<select id='mantra_siteheader' name='ma_options[mantra_siteheader]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_siteheader'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Choose what to display inside your header area.","mantra")."</small></div>";\r
+}\r
+\r
+// TEXTBOX - Name: ma_options[favicon]\r
+function cryout_setting_logoupload_fn() {\r
+ global $mantra_options;\r
+ echo '<div>';\r
+?>\r
+ <img src='<?php echo ($mantra_options['mantra_logoupload']!='')? esc_url($mantra_options['mantra_logoupload']):get_template_directory_uri().'/admin/images/placeholder.gif'; ?>' class="imagebox" style="display:;max-height:60px" /><br>\r
+<input type="text" size='60' value="<?php echo esc_url($mantra_options['mantra_logoupload']); ?>" name="ma_options[mantra_logoupload]" id="mantra_logoupload" class="header_upload_inputs slideimages" />\r
+<?php echo "<div><small>".__("Custom Logo upload. The logo will appear over the heder image if you have used one.","mantra")."</small></div>"; ?>\r
+<span class="description"><br><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+</div>\r
+\r
+<?php\r
+}\r
+\r
+function cryout_setting_headermargin_fn() {\r
+ global $mantra_options;?>\r
+<input id='mantra_headermargintop' name='ma_options[mantra_headermargintop]' size='4' type='text' value='<?php echo esc_attr( intval($mantra_options['mantra_headermargintop'] )) ?>' /> px <?php echo __("top","mantra");?> \r
+<input id='mantra_headermarginleft' name='ma_options[mantra_headermarginleft]' size='4' type='text' value='<?php echo esc_attr( intval($mantra_options['mantra_headermarginleft'] )) ?>' /> px <?php echo __("left","mantra");?>\r
+<?php\r
+\r
+echo "<div><small>".__("Select the top spacing for the header. Use it to better position your site title and description or custom logo inside the header. ","mantra")."</small></div>";\r
+}\r
+\r
+// TEXTBOX - Name: ma_options[favicon]\r
+function cryout_setting_favicon_fn() {\r
+ global $mantra_options;\r
+ echo '<div>';\r
+?>\r
+ <img src='<?php echo ($mantra_options['mantra_favicon']!='')? esc_url($mantra_options['mantra_favicon']):get_template_directory_uri().'/admin/images/placeholder.gif'; ?>' class="imagebox" width="64" height="64"/><br>\r
+<input type="text" size='60' value="<?php echo esc_url($mantra_options['mantra_favicon']); ?>" name="ma_options[mantra_favicon]" id="mantra_favicon" class="header_upload_inputs slideimages" />\r
+<?php echo "<div><small>".__("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>","mantra")."</small></div>"; ?>\r
+<span class="description"><br><a href="#" class="upload_image_button button"><?php _e( 'Select / Upload Image', 'mantra' );?></a> </span>\r
+</div>\r
+\r
+<?php\r
+}\r
+\r
+\r
+////////////////////////////////\r
+//// TEXT SETTINGS /////////////\r
+////////////////////////////////\r
+\r
+//SELECT - Name: ma_options[fontsize]\r
+function cryout_setting_fontsize_fn() {\r
+ global $mantra_options;\r
+ $items =array ("12px", "13px" , "14px" , "15px" , "16px", "17px", "18px");\r
+ echo "<select id='mantra_fontsize' name='ma_options[mantra_fontsize]'>";\r
+ foreach($items as $item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_fontsize'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("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.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+//SELECT - Name: ma_options[fontfamily]\r
+function cryout_setting_fontfamily_fn() {\r
+ global $mantra_options;\r
+ global $fontSans, $fontSerif, $fontMono, $fontCursive;\r
+\r
+ echo "<select id='mantra_fontfamily' name='ma_options[mantra_fontfamily]'>";\r
+ echo "<optgroup label='Sans-Serif'>";\r
+foreach($fontSans as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontfamily'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='Serif'>";\r
+foreach($fontSerif as $item) {\r
+\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontfamily'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='MonoSpace'>";\r
+foreach($fontMono as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontfamily'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='Cursive'>";\r
+foreach($fontCursive as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontfamily'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+ echo "</select>";\r
+\r
+ echo "<div><small>".__("Select the font family you'll use in your blog. All content text will be affected (including menu buttons). ","mantra")."</small></div><br>";\r
+ echo '<input class="googlefonts" type="text" size="45" value="'.esc_attr($mantra_options['mantra_googlefont']).'" name="ma_options[mantra_googlefont]" id="mantra_googlefont" />';\r
+ echo "<div><small>".__("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.","mantra")."</small></div>";\r
+\r
+\r
+}\r
+\r
+//SELECT - Name: ma_options[fonttitle]\r
+function cryout_setting_fonttitle_fn() {\r
+ global $mantra_options;\r
+ global $fontSans, $fontSerif, $fontMono, $fontCursive;\r
+\r
+ echo "<select id='mantra_fonttitle' name='ma_options[mantra_fonttitle]'>";\r
+ echo "<option value='Default'";\r
+ selected($mantra_options['mantra_fonttitle'],'Defaut');\r
+ echo ">Default</option>";\r
+ echo "<optgroup label='Sans-Serif'>";\r
+foreach($fontSans as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fonttitle'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='Serif'>";\r
+foreach($fontSerif as $item) {\r
+\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fonttitle'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='MonoSpace'>";\r
+foreach($fontMono as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fonttitle'],$item);\r
+ echo ">$item";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='Cursive'>";\r
+foreach($fontCursive as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fonttitle'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+ echo "</select>";\r
+ echo "<div><small>".__("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.","mantra")."</small></div><br>";\r
+\r
+ echo '<input class="googlefonts" type="text" size="45" value="'.esc_attr($mantra_options['mantra_googlefonttitle']).'" name="ma_options[mantra_googlefonttitle]" id="mantra_googlefonttitle" />';\r
+ echo "<div><small>".__("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.","mantra")."</small></div>";\r
+\r
+\r
+\r
+\r
+}\r
+\r
+//SELECT - Name: ma_options[fontside]\r
+function cryout_setting_fontside_fn() {\r
+ global $mantra_options;\r
+ global $fontSans, $fontSerif, $fontMono, $fontCursive;\r
+\r
+ echo "<select id='mantra_fontside' name='ma_options[mantra_fontside]'>";\r
+ echo "<option value='Default'";\r
+ selected($mantra_options['mantra_fonttitle'],'Defaut');\r
+ echo ">Default</option>";\r
+ echo "<optgroup label='Sans-Serif'>";\r
+foreach($fontSans as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontside'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='Serif'>";\r
+foreach($fontSerif as $item) {\r
+\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontside'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='MonoSpace'>";\r
+foreach($fontMono as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontside'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='Cursive'>";\r
+foreach($fontCursive as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontside'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+ echo "</select>";\r
+ echo "<div><small>".__("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.","mantra")."</small></div><br>";\r
+ echo '<input class="googlefonts" type="text" size="45" value="'.esc_attr($mantra_options['mantra_googlefontside']).'" name="ma_options[mantra_googlefontside]" id="mantra_googlefontside" />';\r
+ echo "<div><small>".__("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.","mantra")."</small></div>";\r
+\r
+\r
+\r
+}\r
+\r
+\r
+//SELECT - Name: ma_options[fontsubheader]\r
+function cryout_setting_fontsubheader_fn() {\r
+ global $mantra_options;\r
+ global $fontSans, $fontSerif, $fontMono, $fontCursive;\r
+\r
+ echo "<select id='mantra_fontsubheader' name='ma_options[mantra_fontsubheader]'>";\r
+ echo "<option value='Default'";\r
+ selected($mantra_options['mantra_fonttitle'],'Defaut');\r
+ echo ">Default</option>";\r
+ echo "<optgroup label='Sans-Serif'>";\r
+foreach($fontSans as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontsubheader'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='Serif'>";\r
+foreach($fontSerif as $item) {\r
+\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontsubheader'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='MonoSpace'>";\r
+foreach($fontMono as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontsubheader'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+\r
+ echo "<optgroup label='Cursive'>";\r
+foreach($fontCursive as $item) {\r
+ echo "<option style='font-family:$item;' value='$item'";\r
+ selected($mantra_options['mantra_fontsubheader'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</optgroup>";\r
+ echo "</select>";\r
+ echo "<div><small>".__("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.","mantra")."</small></div><br>";\r
+\r
+ echo '<input class="googlefonts" type="text" size="45" value="'.esc_attr($mantra_options['mantra_googlefontsubheader']).'" name="ma_options[mantra_googlefontsubheader]" id="mantra_googlefontsubheader" />';\r
+ echo "<div><small>".__("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.","mantra")."</small></div>";\r
+\r
+\r
+}\r
+\r
+//SELECT - Name: ma_options[headfontsize]\r
+function cryout_setting_headfontsize_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Default" , "14px" , "16px" , "18px" , "20px", "22px" , "24px" , "26px" , "28px" , "30px" , "32px" , "34px" , "36px", "38px" , "40px");\r
+ $itemsare = array( __("Default","mantra") ,"14px" , "16px" , "18px" , "20px", "22px" , "24px" , "26px" , "28px" , "30px" , "32px" , "34px" , "36px", "38px" , "40px");\r
+ echo "<select id='mantra_headfontsize' name='ma_options[mantra_headfontsize]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_headfontsize'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS).","mantra")."</small></div>";\r
+}\r
+\r
+//SELECT - Name: ma_options[sidefontsize]\r
+function cryout_setting_sidefontsize_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Default" , "8px" , "9px" , "10px" , "11px", "12px" , "13px" , "14px" , "15px" , "16px" , "17px" , "18px");\r
+ $itemsare = array( __("Default","mantra") , "8px" , "9px" , "10px" , "11px", "12px" , "13px" , "14px" , "15px" , "16px" , "17px" , "18px");\r
+ echo "<select id='mantra_sidefontsize' name='ma_options[mantra_sidefontsize]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_sidefontsize'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS).","mantra")."</small></div>";\r
+}\r
+\r
+//SELECT - Name: ma_options[textalign]\r
+function cryout_setting_textalign_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Default" , "Left" , "Right" , "Justify" , "Center");\r
+ $itemsare = array( __("Default","mantra"), __("Left","mantra"), __("Right","mantra"), __("Justify","mantra"), __("Center","mantra"));\r
+ echo "<select id='mantra_textalign' name='ma_options[mantra_textalign]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_textalign'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.).","mantra")."</small></div>";\r
+}\r
+\r
+//SELECT - Name: ma_options[parindent]\r
+function cryout_setting_parmargin_fn() {\r
+ global $mantra_options;\r
+ $items = array ("0.0em", "0.5em", "1.0em" , "1.1em" , "1.2em" , "1.3em" , "1.4em", "1.5em", "1.6em", "1.7em");\r
+ echo "<select id='mantra_parmargin' name='ma_options[mantra_parmargin]'>";\r
+foreach($items as $item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_parmargin'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Choose the spacing between paragraphs.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+//SELECT - Name: ma_options[parindent]\r
+function cryout_setting_parindent_fn() {\r
+ global $mantra_options;\r
+ $items = array ("0px" , "5px" , "10px" , "15px" , "20px");\r
+ echo "<select id='mantra_parindent' name='ma_options[mantra_parindent]'>";\r
+foreach($items as $item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_parindent'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Choose the indent for your paragraphs.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+//CHECKBOX - Name: ma_options[headerindent]\r
+function cryout_setting_headerindent_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_headerindent' name='ma_options[mantra_headerindent]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_headerindent'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Disable the default header and title indent (left margin).","mantra")."</small></div>";\r
+}\r
+\r
+//SELECT - Name: ma_options[lineheight]\r
+function cryout_setting_lineheight_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Default" ,"0.8em" , "0.9em", "1.0em" , "1.1em" , "1.2em" , "1.3em", "1.4em" , "1.5em" , "1.6em" , "1.7em" , "1.8em" , "1.9em" , "2.0em");\r
+ $itemsare = array( __("Default","mantra"),"0.8em" , "0.9em", "1.0em" , "1.1em" , "1.2em" , "1.3em", "1.4em" , "1.5em" , "1.6em" , "1.7em" , "1.8em" , "1.9em" , "2.0em");\r
+ echo "<select id='mantra_lineheight' name='ma_options[mantra_lineheight]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_lineheight'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Text line height. The height between 2 rows of text. Leave 'Default' for normal settings (size value will be as set in the CSS).","mantra")."</small></div>";\r
+}\r
+\r
+//SELECT - Name: ma_options[wordspace]\r
+function cryout_setting_wordspace_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Default" ,"-3px" , "-2px", "-1px" , "0px" , "1px" , "2px", "3px" , "4px" , "5px" , "10px");\r
+ $itemsare = array( __("Default","mantra"),"-3px" , "-2px", "-1px" , "0px" , "1px" , "2px", "3px" , "4px" , "5px" , "10px");\r
+ echo "<select id='mantra_wordspace' name='ma_options[mantra_wordspace]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_wordspace'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS).","mantra")."</small></div>";\r
+}\r
+\r
+//SELECT - Name: ma_options[letterspace]\r
+function cryout_setting_letterspace_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Default" ,"-0.05em" , "-0.04em", "-0.03em" , "-0.02em" , "-0.01em" , "0.01em", "0.02em" , "0.03em" , "0.04em" , "0.05em");\r
+ $itemsare = array( __("Default","mantra"),"-0.05em" , "-0.04em", "-0.03em" , "-0.02em" , "-0.01em" , "0.01em", "0.02em" , "0.03em" , "0.04em" , "0.05em");\r
+ echo "<select id='mantra_letterspace' name='ma_options[mantra_letterspace]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_letterspace'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS).","mantra")."</small></div>";\r
+}\r
+\r
+\r
+\r
+//CHECKBOX - Name: ma_options[textshadow]\r
+function cryout_setting_textshadow_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_textshadow' name='ma_options[mantra_textshadow]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_textshadow'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Disable the default text shadow on headers and titles.","mantra")."</small></div>";\r
+}\r
+\r
+////////////////////////////////\r
+//// APPEREANCE SETTINGS ///////\r
+////////////////////////////////\r
+\r
+function cryout_setting_sitebackground_fn() {\r
+ echo "<a href=\"?page=custom-background\" class=\"button\" target=\"_blank\">".__('Define background image','mantra')."</a>";\r
+} // cryout_setting_sitebackground_fn()\r
+\r
+\r
+//TEXT - Name: ma_options[backcolor]\r
+function cryout_setting_backcolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_backcolor" name="ma_options[mantra_backcolor]" value="'.esc_attr( $mantra_options['mantra_backcolor'] ).'" />';\r
+ echo '<div id="mantra_backcolor2"></div>';\r
+ echo "<div><small>".__("Background color (Default value is 444444).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[headercolor]\r
+function cryout_setting_headercolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_headercolor" name="ma_options[mantra_headercolor]" value="'.esc_attr( $mantra_options['mantra_headercolor'] ).'" />';\r
+ echo '<div id="mantra_headercolor2"></div>';\r
+ echo "<div><small>".__("Header background color (Default value is 333333). You can delete all inside text for no background color.","mantra")."</small></div>";\r
+}\r
+\r
+function cryout_setting_contentbg_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_contentbg" name="ma_options[mantra_contentbg]" value="'.esc_attr( $mantra_options['mantra_contentbg'] ).'" />';\r
+ echo '<div id="mantra_contentbg2"></div>';\r
+ echo "<div><small>".__("Content background color (Default value is FFFFFF). Works best with really light colors.","mantra")."</small></div>";\r
+}\r
+\r
+function cryout_setting_menubg_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_menubg" name="ma_options[mantra_menubg]" value="'.esc_attr( $mantra_options['mantra_menubg'] ).'" />';\r
+ echo '<div id="mantra_menubg2"></div>';\r
+ echo "<div><small>".__("Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light.","mantra")."</small></div>";\r
+}\r
+\r
+function cryout_setting_first_sidebar_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_s1bg" name="ma_options[mantra_s1bg]" value="'.esc_attr( $mantra_options['mantra_s1bg'] ).'" />';\r
+ echo '<div id="mantra_s1bg2"></div>';\r
+ echo "<div><small>".__("First sidebar background color (Default is no color for a transparent sidebar).","mantra")."</small></div>";\r
+}\r
+\r
+function cryout_setting_second_sidebar_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_s2bg" name="ma_options[mantra_s2bg]" value="'.esc_attr( $mantra_options['mantra_s2bg'] ).'" />';\r
+ echo '<div id="mantra_s2bg2"></div>';\r
+ echo "<div><small>".__("Second sidebar background color (Default is no color for a transparent sidebar).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[prefootercolor]\r
+function cryout_setting_prefootercolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_prefootercolor" name="ma_options[mantra_prefootercolor]" value="'.esc_attr( $mantra_options['mantra_prefootercolor'] ).'" />';\r
+ echo '<div id="mantra_prefootercolor2"></div>';\r
+ echo "<div><small>".__("Footer widget-area background color. (Default value is 171717).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[footercolor]\r
+function cryout_setting_footercolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_footercolor" name="ma_options[mantra_footercolor]" value="'.esc_attr( $mantra_options['mantra_footercolor'] ).'" />';\r
+ echo '<div id="mantra_footercolor2"></div>';\r
+ echo "<div><small>".__("Footer background color (Default value is 222222).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[titlecolor]\r
+function cryout_setting_titlecolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_titlecolor" name="ma_options[mantra_titlecolor]" value="'.esc_attr( $mantra_options['mantra_titlecolor'] ).'" />';\r
+ echo '<div id="mantra_titlecolor2"></div>';\r
+ echo "<div><small>".__("Your blog's title color (Default value is 0D85CC).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[descriptioncolor]\r
+function cryout_setting_descriptioncolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_descriptioncolor" name="ma_options[mantra_descriptioncolor]" value="'.esc_attr( $mantra_options['mantra_descriptioncolor'] ).'" />';\r
+ echo '<div id="mantra_descriptioncolor2"></div>';\r
+ echo "<div><small>".__("Your blog's description color(Default value is 222222).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[contentcolor]\r
+function cryout_setting_contentcolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_contentcolor" name="ma_options[mantra_contentcolor]" value="'.esc_attr( $mantra_options['mantra_contentcolor'] ).'" />';\r
+ echo '<div id="mantra_contentcolor2"></div>';\r
+ echo "<div><small>".__("Content Text Color (Default value is 333333).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[linkscolor]\r
+function cryout_setting_linkscolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_linkscolor" name="ma_options[mantra_linkscolor]" value="'.esc_attr( $mantra_options['mantra_linkscolor'] ).'" />';\r
+ echo '<div id="mantra_linkscolor2"></div>';\r
+ echo "<div><small>".__("Links color (Default value is 0D85CC).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[hovercolor]\r
+function cryout_setting_hovercolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_hovercolor" name="ma_options[mantra_hovercolor]" value="'.esc_attr( $mantra_options['mantra_hovercolor'] ).'" />';\r
+ echo '<div id="mantra_hovercolor2"></div>';\r
+ echo "<div><small>".__("Links color on mouse over (Default value is 333333).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[headtextcolor]\r
+function cryout_setting_headtextcolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_headtextcolor" name="ma_options[mantra_headtextcolor]" value="'.esc_attr( $mantra_options['mantra_headtextcolor'] ).'" />';\r
+ echo '<div id="mantra_headtextcolor2"></div>';\r
+ echo "<div><small>".__("Post Header Text Color (Default value is 333333).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[headtexthover]\r
+function cryout_setting_headtexthover_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_headtexthover" name="ma_options[mantra_headtexthover]" value="'.esc_attr( $mantra_options['mantra_headtexthover'] ).'" />';\r
+ echo '<div id="mantra_headtexthover2"></div>';\r
+ echo "<div><small>".__("Post Header Text Color on Mouse over (Default value is 000000).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[sideheadbackcolor]\r
+function cryout_setting_sideheadbackcolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_sideheadbackcolor" name="ma_options[mantra_sideheadbackcolor]" value="'.esc_attr( $mantra_options['mantra_sideheadbackcolor'] ).'" />';\r
+ echo '<div id="mantra_sideheadbackcolor2"></div>';\r
+ echo "<div><small>".__("Sidebar Header Background color (Default value is 444444).","mantra")."</small></div>";\r
+\r
+}\r
+\r
+//TEXT - Name: ma_options[sideheadtextcolor]\r
+function cryout_setting_sideheadtextcolor_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_sideheadtextcolor" name="ma_options[mantra_sideheadtextcolor]" value="'.esc_attr( $mantra_options['mantra_sideheadtextcolor'] ).'" />';\r
+ echo '<div id="mantra_sideheadtextcolor2"></div>';\r
+ echo "<div><small>".__("Sidebar Header Text Color(Default value is 2EA5FD).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[footerheader]\r
+function cryout_setting_footerheader_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_footerheader" name="ma_options[mantra_footerheader]" value="'.esc_attr( $mantra_options['mantra_footerheader'] ).'" />';\r
+ echo '<div id="mantra_footerheader2"></div>';\r
+ echo "<div><small>".__("Footer Widget Text Color (Default value is 0D85CC).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[footertext]\r
+function cryout_setting_footertext_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_footertext" name="ma_options[mantra_footertext]" value="'.esc_attr( $mantra_options['mantra_footertext'] ).'" />';\r
+ echo '<div id="mantra_footertext2"></div>';\r
+ echo "<div><small>".__("Footer Widget Link Color (Default value is 666666).","mantra")."</small></div>";\r
+}\r
+\r
+//TEXT - Name: ma_options[footerhover]\r
+function cryout_setting_footerhover_fn() {\r
+ global $mantra_options;\r
+ echo '<input type="text" id="mantra_footerhover" name="ma_options[mantra_footerhover]" value="'.esc_attr( $mantra_options['mantra_footerhover'] ).'" />';\r
+ echo '<div id="mantra_footerhover2"></div>';\r
+ echo "<div><small>".__("Footer Widget Link Color on Mouse Over (Default value is 888888).","mantra")."</small></div>";\r
+}\r
+\r
+\r
+////////////////////////////////\r
+//// GRAPHICS SETTINGS /////////\r
+////////////////////////////////\r
+\r
+\r
+\r
+//CHECKBOX - Name: ma_options[breadcrumbs]\r
+function cryout_setting_breadcrumbs_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_breadcrumbs' name='ma_options[mantra_breadcrumbs]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_breadcrumbs'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Show breadcrumbs at the top of the content area. Breadcrumbs are a form of navigation that keeps track of your location withtin the site.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[pagination]\r
+function cryout_setting_pagination_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_pagination' name='ma_options[mantra_pagination]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_pagination'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("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. ","mantra")."</small></div>";\r
+}\r
+\r
+function cryout_setting_menualign_fn() {\r
+ global $mantra_options;\r
+ $items = array ("left", "center", "right");\r
+ $itemsare = array( __("Left","mantra"), __("Center","mantra"), __("Right","mantra"));\r
+ echo "<select id='mantra_menualign' name='ma_options[mantra_menualign]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_menualign'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Select the desired main menu items alignment. Center option is only valid for single line menus.","mantra")."</small></div>";\r
+}\r
+\r
+//SELECT - Name: ma_options[caption]\r
+function cryout_setting_caption_fn() {\r
+global $mantra_options;\r
+ $items = array ("White" , "Light" , "Light Gray" , "Gray" , "Dark Gray" , "Black");\r
+ $itemsare = array( __("White","mantra"), __("Light","mantra"), __("Light Gray","mantra"), __("Gray","mantra"), __("Dark Gray","mantra"), __("Black","mantra"));\r
+ echo "<select id='mantra_caption' name='ma_options[mantra_caption]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_caption'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("This setting changes the look of your captions. Images that are not inserted through captions will not be affected.","mantra")."</small></div>";\r
+}\r
+\r
+// RADIO-BUTTON - Name: ma_options[image]\r
+function cryout_setting_image_fn() {\r
+ global $mantra_options;\r
+ $items = array("None", "One", "Two", "Three" , "Four", "Five", "Six", "Seven");\r
+ foreach($items as $item) {\r
+\r
+ $checkedClass = ($mantra_options['mantra_image']==$item) ? ' checkedClass' : '';\r
+\r
+ echo " <label id='$item' for='$item$item' class='images $checkedClass'><input ";\r
+ checked($mantra_options['mantra_image'],$item);\r
+ echo "value='$item' id='$item$item' onClick=\"changeBorder('$item','images');\" name='ma_options[mantra_image]' type='radio' /><img id='image$item' src='".get_template_directory_uri()."/admin/images/testimg.png'/></label>";\r
+ }\r
+\r
+ echo "<div><small>".__("The border around your inserted images. ","mantra")."</small></div>";\r
+}\r
+\r
+// RADIO-BUTTON - Name: ma_options[pin]\r
+function cryout_setting_pin_fn() {\r
+global $mantra_options;\r
+ $items = array("mantra_dot", "Pin1", "Pin2", "Pin3" , "Pin4", "Pin5");\r
+ foreach($items as $item) {\r
+ $none='';\r
+ if ($item == 'mantra_dot') { $none='None'; }\r
+ $checkedClass = ($mantra_options['mantra_pin']==$item) ? ' checkedClass' : '';\r
+ echo "<label id='$item' class='pins $checkedClass'><input ";\r
+ checked($mantra_options['mantra_pin'],$item);\r
+ echo " value='$item' onClick=\"changeBorder('$item','pins');\" name='ma_options[mantra_pin]' type='radio' />$none<img style='margin-left:10px;margin-right:10px;' src='".get_template_directory_uri()."/images/pins/".$item.".png'/></label>";\r
+ }\r
+ echo "<div><small>".__("The image on top of your captions. ","mantra")."</small></div>";\r
+}\r
+\r
+// RADIO-BUTTON - Name: ma_options[sidebullet]\r
+function cryout_setting_sidebullet_fn() {\r
+ global $mantra_options;\r
+ $items = array("mantra_dot2", "arrow_black", "arrow_white", "bullet_dark" , "bullet_gray", "bullet_light", "square_dark", "square_white", "triangle_dark" , "triangle_gray", "triangle_white");\r
+ foreach($items as $item) {\r
+ $none='';\r
+ if ($item == 'mantra_dot2') { $none='None'; }\r
+ $checkedClass = ($mantra_options['mantra_sidebullet']==$item) ? ' checkedClass' : '';\r
+ echo "<label id='$item' class='sidebullets $checkedClass'><input ";\r
+ checked($mantra_options['mantra_sidebullet'],$item);\r
+ echo " value='$item' onClick=\"changeBorder('$item','sidebullets');\" name='ma_options[mantra_sidebullet]' type='radio' />$none<img style='margin-left:10px;margin-right:10px;' src='".get_template_directory_uri()."/images/bullets/".$item.".png'/></label>";\r
+ }\r
+ echo "<div><small>".__("The sidebar list bullets. ","mantra")."</small></div>";\r
+}\r
+\r
+\r
+\r
+//CHECKBOX - Name: ma_options[metaback]\r
+function cryout_setting_metaback_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Gray" , "White", "None");\r
+ $itemsare = array( __("Gray","mantra"), __("White","mantra"), __("None","mantra"));\r
+ echo "<select id='mantra_metaback' name='ma_options[mantra_metaback]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_metaback'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("The background for your post-metas area (under your post tiltes). Gray by default.","mantra")."</small></div>";\r
+\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[postseparator]\r
+function cryout_setting_postseparator_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_postseparator' name='ma_options[mantra_postseparator]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_postseparator'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide or show a horizontal rule to separate posts.","mantra")."</small></div>";\r
+\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[contentlist]\r
+function cryout_setting_contentlist_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_contentlist' name='ma_options[mantra_contentlist]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_contentlist'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide or show bullets next to lists that are in your content area (posts, pages etc.).","mantra")."</small></div>";\r
+\r
+}\r
+\r
+\r
+//CHECKBOX - Name: ma_options[pagetitle]\r
+function cryout_setting_pagetitle_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_pagetitle' name='ma_options[mantra_pagetitle]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_pagetitle'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide or show Page titles on any <i>created</i> pages. ","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[categtitle]\r
+function cryout_setting_categtitle_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_categtitle' name='ma_options[mantra_categtitle]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_categtitle'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide or show Page titles on <i>Category</i> Pages. ","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[tables]\r
+function cryout_setting_tables_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_tables' name='ma_options[mantra_tables]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_tables'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide table borders and background color.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[comtext]\r
+function cryout_setting_comtext_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_comtext' name='ma_options[mantra_comtext]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_comtext'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>).","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[comclosed]\r
+function cryout_setting_comclosed_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide in posts", "Hide in pages", "Hide everywhere");\r
+ $itemsare = array( __("Show","mantra"), __("Hide in posts","mantra"), __("Hide in pages","mantra"), __("Hide everywhere","mantra"));\r
+ echo "<select id='mantra_comclosed' name='ma_options[mantra_comclosed]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_comclosed'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+//CHECKBOX - Name: ma_options[comoff]\r
+function cryout_setting_comoff_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_comoff' name='ma_options[mantra_comoff]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_comoff'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide the <b>Comments off</b> text next to posts that have comments disabled.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+//CHECKBOX - Name: ma_options[backtop]\r
+function cryout_setting_backtop_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_backtop' name='ma_options[mantra_backtop]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_backtop'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Enable the Back to Top button. The button appears after scrolling the page down.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+////////////////////////////////\r
+//// POST SETTINGS /////////////\r
+////////////////////////////////\r
+\r
+//CHECKBOX - Name: ma_options[postdate]\r
+function cryout_setting_postcomlink_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_postcomlink' name='ma_options[mantra_postcomlink]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_postcomlink'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[postdate]\r
+function cryout_setting_postdate_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_postdate' name='ma_options[mantra_postdate]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_postdate'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide or show the post date.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[posttime]\r
+function cryout_setting_posttime_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_posttime' name='ma_options[mantra_posttime]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_posttime'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Show the post time with the date. Time will not be visible if the Post Date is hidden.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[postauthor]\r
+function cryout_setting_postauthor_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_postauthor' name='ma_options[mantra_postauthor]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_postauthor'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide or show the post author.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[postcateg]\r
+function cryout_setting_postcateg_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_postcateg' name='ma_options[mantra_postcateg]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_postcateg'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide the post category.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[postbook]\r
+function cryout_setting_postbook_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_postbook' name='ma_options[mantra_postbook]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_postbook'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide the 'Bookmark permalink'.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[postmetas]\r
+function cryout_setting_postmetas_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_postmetas' name='ma_options[mantra_postmetas]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_postmetas'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide the meta bar. All meta info in it will be hidden.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[posttag]\r
+function cryout_setting_posttag_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Show" , "Hide");\r
+ $itemsare = array( __("Show","mantra"), __("Hide","mantra"));\r
+ echo "<select id='mantra_posttag' name='ma_options[mantra_posttag]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_posttag'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Hide the post tags.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+////////////////////////////////\r
+//// EXCERPT SETTINGS /////////////\r
+////////////////////////////////\r
+\r
+\r
+//CHECKBOX - Name: ma_options[excerpthome]\r
+function cryout_setting_excerpthome_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Excerpt" , "Full Post");\r
+ $itemsare = array( __("Excerpt","mantra"), __("Full Post","mantra"));\r
+ echo "<select id='mantra_excerpthome' name='ma_options[mantra_excerpthome]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_excerpthome'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Excerpts on the main page. Only standard posts will be affected. All other post formats (aside, image, chat, quote etc.) have their specific formating.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[excerptsticky]\r
+function cryout_setting_excerptsticky_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Excerpt" , "Full Post");\r
+ $itemsare = array( __("Excerpt","mantra"), __("Full Post","mantra"));\r
+ echo "<select id='mantra_excerptsticky' name='ma_options[mantra_excerptsticky]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_excerptsticky'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. ","mantra")."</small></div>";\r
+}\r
+\r
+\r
+//CHECKBOX - Name: ma_options[excerptarchive]\r
+function cryout_setting_excerptarchive_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Excerpt" , "Full Post");\r
+ $itemsare = array( __("Excerpt","mantra"), __("Full Post","mantra"));\r
+ echo "<select id='mantra_excerptarchive' name='ma_options[mantra_excerptarchive]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_excerptarchive'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+// TEXTBOX - Name: ma_options[excerptwords]\r
+function cryout_setting_excerptwords_fn() {\r
+ global $mantra_options;\r
+ echo "<input id='mantra_excerptwords' name='ma_options[mantra_excerptwords]' size='6' type='text' value='".esc_attr( $mantra_options['mantra_excerptwords'] )."' />";\r
+ echo "<div><small>".__("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\r
+ will take the reader to the full post page.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[magazinelayout]\r
+function cryout_setting_magazinelayout_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_magazinelayout' name='ma_options[mantra_magazinelayout]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_magazinelayout'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row.","mantra")."</small></div>";\r
+}\r
+\r
+// TEXTBOX - Name: ma_options[excerptdots]\r
+function cryout_setting_excerptdots_fn() {\r
+ global $mantra_options;\r
+ echo "<input id='mantra_excerptdots' name='ma_options[mantra_excerptdots]' size='40' type='text' value='".esc_attr( $mantra_options['mantra_excerptdots'] )."' />";\r
+ echo "<div><small>".__("Replaces the three dots ('[...])' that are appended automatically to excerpts.","mantra")."</small></div>";\r
+}\r
+\r
+// TEXTBOX - Name: ma_options[excerptcont]\r
+function cryout_setting_excerptcont_fn() {\r
+ global $mantra_options;\r
+ echo "<input id='mantra_excerptcont' name='ma_options[mantra_excerptcont]' size='40' type='text' value='".esc_attr( $mantra_options['mantra_excerptcont'] )."' />";\r
+ echo "<div><small>".__("Edit the 'Continue Reading' link added to your post excerpts.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[excerpttags]\r
+function cryout_setting_excerpttags_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_excerpttags' name='ma_options[mantra_excerpttags]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_excerpttags'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".sprintf(__("By default WordPress excerpts remove all HTML tags (%s and all others) and only clean text is left in the excerpt.\r
+Enabling this option allows HTML tags to remain in excerpts so all your default formating will be kept.<br /> <b>Just a warning: </b>If HTML tags are enabled, you have to make sure\r
+they are not left open. So if within your post you have an opened HTML tag but the except ends before that tag closes, the rest of the site will be contained in that HTML tag. -- Leave 'Disable' if unsure -- </small></div>","mantra"),htmlspecialchars('<pre>, <a>, <b>') );\r
+}\r
+\r
+\r
+////////////////////////////////\r
+/// FEATURED IMAGE SETTINGS ////\r
+////////////////////////////////\r
+\r
+\r
+//CHECKBOX - Name: ma_options[fpost]\r
+function cryout_setting_fpost_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_fpost' name='ma_options[mantra_fpost]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_fpost'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ $checkedClass = ($mantra_options['mantra_fpostlink']=='1') ? ' checkedClass' : '';\r
+\r
+\r
+ echo " <label style='border:none;margin-left:10px;' id='$items[0]' for='$items[0]$items[0]' class='socialsdisplay $checkedClass'><input type='hidden' name='ma_options[mantra_fpostlink]' value='0' /><input ";\r
+ checked($mantra_options['mantra_fpostlink'],'1');\r
+ echo "value='1' id='$items[0]$items[0]' name='ma_options[mantra_fpostlink]' type='checkbox' /> Link the thumbail to the post </label>";\r
+\r
+\r
+ echo "<div><small>".__("Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section.","mantra")."</small></div>";\r
+}\r
+\r
+//CHECKBOX - Name: ma_options[fauto]\r
+function cryout_setting_fauto_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_fauto' name='ma_options[mantra_fauto]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_fauto'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("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.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+//CHECKBOX - Name: ma_options[falign]\r
+function cryout_setting_falign_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Left" , "Center", "Right");\r
+ $itemsare = array( __("Left","mantra"), __("Center","mantra"), __("Right","mantra"));\r
+ echo "<select id='mantra_falign' name='ma_options[mantra_falign]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_falign'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("Thumbnail alignment.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+// TEXTBOX - Name: ma_options[fwidth]\r
+function cryout_setting_fsize_fn() {\r
+ global $mantra_options;\r
+ echo "<input id='mantra_fwidth' name='ma_options[mantra_fwidth]' size='4' type='text' value='".esc_attr( $mantra_options['mantra_fwidth'] )."' />px (width) <b>X</b> ";\r
+ echo "<input id='mantra_fheight' name='ma_options[mantra_fheight]' size='4' type='text' value='".esc_attr( $mantra_options['mantra_fheight'] )."' />px (height)";\r
+\r
+ $checkedClass = ($mantra_options['mantra_fcrop']=='1') ? ' checkedClass' : '';\r
+\r
+ echo " <label id='fcrop' for='mantra_fcrop' class='socialsdisplay $checkedClass'><input ";\r
+ checked($mantra_options['mantra_fcrop'],'1');\r
+ echo "value='1' id='mantra_fcrop' name='ma_options[mantra_fcrop]' type='checkbox' /> Crop images to exact size. </label>";\r
+\r
+\r
+ echo "<div><small>".__("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.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+//CHECKBOX - Name: ma_options[fheader]\r
+function cryout_setting_fheader_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_fheader' name='ma_options[mantra_fheader]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_fheader'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ echo "<div><small>".__("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\r
+ and if it is bigger or at least equal to the current header size.","mantra")."</small></div>";\r
+}\r
+\r
+\r
+////////////////////////\r
+/// SOCIAL SETTINGS ////\r
+////////////////////////\r
+\r
+// TEXTBOX - Name: ma_options[social1]\r
+\r
+\r
+\r
+function cryout_setting_social_master($i) {\r
+ $cryout_special_keys = array('Mail', 'Skype');\r
+ $cryout_social_small = array (\r
+ '',__('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> )','mantra'),\r
+ '',__("You can insert up to 5 different social sites and addresses.",'mantra'),\r
+ '',__("There are a total of 27 social networks to choose from. ",'mantra'),\r
+ '',__("You can leave any number of inputs empty. " ,'mantra'),\r
+ '',__("You can choose the same social media any number of times. ",'mantra')\r
+ );\r
+ $j=$i+1;\r
+ global $mantra_options, $socialNetworks;\r
+ echo "<select id='mantra_social$i' name='ma_options[mantra_social$i]'>";\r
+ foreach($socialNetworks as $item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_social'.$i],$item);\r
+ echo ">$item</option>";\r
+ }\r
+ echo "</select><span class='address_span'> » </span>";\r
+\r
+ if (in_array($mantra_options['mantra_social'.$i],$cryout_special_keys)) :\r
+ $cryout_current_social = esc_html( $mantra_options['mantra_social'.$j] );\r
+ else :\r
+ $cryout_current_social = esc_url( $mantra_options['mantra_social'.$j] );\r
+ endif;\r
+\r
+ echo "<input id='mantra_social$j' name='ma_options[mantra_social$j]' size='32' type='text' value='$cryout_current_social' />";\r
+ echo "<div><small>".$cryout_social_small[$i]."</small></div>";\r
+}\r
+\r
+\r
+\r
+function cryout_setting_socials1_fn() {\r
+ cryout_setting_social_master(1);\r
+}\r
+\r
+function cryout_setting_socials2_fn() {\r
+ cryout_setting_social_master(3);\r
+}\r
+\r
+// TEXTBOX - Name: ma_options[social3]\r
+function cryout_setting_socials3_fn() {\r
+cryout_setting_social_master(5);\r
+}\r
+\r
+// TEXTBOX - Name: ma_options[social4]\r
+function cryout_setting_socials4_fn() {\r
+cryout_setting_social_master(7);\r
+}\r
+\r
+// TEXTBOX - Name: ma_options[social5]\r
+function cryout_setting_socials5_fn() {\r
+cryout_setting_social_master(9);\r
+}\r
+\r
+// TEXTBOX - Name: ma_options[socialsdisplay]\r
+function cryout_setting_socialsdisplay_fn() {\r
+global $mantra_options;\r
+ $items = array( "Header", "CLeft", "CRight" , "Footer");\r
+\r
+ $checkedClass0 = ($mantra_options['mantra_socialsdisplay0']=='1') ? ' checkedClass0' : '';\r
+ $checkedClass1 = ($mantra_options['mantra_socialsdisplay1']=='1') ? ' checkedClass1' : '';\r
+ $checkedClass2 = ($mantra_options['mantra_socialsdisplay2']=='1') ? ' checkedClass2' : '';\r
+ $checkedClass3 = ($mantra_options['mantra_socialsdisplay3']=='1') ? ' checkedClass3' : '';\r
+\r
+ echo " <label id='$items[0]' for='$items[0]$items[0]' class='socialsdisplay $checkedClass0'><input ";\r
+ checked($mantra_options['mantra_socialsdisplay0'],'1');\r
+ echo "value='1' id='$items[0]$items[0]' name='ma_options[mantra_socialsdisplay0]' type='checkbox' /> Top right corner of header </label>";\r
+\r
+ echo " <label id='$items[1]' for='$items[1]$items[1]' class='socialsdisplay $checkedClass1'><input ";\r
+ checked($mantra_options['mantra_socialsdisplay1'],'1');\r
+ echo "value='1' id='$items[1]$items[1]' name='ma_options[mantra_socialsdisplay1]' type='checkbox' /> Under menu - left side </label>";\r
+\r
+ echo " <label id='$items[2]' for='$items[2]$items[2]' class='socialsdisplay $checkedClass2'><input ";\r
+ checked($mantra_options['mantra_socialsdisplay2'],'1');\r
+ echo "value='1' id='$items[2]$items[2]' name='ma_options[mantra_socialsdisplay2]' type='checkbox' /> Under menu - right side </label>";\r
+\r
+ echo " <label id='$items[3]' for='$items[3]$items[3]' class='socialsdisplay $checkedClass3'><input ";\r
+ checked($mantra_options['mantra_socialsdisplay3'],'1');\r
+ echo "value='1' id='$items[3]$items[3]' name='ma_options[mantra_socialsdisplay3]' type='checkbox' /> In the footer (smaller icons) </label>";\r
+\r
+\r
+\r
+ echo "<div><p><small>".__("Choose the <b>areas</b> where to display the social icons.","mantra")."</small></p></div>";\r
+}\r
+\r
+\r
+////////////////////////\r
+/// MISC SETTINGS ////\r
+////////////////////////\r
+\r
+\r
+// TEXTBOX - Name: ma_options[copyright]\r
+function cryout_setting_copyright_fn() {\r
+ global $mantra_options;\r
+ echo "<textarea id='mantra_copyright' name='ma_options[mantra_copyright]' rows='3' cols='70' type='textarea' >".esc_textarea($mantra_options['mantra_copyright'])." </textarea>";\r
+ echo "<div><small>".__("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 © .","mantra")."</small></div>";\r
+}\r
+\r
+\r
+// TEXTBOX - Name: ma_options[customcss]\r
+function cryout_setting_customcss_fn() {\r
+ global $mantra_options;\r
+ echo "<textarea id='mantra_customcss' name='ma_options[mantra_customcss]' rows='8' cols='70' type='textarea' >".esc_textarea(htmlspecialchars_decode($mantra_options['mantra_customcss'], ENT_QUOTES))." </textarea>";\r
+ echo "<div><small>".__("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 <style> tags are not needed.","mantra")."</small></div>";\r
+}\r
+\r
+// TEXTBOX - Name: ma_options[customjs]\r
+function cryout_setting_customjs_fn() {\r
+ global $mantra_options;\r
+ echo "<textarea id='mantra_customjs' name='ma_options[mantra_customjs]' rows='8' cols='70' type='textarea' >".esc_textarea(htmlspecialchars_decode($mantra_options['mantra_customjs'], ENT_QUOTES))." </textarea>";\r
+ echo "<div><small>".__("Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software).<br> The <script> tags are not needed.","mantra")."</small></div>";\r
+}\r
+function cryout_setting_seo_fn() {\r
+ global $mantra_options;\r
+ $items = array ("Enable" , "Disable");\r
+ $itemsare = array( __("Enable","mantra"), __("Disable","mantra"));\r
+ echo "<select id='mantra_seo' name='ma_options[mantra_seo]'>";\r
+foreach($items as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_seo'],$item);\r
+ echo ">$itemsare[$id]</option>";\r
+}\r
+ echo "</select>";\r
+ 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>";\r
+ echo "<br><small>".__("All title tags are handled automatically by Mantra.","mantra")."</small>";\r
+\r
+ echo "<div class='slmini'>";\r
+ echo "<b>".__("Homepage Meta Description","mantra")."</b>";\r
+ 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>";\r
+ 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>";\r
+ echo "</div>";\r
+\r
+ echo "<div class='slmini'>";\r
+ echo "<b> Meta Descriptions for all other pages: </b>";\r
+ $moreitems = array ("Auto" , "Manual");\r
+ $moreitemsare = array( __("Auto","mantra"), __("Manual","mantra"));\r
+ echo "<select id='mantra_seo_gen_desc' name='ma_options[mantra_seo_gen_desc]'>";\r
+ foreach($moreitems as $id=>$item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_seo_gen_desc'],$item);\r
+ echo ">$moreitemsare[$id]</option>";\r
+ }\r
+ echo "</select>";\r
+ echo "<small>".__("<u>Auto</u> - Mantra will automatically add post expcerpts to 'page' and 'post' meta descriptions.<br>\r
+ <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>\r
+ 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>";\r
+ echo "</div>";\r
+\r
+ echo "<div class='slmini'>";\r
+ echo "<b>".__("Post Author","mantra")."</b>";\r
+ $authors=wp_list_authors (array("echo"=>false,"html"=> false));\r
+ $authors_array = explode ("," , $authors);\r
+ array_unshift($authors_array,__("Do not use","mantra"));\r
+ echo "<select id='mantra_seo_author' name='ma_options[mantra_seo_author]'>";\r
+ foreach($authors_array as $item) {\r
+ echo "<option value='$item'";\r
+ selected($mantra_options['mantra_seo_author'],$item);\r
+ echo ">$item</option>";\r
+}\r
+ echo "</select>";\r
+\r
+\r
+ echo "<small>".__("If you want to show an author in the meta tags.","mantra")."</small>";\r
+ echo "</div>";\r
+\r
+}\r
+?>
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying Archive pages.\r
+ *\r
+ * Used to display archive-type pages if nothing more specific matches a query.\r
+ * For example, puts together date-based pages if no date.php file exists.\r
+ *\r
+ * Learn more: http://codex.wordpress.org/Template_Hierarchy\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ <div id="content" role="main">\r
+ \r
+ <?php cryout_before_content_hook(); ?>\r
+ \r
+ <?php if ( have_posts() ) : ?>\r
+\r
+ <header class="page-header">\r
+ <h1 class="page-title">\r
+ <?php if ( is_day() ) : ?>\r
+ <?php printf( __( 'Daily Archives: %s', 'mantra' ), '<span>' . get_the_date() . '</span>' ); ?>\r
+ <?php elseif ( is_month() ) : ?>\r
+ <?php printf( __( 'Monthly Archives: %s', 'mantra' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'mantra' ) ) . '</span>' ); ?>\r
+ <?php elseif ( is_year() ) : ?>\r
+ <?php printf( __( 'Yearly Archives: %s', 'mantra' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'mantra' ) ) . '</span>' ); ?>\r
+ <?php else : ?>\r
+ <?php _e( 'Blog Archives', 'mantra' ); ?>\r
+ <?php endif; ?>\r
+ </h1>\r
+ </header>\r
+\r
+ <?php mantra_content_nav( 'nav-above' ); ?>\r
+\r
+ <?php /* Start the Loop */ ?>\r
+ <?php while ( have_posts() ) : the_post(); ?>\r
+\r
+ <?php\r
+ /* Include the Post-Format-specific template for the content.\r
+ * If you want to overload this in a child theme then include a file\r
+ * called content-___.php (where ___ is the Post Format name) and that will be used instead.\r
+ */\r
+ get_template_part( 'content', get_post_format() );\r
+ ?>\r
+\r
+ <?php endwhile; ?>\r
+\r
+ <?php if($mantra_pagination=="Enable") mantra_pagination(); else mantra_content_nav( 'nav-below' ); ?>\r
+\r
+ <?php else : ?>\r
+\r
+ <article id="post-0" class="post no-results not-found">\r
+ <header class="entry-header">\r
+ <h1 class="entry-title"><?php _e( 'Nothing Found', 'mantra' ); ?></h1>\r
+ </header><!-- .entry-header -->\r
+\r
+ <div class="entry-content">\r
+ <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mantra' ); ?></p>\r
+ <?php get_search_form(); ?>\r
+ </div><!-- .entry-content -->\r
+ </article><!-- #post-0 -->\r
+\r
+ <?php endif; ?>\r
+ \r
+ <?php cryout_after_content_hook(); ?>\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #primary -->\r
+\r
+\r
+<?php get_footer(); ?>
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying attachments.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+\r
+get_header(); ?>\r
+\r
+ <section id="container" class="single-attachment">\r
+ <div id="content" role="main">\r
+\r
+<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>\r
+\r
+ <?php if ( ! empty( $post->post_parent ) ) : ?>\r
+ <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'mantra' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php\r
+ /* translators: %s - title of parent post */\r
+ printf( '<span class="meta-nav">«</span> %s', get_the_title( $post->post_parent ) );\r
+ ?></a></p>\r
+ <?php endif; ?>\r
+\r
+ <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <h2 class="entry-title"><?php the_title(); ?></h2>\r
+\r
+ <div class="entry-meta">\r
+ <?php\r
+ printf('<span class="%1$s">'.__('By','mantra').'</span> %2$s',\r
+ 'meta-prep meta-prep-author',\r
+ sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',\r
+ get_author_posts_url( get_the_author_meta( 'ID' ) ),\r
+ sprintf( esc_attr__( 'View all posts by %s', 'mantra' ), get_the_author() ),\r
+ get_the_author()\r
+ )\r
+ );\r
+ ?>\r
+ <span class="meta-sep">|</span>\r
+ <?php\r
+ printf( '<span class="%1$s">'.__('Published','mantra').'</span> %2$s',\r
+ 'meta-prep meta-prep-entry-date',\r
+ sprintf( '<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>',\r
+ esc_attr( get_the_time() ),\r
+ get_the_date()\r
+ )\r
+ );\r
+ if ( wp_attachment_is_image() ) {\r
+ echo ' <span class="meta-sep">|</span> ';\r
+ $metadata = wp_get_attachment_metadata();\r
+ printf( __( 'Full size is %s pixels', 'mantra'),\r
+ sprintf( '<a href="%1$s" title="%2$s">%3$s × %4$s</a>',\r
+ wp_get_attachment_url(),\r
+ esc_attr( __('Link to full-size image', 'mantra') ),\r
+ $metadata['width'],\r
+ $metadata['height']\r
+ )\r
+ );\r
+ }\r
+ ?>\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>\r
+ </div><!-- .entry-meta -->\r
+\r
+ <div class="entry-content">\r
+ <div class="entry-attachment">\r
+<?php if ( wp_attachment_is_image() ) :\r
+ $attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) );\r
+ foreach ( $attachments as $k => $attachment ) {\r
+ if ( $attachment->ID == $post->ID )\r
+ break;\r
+ }\r
+ $k++;\r
+ // If there is more than 1 image attachment in a gallery\r
+ if ( count( $attachments ) > 1 ) {\r
+ if ( isset( $attachments[ $k ] ) )\r
+ // get the URL of the next image attachment\r
+ $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );\r
+ else\r
+ // or get the URL of the first image attachment\r
+ $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );\r
+ } else {\r
+ // or, if there's only 1 image attachment, get the URL of the image\r
+ $next_attachment_url = wp_get_attachment_url();\r
+ }\r
+?>\r
+ <p class="attachment"><a href="<?php echo $next_attachment_url; ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php\r
+ $attachment_size = apply_filters( 'mantra_attachment_size', 900 );\r
+ echo wp_get_attachment_image( $post->ID, array( $attachment_size, 9999 ) ); // filterable image width with, essentially, no limit for image height.\r
+ ?></a></p>\r
+\r
+ <div id="nav-below" class="navigation">\r
+ <div class="nav-previous">« <?php previous_image_link( false ); ?></div>\r
+ <div class="nav-next"><?php next_image_link( false ); ?> »</div>\r
+ </div><!-- #nav-below -->\r
+<?php else : ?>\r
+ <a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a>\r
+<?php endif; ?>\r
+ </div><!-- .entry-attachment -->\r
+ <div class="entry-caption"><?php if ( !empty( $post->post_excerpt ) ) the_excerpt(); ?></div>\r
+\r
+<?php the_content( __( 'Continue reading','mantra').' <span class="meta-nav">→</span>' ); ?>\r
+<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'mantra' ), 'after' => '</div>' ) ); ?>\r
+\r
+ </div><!-- .entry-content -->\r
+\r
+ <div class="entry-utility">\r
+ <?php mantra_posted_in(); ?>\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), ' <span class="edit-link">', '</span>' ); ?>\r
+ </div><!-- .entry-utility -->\r
+ </div><!-- #post-## -->\r
+\r
+<?php comments_template(); ?>\r
+\r
+<?php endwhile; ?>\r
+\r
+ </div><!-- #content -->\r
+<?php // get_sidebar(); // sidebars disabled on attachment page; alt css used ?>\r
+ </section><!-- #container -->\r
+\r
+<?php get_footer(); ?>\r
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying Author Archive pages.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ <div id="content" role="main">\r
+ <?php cryout_before_content_hook(); ?>\r
+ \r
+ <?php if ( have_posts() ) : ?>\r
+ \r
+ <?php\r
+ /* Queue the first post, that way we know\r
+ * what author we're dealing with (if that is the case).\r
+ *\r
+ * We reset this later so we can run the loop\r
+ * properly with a call to rewind_posts().\r
+ */\r
+ the_post();\r
+ ?>\r
+\r
+ <header class="page-header">\r
+ <h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'mantra' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( "ID" ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1>\r
+ </header>\r
+\r
+ <?php\r
+ /* Since we called the_post() above, we need to\r
+ * rewind the loop back to the beginning that way\r
+ * we can run the loop properly, in full.\r
+ */\r
+ rewind_posts();\r
+ ?>\r
+\r
+ <?php mantra_content_nav( 'nav-above' ); ?>\r
+\r
+ <?php\r
+ // If a user has filled out their description, show a bio on their entries.\r
+ if ( get_the_author_meta( 'description' ) ) : ?>\r
+ <div id="author-info">\r
+ <div id="author-avatar">\r
+ <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'mantra_author_bio_avatar_size', 60 ) ); ?>\r
+ </div><!-- #author-avatar -->\r
+ <div id="author-description">\r
+ <h2><?php printf( __( 'About %s', 'mantra' ), get_the_author() ); ?></h2>\r
+ <?php the_author_meta( 'description' ); ?>\r
+ </div><!-- #author-description -->\r
+ </div><!-- #entry-author-info -->\r
+ <?php endif; ?>\r
+\r
+ <?php /* Start the Loop */ ?>\r
+ <?php while ( have_posts() ) : the_post(); ?>\r
+\r
+ <?php\r
+ /* Include the Post-Format-specific template for the content.\r
+ * If you want to overload this in a child theme then include a file\r
+ * called content-___.php (where ___ is the Post Format name) and that will be used instead.\r
+ */\r
+ get_template_part( 'content', get_post_format() );\r
+ ?>\r
+\r
+ <?php endwhile; ?>\r
+\r
+ <?php if($mantra_pagination=="Enable") mantra_pagination(); else mantra_content_nav( 'nav-below' ); ?>\r
+\r
+ <?php else : ?>\r
+\r
+ <article id="post-0" class="post no-results not-found">\r
+ <header class="entry-header">\r
+ <h1 class="entry-title"><?php _e( 'Nothing Found', 'mantra' ); ?></h1>\r
+ </header><!-- .entry-header -->\r
+\r
+ <div class="entry-content">\r
+ <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mantra' ); ?></p>\r
+ <?php get_search_form(); ?>\r
+ </div><!-- .entry-content -->\r
+ </article><!-- #post-0 -->\r
+\r
+ <?php endif; ?>\r
+ \r
+ <?php cryout_after_content_hook(); ?>\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #primary -->\r
+\r
+\r
+<?php get_footer(); ?>
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying Category Archive pages.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ <div id="content" role="main">\r
+ <?php cryout_before_content_hook(); ?>\r
+ \r
+ <?php if ( have_posts() ) : ?>\r
+\r
+ <header class="page-header">\r
+ <h1 class="page-title"><?php\r
+ printf( __( 'Category Archives: %s', 'mantra' ), '<span>' . single_cat_title( '', false ) . '</span>' );\r
+ ?></h1>\r
+\r
+ <?php\r
+ $category_description = category_description();\r
+ if ( ! empty( $category_description ) )\r
+ echo apply_filters( 'category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>' );\r
+ ?>\r
+ </header>\r
+\r
+ <?php mantra_content_nav( 'nav-above' ); ?>\r
+\r
+ <?php /* Start the Loop */ ?>\r
+ <?php while ( have_posts() ) : the_post(); ?>\r
+\r
+ <?php\r
+ /* Include the Post-Format-specific template for the content.\r
+ * If you want to overload this in a child theme then include a file\r
+ * called content-___.php (where ___ is the Post Format name) and that will be used instead.\r
+ */\r
+ get_template_part( 'content', get_post_format() );\r
+ ?>\r
+\r
+ <?php endwhile; ?>\r
+\r
+ <?php if($mantra_pagination=="Enable") mantra_pagination(); else mantra_content_nav( 'nav-below' ); ?>\r
+\r
+ <?php else : ?>\r
+\r
+ <article id="post-0" class="post no-results not-found">\r
+ <header class="entry-header">\r
+ <h1 class="entry-title"><?php _e( 'Nothing Found', 'mantra' ); ?></h1>\r
+ </header><!-- .entry-header -->\r
+\r
+ <div class="entry-content">\r
+ <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mantra' ); ?></p>\r
+ <?php get_search_form(); ?>\r
+ </div><!-- .entry-content -->\r
+ </article><!-- #post-0 -->\r
+\r
+ <?php endif; ?>\r
+ \r
+ <?php cryout_after_content_hook(); ?>\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #primary -->\r
+\r
+<?php get_footer(); ?>\r
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying Comments.\r
+ *\r
+ * The area of the page that contains both current comments\r
+ * and the comment form. The actual display of comments is\r
+ * handled by a callback to mantra_comment which is\r
+ * located in the includes/theme-comments.php file.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+?>\r
+\r
+ <div id="comments">\r
+<?php if ( post_password_required() ) : ?>\r
+ <p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'mantra' ); ?></p>\r
+ </div><!-- #comments -->\r
+<?php\r
+ /* Stop the rest of comments.php from being processed,\r
+ * but don't kill the script entirely -- we still have\r
+ * to fully load the template.\r
+ */\r
+ return;\r
+ endif;\r
+?>\r
+\r
+<?php\r
+ // You can start editing here -- including this comment!\r
+?>\r
+\r
+<?php if ( have_comments() ) : \r
+ \r
+ cryout_before_comments_hook(); ?>\r
+\r
+ <ol class="commentlist">\r
+ \r
+ <?php cryout_comments_hook(); ?>\r
+ \r
+ </ol>\r
+\r
+ <?php cryout_after_comments_hook(); \r
+\r
+?><?php else : // or, if we don't have comments:\r
+\r
+ cryout_nocomments_hook();\r
+\r
+ endif; // end have_comments() ?>\r
+\r
+<?php comment_form(); ?>\r
+\r
+</div><!-- #comments -->\r
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying posts in the Aside Post Format on index and archive pages\r
+ *\r
+ * Learn more: http://codex.wordpress.org/Post_Formats\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 0.5\r
+ */\r
+?>\r
+\r
+ <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <header class="entry-header">\r
+ <hgroup>\r
+ <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'mantra' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> \r
+ </hgroup>\r
+ <?php cryout_post_title_hook(); ?>\r
+ <div class="entry-meta2">\r
+<h3 class="entry-format"><?php _e( 'Aside', 'mantra' ); ?></h3>\r
+ <?php mantra_posted_on(); ?>\r
+ <?php /* if ( comments_open() && ! post_password_required() ) :*/ ?>\r
+ <div class="comments-link">\r
+ <?php mantra_comments_on(); ?>\r
+ </div>\r
+ <?php /* endif; */ ?><?php\r
+ cryout_post_meta_hook(); ?>\r
+ </div><!-- .entry-meta2 -->\r
+ \r
+ </header><!-- .entry-header -->\r
+ <?php cryout_post_before_content_hook(); \r
+ ?><?php if ( is_search() ) : // Only display Excerpts for Search ?>\r
+ <div class="entry-summary">\r
+ <?php the_excerpt(); ?>\r
+ </div><!-- .entry-summary -->\r
+ <?php else : ?>\r
+ <div class="entry-content">\r
+ <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'mantra' ) ); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mantra' ) . '</span>', 'after' => '</div>' ) ); ?>\r
+ </div><!-- .entry-content -->\r
+ <?php endif; ?><?php\r
+ cryout_post_after_content_hook(); ?>\r
+ <footer class="entry-meta2">\r
+ <?php $tag_list = get_the_tag_list( '', ', ' ); \r
+if ( $tag_list ) { ?>\r
+ <span class="bl_tagg"><?php _e( 'Tagged','mantra'); print ' '.$tag_list; ?></span>\r
+ <?php } ?>\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?><?php\r
+ cryout_post_footer_hook(); ?>\r
+ </footer><!-- #entry-meta -->\r
+ </article><!-- #post-<?php the_ID(); ?> -->\r
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying posts in the Link Post Format on index and archive pages\r
+ *\r
+ * Learn more: http://codex.wordpress.org/Post_Formats\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+?>\r
+\r
+ <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <header class="entry-header">\r
+ <hgroup>\r
+ <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'mantra' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>\r
+ </hgroup>\r
+ <?php cryout_post_title_hook(); ?>\r
+ <div class="entry-meta2">\r
+ <h3 class="entry-format"><?php _e( 'Chat', 'mantra' ); ?></h3>\r
+ <?php mantra_posted_on(); ?>\r
+ <?php /* if ( comments_open() && ! post_password_required() ) :*/ ?>\r
+ <div class="comments-link">\r
+ <?php mantra_comments_on(); ?>\r
+ </div>\r
+ <?php /* endif; */ ?><?php\r
+ cryout_post_meta_hook(); ?>\r
+ </div><!-- .entry-meta -->\r
+ </header><!-- .entry-header -->\r
+ <?php cryout_post_before_content_hook(); \r
+ ?><?php if ( is_search() ) : // Only display Excerpts for Search ?>\r
+ <div class="entry-summary">\r
+ <?php the_excerpt(); ?>\r
+ </div><!-- .entry-summary -->\r
+ <?php else : ?>\r
+ <div class="entry-content">\r
+ <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'mantra' ) ); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mantra' ) . '</span>', 'after' => '</div>' ) ); ?>\r
+ </div><!-- .entry-content -->\r
+ <?php endif; ?><?php\r
+ cryout_post_after_content_hook(); ?>\r
+ <footer class="entry-meta2">\r
+ <?php $tag_list = get_the_tag_list( '', ', ' ); \r
+if ( $tag_list ) { ?>\r
+ <span class="bl_tagg"><?php _e( 'Tagged','mantra'); print ' '.$tag_list; ?></span>\r
+ <?php } ?>\r
+ \r
+ \r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?><?php\r
+ cryout_post_footer_hook(); ?>\r
+ </footer><!-- #entry-meta -->\r
+ </article><!-- #post-<?php the_ID(); ?> -->\r
--- /dev/null
+<?php\r
+/**\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since 2.2\r
+ */\r
+\r
+global $mantra_options; \r
+?>\r
+ <section id="container">\r
+ <div id="content" role="main" style="width:96%;">\r
+ <?php if ( have_posts() ) : ?>\r
+\r
+ <?php $the_query = new WP_Query( array('posts_per_page'=>$mantra_options['mantra_frontpostscount']) ); ?>\r
+ <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>\r
+ \r
+ <?php global $more; $more=0; ?>\r
+ <?php get_template_part( 'content', get_post_format() ); ?>\r
+ \r
+ <?php endwhile; \r
+ wp_reset_postdata(); ?>\r
+\r
+ <?php else : ?>\r
+ <article id="post-0" class="post no-results not-found">\r
+ <header class="entry-header">\r
+ <h1 class="entry-title"><?php _e( 'Nothing Found', 'mantra' ); ?></h1>\r
+ </header><!-- .entry-header -->\r
+\r
+ <div class="entry-content">\r
+ <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mantra' ); ?></p>\r
+ <?php get_search_form(); ?>\r
+ </div><!-- .entry-content -->\r
+ </article><!-- #post-0 -->\r
+ <?php endif; ?>\r
+ </div><!-- #content -->\r
+ <?php //get_sidebar(); ?>\r
+ </section><!-- #container -->
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying posts in the Gallery Post Format on index and archive pages\r
+ *\r
+ * Learn more: http://codex.wordpress.org/Post_Formats\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+ \r
+$options = mantra_get_theme_options();\r
+foreach ($options as $key => $value) { ${"$key"} = $value ; } \r
+?>\r
+\r
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <header class="entry-header">\r
+ <hgroup>\r
+ <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'mantra' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>\r
+ </hgroup>\r
+ <?php cryout_post_title_hook(); ?>\r
+ <div class="entry-meta">\r
+ <h3 class="entry-format"><?php _e( 'Gallery', 'mantra' ); ?></h3>\r
+ <?php mantra_posted_on(); ?><?php\r
+ cryout_post_meta_hook(); ?>\r
+ </div><!-- .entry-meta -->\r
+ </header><!-- .entry-header -->\r
+ <?php cryout_post_before_content_hook(); \r
+ ?><?php if ( is_search() ) : // Only display Excerpts for search pages ?>\r
+ <div class="entry-summary">\r
+ <?php the_excerpt(); ?>\r
+ </div><!-- .entry-summary -->\r
+ <?php else : ?>\r
+ <div class="entry-content">\r
+ <?php\r
+ /* $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );\r
+ if ( $images ) :\r
+ $total_images = count( $images );\r
+ $image = array_shift( $images );\r
+ $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' );*/\r
+ $images = mantra_get_gallery_images(); \r
+ if ( $images ) : $total_images = count( $images ); \r
+ $image = array_shift( $images ); \r
+\r
+ if (is_sticky() && $mantra_excerptsticky == "Full Post") $sticky_test=1; else $sticky_test=0;\r
+ if ($mantra_excerpthome != "Full Post" && $sticky_test==0): \r
+ /*?>\r
+\r
+ <figure class="gallery-thumb">\r
+ <a href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>\r
+ </figure><!-- .gallery-thumb -->\r
+ */\r
+ mantra_set_featured_thumb(); \r
+ ?>\r
+ <p><em><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'mantra' ),\r
+ 'href="' . esc_url( get_permalink() ) . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'mantra' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',\r
+ number_format_i18n( $total_images )\r
+ ); ?></em></p>\r
+ <?php\r
+ the_excerpt();\r
+ else: \r
+ the_content();\r
+ endif; ?>\r
+ <?php endif; ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mantra' ) . '</span>', 'after' => '</div>' ) ); ?>\r
+ </div><!-- .entry-content -->\r
+ <?php endif; ?><?php\r
+ cryout_post_after_content_hook(); ?>\r
+ <footer class="entry-meta2">\r
+ <?php $tag_list = get_the_tag_list( '', ', ' ); \r
+if ( $tag_list ) { ?>\r
+ <span class="bl_tagg"><?php _e( 'Tagged','mantra'); print ' '.$tag_list; ?></span>\r
+ <?php } ?>\r
+\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?><?php\r
+ cryout_post_footer_hook(); ?>\r
+ </footer><!-- #entry-meta -->\r
+</article><!-- #post-<?php the_ID(); ?> -->\r
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying posts in the Image Post Format on index and archive pages\r
+ *\r
+ * Learn more: http://codex.wordpress.org/Post_Formats\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+?>\r
+ <article id="post-<?php the_ID(); ?>" <?php post_class( 'indexed' ); ?>>\r
+ <header class="entry-header">\r
+ <hgroup>\r
+ <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'mantra' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>\r
+ <?php cryout_post_title_hook(); ?>\r
+ </hgroup>\r
+ <div class="entry-meta2">\r
+ <h3 class="entry-format"><?php _e( 'Image', 'mantra' ); ?></h3>\r
+ <?php mantra_posted_on(); ?>\r
+ <?php /* if ( comments_open() && ! post_password_required() ) :*/ ?>\r
+ <div class="comments-link">\r
+ <?php mantra_comments_on(); ?>\r
+ </div>\r
+ <?php /* endif; */ ?><?php\r
+ cryout_post_meta_hook(); ?>\r
+ </div><!-- .entry-meta -->\r
+ \r
+ </header><!-- .entry-header -->\r
+<?php cryout_post_before_content_hook(); ?>\r
+ <div class="entry-content">\r
+ <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'mantra' ) ); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mantra' ) . '</span>', 'after' => '</div>' ) ); ?>\r
+ </div><!-- .entry-content -->\r
+<?php cryout_post_after_content_hook(); ?>\r
+ <footer class="entry-meta2">\r
+ <?php $tag_list = get_the_tag_list( '', ', ' ); \r
+if ( $tag_list ) { ?>\r
+ <span class="bl_tagg"><?php _e( 'Tagged','mantra'); print ' '.$tag_list; ?></span>\r
+ <?php } ?>\r
+\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?><?php\r
+ cryout_post_footer_hook(); ?>\r
+ </footer><!-- #entry-meta -->\r
+ </article><!-- #post-<?php the_ID(); ?> -->\r
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying posts in the Link Post Format on index and archive pages\r
+ *\r
+ * Learn more: http://codex.wordpress.org/Post_Formats\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+?>\r
+\r
+ <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <header class="entry-header">\r
+ <hgroup>\r
+ <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'mantra' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>\r
+ </hgroup>\r
+ <?php cryout_post_title_hook(); ?>\r
+ <div class="entry-meta2">\r
+ <h3 class="entry-format"><?php _e( 'Link', 'mantra' ); ?></h3>\r
+ <?php mantra_posted_on(); ?>\r
+ <?php /* if ( comments_open() && ! post_password_required() ) :*/ ?>\r
+ <div class="comments-link">\r
+ <?php mantra_comments_on(); ?>\r
+ </div>\r
+ <?php /* endif; */ ?><?php\r
+ cryout_post_meta_hook(); ?>\r
+ </div><!-- .entry-meta -->\r
+ </header><!-- .entry-header -->\r
+ <?php cryout_post_before_content_hook(); \r
+ ?><?php if ( is_search() ) : // Only display Excerpts for Search ?>\r
+ <div class="entry-summary">\r
+ <?php the_excerpt(); ?>\r
+ </div><!-- .entry-summary -->\r
+ <?php else : ?>\r
+ <div class="entry-content">\r
+ <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'mantra' ) ); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mantra' ) . '</span>', 'after' => '</div>' ) ); ?>\r
+ </div><!-- .entry-content -->\r
+ <?php endif; ?><?php\r
+ cryout_post_after_content_hook(); ?>\r
+ <footer class="entry-meta2">\r
+ <?php $tag_list = get_the_tag_list( '', ', ' ); \r
+if ( $tag_list ) { ?>\r
+ <span class="bl_tagg"><?php _e( 'Tagged','mantra'); print ' '.$tag_list; ?></span>\r
+ <?php } ?>\r
+ \r
+ \r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?><?php\r
+ cryout_post_footer_hook(); ?>\r
+ </footer><!-- #entry-meta -->\r
+ </article><!-- #post-<?php the_ID(); ?> -->\r
--- /dev/null
+<?php\r
+/**\r
+ *\r
+ * Learn more: http://codex.wordpress.org/Post_Formats\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ */\r
+\r
+if ( have_posts() ) while ( have_posts() ) : the_post(); ?>\r
+\r
+ <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <?php if ( is_front_page() ) { ?>\r
+ <h2 class="entry-title"><?php the_title(); ?></h2>\r
+ <?php } else { ?>\r
+ <h1 class="entry-title"><?php the_title(); ?></h1>\r
+ <?php } ?>\r
+\r
+ <div class="entry-content">\r
+ <?php the_content(); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'mantra' ), 'after' => '</div>' ) ); ?>\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?>\r
+ </div><!-- .entry-content -->\r
+ </div><!-- #post-## -->\r
+\r
+ <?php if ( comments_open() ) { comments_template( '', true );} else { ?>\r
+ <p class="nocomments2"><?php _e( 'Comments are closed.', 'mantra' ); ?></p>\r
+\r
+\r
+<?php } endwhile; ?>\r
--- /dev/null
+<?php\r
+/**\r
+ * The default template for displaying posts in the Quote Post Format on index and archive pages\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+?>\r
+\r
+ <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <header class="entry-header">\r
+ <hgroup>\r
+ <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'mantra' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> \r
+ </hgroup>\r
+ <?php cryout_post_title_hook(); ?>\r
+ <div class="entry-meta2">\r
+ <h3 class="entry-format"><?php _e( 'Quote', 'mantra' ); ?></h3>\r
+ <?php mantra_posted_on(); ?>\r
+ <?php /* if ( comments_open() && ! post_password_required() ) :*/ ?>\r
+ <div class="comments-link">\r
+ <?php mantra_comments_on(); ?>\r
+ </div>\r
+ <?php /* endif; */ ?><?php\r
+ cryout_post_meta_hook(); ?>\r
+ </div><!-- .entry-meta -->\r
+ </header><!-- .entry-header -->\r
+ <?php cryout_post_before_content_hook(); \r
+ ?><?php if ( is_search() ) : // Only display Excerpts for Search ?>\r
+ <div class="entry-summary">\r
+ <?php the_excerpt(); ?>\r
+ </div><!-- .entry-summary -->\r
+ <?php else : ?>\r
+ <div class="entry-content">\r
+ <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'mantra' ) ); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mantra' ) . '</span>', 'after' => '</div>' ) ); ?>\r
+ </div><!-- .entry-content -->\r
+ <?php endif; ?><?php\r
+ cryout_post_after_content_hook(); ?>\r
+ <footer class="entry-meta2">\r
+ <?php $tag_list = get_the_tag_list( '', ', ' ); \r
+if ( $tag_list ) { ?>\r
+ <span class="bl_tagg"><?php _e( 'Tagged','mantra'); print ' '.$tag_list; ?></span>\r
+ <?php } ?>\r
+\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?><?php\r
+ cryout_post_footer_hook(); ?>\r
+ </footer><!-- #entry-meta -->\r
+ </article><!-- #post-<?php the_ID(); ?> -->\r
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying posts in the Status Post Format on index and archive pages\r
+ *\r
+ * Learn more: http://codex.wordpress.org/Post_Formats\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ */\r
+?>\r
+\r
+ <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <header class="entry-header">\r
+ <hgroup>\r
+ <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'mantra' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>\r
+ </hgroup>\r
+ <?php cryout_post_title_hook(); ?>\r
+ </header><!-- .entry-header -->\r
+<?php cryout_post_before_content_hook(); \r
+ ?><?php if ( is_search() ) : // Only display Excerpts for Search ?>\r
+ <div class="entry-summary">\r
+ <?php the_excerpt(); ?>\r
+ </div><!-- .entry-summary -->\r
+ <?php else : ?>\r
+ <div class="entry-content">\r
+ <div class="avatar">\r
+ <?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'mantra_status_avatar', '65' ) ); ?>\r
+ </div>\r
+ <div class="entry-meta2">\r
+ <h3 class="entry-format"><?php _e( 'Status', 'mantra' ); ?></h3>\r
+ <?php mantra_posted_on(); ?>\r
+ <?php /* if ( comments_open() && ! post_password_required() ) :*/ ?>\r
+ <div class="comments-link">\r
+ <?php mantra_comments_on(); ?>\r
+ </div>\r
+ <?php /* endif; */ ?>\r
+ </div><!-- .entry-meta2 -->\r
+ <div class="status_content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'mantra' ) ); ?> </div>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mantra' ) . '</span>', 'after' => '</div>' ) ); ?>\r
+ </div><!-- .entry-content -->\r
+ <?php endif; ?><?php\r
+ cryout_post_after_content_hook(); ?>\r
+ <footer class="entry-meta3">\r
+ <?php $tag_list = get_the_tag_list( '', ', ' ); \r
+if ( $tag_list ) { ?>\r
+ <span class="bl_tagg"><?php _e( 'Tagged','mantra'); print ' '.$tag_list; ?></span>\r
+ <?php } ?>\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?><?php\r
+ cryout_post_footer_hook(); ?>\r
+ </footer><!-- #entry-meta -->\r
+ </article><!-- #post-<?php the_ID(); ?> -->\r
--- /dev/null
+<?php\r
+/**\r
+ * The default template for displaying content\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+\r
+$options= mantra_get_theme_options();\r
+foreach ($options as $key => $value) {\r
+ ${"$key"} = $value ;\r
+} \r
+\r
+?><?php cryout_before_article_hook(); ?>\r
+\r
+ <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <header class="entry-header"> \r
+ <hgroup>\r
+ <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'mantra' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>\r
+ </hgroup>\r
+ <?php cryout_post_title_hook(); \r
+ ?><?php if ( 'post' == get_post_type() ) : ?>\r
+ <div class="entry-meta">\r
+ <?php mantra_posted_on(); ?>\r
+ <?php /* if ( comments_open() && ! post_password_required() ) :*/ ?>\r
+ <div class="comments-link">\r
+ <?php mantra_comments_on(); ?>\r
+ </div>\r
+ <?php /* endif; */ ?><?php \r
+ cryout_post_meta_hook(); ?>\r
+ </div><!-- .entry-meta -->\r
+ <?php endif; ?>\r
+\r
+ \r
+ </header><!-- .entry-header -->\r
+ <?php cryout_post_before_content_hook(); \r
+ ?><?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>\r
+ \r
+ <?php if ($mantra_excerptarchive != "Full Post" ){ ?>\r
+ <div class="entry-summary">\r
+ <?php mantra_set_featured_thumb(); ?>\r
+ <?php the_excerpt(); ?>\r
+ </div><!-- .entry-summary -->\r
+ <?php } else { ?>\r
+ <div class="entry-content">\r
+ <?php mantra_set_featured_thumb(); ?>\r
+ <?php the_content(); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mantra' ) . '</span>', 'after' => '</div>' ) ); ?>\r
+ </div><!-- .entry-content --> \r
+ <?php } ?>\r
+ \r
+ <?php else : \r
+ if (is_sticky() && $mantra_excerptsticky == "Full Post") $sticky_test=1; else $sticky_test=0;\r
+ if ($mantra_excerpthome != "Full Post" && $sticky_test==0){ ?>\r
+ \r
+ \r
+ <div class="entry-summary">\r
+ <?php mantra_set_featured_thumb(); ?>\r
+ <?php the_excerpt(); ?>\r
+ </div><!-- .entry-summary --> \r
+ <?php } else { ?>\r
+ <div class="entry-content">\r
+ <?php the_content(); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mantra' ) . '</span>', 'after' => '</div>' ) ); ?>\r
+ </div><!-- .entry-content --> \r
+ <?php } \r
+\r
+ endif; \r
+ cryout_post_after_content_hook(); ?>\r
+ <footer class="entry-meta2">\r
+ <?php $tag_list = get_the_tag_list( '', ', ' ); \r
+if ( $tag_list ) { ?>\r
+ <span class="bl_tagg"><?php _e( 'Tagged','mantra'); print ' '.$tag_list; ?></span>\r
+ <?php } ?>\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?><?php\r
+ cryout_post_footer_hook(); ?>\r
+ </footer><!-- #entry-meta -->\r
+\r
+ </article><!-- #post-<?php the_ID(); ?> -->\r
+ \r
+ \r
+<?php cryout_after_article_hook(); ?>
\ No newline at end of file
--- /dev/null
+/*\r
+Theme Name: Mantra\r
+*/\r
+/*\r
+Used to style the TinyMCE editor.\r
+*/\r
+html .mceContentBody{\r
+ direction:rtl;\r
+ unicode-bidi:embed;\r
+ float:right;\r
+}\r
+* {\r
+ font-family: Arial, Tahoma, sans-serif;\r
+}\r
+/* Text elements */\r
+ul {\r
+ margin: 0 -18px 18px 0;\r
+}\r
+ol {\r
+ margin: 0 -18px 18px 0;\r
+}\r
+dd {\r
+ margin-right: 0;\r
+}\r
+blockquote {\r
+ font-style: normal;\r
+}\r
+table {\r
+ text-align: right;\r
+ margin: 0 0 24px -1px;\r
+}\r
+html .mceContentBody{\r
+ direction:rtl;\r
+ unicode-bidi:embed;\r
+ float:right;\r
+}\r
+* {\r
+ font-family: Arial, Tahoma, sans-serif;\r
+}\r
+/* Text elements */\r
+ul {\r
+ margin: 0 -18px 18px 0;\r
+}\r
+ol {\r
+ margin: 0 -18px 18px 0;\r
+}\r
+dd {\r
+ margin-right: 0;\r
+}\r
+blockquote {\r
+ font-style: normal;\r
+}\r
+table {\r
+ text-align: right;\r
+ margin: 0 0 24px -1px;\r
+}
\ No newline at end of file
--- /dev/null
+/*\r
+Theme Name: Mantra\r
+*/\r
+/*\r
+Used to style the TinyMCE editor.\r
+*/\r
+\r
+* {\r
+ font-family: Georgia, "Bitstream Charter", serif;\r
+ color: #444;\r
+ line-height: 1.5;\r
+}\r
+p,\r
+dl,\r
+td,\r
+th,\r
+ul,\r
+ol,\r
+blockquote {\r
+ font-size: 16px;\r
+}\r
+tr th,\r
+thead th,\r
+label,\r
+tr th,\r
+thead th {\r
+ font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;\r
+}\r
+pre {\r
+ font-family: "Courier 10 Pitch", Courier, monospace;\r
+}\r
+code, code var {\r
+ font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;\r
+}\r
+body, input, textarea {\r
+ font-size: 12px;\r
+ line-height: 18px;\r
+}\r
+hr {\r
+ background-color: #e7e7e7;\r
+ border:0;\r
+ height: 1px;\r
+ margin-bottom: 18px;\r
+ clear:both;\r
+}\r
+/* Text elements */\r
+p {\r
+ margin-bottom: 18px;\r
+}\r
+ul {\r
+ list-style: square;\r
+ margin: 0 0 18px 1.5em;\r
+}\r
+ol {\r
+ list-style: decimal;\r
+ margin: 0 0 18px 1.5em;\r
+}\r
+ol ol {\r
+ list-style:upper-alpha;\r
+}\r
+ol ol ol {\r
+ list-style:lower-roman;\r
+}\r
+ol ol ol ol {\r
+ list-style:lower-alpha;\r
+}\r
+ul ul,\r
+ol ol,\r
+ul ol,\r
+ol ul {\r
+ margin-bottom:0;\r
+}\r
+dl {\r
+ margin:0 0 24px 0;\r
+}\r
+dt {\r
+ font-weight: bold;\r
+}\r
+dd {\r
+ margin-bottom: 18px;\r
+}\r
+strong {\r
+ font-weight: bold;\r
+ color: #000;\r
+}\r
+cite,\r
+em,\r
+i {\r
+ font-style: italic;\r
+ border: none;\r
+}\r
+big {\r
+ font-size: 131.25%;\r
+}\r
+ins {\r
+ background: #ffffcc;\r
+ border: none;\r
+ color: #333;\r
+}\r
+del {\r
+ text-decoration: line-through;\r
+ color: #555;\r
+}\r
+blockquote {\r
+ font-style: italic;\r
+ padding: 0 3em;\r
+}\r
+blockquote cite,\r
+blockquote em,\r
+blockquote i {\r
+ font-style: normal;\r
+}\r
+pre {\r
+ background: #f7f7f7;\r
+ color: #222;\r
+ line-height: 18px;\r
+ margin-bottom: 18px;\r
+ padding: 1.5em;\r
+}\r
+abbr,\r
+acronym {\r
+ border-bottom: 1px dotted #666;\r
+ cursor: help;\r
+}\r
+ins {\r
+ text-decoration: none;\r
+}\r
+sup,\r
+sub {\r
+ height: 0;\r
+ line-height: 1;\r
+ vertical-align: baseline;\r
+ position: relative;\r
+ font-size: 10px;\r
+}\r
+sup {\r
+ bottom: 1ex;\r
+}\r
+sub {\r
+ top: .5ex;\r
+}\r
+a:link {\r
+ color:#0066cc;\r
+}\r
+a:visited {\r
+ color:#743399;\r
+}\r
+a:active,\r
+a:hover {\r
+ color: #ff4b33;\r
+}\r
+p,\r
+ul,\r
+ol,\r
+dd,\r
+pre,\r
+hr {\r
+ margin-bottom:24px;\r
+}\r
+ul ul,\r
+ol ol,\r
+ul ol,\r
+ol ul {\r
+ margin-bottom:0;\r
+}\r
+pre,\r
+kbd,\r
+tt,\r
+var {\r
+ font-size: 15px;\r
+ line-height: 21px;\r
+}\r
+code {\r
+ font-size: 13px;\r
+}\r
+strong,\r
+b,\r
+dt,\r
+th {\r
+ color: #000;\r
+}\r
+h1,\r
+h2,\r
+h3,\r
+h4,\r
+h5,\r
+h6 {\r
+ color: #000;\r
+ margin: 0 0 20px 0;\r
+ line-height: 1.5em;\r
+ font-weight: normal;\r
+}\r
+h1 {\r
+ font-size: 2.4em;\r
+}\r
+h2 {\r
+ font-size: 1.8em;\r
+}\r
+h3 {\r
+ font-size: 1.4em;\r
+}\r
+h4 {\r
+ font-size: 1.2em;\r
+}\r
+h5 {\r
+ font-size: 1em;\r
+}\r
+h6 {\r
+ font-size: 0.9em;\r
+}\r
+table {\r
+ border: 1px solid #e7e7e7 !important;\r
+ text-align: left;\r
+ margin: 0 -1px 24px 0;\r
+ width: 100%;\r
+ border-collapse: collapse;\r
+ border-spacing: 0;\r
+}\r
+tr th,\r
+thead th {\r
+ border: none !important;\r
+ color: #888;\r
+ font-size: 12px;\r
+ font-weight: bold;\r
+ line-height: 18px;\r
+ padding: 9px 24px;\r
+}\r
+tr td {\r
+ border: none !important;\r
+ border-top: 1px solid #e7e7e7 !important;\r
+ padding: 6px 24px;\r
+}\r
+\r
+\r
+img {\r
+ margin: 0;\r
+ height:auto;\r
+}\r
+.alignleft,\r
+img.alignleft {\r
+ display: inline;\r
+ float: left;\r
+ margin-right: 24px;\r
+ margin-top: 4px;\r
+}\r
+.alignright,\r
+img.alignright {\r
+ display: inline;\r
+ float: right;\r
+ margin-left: 24px;\r
+ margin-top: 4px;\r
+}\r
+.aligncenter,\r
+img.aligncenter {\r
+ clear: both;\r
+ display: block;\r
+ margin-left: auto;\r
+ margin-right: auto;\r
+}\r
+img.alignleft,\r
+img.alignright,\r
+img.aligncenter {\r
+ margin-bottom: 12px;\r
+}\r
+.wp-caption {\r
+ border: none;\r
+ background: #f1f1f1;\r
+ color: #888;\r
+ font-size: 12px;\r
+ line-height: 18px;\r
+ text-align: center;\r
+ margin-bottom: 20px;\r
+ padding: 4px;\r
+ -moz-border-radius: 0;\r
+ -khtml-border-radius: 0;\r
+ -webkit-border-radius: 0;\r
+ border-radius: 0;\r
+}\r
+.wp-caption img {\r
+ margin: 5px;\r
+}\r
+.wp-caption p.wp-caption-text {\r
+ margin: 0 0 4px;\r
+}\r
+.wp-smiley {\r
+ margin:0;\r
+}
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying the footer.\r
+ *\r
+ * Contains the closing of the id=main div and all content\r
+ * after. Calls sidebar-footer.php for bottom widgets.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+?> <div style="clear:both;"></div>\r
+\r
+ </div> <!-- #forbottom -->\r
+ </div><!-- #main -->\r
+\r
+\r
+ <footer id="footer" role="contentinfo">\r
+ <div id="colophon">\r
+ \r
+ <?php get_sidebar( 'footer' );?>\r
+ \r
+ </div><!-- #colophon -->\r
+\r
+ <div id="footer2">\r
+ \r
+ <?php cryout_footer_hook(); ?>\r
+ \r
+ </div><!-- #footer2 -->\r
+\r
+ </footer><!-- #footer -->\r
+\r
+</div><!-- #wrapper -->\r
+\r
+<?php wp_footer(); ?>\r
+\r
+</body>\r
+</html>\r
--- /dev/null
+<?php\r
+/*\r
+ * Functions file\r
+ * Includes all necessary files\r
+ * PLEASE DO NOT EDIT THIS FILE\r
+ *\r
+ * @package mantra\r
+ */\r
+\r
+// Variable for theme version\r
+define ("MANTRA_VERSION","2.4.1.1");\r
+\r
+require_once(dirname(__FILE__) . "/admin/main.php"); // Load necessary admin files\r
+\r
+//Loading include fiels\r
+require_once(dirname(__FILE__) . "/includes/theme-setup.php"); //Setup and init theme\r
+require_once(dirname(__FILE__) . "/includes/theme-styles.php"); //Register and enqeue css styles and scripts\r
+require_once(dirname(__FILE__) . "/includes/theme-loop.php"); //Loop related fiels\r
+require_once(dirname(__FILE__) . "/includes/theme-seo.php"); //SEO related fiels\r
+require_once(dirname(__FILE__) . "/includes/theme-frontpage.php"); //Frontpage generation\r
+require_once(dirname(__FILE__) . "/includes/theme-comments.php"); //Theme comment functions\r
+require_once(dirname(__FILE__) . "/includes/theme-functions.php"); //Theme misc functions\r
+require_once(dirname(__FILE__) . "/includes/theme-hooks.php"); //Theme hooks\r
+\r
+?>
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The Header\r
+ *\r
+ * Displays all of the <head> section and everything up till <div id="main">\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+ ?><!DOCTYPE html>\r
+<html <?php language_attributes(); ?>>\r
+<head>\r
+<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" />\r
+<?php cryout_seo_hook(); ?>\r
+<link rel="profile" href="http://gmpg.org/xfn/11" />\r
+<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />\r
+<?php\r
+ cryout_header_hook();\r
+ wp_head(); ?>\r
+</head>\r
+<body <?php body_class(); ?>>\r
+\r
+<?php cryout_body_hook(); ?>\r
+\r
+<div id="wrapper" class="hfeed">\r
+\r
+<?php cryout_wrapper_hook(); ?>\r
+\r
+<header id="header">\r
+\r
+ <div id="masthead">\r
+\r
+ <div id="branding" role="banner" >\r
+\r
+ <?php cryout_branding_hook();?>\r
+ <div style="clear:both;"></div>\r
+\r
+ </div><!-- #branding -->\r
+\r
+ <nav id="access" class="jssafe" role="navigation">\r
+\r
+ <?php cryout_access_hook();?>\r
+\r
+ </nav><!-- #access -->\r
+\r
+ </div><!-- #masthead -->\r
+\r
+ <div style="clear:both;"> </div>\r
+\r
+</header><!-- #header -->\r
+<div id="main">\r
+ <div id="forbottom" >\r
+ <?php cryout_forbottom_hook(); ?>\r
+\r
+ <div style="clear:both;"> </div>\r
+ \r
+ <?php cryout_breadcrumbs_hook();?>\r
+
\ No newline at end of file
--- /dev/null
+<?php /*\r
+ * Comments related functions - comments.php \r
+ *\r
+ * @package mantra\r
+ * @subpackage Functions\r
+ */\r
+ \r
+if ( ! function_exists( 'mantra_comment' ) ) :\r
+/**\r
+ * Template for comments and pingbacks.\r
+ *\r
+ * To override this walker in a child theme without modifying the comments template\r
+ * simply create your own mantra_comment(), and that function will be used instead.\r
+ *\r
+ * Used as a callback by wp_list_comments() for displaying the comments.\r
+ *\r
+ * @since mantra 0.5\r
+ */\r
+function mantra_comment( $comment, $args, $depth ) {\r
+ $GLOBALS['comment'] = $comment;\r
+ switch ( $comment->comment_type ) :\r
+ case '' :\r
+ ?>\r
+ <li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">\r
+ <div id="comment-<?php comment_ID(); ?>">\r
+ <div class="comment-author vcard">\r
+ <?php echo get_avatar( $comment, 40 );\r
+ ?><?php printf( '%s <span class="says">'.__('says:', 'mantra' ).'</span>', sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>\r
+\r
+\r
+\r
+ </div><!-- .comment-author .vcard -->\r
+ <?php if ( $comment->comment_approved == '0' ) : ?>\r
+ <em><?php _e( 'Your comment is awaiting moderation.', 'mantra' ); ?></em>\r
+ <br />\r
+ <?php endif; ?>\r
+\r
+ <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">\r
+ <?php\r
+ /* translators: 1: date, 2: time */\r
+ printf( '%1$s '.__('at', 'mantra' ).' %2$s', get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'mantra' ), ' ' );\r
+ ?>\r
+ </div><!-- .comment-meta .commentmetadata -->\r
+\r
+ <div class="comment-body"><?php comment_text(); ?></div>\r
+\r
+ <div class="reply">\r
+ <?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>\r
+ </div><!-- .reply -->\r
+ </div><!-- #comment-## -->\r
+\r
+ <?php\r
+ break;\r
+ case 'pingback' :\r
+ case 'trackback' :\r
+ ?>\r
+ <li class="post pingback">\r
+ <p><?php _e( 'Pingback: ', 'mantra' ); ?><?php comment_author_link(); ?><?php edit_comment_link( __('(Edit)', 'mantra'), ' ' ); ?></p>\r
+ <?php\r
+ break;\r
+ endswitch;\r
+}\r
+endif;\r
+\r
+/**\r
+ * Removes the default styles that are packaged with the Recent Comments widget.\r
+ *\r
+ * To override this in a child theme, remove the filter and optionally add your own\r
+ * function tied to the widgets_init action hook.\r
+ *\r
+ * @since mantra 0.5\r
+ */\r
+function mantra_remove_recent_comments_style() {\r
+ global $wp_widget_factory;\r
+ remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) );\r
+}\r
+\r
+add_action( 'widgets_init', 'mantra_remove_recent_comments_style' );\r
+\r
+if ( ! function_exists( 'mantra_comments_on' ) ) :\r
+/**\r
+ * Number of comments on loop post if comments are enabled.\r
+ */\r
+function mantra_comments_on() {\r
+ printf ( comments_popup_link( __( 'Leave a comment', 'mantra' ), __( '<b>1</b> Comment', 'mantra' ), __( '<b>%</b> Comments', 'mantra' ) ));\r
+}\r
+endif;\r
+\r
+/**\r
+ * The number of comments title\r
+ */\r
+function mantra_number_comments() { ?>\r
+ <h3 id="comments-title">\r
+ <?php printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'mantra' ),\r
+ number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' ); ?>\r
+ </h3>\r
+<?php }\r
+\r
+add_action('cryout_before_comments_hook','mantra_number_comments');\r
+\r
+/**\r
+ * The comments navigation in case of comments on multiple pages (both top and bottom)\r
+ */\r
+function mantra_comments_navigation() {\r
+if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>\r
+ <div class="navigation">\r
+ <div class="nav-previous"><?php previous_comments_link( '<span class="meta-nav">←</span>'.__('Older Comments', 'mantra' ) ); ?></div>\r
+ <div class="nav-next"><?php next_comments_link( __( 'Newer Comments', 'mantra' ).' <span class="meta-nav">→</span>' ); ?></div>\r
+ </div> <!-- .navigation -->\r
+<?php endif; // check for comment navigation \r
+}\r
+\r
+add_action('cryout_before_comments_hook','mantra_comments_navigation');\r
+add_action('cryout_after_comments_hook','mantra_comments_navigation');\r
+\r
+/*\r
+* Listing the actual comments\r
+* \r
+* Loop through and list the comments. Tell wp_list_comments()\r
+* to use mantra_comment() to format the comments.\r
+* If you want to overload this in a child theme then you can\r
+* define mantra_comment() and that will be used instead.\r
+* See mantra_comment() in mantra/functions.php for more.\r
+ */\r
+function mantra_list_comments() { \r
+ wp_list_comments( array( 'callback' => 'mantra_comment' ) );\r
+ }\r
+\r
+add_action('cryout_comments_hook','mantra_list_comments'); \r
+\r
+/*\r
+ * If there are no comments and comments are closed\r
+ */\r
+function mantra_comments_off() { \r
+if ( ! comments_open() ) : ?>\r
+ <p class="nocomments"><?php _e( 'Comments are closed.', 'mantra' ); ?></p>\r
+<?php endif; // end ! comments_open() \r
+}\r
+\r
+\r
+add_action('cryout_nocomments_hook','mantra_comments_off');\r
+\r
+?>
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * Frontpage generation functions\r
+ * Creates the slider, the columns, the titles and the extra text\r
+ *\r
+ * @package mantra\r
+ * @subpackage Functions\r
+ */\r
+\r
+if ( ! function_exists( 'mantra_frontpage_css' ) ) :\r
+function mantra_frontpage_css() {\r
+ $mantra_options= mantra_get_theme_options();\r
+ foreach ($mantra_options as $key => $value) { ${"$key"} = $value; }\r
+ ob_start();\r
+ echo '<style type="text/css">/* Mantra frontpage CSS */'; ?>\r
+<?php if ($mantra_fronthideheader) {?> #branding {display:none;} <?php }\r
+ if ($mantra_fronthidemenu) {?> #access {display:none;} <?php }\r
+ if ($mantra_fronthidewidget) {?> #colophon {display:none;} <?php }\r
+ if ($mantra_fronthidefooter) {?> #footer2 {display:none;} <?php }\r
+ if ($mantra_fronthideback) {?> #main {background:none;} <?php } ?>\r
+\r
+.slider-wrapper { display:block; float:none; width:100%; margin:0 auto; }\r
+\r
+#slider{\r
+ max-width:<?php echo $mantra_fpsliderwidth ?>px ;\r
+ height:<?php echo $mantra_fpsliderheight ?>px ;\r
+ margin:30px auto 20px; display:block; float:none;\r
+ border:<?php echo $mantra_fpsliderborderwidth.'px solid '.$mantra_fpsliderbordercolor; ?>; }\r
+\r
+#front-text1 h1, #front-text2 h1 { display:block; float:none; margin:35px auto; text-align:center; font-size:32px;\r
+ clear:both; line-height:32px; font-weight:bold; color:<?php echo $mantra_fronttitlecolor; ?>; }\r
+\r
+#front-text2 h1{ font-size:28px; line-height:28px; margin-top:0px; margin-bottom:25px; }\r
+\r
+#frontpage blockquote { width:88%; max-width:88% !important; margin-bottom:20px;\r
+ font-size:16px; line-height:22px; color:#444; }\r
+\r
+#frontpage #front-text4 blockquote { font-size:14px; line-height:18px; color:#666; }\r
+\r
+#frontpage blockquote:before, #frontpage blockquote:after { content:none; }\r
+\r
+#front-columns > div { display:block; width:<?php\r
+switch ($mantra_nrcolumns) {\r
+ case 0: break;\r
+ case 1: echo "95"; break;\r
+ case 2: echo "45"; break;\r
+ case 3: echo "29"; break;\r
+ case 4: echo "21"; break;\r
+} ?>%; height:auto; margin-left:2%; margin-right:2%; margin-bottom:10px; float:left; }\r
+\r
+.column-image { height:<?php echo $mantra_colimageheight ?>px; border:3px solid #eee; }\r
+\r
+.theme-default .nivo-controlNav {margin-left:0;}\r
+<?php\r
+switch($mantra_fpslidernav):\r
+ case "Bullets": break;\r
+ case "Numbers": ?>\r
+.theme-default .nivo-controlNav {bottom:-40px;}\r
+.theme-default .nivo-controlNav a { background: none; text-decoration:underline; text-indent:0; }\r
+<?php break;\r
+ case "None": ?>\r
+.theme-default .nivo-controlNav { display:none; }\r
+<?php break;\r
+endswitch; \r
+ echo "</style>\n";\r
+ $mantra_presentation_page_styling = ob_get_contents();\r
+ ob_end_clean();\r
+ return $mantra_presentation_page_styling;\r
+} // mantra_frontpage_css()\r
+endif;\r
+\r
+if ( ! function_exists( 'mantra_frontpage_generator' ) ) :\r
+// Front page generator\r
+function mantra_frontpage_generator() {\r
+$mantra_options= mantra_get_theme_options();\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;\r
+}\r
+?>\r
+\r
+<script type="text/javascript">\r
+\r
+ // Flash animation for columns\r
+\r
+\r
+ jQuery(document).ready(function() {\r
+ // Slider creation\r
+ jQuery('#slider').nivoSlider({\r
+\r
+ effect: '<?php echo $mantra_fpslideranim; ?>',\r
+ animSpeed: <?php echo $mantra_fpslidertime ?>,\r
+ <?php if($mantra_fpsliderarrows=="Hidden") { ?> directionNav: false, <?php }\r
+ if($mantra_fpsliderarrows=="Always Visible") { ?> directionNav: true, <?php } ?>\r
+ pauseTime: <?php echo $mantra_fpsliderpause ?>\r
+\r
+ });\r
+\r
+ jQuery('#front-columns > div img').hover( function() {\r
+ jQuery(this)\r
+ .stop()\r
+ .animate({opacity: 0.5}, 100)\r
+ .fadeOut(100)\r
+ .fadeIn(100)\r
+ .animate({opacity: 0.999}, 100) ;\r
+ }, function() {jQuery(this).stop();} )\r
+\r
+ });\r
+ </script>\r
+\r
+<div id="frontpage">\r
+<?php\r
+\r
+// First FrontPage Title\r
+if($mantra_fronttext1) {?><div id="front-text1"> <h1><?php echo esc_attr($mantra_fronttext1) ?> </h1></div><?php }\r
+\r
+// When a post query has been selected from the Slider type in the admin area\r
+if ($mantra_slideType != 'Custom Slides') {\r
+global $post;\r
+// Initiating query\r
+$custom_query = new WP_query();\r
+\r
+// Switch for Query type\r
+switch ($mantra_slideType) {\r
+\r
+ case 'Latest Posts' :\r
+$custom_query->query('showposts='.$mantra_slideNumber.'&ignore_sticky_posts=1');\r
+break;\r
+\r
+ case 'Random Posts' :\r
+$custom_query->query('showposts='.$mantra_slideNumber.'&orderby=rand&ignore_sticky_posts=1');\r
+break;\r
+\r
+ case 'Latest Posts from Category' :\r
+$custom_query->query('showposts='.$mantra_slideNumber.'&category_name='.$mantra_slideCateg.'&ignore_sticky_posts=1');\r
+break;\r
+\r
+ case 'Random Posts from Category' :\r
+$custom_query->query('showposts='.$mantra_slideNumber.'&category_name='.$mantra_slideCateg.'&orderby=rand&ignore_sticky_posts=1');\r
+break;\r
+\r
+ case 'Sticky Posts' :\r
+$custom_query->query(array('post__in' => get_option( 'sticky_posts' ), 'showposts' =>$mantra_slideNumber,'ignore_sticky_posts' => 1));\r
+break;\r
+\r
+ case 'Specific Posts' :\r
+ // Transofm string separated by commas into array\r
+$pieces_array = explode(",", $mantra_slideSpecific);\r
+$custom_query->query(array( 'post_type' => 'any', 'showposts' => -1, 'post__in' => $pieces_array, 'ignore_sticky_posts' => 1, 'orderby' => 'post__in' ));\r
+break;\r
+\r
+}\r
+ // Variables i and j for matching slider number with caption number\r
+$i=0; $j=0;?>\r
+ <div class="slider-wrapper theme-default">\r
+ <div class="ribbon"></div>\r
+ <div id="slider" class="nivoSlider <?php if($mantra_fpsliderarrows=="Visible on Hover"): ?>slider-navhover<?php endif; ?>">\r
+\r
+ <?php\r
+ // Loop for creating the slides\r
+ if ( $custom_query->have_posts() ) while ( $custom_query->have_posts()) : $custom_query->the_post();\r
+\r
+ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ),'slider');\r
+ $i++; ?>\r
+ <a href="<?php the_permalink(); ?>"><img src="<?php echo $image[0]; ?>" alt="" title="#caption<?php echo $i;?>" /></a>\r
+\r
+ <?php endwhile; // end of the loop.\r
+?>\r
+</div>\r
+ <?php\r
+ // Loop for creating the captions\r
+ if ($custom_query->have_posts() ) while ( $custom_query->have_posts() ) : $custom_query->the_post();\r
+ $j++; ?>\r
+\r
+ <div id="caption<?php echo $j;?>" class="nivo-html-caption">\r
+ <?php the_title("<h2>","</h2>");the_excerpt(); ?>\r
+ </div>\r
+\r
+ <?php endwhile; // end of the loop. ?>\r
+\r
+ </div>\r
+\r
+<?php } else {\r
+\r
+// If Custom Slides have been selected\r
+?>\r
+ <div class="slider-wrapper theme-default">\r
+ <div class="ribbon"></div>\r
+ <div id="slider" class="nivoSlider <?php if($mantra_fpsliderarrows=="Visible on Hover"): ?>slider-navhover<?php endif; ?>">\r
+ <?php for ($i=1;$i<=5;$i++)\r
+ if(${"mantra_sliderimg$i"}) {?> <a href='<?php echo esc_url(${"mantra_sliderlink$i"}) ?>'><img src='<?php echo esc_url(${"mantra_sliderimg$i"}) ?>' alt="" <?php if (${"mantra_slidertitle$i"} || ${"mantra_slidertext$i"} ) { ?>title="#caption<?php echo $i;?>" <?php }?> /></a><?php } ?>\r
+ </div>\r
+ <?php for ($i=1;$i<=5;$i++) { ?>\r
+ <div id="caption<?php echo $i;?>" class="nivo-html-caption">\r
+ <?php echo '<h2>'.${"mantra_slidertitle$i"}.'</h2>'.${"mantra_slidertext$i"} ?>\r
+ </div>\r
+ <?php } ?>\r
+</div>\r
+<?php }\r
+\r
+// Second FrontPage title\r
+ if($mantra_fronttext2) {?><div id="front-text2"> <h1><?php echo esc_attr($mantra_fronttext2) ?> </h1></div><?php }\r
+\r
+// Frontpage columns\r
+ if($mantra_nrcolumns) { ?>\r
+<div id="front-columns">\r
+ <div id="column1">\r
+ <a href="<?php echo esc_url($mantra_columnlink1) ?>"> <div class="column-image" ><img src="<?php echo esc_url($mantra_columnimg1) ?>" id="columnImage1" alt="" /> </div> <h3><?php echo $mantra_columntitle1 ?></h3> </a><div class="column-text"><?php echo do_shortcode ($mantra_columntext1 ); ?></div>\r
+ <?php if($mantra_columnreadmore) {?> <div class="columnmore"> <a href="<?php echo esc_url($mantra_columnlink1) ?>"><?php echo esc_attr($mantra_columnreadmore) ?> »</a> </div><?php } ?>\r
+ </div>\r
+<?php if($mantra_nrcolumns != '1') { ?>\r
+ <div id="column2">\r
+ <a href="<?php echo esc_url($mantra_columnlink2) ?>"> <div class="column-image" ><img src="<?php echo esc_url($mantra_columnimg2) ?>" id="columnImage2" alt="" /> </div> <h3><?php echo $mantra_columntitle2 ?></h3> </a><div class="column-text"><?php echo do_shortcode ( $mantra_columntext2 );?></div>\r
+ <?php if($mantra_columnreadmore) {?> <div class="columnmore"> <a href="<?php echo esc_url($mantra_columnlink2) ?>"><?php echo esc_attr($mantra_columnreadmore) ?> »</a> </div><?php } ?>\r
+ </div>\r
+<?php if($mantra_nrcolumns != '2') { ?>\r
+ <div id="column3">\r
+ <a href="<?php echo esc_url($mantra_columnlink3) ?>"> <div class="column-image" ><img src="<?php echo esc_url($mantra_columnimg3) ?>" id="columnImage3" alt="" /> </div> <h3><?php echo $mantra_columntitle3 ?></h3> </a><div class="column-text"><?php echo do_shortcode ( $mantra_columntext3 );?></div>\r
+ <?php if($mantra_columnreadmore) {?> <div class="columnmore"> <a href="<?php echo esc_url($mantra_columnlink3) ?>"><?php echo esc_attr($mantra_columnreadmore) ?> »</a> </div><?php } ?>\r
+ </div>\r
+<?php if($mantra_nrcolumns == '4') { ?>\r
+ <div id="column4">\r
+ <a href="<?php echo esc_url($mantra_columnlink4) ?>"> <div class="column-image" ><img src="<?php echo esc_url($mantra_columnimg4) ?>" id="columnImage4" alt="" /> </div> <h3><?php echo $mantra_columntitle4 ?></h3> </a><div class="column-text"><?php echo do_shortcode ( $mantra_columntext4 ); ?></div>\r
+ <?php if($mantra_columnreadmore) {?> <div class="columnmore"> <a href="<?php echo esc_url($mantra_columnlink4) ?>"><?php echo esc_attr($mantra_columnreadmore) ?> »</a> </div><?php } ?>\r
+ </div>\r
+<?php } } }?>\r
+</div>\r
+<?php }\r
+\r
+ // Frontpage text areas\r
+ if($mantra_fronttext3) {?><div id="front-text3"> <blockquote><?php echo do_shortcode( $mantra_fronttext3 ) ?> </blockquote></div><?php }\r
+ if($mantra_fronttext4) {?><div id="front-text4"> <blockquote><?php echo do_shortcode( $mantra_fronttext4 ) ?> </blockquote></div><?php }\r
+\r
+ ?>\r
+</div> <!-- frontpage -->\r
+ <?php } // End of mantra_frontpage_generator\r
+endif;\r
+?>\r
--- /dev/null
+<?php\r
+/**\r
+ * Misc functions breadcrumbs / pagination / transient data /back to top button\r
+ *\r
+ * @package mantra\r
+ * @subpackage Functions\r
+ */\r
+\r
+\r
+ /**\r
+ * Loads necessary scripts\r
+ * Adds HTML5 tags for IE8\r
+ * Used in header.php\r
+*/\r
+ function mantra_header_scripts() {\r
+ $mantra_options= mantra_get_theme_options();\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;\r
+}\r
+?>\r
+<!--[if lt IE 9]>\r
+<script>\r
+document.createElement('header');\r
+document.createElement('nav');\r
+document.createElement('section');\r
+document.createElement('article');\r
+document.createElement('aside');\r
+document.createElement('footer');\r
+document.createElement('hgroup');\r
+</script>\r
+<![endif]-->\r
+<script type="text/javascript">\r
+function makeDoubleDelegate(function1, function2) {\r
+// concatenate functions\r
+ return function() { if (function1) function1(); if (function2) function2(); }\r
+}\r
+\r
+function mantra_onload() {\r
+\r
+<?php if ($mantra_mobile=="Enable") { // If mobile view is enabled ?>\r
+\r
+ // Add responsive videos\r
+ if (jQuery(window).width() < 800) jQuery(".entry-content").fitVids();\r
+<?php }\r
+if (($mantra_s1bg || $mantra_s2bg) ) { ?>\r
+ // Check if sidebars have user colors and if so equalize their heights\r
+ equalizeHeights();<?php } ?>\r
+}; // mantra_onload\r
+\r
+\r
+jQuery(document).ready(function(){\r
+ // Add custom borders to images\r
+ jQuery("img.alignnone, img.alignleft, img.aligncenter, img.alignright").addClass("<?php echo 'image'.$mantra_image;?>");\r
+<?php if ($mantra_mobile=="Enable") { // If mobile view is enabled ?>\r
+\r
+ // Add select navigation to small screens\r
+ jQuery("#access > .menu > ul").tinyNav({\r
+ header: ' = <?php _e('Menu','mantra'); ?> = '\r
+ });\r
+<?php } ?>\r
+});\r
+\r
+// make sure not to lose previous onload events\r
+window.onload = makeDoubleDelegate(window.onload, mantra_onload );\r
+</script>\r
+<?php\r
+}\r
+\r
+add_action('wp_head','mantra_header_scripts',100);\r
+\r
+ /**\r
+ * Adds title and description to heaer\r
+ * Used in header.php\r
+*/\r
+function mantra_title_and_description() {\r
+ $mantra_options = mantra_get_theme_options();\r
+ foreach ($mantra_options as $key => $value) { ${"$key"} = $value; }\r
+\r
+ // Header styling and image loading\r
+ // Check if this is a post or page, if it has a thumbnail, and if it's a big one\r
+\r
+ global $post;\r
+\r
+ if (get_header_image() != '') { $himgsrc = get_header_image(); }\r
+ if ( is_singular() && has_post_thumbnail( $post->ID ) && ($mantra_fheader == "Enable") && ($image = wp_get_attachment_image_src(get_post_thumbnail_id( $post->ID ), 'header' ) ) && ($image[1] >= HEADER_IMAGE_WIDTH) ):\r
+ $himgsrc = $image[0];\r
+ endif;\r
+\r
+ if (isset($himgsrc) && ($himgsrc != '')) : echo '<img id="bg_image" alt="" title="" src="'.$himgsrc.'" />'; endif;\r
+\r
+?>\r
+\r
+ <div id="header-container">\r
+\r
+\r
+<?php\r
+ switch ($mantra_siteheader) {\r
+\r
+ case 'Site Title and Description':\r
+ echo '<div>';\r
+ $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div';\r
+ echo '<'.$heading_tag.' id="site-title">';\r
+ echo '<span> <a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'" rel="home">'.get_bloginfo( 'name' ).'</a> </span>';\r
+ echo '</'.$heading_tag.'>';\r
+ echo '<div id="site-description" >'.get_bloginfo( 'description' ).'</div></div>';\r
+ break;\r
+\r
+ case 'Clickable header image' :\r
+ echo '<a href="'.esc_url( home_url( '/' ) ).'" id="linky"></a>' ;\r
+ break;\r
+\r
+ case 'Custom Logo' :\r
+ if (isset($mantra_logoupload) && ($mantra_logoupload != '')) : echo '<div><a id="logo" href="'.esc_url( home_url( '/' ) ).'" ><img title="" alt="" src="'.$mantra_logoupload.'" /></a></div>'; endif;\r
+ break;\r
+\r
+ case 'Empty' :\r
+ // nothing to do here\r
+ break;\r
+ }\r
+\r
+ if ($mantra_socialsdisplay0): mantra_header_socials(); endif;\r
+ echo '</div>';\r
+\r
+} // mantra_title_and_description()\r
+\r
+\r
+add_action ('cryout_branding_hook','mantra_title_and_description');\r
+\r
+ /**\r
+ * Add social icons in header / undermneu left / undermenu right / footer\r
+ * Used in header.php and footer.php\r
+*/\r
+ function mantra_header_socials() {\r
+ mantra_set_social_icons('sheader');\r
+ }\r
+\r
+ function mantra_smenul_socials() {\r
+ mantra_set_social_icons('smenul');\r
+ }\r
+\r
+ function mantra_smenur_socials() {\r
+ mantra_set_social_icons('smenur');\r
+ }\r
+\r
+ function mantra_footer_socials() {\r
+ mantra_set_social_icons('sfooter');\r
+ }\r
+\r
+//if($mantra_socialsdisplay0) add_action('cryout_branding_hook', 'mantra_header_socials');\r
+if($mantra_socialsdisplay1) add_action('cryout_forbottom_hook', 'mantra_smenul_socials');\r
+if($mantra_socialsdisplay2) add_action('cryout_forbottom_hook', 'mantra_smenur_socials');\r
+if($mantra_socialsdisplay3) add_action('cryout_footer_hook', 'mantra_footer_socials',13);\r
+\r
+\r
+if ( ! function_exists( 'mantra_set_social_icons' ) ) :\r
+/**\r
+ * Social icons function\r
+ */\r
+function mantra_set_social_icons($id) {\r
+ $cryout_special_keys = array('Mail', 'Skype');\r
+ global $mantra_options;\r
+ foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;\r
+ }\r
+ echo '<div class="socials" id="'.$id.'">';\r
+ for ($i=1; $i<=9; $i+=2) {\r
+ $j=$i+1;\r
+ if ( ${"mantra_social$j"} ) {\r
+ if (in_array(${"mantra_social$i"},$cryout_special_keys)) :\r
+ $cryout_current_social = esc_html( ${"mantra_social$j"} );\r
+ else :\r
+ $cryout_current_social = esc_url( ${"mantra_social$j"} );\r
+ endif; ?>\r
+\r
+ <a target="_blank" rel="nofollow" href="<?php echo $cryout_current_social; ?>" class="socialicons social-<?php echo esc_attr(${"mantra_social$i"}); ?>" title="<?php echo esc_attr(${"mantra_social$i"}); ?>"><img alt="<?php echo esc_attr(${"mantra_social$i"}); ?>" src="<?php echo get_template_directory_uri().'/images/socials/'.${"mantra_social$i"}.'.png'; ?>" /></a><?php\r
+ }\r
+ }\r
+ echo '</div>';\r
+}\r
+endif;\r
+\r
+\r
+\r
+ /**\r
+ * Replaces header image with featured image if there is one for single pages\r
+ * Used in header.php\r
+*/\r
+\r
+/* // Moved to custom-styles.php\r
+\r
+function mantra_header_featured_image() {\r
+global $post;\r
+global $mantra_options;\r
+foreach ($mantra_options as $key => $value) {\r
+${"$key"} = $value ;\r
+}\r
+// Check if this is a post or page, if it has a thumbnail, and if it's a big one\r
+if ( is_singular() && has_post_thumbnail( $post->ID ) && $mantra_fheader == "Enable" &&\r
+ ( $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&\r
+ $image[1] >= HEADER_IMAGE_WIDTH ) :\r
+ // Houston, we have a new header image!\r
+ //echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );\r
+ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array(HEADER_IMAGE_WIDTH,HEADER_IMAGE_HEIGHT) );\r
+endif;\r
+}\r
+\r
+\r
+\r
+*/\r
+\r
+/**\r
+ * Mantra back to top button\r
+ * Creates div for js\r
+*/\r
+function mantra_back_top() {\r
+ echo '<div id="toTop"> </div>';\r
+ }\r
+\r
+\r
+if ($mantra_backtop=="Enable") add_action ('cryout_body_hook','mantra_back_top');\r
+\r
+\r
+\r
+ /**\r
+ * Creates breadcrumns with page sublevels and category sublevels.\r
+ */\r
+function mantra_breadcrumbs() {\r
+$mantra_options= mantra_get_theme_options();\r
+foreach ($mantra_options as $key => $value) { ${"$key"} = $value; }\r
+global $post;\r
+echo '<div class="breadcrumbs">';\r
+if (is_page() && !is_front_page() || is_single() || is_category() || is_archive()) {\r
+ echo '<a href="'.esc_url( home_url() ) .'">'.get_bloginfo('name').' » </a>';\r
+\r
+ if (is_page()) {\r
+ $ancestors = get_post_ancestors($post);\r
+\r
+ if ($ancestors) {\r
+ $ancestors = array_reverse($ancestors);\r
+\r
+ foreach ($ancestors as $crumb) {\r
+ echo '<a href="'.get_permalink($crumb).'">'.get_the_title($crumb).' » </a>';\r
+ }\r
+ }\r
+ }\r
+\r
+ if (is_single()) {\r
+ if(has_category()) { $category = get_the_category();\r
+ echo '<a href="'.get_category_link($category[0]->cat_ID).'">'.$category[0]->cat_name.' » </a>';\r
+ }\r
+ }\r
+\r
+ if (is_category()) {\r
+ $category = get_the_category();\r
+ echo ''.$category[0]->cat_name.'';\r
+ }\r
+\r
+ if (is_tag()) {\r
+ echo ''.__('Tag','mantra').' » '.single_tag_title('', false);\r
+ } \r
+\r
+ // Current page\r
+ if (is_page() || is_single()) {\r
+ echo ''.get_the_title().'';\r
+ }\r
+ echo '';\r
+ } elseif (is_home() && $mantra_frontpage!="Enable" ) {\r
+ // Front page\r
+ echo '';\r
+ echo '<a href="'.esc_url( home_url() ) .'">'.get_bloginfo('name').'</a> '."» ";\r
+ _e('Home Page','mantra');\r
+ echo '';\r
+ }\r
+echo '</div>';\r
+}\r
+\r
+if($mantra_breadcrumbs=="Enable") add_action ('cryout_before_content_hook','mantra_breadcrumbs',0);\r
+\r
+\r
+if ( ! function_exists( 'mantra_pagination' ) ) :\r
+/**\r
+ * Creates pagination for blog pages.\r
+ */\r
+function mantra_pagination($pages = '', $range = 2, $prefix ='')\r
+{\r
+ $showitems = ($range * 2)+1;\r
+\r
+ global $paged;\r
+ if(empty($paged)) $paged = 1;\r
+\r
+ if($pages == '')\r
+ {\r
+ global $wp_query;\r
+ $pages = $wp_query->max_num_pages;\r
+ if(!$pages)\r
+ {\r
+ $pages = 1;\r
+ }\r
+ }\r
+\r
+ if(1 != $pages)\r
+ {\r
+ echo "<div class='pagination_container'><nav class='pagination'>";\r
+ if ($prefix) {echo "<span id='paginationPrefix'>$prefix </span>";}\r
+ if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>«</a>";\r
+ if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>‹</a>";\r
+\r
+ for ($i=1; $i <= $pages; $i++)\r
+ {\r
+ if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems ))\r
+ {\r
+ echo ($paged == $i)? "<span class='current'>".$i."</span>":"<a href='".get_pagenum_link($i)."' class='inactive' >".$i."</a>";\r
+ }\r
+ }\r
+\r
+ if ($paged < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($paged + 1)."'>›</a>";\r
+ if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>»</a>";\r
+ echo "</nav></div>\n";\r
+ }\r
+}\r
+endif;\r
+\r
+function mantra_nextpage_links($defaults) {\r
+$args = array(\r
+'link_before' => '<em>',\r
+'link_after' => '</em>',\r
+);\r
+$r = wp_parse_args($args, $defaults);\r
+return $r;\r
+}\r
+add_filter('wp_link_pages_args','mantra_nextpage_links');\r
+\r
+\r
+/**\r
+ * Site info\r
+ */\r
+function mantra_site_info() {\r
+$mantra_options= mantra_get_theme_options();\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;\r
+} ?>\r
+ <div style="text-align:center;clear:both;padding-top:4px;" >\r
+ <a href="<?php echo esc_url( home_url( '/' ) ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">\r
+ <?php bloginfo( 'name' ); ?></a> | <?php _e('Powered by','mantra')?> <a target="_blank" href="<?php echo 'http://www.cryoutcreations.eu';?>" title="<?php echo 'Mantra Theme by '.\r
+ 'Cryout Creations';?>"><?php echo 'Mantra' ?></a> & <a target="_blank" href="<?php echo esc_url('http://wordpress.org/' ); ?>"\r
+ title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'mantra'); ?>"> <?php printf(' %s.', 'WordPress' ); ?>\r
+ </a>\r
+ </div><!-- #site-info -->\r
+<?php }\r
+\r
+add_action('cryout_footer_hook','mantra_site_info',12);\r
+\r
+\r
+/**\r
+ * Copyright text\r
+ */\r
+function mantra_copyright() {\r
+$mantra_options= mantra_get_theme_options();\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;\r
+ }\r
+ echo '<div id="site-copyright">'.$mantra_copyright.'</div>';\r
+}\r
+\r
+\r
+if ($mantra_copyright != '') add_action('cryout_footer_hook','mantra_copyright',11);\r
+\r
+add_action('wp_ajax_nopriv_do_ajax', 'mantra_ajax_function');\r
+add_action('wp_ajax_do_ajax', 'mantra_ajax_function');\r
+\r
+\r
+/**\r
+* Retrieves the IDs for images in a gallery.\r
+* @since mantra 2.1.1\r
+* @return array List of image IDs from the post gallery.\r
+*/\r
+function mantra_get_gallery_images() {\r
+ $images = array();\r
+\r
+ if ( function_exists( 'get_post_galleries' ) ) {\r
+ $galleries = get_post_galleries( get_the_ID(), false );\r
+ if ( isset( $galleries[0]['ids'] ) )\r
+ $images = explode( ',', $galleries[0]['ids'] );\r
+ } else {\r
+ $pattern = get_shortcode_regex();\r
+ preg_match( "/$pattern/s", get_the_content(), $match );\r
+ $atts = shortcode_parse_atts( $match[3] );\r
+ if ( isset( $atts['ids'] ) )\r
+ $images = explode( ',', $atts['ids'] );\r
+ }\r
+\r
+ if ( ! $images ) {\r
+ $images = get_posts( array(\r
+ 'fields' => 'ids',\r
+ 'numberposts' => 999,\r
+ 'order' => 'ASC',\r
+ 'orderby' => 'menu_order',\r
+ 'post_mime_type' => 'image',\r
+ 'post_parent' => get_the_ID(),\r
+ 'post_type' => 'attachment',\r
+ ) );\r
+ }\r
+\r
+ return $images;\r
+} // mantra_get_gallery_images()\r
+\r
+\r
+/**\r
+* Checks the browser agent string for mobile ids and adds "mobile" class to body if true\r
+* @since mantra 2.2.3\r
+* @return array list of classes.\r
+*/\r
+function mantra_mobile_body_class($classes){\r
+$mantra_options = mantra_get_theme_options();\r
+ if ($mantra_options['mantra_mobile']=="Enable"):\r
+ $browser = $_SERVER['HTTP_USER_AGENT'];\r
+ $keys = 'mobile|android|mobi|tablet|ipad|opera mini|series 60|s60|blackberry';\r
+ if (preg_match("/($keys)/i",$browser)): $classes[] = 'mobile'; endif; // mobile browser detected\r
+ endif;\r
+ return $classes;\r
+}\r
+\r
+add_filter('body_class', 'mantra_mobile_body_class');\r
+\r
+\r
+if ( ! function_exists( 'mantra_ajax_function' ) ) :\r
+\r
+function mantra_ajax_function(){\r
+ob_clean();\r
+\r
+ // the first part is a SWTICHBOARD that fires specific functions\r
+ // according to the value of Query Var 'fn'\r
+\r
+ switch($_REQUEST['fn']){\r
+ case 'get_latest_posts':\r
+ $output = mantra_ajax_get_latest_posts($_REQUEST['count'],$_REQUEST['categName']);\r
+ break;\r
+ default:\r
+ $output = 'No function specified, check your jQuery.ajax() call';\r
+ break;\r
+\r
+ }\r
+\r
+ // at this point, $output contains some sort of valuable data!\r
+ // Now, convert $output to JSON and echo it to the browser\r
+ // That way, we can recapture it with jQuery and run our success function\r
+\r
+ $output=json_encode($output);\r
+ if(is_array($output)){\r
+ print_r($output);\r
+ }\r
+ else{\r
+ echo $output;\r
+ }\r
+ die;\r
+}\r
+endif;\r
+\r
+if ( ! function_exists( 'mantra_ajax_get_latest_posts' ) ) :\r
+function mantra_ajax_get_latest_posts($count,$categName){\r
+ $testVar='';\r
+ // The Query\r
+ query_posts( 'category_name='.$categName);\r
+ // The Loop\r
+ if ( have_posts() ) : while ( have_posts() ) : the_post();\r
+ $testVar .=the_title("<option>","</option>",0);\r
+ endwhile; else: endif;\r
+\r
+ // Reset Query\r
+ wp_reset_query();\r
+\r
+ return $testVar;\r
+}\r
+endif;\r
+?>
\ No newline at end of file
--- /dev/null
+<?php \r
+/*\r
+ * Theme hooks\r
+ *\r
+ * @package mantra\r
+ * @subpackage Functions\r
+ */\r
+ \r
+/**\r
+ * HEADER.PHP HOOKS\r
+*/\r
+\r
+// Before wp_head hook\r
+function cryout_header_hook() {\r
+ do_action('cryout_header_hook');\r
+}\r
+// SEO hook\r
+function cryout_seo_hook() {\r
+ do_action('cryout_seo_hook');\r
+}\r
+\r
+// Before wrapper\r
+function cryout_body_hook() {\r
+ do_action('cryout_body_hook');\r
+}\r
+\r
+// Inside wrapper\r
+function cryout_wrapper_hook() {\r
+ do_action('cryout_wrapper_hook');\r
+}\r
+\r
+// Inside branding\r
+function cryout_branding_hook() {\r
+ do_action('cryout_branding_hook');\r
+}\r
+\r
+// Inside access\r
+function cryout_access_hook() {\r
+ do_action('cryout_access_hook');\r
+}\r
+\r
+// Inside forbottom\r
+function cryout_forbottom_hook() {\r
+ do_action('cryout_forbottom_hook');\r
+}\r
+\r
+// Breadcrumbs\r
+function cryout_breadcrumbs_hook() {\r
+ do_action('cryout_breadcrumbs_hook');\r
+}\r
+\r
+/**\r
+ * FOOTER.PHP HOOKS\r
+*/\r
+\r
+// Footer hook\r
+function cryout_footer_hook() {\r
+ do_action('cryout_footer_hook');\r
+}\r
+\r
+\r
+/**\r
+ * COMMENTS.PHP HOOKS\r
+*/\r
+\r
+// Before comments hook\r
+function cryout_before_comments_hook() {\r
+ do_action('cryout_before_comments_hook');\r
+}\r
+\r
+// Actual comments hook\r
+function cryout_comments_hook() {\r
+ do_action('cryout_comments_hook');\r
+}\r
+\r
+// After comments hook\r
+function cryout_after_comments_hook() {\r
+ do_action('cryout_after_comments_hook');\r
+}\r
+\r
+// No comments hook\r
+function cryout_nocomments_hook() {\r
+ do_action('cryout_nocomments_hook');\r
+}\r
+\r
+\r
+/**\r
+ * SIDEBAR.PHP HOOKS\r
+*/\r
+\r
+// No comments hook\r
+function cryout_before_primary_widgets_hook() {\r
+ do_action('cryout_before_primary_widgets_hook');\r
+}\r
+\r
+// No comments hook\r
+function cryout_after_primary_widgets_hook() {\r
+ do_action('cryout_after_primary_widgets_hook');\r
+}\r
+\r
+// No comments hook\r
+function cryout_before_secondary_widgets_hook() {\r
+ do_action('cryout_before_secondary_widgets_hook');\r
+}\r
+\r
+// No comments hook\r
+function cryout_after_secondary_widgets_hook() {\r
+ do_action('cryout_after_secondary_widgets_hook');\r
+}\r
+\r
+/**\r
+ * LOOP.PHP HOOKS\r
+*/\r
+\r
+// Before each article hook\r
+function cryout_before_article_hook() {\r
+ do_action('cryout_before_article_hook');\r
+}\r
+\r
+// After each article hook\r
+function cryout_after_article_hook() {\r
+ do_action('cryout_after_article_hook');\r
+}\r
+\r
+// After each article title\r
+function cryout_post_title_hook() {\r
+ do_action('cryout_post_title_hook');\r
+}\r
+\r
+// After each post meta\r
+function cryout_post_meta_hook() {\r
+ do_action('cryout_post_meta_hook');\r
+}\r
+\r
+// Before the actual post content\r
+function cryout_post_before_content_hook() {\r
+ do_action('cryout_post_before_content_hook');\r
+}\r
+\r
+// After the actual post content\r
+function cryout_post_after_content_hook() {\r
+ do_action('cryout_post_after_content_hook');\r
+}\r
+\r
+// After the actual post content\r
+function cryout_post_footer_hook() {\r
+ do_action('cryout_post_footer_hook');\r
+}\r
+\r
+//Content hooks\r
+\r
+function cryout_before_content_hook() {\r
+ do_action('cryout_before_content_hook');\r
+}\r
+\r
+function cryout_after_content_hook() {\r
+ do_action('cryout_after_content_hook');\r
+}\r
+?>\r
--- /dev/null
+<?php /*\r
+ * Main loop related functions \r
+ *\r
+ * @package mantra\r
+ * @subpackage Functions\r
+ */\r
+ \r
+\r
+ /**\r
+ * Sets the post excerpt length to 40 characters.\r
+ *\r
+ * To override this length in a child theme, remove the filter and add your own\r
+ * function tied to the excerpt_length filter hook.\r
+ *\r
+ * @since Mantra 1.0\r
+ * @return int\r
+ */\r
+function mantra_excerpt_length( $length ) {\r
+ global $mantra_excerptwords;\r
+ return $mantra_excerptwords;\r
+}\r
+add_filter( 'excerpt_length', 'mantra_excerpt_length' );\r
+\r
+/**\r
+ * Returns a "Continue Reading" link for excerpts\r
+ *\r
+ * @since mantra 0.5\r
+ * @return string "Continue Reading" link\r
+ */\r
+function mantra_continue_reading_link() {\r
+ global $mantra_excerptcont;\r
+ return ' <a class="continue-reading-link" href="'. get_permalink() . '">' .$mantra_excerptcont.' <span class="meta-nav">→ </span>' . '</a>';\r
+}\r
+\r
+/**\r
+ * Replaces "[...]" (appended to automatically generated excerpts) with an ellipsis and mantra_continue_reading_link().\r
+ *\r
+ * To override this in a child theme, remove the filter and add your own\r
+ * function tied to the excerpt_more filter hook.\r
+ *\r
+ * @since mantra 0.5\r
+ * @return string An ellipsis\r
+ */\r
+function mantra_auto_excerpt_more( $more ) {\r
+ global $mantra_excerptdots;\r
+ return $mantra_excerptdots. mantra_continue_reading_link();\r
+}\r
+add_filter( 'excerpt_more', 'mantra_auto_excerpt_more' );\r
+\r
+\r
+/**\r
+ * Adds a pretty "Continue Reading" link to custom post excerpts.\r
+ *\r
+ * To override this link in a child theme, remove the filter and add your own\r
+ * function tied to the get_the_excerpt filter hook.\r
+ *\r
+ * @since mantra 0.5\r
+ * @return string Excerpt with a pretty "Continue Reading" link\r
+ */\r
+function mantra_custom_excerpt_more( $output ) {\r
+ if ( has_excerpt() && ! is_attachment() ) {\r
+ $output .= mantra_continue_reading_link();\r
+ }\r
+ return $output;\r
+}\r
+\r
+add_filter( 'get_the_excerpt', 'mantra_custom_excerpt_more' );\r
+\r
+/**\r
+ * Adds a "Continue Reading" link to post excerpts created using the <!--more--> tag.\r
+ *\r
+ * To override this link in a child theme, remove the filter and add your own\r
+ * function tied to the the_content_more_link filter hook.\r
+ *\r
+ * @since mantra 2.1\r
+ * @return string Excerpt with a pretty "Continue Reading" link\r
+ */\r
+function mantra_more_link($more_link, $more_link_text) {\r
+ global $mantra_excerptcont;\r
+ $new_link_text = $mantra_excerptcont;\r
+ if (preg_match("/custom=(.*)/",$more_link_text,$m) ) {\r
+ $new_link_text = $m[1];\r
+ };\r
+ $more_link = str_replace($more_link_text, $new_link_text.' <span class="meta-nav">→ </span>', $more_link);\r
+ $more_link = str_replace('more-link', 'continue-reading-link', $more_link);\r
+ return $more_link;\r
+}\r
+add_filter('the_content_more_link', 'mantra_more_link',10,2);\r
+\r
+/**\r
+ * Allows post excerpts to contain HTML tags\r
+ * @since mantra 1.8.7\r
+ * @return string Excerpt with most HTML tags intact\r
+ */\r
+\r
+function mantra_trim_excerpt($text) {\r
+global $mantra_excerptwords;\r
+global $mantra_excerptcont;\r
+global $mantra_excerptdots;\r
+$raw_excerpt = $text;\r
+if ( '' == $text ) {\r
+ //Retrieve the post content.\r
+ $text = get_the_content('');\r
+ \r
+ //Delete all shortcode tags from the content.\r
+ $text = strip_shortcodes( $text );\r
+ \r
+ $text = apply_filters('the_content', $text);\r
+ $text = str_replace(']]>', ']]>', $text);\r
+ \r
+ $allowed_tags = '<a>,<img>,<b>,<strong>,<ul>,<li>,<i>,<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<pre>,<code>,<em>,<u>,<br>,<p>';\r
+ $text = strip_tags($text, $allowed_tags);\r
+ \r
+ $words = preg_split("/[\n\r\t ]+/", $text, $mantra_excerptwords + 1, PREG_SPLIT_NO_EMPTY);\r
+ if ( count($words) > $mantra_excerptwords ) {\r
+ array_pop($words);\r
+ $text = implode(' ', $words);\r
+ $text = $text .' '.$mantra_excerptdots. ' <a href="'. get_permalink() . '">' .$mantra_excerptcont.' <span class="meta-nav">→ </span>' . '</a>';\r
+ } else {\r
+ $text = implode(' ', $words);\r
+ }\r
+}\r
+return apply_filters('wp_trim_excerpt', $text, $raw_excerpt);\r
+}\r
+\r
+\r
+\r
+\r
+if ($mantra_excerpttags=='Enable') {\r
+remove_filter('get_the_excerpt', 'wp_trim_excerpt');\r
+add_filter('get_the_excerpt', 'mantra_trim_excerpt');\r
+}\r
+\r
+\r
+/**\r
+ * Remove inline styles printed when the gallery shortcode is used.\r
+ *\r
+ * Galleries are styled by the theme in Mantra's style.css.\r
+ *\r
+ * @since mantra 0.5\r
+ * @return string The gallery style filter, with the styles themselves removed.\r
+ */\r
+function mantra_remove_gallery_css( $css ) {\r
+ return preg_replace( "#<style type='text/css'>(.*?)</style>#s", '', $css );\r
+}\r
+add_filter( 'gallery_style', 'mantra_remove_gallery_css' );\r
+\r
+\r
+if ( ! function_exists( 'mantra_posted_on' ) ) :\r
+/**\r
+ * Prints HTML with meta information for the current post—date/time and author.\r
+ *\r
+ * @since mantra 0.5\r
+ */\r
+function mantra_posted_on() {\r
+global $mantra_options;\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;\r
+}\r
+\r
+// If date is hidden don't give it a value\r
+$date_string='<span class="onDate"> %3$s <span class="bl_sep">|</span> </span>';\r
+if ($mantra_postdate == "Hide") $date_string='';\r
+\r
+// If author is hidden don't give it a value \r
+$author_string = sprintf( '<span class="author vcard" >'.__( 'By ','mantra'). ' <a class="url fn n" href="%1$s" title="%2$s">%3$s</a> <span class="bl_sep">|</span></span>',\r
+ get_author_posts_url( get_the_author_meta( 'ID' ) ),\r
+ sprintf( esc_attr__( 'View all posts by %s', 'mantra' ), get_the_author() ),\r
+ get_the_author()\r
+ ) ;\r
+if ($mantra_postauthor == "Hide") $author_string='';\r
+\r
+// Print the meta data\r
+ printf( ' %4$s '.$date_string.' <span class="bl_categ"> %2$s </span> ',\r
+ 'meta-prep meta-prep-author',\r
+ get_the_category_list( ', ' ),\r
+ sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span> <span class="entry-time"> - %2$s</span></a>',\r
+ get_permalink(),\r
+ esc_attr( get_the_time() ),\r
+ get_the_date()\r
+ ), $author_string\r
+\r
+ );\r
+}\r
+endif;\r
+\r
+// Remove category from rel in categry tags.\r
+add_filter( 'the_category', 'mantra_remove_category_tag' ); \r
+add_filter( 'get_the_category_list', 'mantra_remove_category_tag' ); \r
+\r
+function mantra_remove_category_tag( $text ) { \r
+$text = str_replace('rel="category tag"', 'rel="tag"', $text); return $text; \r
+}\r
+\r
+\r
+if ( ! function_exists( 'mantra_posted_in' ) ) :\r
+/**\r
+ * Prints HTML with meta information for the current post (category, tags and permalink).\r
+ *\r
+ * @since mantra 0.5\r
+ */\r
+function mantra_posted_in() {\r
+ // Retrieves tag list of current post, separated by commas.\r
+ $tag_list = get_the_tag_list( '', ', ' );\r
+ if ( $tag_list ) {\r
+ $posted_in = '<span class="bl_posted">'.__( 'Tagged','mantra').' %2$s.</span><span class="bl_bookmark">'.__(' Bookmark the ','mantra').' <a href="%3$s" title="'.__('Permalink to','mantra').' %4$s" rel="bookmark"> '.__('permalink','mantra').'</a>.</span>';\r
+ } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {\r
+ $posted_in = '<span class="bl_bookmark">'.__( 'Bookmark the ','mantra'). ' <a href="%3$s" title="'.__('Permalink to','mantra').' %4$s" rel="bookmark">'.__('permalink','mantra').'</a>. </span>';\r
+ } else {\r
+ $posted_in = '<span class="bl_bookmark">'.__( 'Bookmark the ','mantra'). ' <a href="%3$s" title="'.__('Permalink to','mantra').' %4$s" rel="bookmark">'.__('permalink','mantra').'</a>. </span>';\r
+ }\r
+ // Prints the string, replacing the placeholders.\r
+ printf(\r
+ $posted_in,\r
+ get_the_category_list( ', ' ),\r
+ $tag_list,\r
+ get_permalink(),\r
+ the_title_attribute( 'echo=0' )\r
+ );\r
+}\r
+endif;\r
+\r
+if ( ! function_exists( 'mantra_content_nav' ) ) :\r
+/**\r
+ * Display navigation to next/previous pages when applicable\r
+ */\r
+function mantra_content_nav( $nav_id ) {\r
+ global $wp_query;\r
+\r
+ if ( $wp_query->max_num_pages > 1 ) : ?>\r
+ <nav id="<?php echo $nav_id; ?>" class="navigation">\r
+ <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">«</span> Older posts', 'mantra' ) ); ?></div>\r
+ <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">»</span>', 'mantra' ) ); ?></div>\r
+ </nav><!-- #nav-above -->\r
+ <?php endif;\r
+}\r
+endif; // mantra_content_nav\r
+\r
+// Custom image size for use with post thumbnails\r
+if($mantra_fcrop)\r
+add_image_size( 'custom', $mantra_fwidth, $mantra_fheight, true ); \r
+else\r
+add_image_size( 'custom', $mantra_fwidth, $mantra_fheight ); \r
+\r
+\r
+function cryout_echo_first_image ($postID)\r
+{ \r
+ $args = array(\r
+ 'numberposts' => 1,\r
+ 'order'=> 'ASC',\r
+ 'post_mime_type' => 'image',\r
+ 'post_parent' => $postID,\r
+ 'post_status' => 'any',\r
+ 'post_type' => 'any'\r
+ );\r
+ \r
+ $attachments = get_children( $args );\r
+ //print_r($attachments);\r
+ \r
+ if ($attachments) {\r
+ foreach($attachments as $attachment) {\r
+ $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'custom' ) ? wp_get_attachment_image_src( $attachment->ID, 'custom' ) : wp_get_attachment_image_src( $attachment->ID, 'custom' );\r
+ \r
+ return $image_attributes[0];\r
+ \r
+ }\r
+ }\r
+}\r
+\r
+if ( ! function_exists( 'mantra_set_featured_thumb' ) ) :\r
+/**\r
+ * Adds a post thumbnail and if one doesn't exist the first image from the post is used.\r
+ */\r
+\r
+function mantra_set_featured_thumb() {\r
+ global $mantra_options;\r
+ foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;\r
+}\r
+global $post;\r
+$image_src = cryout_echo_first_image($post->ID);\r
+\r
+ if ( function_exists("has_post_thumbnail") && has_post_thumbnail() && $mantra_fpost=='Enable') \r
+ the_post_thumbnail( 'custom', array("class" => "align".strtolower($mantra_falign)." post_thumbnail" ) ); \r
+\r
+ else if ($mantra_fpost=='Enable' && $mantra_fauto=="Enable" && $image_src && ($mantra_excerptarchive != "Full Post" || $mantra_excerpthome != "Full Post")) \r
+ 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>' ;\r
+ \r
+ }\r
+endif; // mantra_set_featured_thumb\r
+\r
+\r
+\r
+if ($mantra_fpost=='Enable' && $mantra_fpostlink) add_filter( 'post_thumbnail_html', 'mantra_thumbnail_link', 10, 3 ); \r
+\r
+/**\r
+ * The thumbnail gets a link to the post's page\r
+ */\r
+\r
+function mantra_thumbnail_link( $html, $post_id, $post_image_id ) {\r
+\r
+ $html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '" alt="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '">' . $html . '</a>';\r
+ return $html;\r
+\r
+}\r
+?>
\ No newline at end of file
--- /dev/null
+<?php /*\r
+ * SEO related functions\r
+ *\r
+ * @package mantra\r
+ * @subpackage Functions\r
+ */\r
+ \r
+/**\r
+ * Filter for page meta title.\r
+ */\r
+function mantra_filter_wp_title( $title ) {\r
+ // Get the Site Name\r
+ $site_name = get_bloginfo( 'name' );\r
+ // Prepend name\r
+ $filtered_title = (((strlen($site_name)>0)&&(strlen($title)>0))?$title.' - '.$site_name:$title.$site_name);\r
+ // Get the Site Description\r
+ $site_description = get_bloginfo( 'description' );\r
+ // If site front page, append description\r
+ if ( (is_home() || is_front_page()) && $site_description ) {\r
+ // Append Site Description to title\r
+ $filtered_title = ((strlen($site_name)>0)&&(strlen($site_description)>0))?$site_name. " | ".$site_description:$site_name.$site_description;\r
+ }\r
+ // Add pagination if that's the case\r
+ global $page, $paged;\r
+ if ( $paged >= 2 || $page >= 2 )\r
+ $filtered_title .= ' | ' . sprintf( __( 'Page %s', 'mantra' ), max( $paged, $page ) );\r
+\r
+ // Return the modified title\r
+ return $filtered_title;\r
+}\r
+\r
+function mantra_filter_wp_title_rss($title) {\r
+return ' ';\r
+}\r
+add_filter( 'wp_title', 'mantra_filter_wp_title' );\r
+add_filter('wp_title_rss','mantra_filter_wp_title_rss');\r
+\r
+ /**\r
+ * Meta description\r
+ */\r
+function mantra_seo_description() {\r
+ global $mantra_options;\r
+ foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;}\r
+\r
+ if ( (is_home() && $mantra_seo_home_desc) || (is_page_template('template-blog.php') && $mantra_seo_home_desc) ) {\r
+ echo PHP_EOL.'<meta name="description" content="';\r
+ echo $mantra_seo_home_desc;\r
+ echo '" />'; }\r
+ else if ((is_single() || is_page()) && !is_404()) {\r
+ if ($mantra_seo_gen_desc =="Auto") {\r
+ global $post;\r
+ $content_post = get_post($post->ID);\r
+ $content = strip_shortcodes($content_post->post_content);\r
+ $content = preg_replace(array('/\s{2,}/', '/[\t\n]/'), ' ', $content);\r
+ $content = strip_tags($content);\r
+ $content = str_replace('"','',$content);\r
+ $content = preg_replace('/((\w+\W+\'*){'.(33).'}(\w+))(.*)/', '${1}', $content);\r
+ }\r
+ else if ($mantra_seo_gen_desc=="Manual") {\r
+ global $post,$mantra_meta_box_description;\r
+ $content = get_post_meta($post->ID,'SEOdescription_value',true);\r
+ }\r
+\r
+ echo PHP_EOL.'<meta name="description" content="';\r
+ echo $content;\r
+ echo '" />'; }\r
+ else if (is_category() && category_description() != "") {\r
+ echo PHP_EOL.'<meta name="description" content="';\r
+ echo trim(strip_tags(category_description()));\r
+ echo '" />'; }\r
+ \r
+}\r
+\r
+ /**\r
+ * Meta author\r
+ */\r
+function mantra_seo_name() {\r
+ global $mantra_options;\r
+ foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;}\r
+echo '<meta name="author" content="'.$mantra_seo_author.'" />';\r
+}\r
+\r
+/**\r
+ * Meta Title \r
+ */\r
+function mantra_seo_title() {\r
+echo '<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />';\r
+}\r
+\r
+\r
+// Mantra main seo function\r
+function mantra_seo_generator() {\r
+global $mantra_options;\r
+foreach ($mantra_options as $key => $value) {\r
+${"$key"} = $value ;}\r
+add_action ('cryout_seo_hook','mantra_seo_title');\r
+add_action ('cryout_seo_hook','mantra_seo_description');\r
+\r
+if($mantra_seo_author && $mantra_seo_author!="Do not use") \r
+ add_action ('cryout_seo_hook','mantra_seo_name');\r
+}\r
+\r
+if($mantra_seo=="Enable") mantra_seo_generator() ; \r
+ else add_action ('cryout_seo_hook','mantra_seo_title',0);\r
+\r
+// Mantra favicon\r
+function mantra_fav_icon() {\r
+global $mantra_options;\r
+foreach ($mantra_options as $key => $value) {\r
+${"$key"} = $value ;} \r
+ echo '<link rel="shortcut icon" href="'.esc_url($mantra_options['mantra_favicon']).'" />'; \r
+ echo '<link rel="apple-touch-icon" href="'.esc_url($mantra_options['mantra_favicon']).'" />'; \r
+ }\r
+\r
+if ($mantra_options['mantra_favicon']) add_action ('cryout_header_hook','mantra_fav_icon'); \r
+\r
+ \r
+/*\r
+Plugin Name: Custom Write Panel\r
+Plugin URI: http://wefunction.com/2008/10/tutorial-create-custom-write-panels-in-wordpress\r
+Description: Allows custom fields to be added to the WordPress Post Page\r
+Version: 1.0\r
+Author: Spencer\r
+Author URI: http://wefunction.com\r
+/* ----------------------------------------------*/\r
+ \r
+$mantra_meta_box_description =\r
+array(\r
+"image" => array(\r
+"name" => "SEOdescription",\r
+"std" => "",\r
+"title" => "Input the SEO description for this post/page here (about 160 characters): ",\r
+"description" => "This description is for SEO purposes only. It will be used as a meta in your HTML header. It won't be vislbe anywhere else.<br> More SEO options in the Mantra Settings Page >> Misc Options >> SEO.")\r
+);\r
+\r
+function mantra_meta_box_description() {\r
+global $post, $mantra_meta_box_description;\r
+ \r
+foreach($mantra_meta_box_description as $meta_box) {\r
+$meta_box_value = get_post_meta($post->ID, $meta_box['name'].'_value', true);\r
+ \r
+if($meta_box_value == "")\r
+$meta_box_value = $meta_box['std'];\r
+ \r
+echo '<input type="hidden" name="'.$meta_box['name'].'_noncename" id="'.$meta_box['name'].'_noncename" value="'.wp_create_nonce( plugin_basename(__FILE__) ).'" />';\r
+ \r
+echo '<p>'.$meta_box['title'].'</p>';\r
+ \r
+echo '<textarea rows="5" cols="150" name="'.$meta_box['name'].'_value" size="55" >'.$meta_box_value.'</textarea><br>';\r
+ \r
+echo '<p><label for="'.$meta_box['name'].'_value">'.$meta_box['description'].'</label></p>';\r
+}\r
+}\r
+\r
+function mantra_create_meta_box() {\r
+global $theme_name;\r
+add_meta_box( 'new-meta-boxes', 'Mantra SEO - Description', 'mantra_meta_box_description', 'post', 'normal', 'high' );\r
+add_meta_box( 'new-meta-boxes', 'Mantra SEO - Description', 'mantra_meta_box_description', 'page', 'normal', 'high' );\r
+}\r
+\r
+function mantra_save_postdata( $post_id ) {\r
+global $post, $mantra_meta_box_description;\r
+ \r
+foreach($mantra_meta_box_description as $meta_box) {\r
+// Verify\r
+if ( !wp_verify_nonce( $_POST[$meta_box['name'].'_noncename'], plugin_basename(__FILE__) )) {\r
+return $post_id;\r
+}\r
+ \r
+if ( 'page' == $_POST['post_type'] ) {\r
+if ( !current_user_can( 'edit_page', $post_id ))\r
+return $post_id;\r
+} else {\r
+if ( !current_user_can( 'edit_post', $post_id ))\r
+return $post_id;\r
+}\r
+ \r
+$data = $_POST[$meta_box['name'].'_value'];\r
+ \r
+if(get_post_meta($post_id, $meta_box['name'].'_value') == "")\r
+add_post_meta($post_id, $meta_box['name'].'_value', $data, true);\r
+elseif($data != get_post_meta($post_id, $meta_box['name'].'_value', true))\r
+update_post_meta($post_id, $meta_box['name'].'_value', $data);\r
+elseif($data == "")\r
+delete_post_meta($post_id, $meta_box['name'].'_value', get_post_meta($post_id, $meta_box['name'].'_value', true));\r
+}\r
+}\r
+if ($mantra_seo_gen_desc=="Manual") {\r
+ add_action('admin_menu', 'mantra_create_meta_box');\r
+ add_action('save_post', 'mantra_save_postdata');\r
+}\r
+?>
\ No newline at end of file
--- /dev/null
+<?php\r
+/*\r
+ * Theme setup functions. Theme initialization, theme support , widgets , navigation\r
+ *\r
+ * @package mantra\r
+ * @subpackage Functions\r
+ */\r
+\r
+/* \r
+// Bringing up Mantra Settings page after install\r
+if ( is_admin() && isset($_GET['activated'] ) && $pagenow == "themes.php" ) {\r
+ wp_redirect( 'themes.php?page=mantra-page' );\r
+}\r
+*/\r
+\r
+$mantra_totalSize = $mantra_sidebar + $mantra_sidewidth+50;\r
+ \r
+ /**\r
+\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+\r
+/**\r
+ * Set the content width based on the theme's design and stylesheet.\r
+ *\r
+ * Used to set the width of images and content. Should be equal to the width the theme\r
+ * is designed for, generally via the style.css stylesheet.\r
+ */\r
+if ( ! isset( $content_width ) )\r
+ $content_width = $mantra_sidewidth;\r
+\r
+/** Tell WordPress to run mantra_setup() when the 'after_setup_theme' hook is run. */\r
+add_action( 'after_setup_theme', 'mantra_setup' );\r
+\r
+if ( ! function_exists( 'mantra_setup' ) ):\r
+/**\r
+ * Sets up theme defaults and registers support for various WordPress features.\r
+ *\r
+ * Note that this function is hooked into the after_setup_theme hook, which runs\r
+ * before the init hook. The init hook is too late for some features, such as indicating\r
+ * support post thumbnails.\r
+ *\r
+ * To override mantra_setup() in a child theme, add your own mantra_setup to your child theme's\r
+ * functions.php file.\r
+ *\r
+ * @uses add_theme_support() To add support for post thumbnails and automatic feed links.\r
+ * @uses register_nav_menus() To add support for navigation menus.\r
+ * @uses add_custom_background() To add support for a custom background.\r
+ * @uses add_editor_style() To style the visual editor.\r
+ * @uses load_theme_textdomain() For translation/localization support.\r
+ * @uses add_custom_image_header() To add support for a custom header.\r
+ * @uses register_default_headers() To register the default custom header images provided with the theme.\r
+ * @uses set_post_thumbnail_size() To set a custom post thumbnail size.\r
+ *\r
+ * @since mantra 0.5\r
+ */\r
+function mantra_setup() {\r
+\r
+ // This theme styles the visual editor with editor-style.css to match the theme style.\r
+ add_editor_style();\r
+ \r
+ // Support title tag since WP 4.1\r
+ add_theme_support( 'title-tag' );\r
+\r
+ // This theme uses post thumbnails\r
+ add_theme_support( 'post-thumbnails' );\r
+ set_post_thumbnail_size( 150, 150 ); // default Post Thumbnail dimensions (cropped)\r
+\r
+ // Add default posts and comments RSS feed links to head\r
+\r
+ add_theme_support( 'automatic-feed-links' );\r
+ add_theme_support('post-formats', array( 'aside', 'chat', 'gallery', 'image', 'link', 'quote', 'status'));\r
+\r
+ // Make theme available for translation\r
+ // Translations can be filed in the /languages/ directory\r
+/**\r
+ * Make theme available for translation\r
+ * Translations can be filed in the /languages/ directory\r
+ */\r
+load_theme_textdomain( 'mantra', get_template_directory() . '/languages' );\r
+\r
+$locale = get_locale();\r
+$locale_file = get_template_directory() . "/languages/$locale.php";\r
+ if ( is_readable( $locale_file ) )\r
+ require_once( $locale_file );\r
+\r
+\r
+\r
+ // This theme uses wp_nav_menu() in 3 locations.\r
+ register_nav_menus( array(\r
+ 'primary' => __( 'Primary Navigation', 'mantra' ),\r
+ 'top' => __( 'Top Navigation', 'mantra' ),\r
+ 'footer' => __( 'Footer Navigation', 'mantra' ),\r
+ ) );\r
+\r
+ // This theme allows users to set a custom background\r
+ add_theme_support( 'custom-background' );\r
+\r
+ // We'll be using post thumbnails for custom header images on posts and pages.\r
+ // We want them to be the same size as the header.\r
+ // Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php.\r
+ global $mantra_hheight;\r
+ $mantra_hheight=(int)$mantra_hheight;\r
+ global $mantra_totalSize;\r
+ define( 'HEADER_IMAGE_WIDTH', apply_filters( 'mantra_header_image_width', $mantra_totalSize ) );\r
+ define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'mantra_header_image_height', $mantra_hheight) );\r
+ //set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true );\r
+ add_image_size('header',HEADER_IMAGE_WIDTH,HEADER_IMAGE_HEIGHT,true); \r
+\r
+ global $mantra_fpsliderwidth;\r
+ global $mantra_fpsliderheight;\r
+ add_image_size('slider',$mantra_fpsliderwidth,$mantra_fpsliderheight,true);\r
+ // Add a way for the custom header to be styled in the admin panel that controls\r
+ // custom headers. See mantra_admin_header_style(), below.\r
+ define( 'NO_HEADER_TEXT', true );\r
+ add_theme_support( 'custom-header' );\r
+\r
+ // ... and thus ends the changeable header business.\r
+\r
+\r
+// Backwards compatibility with pre 3.4 versions for custom background and header \r
+\r
+ // Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.\r
+ register_default_headers( array(\r
+ 'mantra' => array(\r
+ 'url' => '%s/images/headers/mantra.png',\r
+ 'thumbnail_url' => '%s/images/headers/mantra-thumbnail.png',\r
+ // translators: header image description\r
+ 'description' => __( 'mantra', 'mantra' )\r
+ ),\r
+ ) );\r
+}\r
+endif;\r
+\r
+// remove obsolete mantra functions action hooks\r
+if ( ! function_exists( 'mantra_remove_obsolete_functions' ) ) :\r
+function mantra_remove_obsolete_functions() {\r
+ remove_filter( 'wp_title', 'mantra_filter_wp_title' );\r
+ remove_filter('wp_title_rss','mantra_filter_wp_title_rss');\r
+}\r
+add_action('init','mantra_remove_obsolete_functions');\r
+endif; \r
+\r
+// Backwards compatibility for the title-tag\r
+if ( ! function_exists( '_wp_render_title_tag' ) ) :\r
+ add_action( 'wp_head', 'mantra_render_title' );\r
+ add_filter( 'wp_title', 'mantra_filter_wp_title2' );\r
+ add_filter('wp_title_rss','mantra_filter_wp_title_rss2');\r
+endif;\r
+\r
+function mantra_render_title() { ?>\r
+ <title><?php wp_title( '', true, 'right' ); ?></title>\r
+<?php }\r
+\r
+function mantra_filter_wp_title2( $title ) {\r
+ // Get the Site Name\r
+ $site_name = get_bloginfo( 'name' );\r
+ // Prepend name\r
+ $filtered_title = (((strlen($site_name)>0)&&(strlen($title)>0))?$title.' - '.$site_name:$title.$site_name);\r
+ // Get the Site Description\r
+ $site_description = get_bloginfo( 'description' );\r
+ // If site front page, append description\r
+ if ( (is_home() || is_front_page()) && $site_description ) {\r
+ // Append Site Description to title\r
+ $filtered_title = ((strlen($site_name)>0)&&(strlen($site_description)>0))?$site_name. " | ".$site_description:$site_name.$site_description;\r
+ }\r
+ // Add pagination if that's the case\r
+ global $page, $paged;\r
+ if ( $paged >= 2 || $page >= 2 )\r
+ $filtered_title .= ' | ' . sprintf( __( 'Page %s', 'mantra' ), max( $paged, $page ) );\r
+\r
+ // Return the modified title\r
+ return $filtered_title;\r
+}\r
+\r
+function nirvana_filter_wp_title_rss2($title) {\r
+ return ' ';\r
+}\r
+\r
+if ( ! function_exists( 'mantra_admin_header_style' ) ) :\r
+/**\r
+ * Styles the header image displayed on the Appearance > Header admin panel.\r
+ *\r
+ * Referenced via add_custom_image_header() in mantra_setup().\r
+ *\r
+ * @since mantra 0.5\r
+ */\r
+function mantra_admin_header_style() {\r
+?>\r
+<style type="text/css">\r
+/* Shows the same border as on front end */\r
+#headimg {\r
+ border-bottom: 1px solid #000;\r
+ border-top: 4px solid #000;\r
+}\r
+/* If NO_HEADER_TEXT is false, you would style the text with these selectors:\r
+ #headimg #name { }\r
+ #headimg #desc { }\r
+*/\r
+</style>\r
+<?php\r
+}\r
+endif;\r
+\r
+/**\r
+ * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.\r
+ *\r
+ * To override this in a child theme, remove the filter and optionally add\r
+ * your own function tied to the wp_page_menu_args filter hook.\r
+ *\r
+ * @since mantra 0.5\r
+ */\r
+function mantra_page_menu_args( $args ) {\r
+ $args['show_home'] = true;\r
+ return $args;\r
+}\r
+add_filter( 'wp_page_menu_args', 'mantra_page_menu_args' );\r
+\r
+/**\r
+ * Create menus\r
+ */\r
+ \r
+// TOP MENU\r
+function mantra_top_menu() {\r
+ if ( has_nav_menu( 'top' ) ) wp_nav_menu( array( 'container' => 'nav', 'container_class' => 'topmenu', 'theme_location' => 'top', 'depth' => 1 ) ); \r
+ }\r
+ \r
+ add_action ('cryout_wrapper_hook','mantra_top_menu');\r
+ \r
+ // MAIN MENU\r
+ function mantra_main_menu() {\r
+ /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>\r
+<div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'mantra' ); ?>"><?php _e( 'Skip to content', 'mantra' ); ?></a></div>\r
+<?php /* Main navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */\r
+wp_nav_menu( array( 'container_class' => 'menu', 'menu_id' =>'prime_nav', 'theme_location' => 'primary' ) ); \r
+}\r
+\r
+add_action ('cryout_access_hook','mantra_main_menu');\r
+\r
+// FOOTER MENU\r
+ function mantra_footer_menu() {\r
+ if ( has_nav_menu( 'footer' ) ) wp_nav_menu( array( 'container' => 'nav', 'container_class' => 'footermenu', 'theme_location' => 'footer', 'depth' => 1 ) ); \r
+ }\r
+ \r
+ add_action ('cryout_footer_hook','mantra_footer_menu',10);\r
+\r
+ \r
+/**\r
+ * Register widgetized areas, including two sidebars and four widget-ready columns in the footer.\r
+ *\r
+ * To override mantra_widgets_init() in a child theme, remove the action hook and add your own\r
+ * function tied to the init hook.\r
+ *\r
+ * @since mantra 0.5\r
+ * @uses register_sidebar\r
+ */\r
+function mantra_widgets_init() {\r
+ // Area 1, located at the top of the sidebar.\r
+ register_sidebar( array(\r
+ 'name' => __( 'Primary Widget Area - Sidebar 1', 'mantra' ),\r
+ 'id' => 'primary-widget-area',\r
+ 'description' => __( 'Primary widget area - Sidebar 1', 'mantra' ),\r
+ 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',\r
+ 'after_widget' => '</li>',\r
+ 'before_title' => '<h3 class="widget-title">',\r
+ 'after_title' => '</h3>',\r
+ ) );\r
+\r
+ // Area 2, located below the Primary Widget Area in the sidebar. Empty by default.\r
+ register_sidebar( array(\r
+ 'name' => __( 'Secondary Widget Area - Sidebar 1', 'mantra' ),\r
+ 'id' => 'secondary-widget-area',\r
+ 'description' => __( 'Secondary widget area - Sidebar 1', 'mantra' ),\r
+ 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',\r
+ 'after_widget' => '</li>',\r
+ 'before_title' => '<h3 class="widget-title">',\r
+ 'after_title' => '</h3>',\r
+ ) );\r
+\r
+ // Area 3 for the second sidebar. Empty be default\r
+ register_sidebar( array(\r
+ 'name' => __( 'Third Widget Area - Sidebar 2', 'mantra' ),\r
+ 'id' => 'third-widget-area',\r
+ 'description' => __( 'Third widget area - Sidebar 2', 'mantra' ),\r
+ 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',\r
+ 'after_widget' => '</li>',\r
+ 'before_title' => '<h3 class="widget-title">',\r
+ 'after_title' => '</h3>',\r
+ ) );\r
+\r
+ // Area 4, located below the Third Widget Area in the second sidebar. Empty by default.\r
+ register_sidebar( array(\r
+ 'name' => __( 'Fourth Widget Area - Sidebar 2', 'mantra' ),\r
+ 'id' => 'fourth-widget-area',\r
+ 'description' => __( 'Fourth widget area - Sidebar 2', 'mantra' ),\r
+ 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',\r
+ 'after_widget' => '</li>',\r
+ 'before_title' => '<h3 class="widget-title">',\r
+ 'after_title' => '</h3>',\r
+ ) );\r
+\r
+ // Area 5, located in the footer. Empty by default.\r
+ register_sidebar( array(\r
+ 'name' => __( 'First Footer Widget Area', 'mantra' ),\r
+ 'id' => 'first-footer-widget-area',\r
+ 'description' => __( 'First footer widget area', 'mantra' ),\r
+ 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',\r
+ 'after_widget' => '</li>',\r
+ 'before_title' => '<h3 class="widget-title">',\r
+ 'after_title' => '</h3>',\r
+ ) );\r
+\r
+ // Area 6, located in the footer. Empty by default.\r
+ register_sidebar( array(\r
+ 'name' => __( 'Second Footer Widget Area', 'mantra' ),\r
+ 'id' => 'second-footer-widget-area',\r
+ 'description' => __( 'Second footer widget area', 'mantra' ),\r
+ 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',\r
+ 'after_widget' => '</li>',\r
+ 'before_title' => '<h3 class="widget-title">',\r
+ 'after_title' => '</h3>',\r
+ ) );\r
+\r
+ // Area 7, located in the footer. Empty by default.\r
+ register_sidebar( array(\r
+ 'name' => __( 'Third Footer Widget Area', 'mantra' ),\r
+ 'id' => 'third-footer-widget-area',\r
+ 'description' => __( 'The third footer widget area', 'mantra' ),\r
+ 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',\r
+ 'after_widget' => '</li>',\r
+ 'before_title' => '<h3 class="widget-title">',\r
+ 'after_title' => '</h3>',\r
+ ) );\r
+\r
+ // Area 8, located in the footer. Empty by default.\r
+ register_sidebar( array(\r
+ 'name' => __( 'Fourth Footer Widget Area', 'mantra' ),\r
+ 'id' => 'fourth-footer-widget-area',\r
+ 'description' => __( 'The fourth footer widget area', 'mantra' ),\r
+ 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',\r
+ 'after_widget' => '</li>',\r
+ 'before_title' => '<h3 class="widget-title">',\r
+ 'after_title' => '</h3>',\r
+ ) );\r
+ \r
+ // Area 9, located above the content area. Empty by default.\r
+ register_sidebar( array(\r
+ 'name' => __( 'Above content Widget Area', 'mantra' ),\r
+ 'id' => 'above-content-widget-area',\r
+ 'description' => __( 'Above content Widget Area', 'mantra' ),\r
+ 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',\r
+ 'after_widget' => '</li>',\r
+ 'before_title' => '<h3 class="widget-title">',\r
+ 'after_title' => '</h3>',\r
+ ) );\r
+ \r
+ // Area 10, located below the content area. Empty by default.\r
+ register_sidebar( array(\r
+ 'name' => __( 'Below Content Widget Area', 'mantra' ),\r
+ 'id' => 'below-content-widget-area',\r
+ 'description' => __( 'Below Content Widget Area', 'mantra' ),\r
+ 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',\r
+ 'after_widget' => '</li>',\r
+ 'before_title' => '<h3 class="widget-title">',\r
+ 'after_title' => '</h3>',\r
+ ) );\r
+}\r
+/** Register sidebars by running mantra_widgets_init() on the widgets_init hook. */\r
+add_action( 'widgets_init', 'mantra_widgets_init' );\r
+\r
+\r
+/**\r
+ * Creates different class names for footer widgets depending on their number.\r
+ * This way they can fit the footer area.\r
+ */\r
+\r
+function mantra_footer_sidebar_class() {\r
+ $count = 0;\r
+\r
+ if ( is_active_sidebar( 'first-footer-widget-area' ) )\r
+ $count++;\r
+\r
+ if ( is_active_sidebar( 'second-footer-widget-area' ) )\r
+ $count++;\r
+\r
+ if ( is_active_sidebar( 'third-footer-widget-area' ) )\r
+ $count++;\r
+\r
+ if ( is_active_sidebar( 'fourth-footer-widget-area' ) )\r
+ $count++;\r
+\r
+ $class = '';\r
+\r
+ switch ( $count ) {\r
+ case '1':\r
+ $class = 'one';\r
+ break;\r
+ case '2':\r
+ $class = 'two';\r
+ break;\r
+ case '3':\r
+ $class = 'three';\r
+ break;\r
+ case '4':\r
+ $class = 'four';\r
+ break;\r
+ }\r
+\r
+ if ( $class )\r
+ echo 'class="footer' . $class . '"';\r
+}\r
+\r
+\r
+ function mantra_above_widget() {\r
+ if ( is_active_sidebar( 'above-content-widget-area' )) { ?>\r
+ <ul class="yoyo">\r
+ <?php dynamic_sidebar( 'above-content-widget-area' ); ?>\r
+ </ul>\r
+ <?php } } \r
+ \r
+function mantra_below_widget() {\r
+ if ( is_active_sidebar( 'below-content-widget-area' )) { ?>\r
+ <ul class="yoyo">\r
+ <?php dynamic_sidebar( 'below-content-widget-area' ); ?>\r
+ </ul>\r
+ <?php } } \r
+ \r
+add_action ('cryout_before_content_hook','mantra_above_widget');\r
+add_action ('cryout_after_content_hook','mantra_below_widget'); ?>
\ No newline at end of file
--- /dev/null
+<?php \r
+/*\r
+ * Styles and scripts registration and enqueuing \r
+ *\r
+ * @package mantra\r
+ * @subpackage Functions\r
+ */\r
+ \r
+// Adding the viewport meta if the mobile view has been enabled\r
+\r
+function mantra_mobile_meta() {\r
+global $mantra_options;\r
+if ($mantra_options['mantra_zoom'] == 1) \r
+ return '<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0, minimum-scale=1.0, maximum-scale=3.0">';\r
+else return '<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">';\r
+}\r
+\r
+\r
+function mantra_register_styles() {\r
+ global $mantra_options;\r
+ foreach ($mantra_options as $key => $value) { ${"$key"} = $value ;}\r
+\r
+ wp_register_style( 'mantras', get_stylesheet_uri() );\r
+ \r
+ if($mantra_mobile=="Enable") { wp_register_style( 'mantra-mobile', get_template_directory_uri() . '/style-mobile.css' );}\r
+ \r
+ wp_register_style( 'mantra_googlefont', esc_attr($mantra_googlefont2 ));\r
+ wp_register_style( 'mantra_googlefonttitle', esc_attr($mantra_googlefonttitle2 ));\r
+ wp_register_style( 'mantra_googlefontside',esc_attr($mantra_googlefontside2) );\r
+ wp_register_style( 'mantra_googlefontsubheader', esc_attr($mantra_googlefontsubheader2) );\r
+ \r
+}\r
+\r
+add_action('init', 'mantra_register_styles' );\r
+\r
+\r
+function mantra_enqueue_styles() {\r
+ global $mantra_options;\r
+ foreach ($mantra_options as $key => $value) { ${"$key"} = $value ;}\r
+ \r
+ wp_enqueue_style( 'mantras');\r
+ \r
+ wp_enqueue_style( 'mantra_googlefont');\r
+ wp_enqueue_style( 'mantra_googlefonttitle');\r
+ wp_enqueue_style( 'mantra_googlefontside');\r
+ wp_enqueue_style( 'mantra_googlefontsubheader');\r
+\r
+\r
+}\r
+ \r
+add_action('wp_enqueue_scripts', 'mantra_enqueue_styles' );\r
+ \r
+function mantra_styles_echo() {\r
+ global $mantra_options;\r
+ \r
+ foreach ($mantra_options as $key => $value) { ${"$key"} = $value ;}\r
+ \r
+ echo preg_replace("/[\n\r\t\s]+/"," " ,mantra_custom_styles())."\n";\r
+ if(($mantra_frontpage=="Enable")&&is_front_page()) { echo preg_replace("/[\n\r\t\s]+/"," " ,mantra_frontpage_css())."\n";}\r
+ if($mantra_mobile=="Enable") {wp_enqueue_style( 'mantra-mobile'); echo mantra_mobile_meta();}\r
+ echo preg_replace("/[\n\r\t\s]+/"," " ,mantra_customcss())."\n";\r
+} \r
+\r
+add_action('wp_head', 'mantra_styles_echo');\r
+\r
+ \r
+// JS loading and hook into wp_enque_scripts\r
+\r
+add_action('wp_head', 'mantra_customjs' );\r
+ \r
+\r
+\r
+\r
+// Scripts loading and hook into wp_enque_scripts\r
+\r
+function mantra_scripts_method() {\r
+global $mantra_options;\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = $value ;\r
+ }\r
+\r
+// If frontend - load the js for the menu and the social icons animations\r
+ if ( !is_admin() ) {\r
+ wp_register_script('cryout-frontend',get_template_directory_uri() . '/js/frontend.js', array('jquery') );\r
+ wp_enqueue_script('cryout-frontend');\r
+ // If mantra from page is enabled and the current page is home page - load the nivo slider js \r
+ if($mantra_frontpage == "Enable" && is_front_page()) {\r
+ wp_register_script('cryout-nivoSlider',get_template_directory_uri() . '/js/nivo-slider.js', array('jquery'));\r
+ wp_enqueue_script('cryout-nivoSlider');\r
+ }\r
+ }\r
+ \r
+\r
+ /* We add some JavaScript to pages with the comment form\r
+ * to support sites with threaded comments (when in use).\r
+ */\r
+ if ( is_singular() && get_option( 'thread_comments' ) )\r
+ wp_enqueue_script( 'comment-reply' );\r
+}\r
+\r
+add_action('wp_enqueue_scripts', 'mantra_scripts_method');\r
+\r
+/**\r
+ * Adding CSS3 PIE behavior to elements that need it\r
+ */\r
+function mantra_ie_pie() {\r
+ echo '\r
+<!--[if lte IE 8]>\r
+<style type="text/css" media="screen">\r
+ #access ul li,\r
+.edit-link a ,\r
+ #footer-widget-area .widget-title, .entry-meta,.entry-meta .comments-link,\r
+.short-button-light, .short-button-dark ,.short-button-color ,blockquote {\r
+ position:relative;\r
+ behavior: url('.get_template_directory_uri().'/js/PIE/PIE.php);\r
+ }\r
+\r
+#access ul ul {\r
+-pie-box-shadow:0px 5px 5px #999;\r
+}\r
+ \r
+#access ul li.current_page_item, #access ul li.current-menu-item ,\r
+#access ul li ,#access ul ul ,#access ul ul li, .commentlist li.comment ,.commentlist .avatar,\r
+ .nivo-caption, .theme-default .nivoSlider {\r
+ behavior: url('.get_template_directory_uri().'/js/PIE/PIE.php);\r
+ }\r
+</style>\r
+<![endif]-->\r
+';\r
+}\r
+add_action('wp_head', 'mantra_ie_pie', 10);\r
+\r
+?>
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The main template file.\r
+ *\r
+ * This is the most generic template file in a WordPress theme\r
+ * and one of the two required files for a theme (the other being style.css).\r
+ * It is used to display a page when nothing more specific matches a query.\r
+ * E.g., it puts together the home page when no home.php file exists.\r
+ * Learn more: http://codex.wordpress.org/Template_Hierarchy\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ */\r
+get_header(); \r
+if ($mantra_frontpage=="Enable" && is_front_page() ):\r
+ mantra_frontpage_generator();\r
+ if ($mantra_frontposts=="Enable"): get_template_part('content','frontpage'); endif;\r
+else:\r
+?>\r
+ <section id="container">\r
+ \r
+ <div id="content" role="main">\r
+ \r
+<?php cryout_before_content_hook(); ?><?php if ( have_posts() ) : ?>\r
+\r
+ <?php mantra_content_nav( 'nav-above' ); ?>\r
+\r
+ <?php /* Start the Loop */ ?>\r
+ <?php while ( have_posts() ) : the_post(); ?>\r
+\r
+ <?php get_template_part( 'content', get_post_format() ); ?>\r
+ \r
+ <?php endwhile; ?>\r
+\r
+ <?php if($mantra_pagination=="Enable") mantra_pagination(); else mantra_content_nav( 'nav-below' ); ?>\r
+\r
+ <?php else : ?>\r
+\r
+ <article id="post-0" class="post no-results not-found">\r
+ <header class="entry-header">\r
+ <h1 class="entry-title"><?php _e( 'Nothing Found', 'mantra' ); ?></h1>\r
+ </header><!-- .entry-header -->\r
+\r
+ <div class="entry-content">\r
+ <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mantra' ); ?></p>\r
+ <?php get_search_form(); ?>\r
+ </div><!-- .entry-content -->\r
+ </article><!-- #post-0 -->\r
+\r
+ <?php endif; ?><?php cryout_after_content_hook(); ?>\r
+\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #container -->\r
+<?php \r
+endif;\r
+get_footer(); ?>
\ No newline at end of file
--- /dev/null
+<!--
+PIE: CSS3 rendering for IE
+Version 1.0.0
+http://css3pie.com
+Dual-licensed for use under the Apache License Version 2.0 or the General Public License (GPL) Version 2.
+-->
+<PUBLIC:COMPONENT lightWeight="true">
+<!-- saved from url=(0014)about:internet -->
+<PUBLIC:ATTACH EVENT="oncontentready" FOR="element" ONEVENT="init()" />
+<PUBLIC:ATTACH EVENT="ondocumentready" FOR="element" ONEVENT="init()" />
+<PUBLIC:ATTACH EVENT="ondetach" FOR="element" ONEVENT="cleanup()" />
+
+<script type="text/javascript">
+var doc = element.document;var f=window.PIE;
+if(!f){f=window.PIE={F:"-pie-",nb:"Pie",La:"pie_",Ac:{TD:1,TH:1},cc:{TABLE:1,THEAD:1,TBODY:1,TFOOT:1,TR:1,INPUT:1,TEXTAREA:1,SELECT:1,OPTION:1,IMG:1,HR:1},fc:{A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},Gd:{submit:1,button:1,reset:1},aa:function(){}};try{doc.execCommand("BackgroundImageCache",false,true)}catch(aa){}for(var ba=4,Z=doc.createElement("div"),ca=Z.getElementsByTagName("i"),ga;Z.innerHTML="<!--[if gt IE "+ ++ba+"]><i></i><![endif]--\>",ca[0];);f.O=ba;if(ba===6)f.F=f.F.replace(/^-/,"");f.ja=
+doc.documentMode||f.O;Z.innerHTML='<v:shape adj="1"/>';ga=Z.firstChild;ga.style.behavior="url(#default#VML)";f.zc=typeof ga.adj==="object";(function(){var a,b=0,c={};f.p={Za:function(d){if(!a){a=doc.createDocumentFragment();a.namespaces.add("css3vml","urn:schemas-microsoft-com:vml")}return a.createElement("css3vml:"+d)},Ba:function(d){return d&&d._pieId||(d._pieId="_"+ ++b)},Eb:function(d){var e,g,j,i,h=arguments;e=1;for(g=h.length;e<g;e++){i=h[e];for(j in i)if(i.hasOwnProperty(j))d[j]=i[j]}return d},
+Rb:function(d,e,g){var j=c[d],i,h;if(j)Object.prototype.toString.call(j)==="[object Array]"?j.push([e,g]):e.call(g,j);else{h=c[d]=[[e,g]];i=new Image;i.onload=function(){j=c[d]={h:i.width,f:i.height};for(var k=0,n=h.length;k<n;k++)h[k][0].call(h[k][1],j);i.onload=null};i.src=d}}}})();f.Na={gc:function(a,b,c,d){function e(){k=j>=90&&j<270?b:0;n=j<180?c:0;m=b-k;p=c-n}function g(){for(;j<0;)j+=360;j%=360}var j=d.sa;d=d.zb;var i,h,k,n,m,p,r,t;if(d){d=d.coords(a,b,c);i=d.x;h=d.y}if(j){j=j.jd();g();e();
+if(!d){i=k;h=n}d=f.Na.tc(i,h,j,m,p);a=d[0];d=d[1]}else if(d){a=b-i;d=c-h}else{i=h=a=0;d=c}r=a-i;t=d-h;if(j===void 0){j=!r?t<0?90:270:!t?r<0?180:0:-Math.atan2(t,r)/Math.PI*180;g();e()}return{sa:j,xc:i,yc:h,td:a,ud:d,Wd:k,Xd:n,rd:m,sd:p,kd:r,ld:t,rc:f.Na.dc(i,h,a,d)}},tc:function(a,b,c,d,e){if(c===0||c===180)return[d,b];else if(c===90||c===270)return[a,e];else{c=Math.tan(-c*Math.PI/180);a=c*a-b;b=-1/c;d=b*d-e;e=b-c;return[(d-a)/e,(c*d-b*a)/e]}},dc:function(a,b,c,d){a=c-a;b=d-b;return Math.abs(a===0?
+b:b===0?a:Math.sqrt(a*a+b*b))}};f.ea=function(){this.Gb=[];this.oc={}};f.ea.prototype={ba:function(a){var b=f.p.Ba(a),c=this.oc,d=this.Gb;if(!(b in c)){c[b]=d.length;d.push(a)}},Ha:function(a){a=f.p.Ba(a);var b=this.oc;if(a&&a in b){delete this.Gb[b[a]];delete b[a]}},xa:function(){for(var a=this.Gb,b=a.length;b--;)a[b]&&a[b]()}};f.Oa=new f.ea;f.Oa.Rd=function(){var a=this,b;if(!a.Sd){b=doc.documentElement.currentStyle.getAttribute(f.F+"poll-interval")||250;(function c(){a.xa();setTimeout(c,b)})();
+a.Sd=1}};(function(){function a(){f.L.xa();window.detachEvent("onunload",a);window.PIE=null}f.L=new f.ea;window.attachEvent("onunload",a);f.L.ta=function(b,c,d){b.attachEvent(c,d);this.ba(function(){b.detachEvent(c,d)})}})();f.Qa=new f.ea;f.L.ta(window,"onresize",function(){f.Qa.xa()});(function(){function a(){f.mb.xa()}f.mb=new f.ea;f.L.ta(window,"onscroll",a);f.Qa.ba(a)})();(function(){function a(){c=f.kb.md()}function b(){if(c){for(var d=0,e=c.length;d<e;d++)f.attach(c[d]);c=0}}var c;if(f.ja<9){f.L.ta(window,
+"onbeforeprint",a);f.L.ta(window,"onafterprint",b)}})();f.lb=new f.ea;f.L.ta(doc,"onmouseup",function(){f.lb.xa()});f.he=function(){function a(h){this.Y=h}var b=doc.createElement("length-calc"),c=doc.body||doc.documentElement,d=b.style,e={},g=["mm","cm","in","pt","pc"],j=g.length,i={};d.position="absolute";d.top=d.left="-9999px";for(c.appendChild(b);j--;){d.width="100"+g[j];e[g[j]]=b.offsetWidth/100}c.removeChild(b);d.width="1em";a.prototype={Kb:/(px|em|ex|mm|cm|in|pt|pc|%)$/,ic:function(){var h=
+this.Jd;if(h===void 0)h=this.Jd=parseFloat(this.Y);return h},yb:function(){var h=this.ae;if(!h)h=this.ae=(h=this.Y.match(this.Kb))&&h[0]||"px";return h},a:function(h,k){var n=this.ic(),m=this.yb();switch(m){case "px":return n;case "%":return n*(typeof k==="function"?k():k)/100;case "em":return n*this.xb(h);case "ex":return n*this.xb(h)/2;default:return n*e[m]}},xb:function(h){var k=h.currentStyle.fontSize,n,m;if(k.indexOf("px")>0)return parseFloat(k);else if(h.tagName in f.cc){m=this;n=h.parentNode;
+return f.n(k).a(n,function(){return m.xb(n)})}else{h.appendChild(b);k=b.offsetWidth;b.parentNode===h&&h.removeChild(b);return k}}};f.n=function(h){return i[h]||(i[h]=new a(h))};return a}();f.Ja=function(){function a(e){this.X=e}var b=f.n("50%"),c={top:1,center:1,bottom:1},d={left:1,center:1,right:1};a.prototype={zd:function(){if(!this.ac){var e=this.X,g=e.length,j=f.v,i=j.qa,h=f.n("0");i=i.na;h=["left",h,"top",h];if(g===1){e.push(new j.ob(i,"center"));g++}if(g===2){i&(e[0].k|e[1].k)&&e[0].d in c&&
+e[1].d in d&&e.push(e.shift());if(e[0].k&i)if(e[0].d==="center")h[1]=b;else h[0]=e[0].d;else if(e[0].W())h[1]=f.n(e[0].d);if(e[1].k&i)if(e[1].d==="center")h[3]=b;else h[2]=e[1].d;else if(e[1].W())h[3]=f.n(e[1].d)}this.ac=h}return this.ac},coords:function(e,g,j){var i=this.zd(),h=i[1].a(e,g);e=i[3].a(e,j);return{x:i[0]==="right"?g-h:h,y:i[2]==="bottom"?j-e:e}}};return a}();f.Ka=function(){function a(b,c){this.h=b;this.f=c}a.prototype={a:function(b,c,d,e,g){var j=this.h,i=this.f,h=c/d;e=e/g;if(j===
+"contain"){j=e>h?c:d*e;i=e>h?c/e:d}else if(j==="cover"){j=e<h?c:d*e;i=e<h?c/e:d}else if(j==="auto"){i=i==="auto"?g:i.a(b,d);j=i*e}else{j=j.a(b,c);i=i==="auto"?j/e:i.a(b,d)}return{h:j,f:i}}};a.Kc=new a("auto","auto");return a}();f.Ec=function(){function a(b){this.Y=b}a.prototype={Kb:/[a-z]+$/i,yb:function(){return this.ad||(this.ad=this.Y.match(this.Kb)[0].toLowerCase())},jd:function(){var b=this.Vc,c;if(b===undefined){b=this.yb();c=parseFloat(this.Y,10);b=this.Vc=b==="deg"?c:b==="rad"?c/Math.PI*180:
+b==="grad"?c/400*360:b==="turn"?c*360:0}return b}};return a}();f.Jc=function(){function a(c){this.Y=c}var b={};a.Qd=/\s*rgba\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d+|\d*\.\d+)\s*\)\s*/;a.Fb={aliceblue:"F0F8FF",antiquewhite:"FAEBD7",aqua:"0FF",aquamarine:"7FFFD4",azure:"F0FFFF",beige:"F5F5DC",bisque:"FFE4C4",black:"000",blanchedalmond:"FFEBCD",blue:"00F",blueviolet:"8A2BE2",brown:"A52A2A",burlywood:"DEB887",cadetblue:"5F9EA0",chartreuse:"7FFF00",chocolate:"D2691E",coral:"FF7F50",cornflowerblue:"6495ED",
+cornsilk:"FFF8DC",crimson:"DC143C",cyan:"0FF",darkblue:"00008B",darkcyan:"008B8B",darkgoldenrod:"B8860B",darkgray:"A9A9A9",darkgreen:"006400",darkkhaki:"BDB76B",darkmagenta:"8B008B",darkolivegreen:"556B2F",darkorange:"FF8C00",darkorchid:"9932CC",darkred:"8B0000",darksalmon:"E9967A",darkseagreen:"8FBC8F",darkslateblue:"483D8B",darkslategray:"2F4F4F",darkturquoise:"00CED1",darkviolet:"9400D3",deeppink:"FF1493",deepskyblue:"00BFFF",dimgray:"696969",dodgerblue:"1E90FF",firebrick:"B22222",floralwhite:"FFFAF0",
+forestgreen:"228B22",fuchsia:"F0F",gainsboro:"DCDCDC",ghostwhite:"F8F8FF",gold:"FFD700",goldenrod:"DAA520",gray:"808080",green:"008000",greenyellow:"ADFF2F",honeydew:"F0FFF0",hotpink:"FF69B4",indianred:"CD5C5C",indigo:"4B0082",ivory:"FFFFF0",khaki:"F0E68C",lavender:"E6E6FA",lavenderblush:"FFF0F5",lawngreen:"7CFC00",lemonchiffon:"FFFACD",lightblue:"ADD8E6",lightcoral:"F08080",lightcyan:"E0FFFF",lightgoldenrodyellow:"FAFAD2",lightgreen:"90EE90",lightgrey:"D3D3D3",lightpink:"FFB6C1",lightsalmon:"FFA07A",
+lightseagreen:"20B2AA",lightskyblue:"87CEFA",lightslategray:"789",lightsteelblue:"B0C4DE",lightyellow:"FFFFE0",lime:"0F0",limegreen:"32CD32",linen:"FAF0E6",magenta:"F0F",maroon:"800000",mediumauqamarine:"66CDAA",mediumblue:"0000CD",mediumorchid:"BA55D3",mediumpurple:"9370D8",mediumseagreen:"3CB371",mediumslateblue:"7B68EE",mediumspringgreen:"00FA9A",mediumturquoise:"48D1CC",mediumvioletred:"C71585",midnightblue:"191970",mintcream:"F5FFFA",mistyrose:"FFE4E1",moccasin:"FFE4B5",navajowhite:"FFDEAD",
+navy:"000080",oldlace:"FDF5E6",olive:"808000",olivedrab:"688E23",orange:"FFA500",orangered:"FF4500",orchid:"DA70D6",palegoldenrod:"EEE8AA",palegreen:"98FB98",paleturquoise:"AFEEEE",palevioletred:"D87093",papayawhip:"FFEFD5",peachpuff:"FFDAB9",peru:"CD853F",pink:"FFC0CB",plum:"DDA0DD",powderblue:"B0E0E6",purple:"800080",red:"F00",rosybrown:"BC8F8F",royalblue:"4169E1",saddlebrown:"8B4513",salmon:"FA8072",sandybrown:"F4A460",seagreen:"2E8B57",seashell:"FFF5EE",sienna:"A0522D",silver:"C0C0C0",skyblue:"87CEEB",
+slateblue:"6A5ACD",slategray:"708090",snow:"FFFAFA",springgreen:"00FF7F",steelblue:"4682B4",tan:"D2B48C",teal:"008080",thistle:"D8BFD8",tomato:"FF6347",turquoise:"40E0D0",violet:"EE82EE",wheat:"F5DEB3",white:"FFF",whitesmoke:"F5F5F5",yellow:"FF0",yellowgreen:"9ACD32"};a.prototype={parse:function(){if(!this.Ua){var c=this.Y,d;if(d=c.match(a.Qd)){this.Ua="rgb("+d[1]+","+d[2]+","+d[3]+")";this.Yb=parseFloat(d[4])}else{if((d=c.toLowerCase())in a.Fb)c="#"+a.Fb[d];this.Ua=c;this.Yb=c==="transparent"?0:
+1}}},U:function(c){this.parse();return this.Ua==="currentColor"?c.currentStyle.color:this.Ua},fa:function(){this.parse();return this.Yb}};f.ha=function(c){return b[c]||(b[c]=new a(c))};return a}();f.v=function(){function a(c){this.$a=c;this.ch=0;this.X=[];this.Ga=0}var b=a.qa={Ia:1,Wb:2,z:4,Lc:8,Xb:16,na:32,K:64,oa:128,pa:256,Ra:512,Tc:1024,URL:2048};a.ob=function(c,d){this.k=c;this.d=d};a.ob.prototype={Ca:function(){return this.k&b.K||this.k&b.oa&&this.d==="0"},W:function(){return this.Ca()||this.k&
+b.Ra}};a.prototype={de:/\s/,Kd:/^[\+\-]?(\d*\.)?\d+/,url:/^url\(\s*("([^"]*)"|'([^']*)'|([!#$%&*-~]*))\s*\)/i,nc:/^\-?[_a-z][\w-]*/i,Yd:/^("([^"]*)"|'([^']*)')/,Bd:/^#([\da-f]{6}|[\da-f]{3})/i,be:{px:b.K,em:b.K,ex:b.K,mm:b.K,cm:b.K,"in":b.K,pt:b.K,pc:b.K,deg:b.Ia,rad:b.Ia,grad:b.Ia},fd:{rgb:1,rgba:1,hsl:1,hsla:1},next:function(c){function d(p,r){p=new a.ob(p,r);if(!c){k.X.push(p);k.Ga++}return p}function e(){k.Ga++;return null}var g,j,i,h,k=this;if(this.Ga<this.X.length)return this.X[this.Ga++];for(;this.de.test(this.$a.charAt(this.ch));)this.ch++;
+if(this.ch>=this.$a.length)return e();j=this.ch;g=this.$a.substring(this.ch);i=g.charAt(0);switch(i){case "#":if(h=g.match(this.Bd)){this.ch+=h[0].length;return d(b.z,h[0])}break;case '"':case "'":if(h=g.match(this.Yd)){this.ch+=h[0].length;return d(b.Tc,h[2]||h[3]||"")}break;case "/":case ",":this.ch++;return d(b.pa,i);case "u":if(h=g.match(this.url)){this.ch+=h[0].length;return d(b.URL,h[2]||h[3]||h[4]||"")}}if(h=g.match(this.Kd)){i=h[0];this.ch+=i.length;if(g.charAt(i.length)==="%"){this.ch++;
+return d(b.Ra,i+"%")}if(h=g.substring(i.length).match(this.nc)){i+=h[0];this.ch+=h[0].length;return d(this.be[h[0].toLowerCase()]||b.Lc,i)}return d(b.oa,i)}if(h=g.match(this.nc)){i=h[0];this.ch+=i.length;if(i.toLowerCase()in f.Jc.Fb||i==="currentColor"||i==="transparent")return d(b.z,i);if(g.charAt(i.length)==="("){this.ch++;if(i.toLowerCase()in this.fd){g=function(p){return p&&p.k&b.oa};h=function(p){return p&&p.k&(b.oa|b.Ra)};var n=function(p,r){return p&&p.d===r},m=function(){return k.next(1)};
+if((i.charAt(0)==="r"?h(m()):g(m()))&&n(m(),",")&&h(m())&&n(m(),",")&&h(m())&&(i==="rgb"||i==="hsa"||n(m(),",")&&g(m()))&&n(m(),")"))return d(b.z,this.$a.substring(j,this.ch));return e()}return d(b.Xb,i)}return d(b.na,i)}this.ch++;return d(b.Wb,i)},D:function(){return this.X[this.Ga-- -2]},all:function(){for(;this.next(););return this.X},ma:function(c,d){for(var e=[],g,j;g=this.next();){if(c(g)){j=true;this.D();break}e.push(g)}return d&&!j?null:e}};return a}();var ha=function(a){this.e=a};ha.prototype=
+{Z:0,Od:function(){var a=this.qb,b;return!a||(b=this.o())&&(a.x!==b.x||a.y!==b.y)},Td:function(){var a=this.qb,b;return!a||(b=this.o())&&(a.h!==b.h||a.f!==b.f)},hc:function(){var a=this.e,b=a.getBoundingClientRect(),c=f.ja===9,d=f.O===7,e=b.right-b.left;return{x:b.left,y:b.top,h:c||d?a.offsetWidth:e,f:c||d?a.offsetHeight:b.bottom-b.top,Hd:d&&e?a.offsetWidth/e:1}},o:function(){return this.Z?this.Va||(this.Va=this.hc()):this.hc()},Ad:function(){return!!this.qb},cb:function(){++this.Z},hb:function(){if(!--this.Z){if(this.Va)this.qb=
+this.Va;this.Va=null}}};(function(){function a(b){var c=f.p.Ba(b);return function(){if(this.Z){var d=this.$b||(this.$b={});return c in d?d[c]:(d[c]=b.call(this))}else return b.call(this)}}f.B={Z:0,ka:function(b){function c(d){this.e=d;this.Zb=this.ia()}f.p.Eb(c.prototype,f.B,b);c.$c={};return c},j:function(){var b=this.ia(),c=this.constructor.$c;return b?b in c?c[b]:(c[b]=this.la(b)):null},ia:a(function(){var b=this.e,c=this.constructor,d=b.style;b=b.currentStyle;var e=this.wa,g=this.Fa,j=c.Yc||(c.Yc=
+f.F+e);c=c.Zc||(c.Zc=f.nb+g.charAt(0).toUpperCase()+g.substring(1));return d[c]||b.getAttribute(j)||d[g]||b.getAttribute(e)}),i:a(function(){return!!this.j()}),H:a(function(){var b=this.ia(),c=b!==this.Zb;this.Zb=b;return c}),va:a,cb:function(){++this.Z},hb:function(){--this.Z||delete this.$b}}})();f.Sb=f.B.ka({wa:f.F+"background",Fa:f.nb+"Background",cd:{scroll:1,fixed:1,local:1},fb:{"repeat-x":1,"repeat-y":1,repeat:1,"no-repeat":1},sc:{"padding-box":1,"border-box":1,"content-box":1},Pd:{top:1,right:1,
+bottom:1,left:1,center:1},Ud:{contain:1,cover:1},eb:{Ma:"backgroundClip",z:"backgroundColor",da:"backgroundImage",Pa:"backgroundOrigin",S:"backgroundPosition",T:"backgroundRepeat",Sa:"backgroundSize"},la:function(a){function b(s){return s&&s.W()||s.k&k&&s.d in t}function c(s){return s&&(s.W()&&f.n(s.d)||s.d==="auto"&&"auto")}var d=this.e.currentStyle,e,g,j,i=f.v.qa,h=i.pa,k=i.na,n=i.z,m,p,r=0,t=this.Pd,v,l,q={M:[]};if(this.wb()){e=new f.v(a);for(j={};g=e.next();){m=g.k;p=g.d;if(!j.P&&m&i.Xb&&p===
+"linear-gradient"){v={ca:[],P:p};for(l={};g=e.next();){m=g.k;p=g.d;if(m&i.Wb&&p===")"){l.color&&v.ca.push(l);v.ca.length>1&&f.p.Eb(j,v);break}if(m&n){if(v.sa||v.zb){g=e.D();if(g.k!==h)break;e.next()}l={color:f.ha(p)};g=e.next();if(g.W())l.db=f.n(g.d);else e.D()}else if(m&i.Ia&&!v.sa&&!l.color&&!v.ca.length)v.sa=new f.Ec(g.d);else if(b(g)&&!v.zb&&!l.color&&!v.ca.length){e.D();v.zb=new f.Ja(e.ma(function(s){return!b(s)},false))}else if(m&h&&p===","){if(l.color){v.ca.push(l);l={}}}else break}}else if(!j.P&&
+m&i.URL){j.Ab=p;j.P="image"}else if(b(g)&&!j.$){e.D();j.$=new f.Ja(e.ma(function(s){return!b(s)},false))}else if(m&k)if(p in this.fb&&!j.bb)j.bb=p;else if(p in this.sc&&!j.Wa){j.Wa=p;if((g=e.next())&&g.k&k&&g.d in this.sc)j.ub=g.d;else{j.ub=p;e.D()}}else if(p in this.cd&&!j.bc)j.bc=p;else return null;else if(m&n&&!q.color)q.color=f.ha(p);else if(m&h&&p==="/"&&!j.Xa&&j.$){g=e.next();if(g.k&k&&g.d in this.Ud)j.Xa=new f.Ka(g.d);else if(g=c(g)){m=c(e.next());if(!m){m=g;e.D()}j.Xa=new f.Ka(g,m)}else return null}else if(m&
+h&&p===","&&j.P){j.Hb=a.substring(r,e.ch-1);r=e.ch;q.M.push(j);j={}}else return null}if(j.P){j.Hb=a.substring(r);q.M.push(j)}}else this.Bc(f.ja<9?function(){var s=this.eb,o=d[s.S+"X"],u=d[s.S+"Y"],x=d[s.da],y=d[s.z];if(y!=="transparent")q.color=f.ha(y);if(x!=="none")q.M=[{P:"image",Ab:(new f.v(x)).next().d,bb:d[s.T],$:new f.Ja((new f.v(o+" "+u)).all())}]}:function(){var s=this.eb,o=/\s*,\s*/,u=d[s.da].split(o),x=d[s.z],y,z,B,E,D,C;if(x!=="transparent")q.color=f.ha(x);if((E=u.length)&&u[0]!=="none"){x=
+d[s.T].split(o);y=d[s.S].split(o);z=d[s.Pa].split(o);B=d[s.Ma].split(o);s=d[s.Sa].split(o);q.M=[];for(o=0;o<E;o++)if((D=u[o])&&D!=="none"){C=s[o].split(" ");q.M.push({Hb:D+" "+x[o]+" "+y[o]+" / "+s[o]+" "+z[o]+" "+B[o],P:"image",Ab:(new f.v(D)).next().d,bb:x[o],$:new f.Ja((new f.v(y[o])).all()),Wa:z[o],ub:B[o],Xa:new f.Ka(C[0],C[1])})}}});return q.color||q.M[0]?q:null},Bc:function(a){var b=f.ja>8,c=this.eb,d=this.e.runtimeStyle,e=d[c.da],g=d[c.z],j=d[c.T],i,h,k,n;if(e)d[c.da]="";if(g)d[c.z]="";if(j)d[c.T]=
+"";if(b){i=d[c.Ma];h=d[c.Pa];n=d[c.S];k=d[c.Sa];if(i)d[c.Ma]="";if(h)d[c.Pa]="";if(n)d[c.S]="";if(k)d[c.Sa]=""}a=a.call(this);if(e)d[c.da]=e;if(g)d[c.z]=g;if(j)d[c.T]=j;if(b){if(i)d[c.Ma]=i;if(h)d[c.Pa]=h;if(n)d[c.S]=n;if(k)d[c.Sa]=k}return a},ia:f.B.va(function(){return this.wb()||this.Bc(function(){var a=this.e.currentStyle,b=this.eb;return a[b.z]+" "+a[b.da]+" "+a[b.T]+" "+a[b.S+"X"]+" "+a[b.S+"Y"]})}),wb:f.B.va(function(){var a=this.e;return a.style[this.Fa]||a.currentStyle.getAttribute(this.wa)}),
+qc:function(){var a=0;if(f.O<7){a=this.e;a=""+(a.style[f.nb+"PngFix"]||a.currentStyle.getAttribute(f.F+"png-fix"))==="true"}return a},i:f.B.va(function(){return(this.wb()||this.qc())&&!!this.j()})});f.Vb=f.B.ka({wc:["Top","Right","Bottom","Left"],Id:{thin:"1px",medium:"3px",thick:"5px"},la:function(){var a={},b={},c={},d=false,e=true,g=true,j=true;this.Cc(function(){for(var i=this.e.currentStyle,h=0,k,n,m,p,r,t,v;h<4;h++){m=this.wc[h];v=m.charAt(0).toLowerCase();k=b[v]=i["border"+m+"Style"];n=i["border"+
+m+"Color"];m=i["border"+m+"Width"];if(h>0){if(k!==p)g=false;if(n!==r)e=false;if(m!==t)j=false}p=k;r=n;t=m;c[v]=f.ha(n);m=a[v]=f.n(b[v]==="none"?"0":this.Id[m]||m);if(m.a(this.e)>0)d=true}});return d?{J:a,Zd:b,gd:c,ee:j,hd:e,$d:g}:null},ia:f.B.va(function(){var a=this.e,b=a.currentStyle,c;a.tagName in f.Ac&&a.offsetParent.currentStyle.borderCollapse==="collapse"||this.Cc(function(){c=b.borderWidth+"|"+b.borderStyle+"|"+b.borderColor});return c}),Cc:function(a){var b=this.e.runtimeStyle,c=b.borderWidth,
+d=b.borderColor;if(c)b.borderWidth="";if(d)b.borderColor="";a=a.call(this);if(c)b.borderWidth=c;if(d)b.borderColor=d;return a}});(function(){f.jb=f.B.ka({wa:"border-radius",Fa:"borderRadius",la:function(b){var c=null,d,e,g,j,i=false;if(b){e=new f.v(b);var h=function(){for(var k=[],n;(g=e.next())&&g.W();){j=f.n(g.d);n=j.ic();if(n<0)return null;if(n>0)i=true;k.push(j)}return k.length>0&&k.length<5?{tl:k[0],tr:k[1]||k[0],br:k[2]||k[0],bl:k[3]||k[1]||k[0]}:null};if(b=h()){if(g){if(g.k&f.v.qa.pa&&g.d===
+"/")d=h()}else d=b;if(i&&b&&d)c={x:b,y:d}}}return c}});var a=f.n("0");a={tl:a,tr:a,br:a,bl:a};f.jb.Dc={x:a,y:a}})();f.Ub=f.B.ka({wa:"border-image",Fa:"borderImage",fb:{stretch:1,round:1,repeat:1,space:1},la:function(a){var b=null,c,d,e,g,j,i,h=0,k=f.v.qa,n=k.na,m=k.oa,p=k.Ra;if(a){c=new f.v(a);b={};for(var r=function(l){return l&&l.k&k.pa&&l.d==="/"},t=function(l){return l&&l.k&n&&l.d==="fill"},v=function(){g=c.ma(function(l){return!(l.k&(m|p))});if(t(c.next())&&!b.fill)b.fill=true;else c.D();if(r(c.next())){h++;
+j=c.ma(function(l){return!l.W()&&!(l.k&n&&l.d==="auto")});if(r(c.next())){h++;i=c.ma(function(l){return!l.Ca()})}}else c.D()};a=c.next();){d=a.k;e=a.d;if(d&(m|p)&&!g){c.D();v()}else if(t(a)&&!b.fill){b.fill=true;v()}else if(d&n&&this.fb[e]&&!b.repeat){b.repeat={f:e};if(a=c.next())if(a.k&n&&this.fb[a.d])b.repeat.Ob=a.d;else c.D()}else if(d&k.URL&&!b.src)b.src=e;else return null}if(!b.src||!g||g.length<1||g.length>4||j&&j.length>4||h===1&&j.length<1||i&&i.length>4||h===2&&i.length<1)return null;if(!b.repeat)b.repeat=
+{f:"stretch"};if(!b.repeat.Ob)b.repeat.Ob=b.repeat.f;a=function(l,q){return{t:q(l[0]),r:q(l[1]||l[0]),b:q(l[2]||l[0]),l:q(l[3]||l[1]||l[0])}};b.slice=a(g,function(l){return f.n(l.k&m?l.d+"px":l.d)});if(j&&j[0])b.J=a(j,function(l){return l.W()?f.n(l.d):l.d});if(i&&i[0])b.Da=a(i,function(l){return l.Ca()?f.n(l.d):l.d})}return b}});f.Ic=f.B.ka({wa:"box-shadow",Fa:"boxShadow",la:function(a){var b,c=f.n,d=f.v.qa,e;if(a){e=new f.v(a);b={Da:[],Bb:[]};for(a=function(){for(var g,j,i,h,k,n;g=e.next();){i=g.d;
+j=g.k;if(j&d.pa&&i===",")break;else if(g.Ca()&&!k){e.D();k=e.ma(function(m){return!m.Ca()})}else if(j&d.z&&!h)h=i;else if(j&d.na&&i==="inset"&&!n)n=true;else return false}g=k&&k.length;if(g>1&&g<5){(n?b.Bb:b.Da).push({fe:c(k[0].d),ge:c(k[1].d),blur:c(k[2]?k[2].d:"0"),Vd:c(k[3]?k[3].d:"0"),color:f.ha(h||"currentColor")});return true}return false};a(););}return b&&(b.Bb.length||b.Da.length)?b:null}});f.Uc=f.B.ka({ia:f.B.va(function(){var a=this.e.currentStyle;return a.visibility+"|"+a.display}),la:function(){var a=
+this.e,b=a.runtimeStyle;a=a.currentStyle;var c=b.visibility,d;b.visibility="";d=a.visibility;b.visibility=c;return{ce:d!=="hidden",nd:a.display!=="none"}},i:function(){return false}});f.u={R:function(a){function b(c,d,e,g){this.e=c;this.s=d;this.g=e;this.parent=g}f.p.Eb(b.prototype,f.u,a);return b},Cb:false,Q:function(){return false},Ea:f.aa,Lb:function(){this.m();this.i()&&this.V()},ib:function(){this.Cb=true},Mb:function(){this.i()?this.V():this.m()},sb:function(a,b){this.vc(a);for(var c=this.ra||
+(this.ra=[]),d=a+1,e=c.length,g;d<e;d++)if(g=c[d])break;c[a]=b;this.I().insertBefore(b,g||null)},za:function(a){var b=this.ra;return b&&b[a]||null},vc:function(a){var b=this.za(a),c=this.Ta;if(b&&c){c.removeChild(b);this.ra[a]=null}},Aa:function(a,b,c,d){var e=this.rb||(this.rb={}),g=e[a];if(!g){g=e[a]=f.p.Za("shape");if(b)g.appendChild(g[b]=f.p.Za(b));if(d){c=this.za(d);if(!c){this.sb(d,doc.createElement("group"+d));c=this.za(d)}}c.appendChild(g);a=g.style;a.position="absolute";a.left=a.top=0;a.behavior=
+"url(#default#VML)"}return g},vb:function(a){var b=this.rb,c=b&&b[a];if(c){c.parentNode.removeChild(c);delete b[a]}return!!c},kc:function(a){var b=this.e,c=this.s.o(),d=c.h,e=c.f,g,j,i,h,k,n;c=a.x.tl.a(b,d);g=a.y.tl.a(b,e);j=a.x.tr.a(b,d);i=a.y.tr.a(b,e);h=a.x.br.a(b,d);k=a.y.br.a(b,e);n=a.x.bl.a(b,d);a=a.y.bl.a(b,e);d=Math.min(d/(c+j),e/(i+k),d/(n+h),e/(g+a));if(d<1){c*=d;g*=d;j*=d;i*=d;h*=d;k*=d;n*=d;a*=d}return{x:{tl:c,tr:j,br:h,bl:n},y:{tl:g,tr:i,br:k,bl:a}}},ya:function(a,b,c){b=b||1;var d,e,
+g=this.s.o();e=g.h*b;g=g.f*b;var j=this.g.G,i=Math.floor,h=Math.ceil,k=a?a.Jb*b:0,n=a?a.Ib*b:0,m=a?a.tb*b:0;a=a?a.Db*b:0;var p,r,t,v,l;if(c||j.i()){d=this.kc(c||j.j());c=d.x.tl*b;j=d.y.tl*b;p=d.x.tr*b;r=d.y.tr*b;t=d.x.br*b;v=d.y.br*b;l=d.x.bl*b;b=d.y.bl*b;e="m"+i(a)+","+i(j)+"qy"+i(c)+","+i(k)+"l"+h(e-p)+","+i(k)+"qx"+h(e-n)+","+i(r)+"l"+h(e-n)+","+h(g-v)+"qy"+h(e-t)+","+h(g-m)+"l"+i(l)+","+h(g-m)+"qx"+i(a)+","+h(g-b)+" x e"}else e="m"+i(a)+","+i(k)+"l"+h(e-n)+","+i(k)+"l"+h(e-n)+","+h(g-m)+"l"+i(a)+
+","+h(g-m)+"xe";return e},I:function(){var a=this.parent.za(this.N),b;if(!a){a=doc.createElement(this.Ya);b=a.style;b.position="absolute";b.top=b.left=0;this.parent.sb(this.N,a)}return a},mc:function(){var a=this.e,b=a.currentStyle,c=a.runtimeStyle,d=a.tagName,e=f.O===6,g;if(e&&(d in f.cc||d==="FIELDSET")||d==="BUTTON"||d==="INPUT"&&a.type in f.Gd){c.borderWidth="";d=this.g.w.wc;for(g=d.length;g--;){e=d[g];c["padding"+e]="";c["padding"+e]=f.n(b["padding"+e]).a(a)+f.n(b["border"+e+"Width"]).a(a)+(f.O!==
+8&&g%2?1:0)}c.borderWidth=0}else if(e){if(a.childNodes.length!==1||a.firstChild.tagName!=="ie6-mask"){b=doc.createElement("ie6-mask");d=b.style;d.visibility="visible";for(d.zoom=1;d=a.firstChild;)b.appendChild(d);a.appendChild(b);c.visibility="hidden"}}else c.borderColor="transparent"},ie:function(){},m:function(){this.parent.vc(this.N);delete this.rb;delete this.ra}};f.Rc=f.u.R({i:function(){var a=this.ed;for(var b in a)if(a.hasOwnProperty(b)&&a[b].i())return true;return false},Q:function(){return this.g.Pb.H()},
+ib:function(){if(this.i()){var a=this.jc(),b=a,c;a=a.currentStyle;var d=a.position,e=this.I().style,g=0,j=0;j=this.s.o();var i=j.Hd;if(d==="fixed"&&f.O>6){g=j.x*i;j=j.y*i;b=d}else{do b=b.offsetParent;while(b&&b.currentStyle.position==="static");if(b){c=b.getBoundingClientRect();b=b.currentStyle;g=(j.x-c.left)*i-(parseFloat(b.borderLeftWidth)||0);j=(j.y-c.top)*i-(parseFloat(b.borderTopWidth)||0)}else{b=doc.documentElement;g=(j.x+b.scrollLeft-b.clientLeft)*i;j=(j.y+b.scrollTop-b.clientTop)*i}b="absolute"}e.position=
+b;e.left=g;e.top=j;e.zIndex=d==="static"?-1:a.zIndex;this.Cb=true}},Mb:f.aa,Nb:function(){var a=this.g.Pb.j();this.I().style.display=a.ce&&a.nd?"":"none"},Lb:function(){this.i()?this.Nb():this.m()},jc:function(){var a=this.e;return a.tagName in f.Ac?a.offsetParent:a},I:function(){var a=this.Ta,b;if(!a){b=this.jc();a=this.Ta=doc.createElement("css3-container");a.style.direction="ltr";this.Nb();b.parentNode.insertBefore(a,b)}return a},ab:f.aa,m:function(){var a=this.Ta,b;if(a&&(b=a.parentNode))b.removeChild(a);
+delete this.Ta;delete this.ra}});f.Fc=f.u.R({N:2,Ya:"background",Q:function(){var a=this.g;return a.C.H()||a.G.H()},i:function(){var a=this.g;return a.q.i()||a.G.i()||a.C.i()||a.ga.i()&&a.ga.j().Bb},V:function(){var a=this.s.o();if(a.h&&a.f){this.od();this.pd()}},od:function(){var a=this.g.C.j(),b=this.s.o(),c=this.e,d=a&&a.color,e,g;if(d&&d.fa()>0){this.lc();a=this.Aa("bgColor","fill",this.I(),1);e=b.h;b=b.f;a.stroked=false;a.coordsize=e*2+","+b*2;a.coordorigin="1,1";a.path=this.ya(null,2);g=a.style;
+g.width=e;g.height=b;a.fill.color=d.U(c);c=d.fa();if(c<1)a.fill.opacity=c}else this.vb("bgColor")},pd:function(){var a=this.g.C.j(),b=this.s.o();a=a&&a.M;var c,d,e,g,j;if(a){this.lc();d=b.h;e=b.f;for(j=a.length;j--;){b=a[j];c=this.Aa("bgImage"+j,"fill",this.I(),2);c.stroked=false;c.fill.type="tile";c.fillcolor="none";c.coordsize=d*2+","+e*2;c.coordorigin="1,1";c.path=this.ya(0,2);g=c.style;g.width=d;g.height=e;if(b.P==="linear-gradient")this.bd(c,b);else{c.fill.src=b.Ab;this.Nd(c,j)}}}for(j=a?a.length:
+0;this.vb("bgImage"+j++););},Nd:function(a,b){var c=this;f.p.Rb(a.fill.src,function(d){var e=c.e,g=c.s.o(),j=g.h;g=g.f;if(j&&g){var i=a.fill,h=c.g,k=h.w.j(),n=k&&k.J;k=n?n.t.a(e):0;var m=n?n.r.a(e):0,p=n?n.b.a(e):0;n=n?n.l.a(e):0;h=h.C.j().M[b];e=h.$?h.$.coords(e,j-d.h-n-m,g-d.f-k-p):{x:0,y:0};h=h.bb;p=m=0;var r=j+1,t=g+1,v=f.O===8?0:1;n=Math.round(e.x)+n+0.5;k=Math.round(e.y)+k+0.5;i.position=n/j+","+k/g;i.size.x=1;i.size=d.h+"px,"+d.f+"px";if(h&&h!=="repeat"){if(h==="repeat-x"||h==="no-repeat"){m=
+k+1;t=k+d.f+v}if(h==="repeat-y"||h==="no-repeat"){p=n+1;r=n+d.h+v}a.style.clip="rect("+m+"px,"+r+"px,"+t+"px,"+p+"px)"}}})},bd:function(a,b){var c=this.e,d=this.s.o(),e=d.h,g=d.f;a=a.fill;d=b.ca;var j=d.length,i=Math.PI,h=f.Na,k=h.tc,n=h.dc;b=h.gc(c,e,g,b);h=b.sa;var m=b.xc,p=b.yc,r=b.Wd,t=b.Xd,v=b.rd,l=b.sd,q=b.kd,s=b.ld;b=b.rc;e=h%90?Math.atan2(q*e/g,s)/i*180:h+90;e+=180;e%=360;v=k(r,t,h,v,l);g=n(r,t,v[0],v[1]);i=[];v=k(m,p,h,r,t);n=n(m,p,v[0],v[1])/g*100;k=[];for(h=0;h<j;h++)k.push(d[h].db?d[h].db.a(c,
+b):h===0?0:h===j-1?b:null);for(h=1;h<j;h++){if(k[h]===null){m=k[h-1];b=h;do p=k[++b];while(p===null);k[h]=m+(p-m)/(b-h+1)}k[h]=Math.max(k[h],k[h-1])}for(h=0;h<j;h++)i.push(n+k[h]/g*100+"% "+d[h].color.U(c));a.angle=e;a.type="gradient";a.method="sigma";a.color=d[0].color.U(c);a.color2=d[j-1].color.U(c);if(a.colors)a.colors.value=i.join(",");else a.colors=i.join(",")},lc:function(){var a=this.e.runtimeStyle;a.backgroundImage="url(about:blank)";a.backgroundColor="transparent"},m:function(){f.u.m.call(this);
+var a=this.e.runtimeStyle;a.backgroundImage=a.backgroundColor=""}});f.Gc=f.u.R({N:4,Ya:"border",Q:function(){var a=this.g;return a.w.H()||a.G.H()},i:function(){var a=this.g;return a.G.i()&&!a.q.i()&&a.w.i()},V:function(){var a=this.e,b=this.g.w.j(),c=this.s.o(),d=c.h;c=c.f;var e,g,j,i,h;if(b){this.mc();b=this.wd(2);i=0;for(h=b.length;i<h;i++){j=b[i];e=this.Aa("borderPiece"+i,j.stroke?"stroke":"fill",this.I());e.coordsize=d*2+","+c*2;e.coordorigin="1,1";e.path=j.path;g=e.style;g.width=d;g.height=c;
+e.filled=!!j.fill;e.stroked=!!j.stroke;if(j.stroke){e=e.stroke;e.weight=j.Qb+"px";e.color=j.color.U(a);e.dashstyle=j.stroke==="dashed"?"2 2":j.stroke==="dotted"?"1 1":"solid";e.linestyle=j.stroke==="double"&&j.Qb>2?"ThinThin":"Single"}else e.fill.color=j.fill.U(a)}for(;this.vb("borderPiece"+i++););}},wd:function(a){var b=this.e,c,d,e,g=this.g.w,j=[],i,h,k,n,m=Math.round,p,r,t;if(g.i()){c=g.j();g=c.J;r=c.Zd;t=c.gd;if(c.ee&&c.$d&&c.hd){if(t.t.fa()>0){c=g.t.a(b);k=c/2;j.push({path:this.ya({Jb:k,Ib:k,
+tb:k,Db:k},a),stroke:r.t,color:t.t,Qb:c})}}else{a=a||1;c=this.s.o();d=c.h;e=c.f;c=m(g.t.a(b));k=m(g.r.a(b));n=m(g.b.a(b));b=m(g.l.a(b));var v={t:c,r:k,b:n,l:b};b=this.g.G;if(b.i())p=this.kc(b.j());i=Math.floor;h=Math.ceil;var l=function(o,u){return p?p[o][u]:0},q=function(o,u,x,y,z,B){var E=l("x",o),D=l("y",o),C=o.charAt(1)==="r";o=o.charAt(0)==="b";return E>0&&D>0?(B?"al":"ae")+(C?h(d-E):i(E))*a+","+(o?h(e-D):i(D))*a+","+(i(E)-u)*a+","+(i(D)-x)*a+","+y*65535+","+2949075*(z?1:-1):(B?"m":"l")+(C?d-
+u:u)*a+","+(o?e-x:x)*a},s=function(o,u,x,y){var z=o==="t"?i(l("x","tl"))*a+","+h(u)*a:o==="r"?h(d-u)*a+","+i(l("y","tr"))*a:o==="b"?h(d-l("x","br"))*a+","+i(e-u)*a:i(u)*a+","+h(e-l("y","bl"))*a;o=o==="t"?h(d-l("x","tr"))*a+","+h(u)*a:o==="r"?h(d-u)*a+","+h(e-l("y","br"))*a:o==="b"?i(l("x","bl"))*a+","+i(e-u)*a:i(u)*a+","+i(l("y","tl"))*a;return x?(y?"m"+o:"")+"l"+z:(y?"m"+z:"")+"l"+o};b=function(o,u,x,y,z,B){var E=o==="l"||o==="r",D=v[o],C,F;if(D>0&&r[o]!=="none"&&t[o].fa()>0){C=v[E?o:u];u=v[E?u:
+o];F=v[E?o:x];x=v[E?x:o];if(r[o]==="dashed"||r[o]==="dotted"){j.push({path:q(y,C,u,B+45,0,1)+q(y,0,0,B,1,0),fill:t[o]});j.push({path:s(o,D/2,0,1),stroke:r[o],Qb:D,color:t[o]});j.push({path:q(z,F,x,B,0,1)+q(z,0,0,B-45,1,0),fill:t[o]})}else j.push({path:q(y,C,u,B+45,0,1)+s(o,D,0,0)+q(z,F,x,B,0,0)+(r[o]==="double"&&D>2?q(z,F-i(F/3),x-i(x/3),B-45,1,0)+s(o,h(D/3*2),1,0)+q(y,C-i(C/3),u-i(u/3),B,1,0)+"x "+q(y,i(C/3),i(u/3),B+45,0,1)+s(o,i(D/3),1,0)+q(z,i(F/3),i(x/3),B,0,0):"")+q(z,0,0,B-45,1,0)+s(o,0,1,
+0)+q(y,0,0,B,1,0),fill:t[o]})}};b("t","l","r","tl","tr",90);b("r","t","b","tr","br",0);b("b","r","l","br","bl",-90);b("l","b","t","bl","tl",-180)}}return j},m:function(){if(this.ec||!this.g.q.i())this.e.runtimeStyle.borderColor="";f.u.m.call(this)}});f.Tb=f.u.R({N:5,Md:["t","tr","r","br","b","bl","l","tl","c"],Q:function(){return this.g.q.H()},i:function(){return this.g.q.i()},V:function(){this.I();var a=this.g.q.j(),b=this.g.w.j(),c=this.s.o(),d=this.e,e=this.uc;f.p.Rb(a.src,function(g){function j(s,
+o,u,x,y){s=e[s].style;var z=Math.max;s.width=z(o,0);s.height=z(u,0);s.left=x;s.top=y}function i(s,o,u){for(var x=0,y=s.length;x<y;x++)e[s[x]].imagedata[o]=u}var h=c.h,k=c.f,n=f.n("0"),m=a.J||(b?b.J:{t:n,r:n,b:n,l:n});n=m.t.a(d);var p=m.r.a(d),r=m.b.a(d);m=m.l.a(d);var t=a.slice,v=t.t.a(d),l=t.r.a(d),q=t.b.a(d);t=t.l.a(d);j("tl",m,n,0,0);j("t",h-m-p,n,m,0);j("tr",p,n,h-p,0);j("r",p,k-n-r,h-p,n);j("br",p,r,h-p,k-r);j("b",h-m-p,r,m,k-r);j("bl",m,r,0,k-r);j("l",m,k-n-r,0,n);j("c",h-m-p,k-n-r,m,n);i(["tl",
+"t","tr"],"cropBottom",(g.f-v)/g.f);i(["tl","l","bl"],"cropRight",(g.h-t)/g.h);i(["bl","b","br"],"cropTop",(g.f-q)/g.f);i(["tr","r","br"],"cropLeft",(g.h-l)/g.h);i(["l","r","c"],"cropTop",v/g.f);i(["l","r","c"],"cropBottom",q/g.f);i(["t","b","c"],"cropLeft",t/g.h);i(["t","b","c"],"cropRight",l/g.h);e.c.style.display=a.fill?"":"none"},this)},I:function(){var a=this.parent.za(this.N),b,c,d,e=this.Md,g=e.length;if(!a){a=doc.createElement("border-image");b=a.style;b.position="absolute";this.uc={};for(d=
+0;d<g;d++){c=this.uc[e[d]]=f.p.Za("rect");c.appendChild(f.p.Za("imagedata"));b=c.style;b.behavior="url(#default#VML)";b.position="absolute";b.top=b.left=0;c.imagedata.src=this.g.q.j().src;c.stroked=false;c.filled=false;a.appendChild(c)}this.parent.sb(this.N,a)}return a},Ea:function(){if(this.i()){var a=this.e,b=a.runtimeStyle,c=this.g.q.j().J;b.borderStyle="solid";if(c){b.borderTopWidth=c.t.a(a)+"px";b.borderRightWidth=c.r.a(a)+"px";b.borderBottomWidth=c.b.a(a)+"px";b.borderLeftWidth=c.l.a(a)+"px"}this.mc()}},
+m:function(){var a=this.e.runtimeStyle;a.borderStyle="";if(this.ec||!this.g.w.i())a.borderColor=a.borderWidth="";f.u.m.call(this)}});f.Hc=f.u.R({N:1,Ya:"outset-box-shadow",Q:function(){var a=this.g;return a.ga.H()||a.G.H()},i:function(){var a=this.g.ga;return a.i()&&a.j().Da[0]},V:function(){function a(C,F,O,H,M,P,I){C=b.Aa("shadow"+C+F,"fill",d,j-C);F=C.fill;C.coordsize=n*2+","+m*2;C.coordorigin="1,1";C.stroked=false;C.filled=true;F.color=M.U(c);if(P){F.type="gradienttitle";F.color2=F.color;F.opacity=
+0}C.path=I;l=C.style;l.left=O;l.top=H;l.width=n;l.height=m;return C}var b=this,c=this.e,d=this.I(),e=this.g,g=e.ga.j().Da;e=e.G.j();var j=g.length,i=j,h,k=this.s.o(),n=k.h,m=k.f;k=f.O===8?1:0;for(var p=["tl","tr","br","bl"],r,t,v,l,q,s,o,u,x,y,z,B,E,D;i--;){t=g[i];q=t.fe.a(c);s=t.ge.a(c);h=t.Vd.a(c);o=t.blur.a(c);t=t.color;u=-h-o;if(!e&&o)e=f.jb.Dc;u=this.ya({Jb:u,Ib:u,tb:u,Db:u},2,e);if(o){x=(h+o)*2+n;y=(h+o)*2+m;z=x?o*2/x:0;B=y?o*2/y:0;if(o-h>n/2||o-h>m/2)for(h=4;h--;){r=p[h];E=r.charAt(0)==="b";
+D=r.charAt(1)==="r";r=a(i,r,q,s,t,o,u);v=r.fill;v.focusposition=(D?1-z:z)+","+(E?1-B:B);v.focussize="0,0";r.style.clip="rect("+((E?y/2:0)+k)+"px,"+(D?x:x/2)+"px,"+(E?y:y/2)+"px,"+((D?x/2:0)+k)+"px)"}else{r=a(i,"",q,s,t,o,u);v=r.fill;v.focusposition=z+","+B;v.focussize=1-z*2+","+(1-B*2)}}else{r=a(i,"",q,s,t,o,u);q=t.fa();if(q<1)r.fill.opacity=q}}}});f.Pc=f.u.R({N:6,Ya:"imgEl",Q:function(){var a=this.g;return this.e.src!==this.Xc||a.G.H()},i:function(){var a=this.g;return a.G.i()||a.C.qc()},V:function(){this.Xc=
+j;this.Cd();var a=this.Aa("img","fill",this.I()),b=a.fill,c=this.s.o(),d=c.h;c=c.f;var e=this.g.w.j(),g=e&&e.J;e=this.e;var j=e.src,i=Math.round,h=e.currentStyle,k=f.n;if(!g||f.O<7){g=f.n("0");g={t:g,r:g,b:g,l:g}}a.stroked=false;b.type="frame";b.src=j;b.position=(d?0.5/d:0)+","+(c?0.5/c:0);a.coordsize=d*2+","+c*2;a.coordorigin="1,1";a.path=this.ya({Jb:i(g.t.a(e)+k(h.paddingTop).a(e)),Ib:i(g.r.a(e)+k(h.paddingRight).a(e)),tb:i(g.b.a(e)+k(h.paddingBottom).a(e)),Db:i(g.l.a(e)+k(h.paddingLeft).a(e))},
+2);a=a.style;a.width=d;a.height=c},Cd:function(){this.e.runtimeStyle.filter="alpha(opacity=0)"},m:function(){f.u.m.call(this);this.e.runtimeStyle.filter=""}});f.Oc=f.u.R({ib:f.aa,Mb:f.aa,Nb:f.aa,Lb:f.aa,Ld:/^,+|,+$/g,Fd:/,+/g,gb:function(a,b){(this.pb||(this.pb=[]))[a]=b||void 0},ab:function(){var a=this.pb,b;if(a&&(b=a.join(",").replace(this.Ld,"").replace(this.Fd,","))!==this.Wc)this.Wc=this.e.runtimeStyle.background=b},m:function(){this.e.runtimeStyle.background="";delete this.pb}});f.Mc=f.u.R({ua:1,
+Q:function(){return this.g.C.H()},i:function(){var a=this.g;return a.C.i()||a.q.i()},V:function(){var a=this.g.C.j(),b,c,d=0,e,g;if(a){b=[];if(c=a.M)for(;e=c[d++];)if(e.P==="linear-gradient"){g=this.vd(e.Wa);g=(e.Xa||f.Ka.Kc).a(this.e,g.h,g.f,g.h,g.f);b.push("url(data:image/svg+xml,"+escape(this.xd(e,g.h,g.f))+") "+this.dd(e.$)+" / "+g.h+"px "+g.f+"px "+(e.bc||"")+" "+(e.Wa||"")+" "+(e.ub||""))}else b.push(e.Hb);a.color&&b.push(a.color.Y);this.parent.gb(this.ua,b.join(","))}},dd:function(a){return a?
+a.X.map(function(b){return b.d}).join(" "):"0 0"},vd:function(a){var b=this.e,c=this.s.o(),d=c.h;c=c.f;var e;if(a!=="border-box")if((e=this.g.w.j())&&(e=e.J)){d-=e.l.a(b)+e.l.a(b);c-=e.t.a(b)+e.b.a(b)}if(a==="content-box"){a=f.n;e=b.currentStyle;d-=a(e.paddingLeft).a(b)+a(e.paddingRight).a(b);c-=a(e.paddingTop).a(b)+a(e.paddingBottom).a(b)}return{h:d,f:c}},xd:function(a,b,c){var d=this.e,e=a.ca,g=e.length,j=f.Na.gc(d,b,c,a);a=j.xc;var i=j.yc,h=j.td,k=j.ud;j=j.rc;var n,m,p,r,t;n=[];for(m=0;m<g;m++)n.push(e[m].db?
+e[m].db.a(d,j):m===0?0:m===g-1?j:null);for(m=1;m<g;m++)if(n[m]===null){r=n[m-1];p=m;do t=n[++p];while(t===null);n[m]=r+(t-r)/(p-m+1)}b=['<svg width="'+b+'" height="'+c+'" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="'+a/b*100+'%" y1="'+i/c*100+'%" x2="'+h/b*100+'%" y2="'+k/c*100+'%">'];for(m=0;m<g;m++)b.push('<stop offset="'+n[m]/j+'" stop-color="'+e[m].color.U(d)+'" stop-opacity="'+e[m].color.fa()+'"/>');b.push('</linearGradient></defs><rect width="100%" height="100%" fill="url(#g)"/></svg>');
+return b.join("")},m:function(){this.parent.gb(this.ua)}});f.Nc=f.u.R({T:"repeat",Sc:"stretch",Qc:"round",ua:0,Q:function(){return this.g.q.H()},i:function(){return this.g.q.i()},V:function(){var a=this,b=a.g.q.j(),c=a.g.w.j(),d=a.s.o(),e=b.repeat,g=e.f,j=e.Ob,i=a.e,h=0;f.p.Rb(b.src,function(k){function n(Q,R,U,V,W,Y,X,S,w,A){K.push('<pattern patternUnits="userSpaceOnUse" id="pattern'+G+'" x="'+(g===l?Q+U/2-w/2:Q)+'" y="'+(j===l?R+V/2-A/2:R)+'" width="'+w+'" height="'+A+'"><svg width="'+w+'" height="'+
+A+'" viewBox="'+W+" "+Y+" "+X+" "+S+'" preserveAspectRatio="none"><image xlink:href="'+v+'" x="0" y="0" width="'+r+'" height="'+t+'" /></svg></pattern>');J.push('<rect x="'+Q+'" y="'+R+'" width="'+U+'" height="'+V+'" fill="url(#pattern'+G+')" />');G++}var m=d.h,p=d.f,r=k.h,t=k.f,v=a.Dd(b.src,r,t),l=a.T,q=a.Sc;k=a.Qc;var s=Math.ceil,o=f.n("0"),u=b.J||(c?c.J:{t:o,r:o,b:o,l:o});o=u.t.a(i);var x=u.r.a(i),y=u.b.a(i);u=u.l.a(i);var z=b.slice,B=z.t.a(i),E=z.r.a(i),D=z.b.a(i);z=z.l.a(i);var C=m-u-x,F=p-o-
+y,O=r-z-E,H=t-B-D,M=g===q?C:O*o/B,P=j===q?F:H*x/E,I=g===q?C:O*y/D;q=j===q?F:H*u/z;var K=[],J=[],G=0;if(g===k){M-=(M-(C%M||M))/s(C/M);I-=(I-(C%I||I))/s(C/I)}if(j===k){P-=(P-(F%P||P))/s(F/P);q-=(q-(F%q||q))/s(F/q)}k=['<svg width="'+m+'" height="'+p+'" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">'];n(0,0,u,o,0,0,z,B,u,o);n(u,0,C,o,z,0,O,B,M,o);n(m-x,0,x,o,r-E,0,E,B,x,o);n(0,o,u,F,0,B,z,H,u,q);if(b.fill)n(u,o,C,F,z,B,O,H,M||I||O,q||P||H);n(m-x,o,x,F,r-E,B,E,H,x,P);n(0,
+p-y,u,y,0,t-D,z,D,u,y);n(u,p-y,C,y,z,t-D,O,D,I,y);n(m-x,p-y,x,y,r-E,t-D,E,D,x,y);k.push("<defs>"+K.join("\n")+"</defs>"+J.join("\n")+"</svg>");a.parent.gb(a.ua,"url(data:image/svg+xml,"+escape(k.join(""))+") no-repeat border-box border-box");h&&a.parent.ab()},a);h=1},Dd:function(){var a={};return function(b,c,d){var e=a[b],g;if(!e){e=new Image;g=doc.createElement("canvas");e.src=b;g.width=c;g.height=d;g.getContext("2d").drawImage(e,0,0);e=a[b]=g.toDataURL()}return e}}(),Ea:f.Tb.prototype.Ea,m:function(){var a=
+this.e.runtimeStyle;this.parent.gb(this.ua);a.borderColor=a.borderStyle=a.borderWidth=""}});f.kb=function(){function a(l,q){l.className+=" "+q}function b(l){var q=v.slice.call(arguments,1),s=q.length;setTimeout(function(){if(l)for(;s--;)a(l,q[s])},0)}function c(l){var q=v.slice.call(arguments,1),s=q.length;setTimeout(function(){if(l)for(;s--;){var o=q[s];o=t[o]||(t[o]=new RegExp("\\b"+o+"\\b","g"));l.className=l.className.replace(o,"")}},0)}function d(l){function q(){if(!U){var w,A,L=f.ja,T=l.currentStyle,
+N=T.getAttribute(g)==="true",da=T.getAttribute(i)!=="false",ea=T.getAttribute(h)!=="false";S=T.getAttribute(j);S=L>7?S!=="false":S==="true";if(!R){R=1;l.runtimeStyle.zoom=1;T=l;for(var fa=1;T=T.previousSibling;)if(T.nodeType===1){fa=0;break}fa&&a(l,p)}J.cb();if(N&&(A=J.o())&&(w=doc.documentElement||doc.body)&&(A.y>w.clientHeight||A.x>w.clientWidth||A.y+A.f<0||A.x+A.h<0)){if(!Y){Y=1;f.mb.ba(q)}}else{U=1;Y=R=0;f.mb.Ha(q);if(L===9){G={C:new f.Sb(l),q:new f.Ub(l),w:new f.Vb(l)};Q=[G.C,G.q];K=new f.Oc(l,
+J,G);w=[new f.Mc(l,J,G,K),new f.Nc(l,J,G,K)]}else{G={C:new f.Sb(l),w:new f.Vb(l),q:new f.Ub(l),G:new f.jb(l),ga:new f.Ic(l),Pb:new f.Uc(l)};Q=[G.C,G.w,G.q,G.G,G.ga,G.Pb];K=new f.Rc(l,J,G);w=[new f.Hc(l,J,G,K),new f.Fc(l,J,G,K),new f.Gc(l,J,G,K),new f.Tb(l,J,G,K)];l.tagName==="IMG"&&w.push(new f.Pc(l,J,G,K));K.ed=w}I=[K].concat(w);if(w=l.currentStyle.getAttribute(f.F+"watch-ancestors")){w=parseInt(w,10);A=0;for(N=l.parentNode;N&&(w==="NaN"||A++<w);){H(N,"onpropertychange",C);H(N,"onmouseenter",x);
+H(N,"onmouseleave",y);H(N,"onmousedown",z);if(N.tagName in f.fc){H(N,"onfocus",E);H(N,"onblur",D)}N=N.parentNode}}if(S){f.Oa.ba(o);f.Oa.Rd()}o(1)}if(!V){V=1;L<9&&H(l,"onmove",s);H(l,"onresize",s);H(l,"onpropertychange",u);ea&&H(l,"onmouseenter",x);if(ea||da)H(l,"onmouseleave",y);da&&H(l,"onmousedown",z);if(l.tagName in f.fc){H(l,"onfocus",E);H(l,"onblur",D)}f.Qa.ba(s);f.L.ba(M)}J.hb()}}function s(){J&&J.Ad()&&o()}function o(w){if(!X)if(U){var A,L=I.length;F();for(A=0;A<L;A++)I[A].Ea();if(w||J.Od())for(A=
+0;A<L;A++)I[A].ib();if(w||J.Td())for(A=0;A<L;A++)I[A].Mb();K.ab();O()}else R||q()}function u(){var w,A=I.length,L;w=event;if(!X&&!(w&&w.propertyName in r))if(U){F();for(w=0;w<A;w++)I[w].Ea();for(w=0;w<A;w++){L=I[w];L.Cb||L.ib();L.Q()&&L.Lb()}K.ab();O()}else R||q()}function x(){b(l,k)}function y(){c(l,k,n)}function z(){b(l,n);f.lb.ba(B)}function B(){c(l,n);f.lb.Ha(B)}function E(){b(l,m)}function D(){c(l,m)}function C(){var w=event.propertyName;if(w==="className"||w==="id")u()}function F(){J.cb();for(var w=
+Q.length;w--;)Q[w].cb()}function O(){for(var w=Q.length;w--;)Q[w].hb();J.hb()}function H(w,A,L){w.attachEvent(A,L);W.push([w,A,L])}function M(){if(V){for(var w=W.length,A;w--;){A=W[w];A[0].detachEvent(A[1],A[2])}f.L.Ha(M);V=0;W=[]}}function P(){if(!X){var w,A;M();X=1;if(I){w=0;for(A=I.length;w<A;w++){I[w].ec=1;I[w].m()}}S&&f.Oa.Ha(o);f.Qa.Ha(o);I=J=G=Q=l=null}}var I,K,J=new ha(l),G,Q,R,U,V,W=[],Y,X,S;this.Ed=q;this.update=o;this.m=P;this.qd=l}var e={},g=f.F+"lazy-init",j=f.F+"poll",i=f.F+"track-active",
+h=f.F+"track-hover",k=f.La+"hover",n=f.La+"active",m=f.La+"focus",p=f.La+"first-child",r={background:1,bgColor:1,display:1},t={},v=[];d.yd=function(l){var q=f.p.Ba(l);return e[q]||(e[q]=new d(l))};d.m=function(l){l=f.p.Ba(l);var q=e[l];if(q){q.m();delete e[l]}};d.md=function(){var l=[],q;if(e){for(var s in e)if(e.hasOwnProperty(s)){q=e[s];l.push(q.qd);q.m()}e={}}return l};return d}();f.supportsVML=f.zc;f.attach=function(a){f.ja<10&&f.zc&&f.kb.yd(a).Ed()};f.detach=function(a){f.kb.m(a)}};
+var $=element;function init(){if(doc.media!=="print"){var a=window.PIE;a&&a.attach($)}}function cleanup(){if(doc.media!=="print"){var a=window.PIE;if(a){a.detach($);$=0}}}$.readyState==="complete"&&init();
+</script>
+</PUBLIC:COMPONENT>
--- /dev/null
+/*\r
+PIE: CSS3 rendering for IE\r
+Version 1.0.0\r
+http://css3pie.com\r
+Dual-licensed for use under the Apache License Version 2.0 or the General Public License (GPL) Version 2.\r
+*/\r
+(function(){\r
+var doc = document;var f=window.PIE;\r
+if(!f){f=window.PIE={F:"-pie-",nb:"Pie",La:"pie_",Ac:{TD:1,TH:1},cc:{TABLE:1,THEAD:1,TBODY:1,TFOOT:1,TR:1,INPUT:1,TEXTAREA:1,SELECT:1,OPTION:1,IMG:1,HR:1},fc:{A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},Gd:{submit:1,button:1,reset:1},aa:function(){}};try{doc.execCommand("BackgroundImageCache",false,true)}catch(aa){}for(var ba=4,Z=doc.createElement("div"),ca=Z.getElementsByTagName("i"),ga;Z.innerHTML="<!--[if gt IE "+ ++ba+"]><i></i><![endif]--\>",ca[0];);f.O=ba;if(ba===6)f.F=f.F.replace(/^-/,"");f.ja=\r
+doc.documentMode||f.O;Z.innerHTML='<v:shape adj="1"/>';ga=Z.firstChild;ga.style.behavior="url(#default#VML)";f.zc=typeof ga.adj==="object";(function(){var a,b=0,c={};f.p={Za:function(d){if(!a){a=doc.createDocumentFragment();a.namespaces.add("css3vml","urn:schemas-microsoft-com:vml")}return a.createElement("css3vml:"+d)},Ba:function(d){return d&&d._pieId||(d._pieId="_"+ ++b)},Eb:function(d){var e,g,j,i,h=arguments;e=1;for(g=h.length;e<g;e++){i=h[e];for(j in i)if(i.hasOwnProperty(j))d[j]=i[j]}return d},\r
+Rb:function(d,e,g){var j=c[d],i,h;if(j)Object.prototype.toString.call(j)==="[object Array]"?j.push([e,g]):e.call(g,j);else{h=c[d]=[[e,g]];i=new Image;i.onload=function(){j=c[d]={h:i.width,f:i.height};for(var k=0,n=h.length;k<n;k++)h[k][0].call(h[k][1],j);i.onload=null};i.src=d}}}})();f.Na={gc:function(a,b,c,d){function e(){k=j>=90&&j<270?b:0;n=j<180?c:0;m=b-k;p=c-n}function g(){for(;j<0;)j+=360;j%=360}var j=d.sa;d=d.zb;var i,h,k,n,m,p,r,t;if(d){d=d.coords(a,b,c);i=d.x;h=d.y}if(j){j=j.jd();g();e();\r
+if(!d){i=k;h=n}d=f.Na.tc(i,h,j,m,p);a=d[0];d=d[1]}else if(d){a=b-i;d=c-h}else{i=h=a=0;d=c}r=a-i;t=d-h;if(j===void 0){j=!r?t<0?90:270:!t?r<0?180:0:-Math.atan2(t,r)/Math.PI*180;g();e()}return{sa:j,xc:i,yc:h,td:a,ud:d,Wd:k,Xd:n,rd:m,sd:p,kd:r,ld:t,rc:f.Na.dc(i,h,a,d)}},tc:function(a,b,c,d,e){if(c===0||c===180)return[d,b];else if(c===90||c===270)return[a,e];else{c=Math.tan(-c*Math.PI/180);a=c*a-b;b=-1/c;d=b*d-e;e=b-c;return[(d-a)/e,(c*d-b*a)/e]}},dc:function(a,b,c,d){a=c-a;b=d-b;return Math.abs(a===0?\r
+b:b===0?a:Math.sqrt(a*a+b*b))}};f.ea=function(){this.Gb=[];this.oc={}};f.ea.prototype={ba:function(a){var b=f.p.Ba(a),c=this.oc,d=this.Gb;if(!(b in c)){c[b]=d.length;d.push(a)}},Ha:function(a){a=f.p.Ba(a);var b=this.oc;if(a&&a in b){delete this.Gb[b[a]];delete b[a]}},xa:function(){for(var a=this.Gb,b=a.length;b--;)a[b]&&a[b]()}};f.Oa=new f.ea;f.Oa.Rd=function(){var a=this,b;if(!a.Sd){b=doc.documentElement.currentStyle.getAttribute(f.F+"poll-interval")||250;(function c(){a.xa();setTimeout(c,b)})();\r
+a.Sd=1}};(function(){function a(){f.L.xa();window.detachEvent("onunload",a);window.PIE=null}f.L=new f.ea;window.attachEvent("onunload",a);f.L.ta=function(b,c,d){b.attachEvent(c,d);this.ba(function(){b.detachEvent(c,d)})}})();f.Qa=new f.ea;f.L.ta(window,"onresize",function(){f.Qa.xa()});(function(){function a(){f.mb.xa()}f.mb=new f.ea;f.L.ta(window,"onscroll",a);f.Qa.ba(a)})();(function(){function a(){c=f.kb.md()}function b(){if(c){for(var d=0,e=c.length;d<e;d++)f.attach(c[d]);c=0}}var c;if(f.ja<9){f.L.ta(window,\r
+"onbeforeprint",a);f.L.ta(window,"onafterprint",b)}})();f.lb=new f.ea;f.L.ta(doc,"onmouseup",function(){f.lb.xa()});f.he=function(){function a(h){this.Y=h}var b=doc.createElement("length-calc"),c=doc.body||doc.documentElement,d=b.style,e={},g=["mm","cm","in","pt","pc"],j=g.length,i={};d.position="absolute";d.top=d.left="-9999px";for(c.appendChild(b);j--;){d.width="100"+g[j];e[g[j]]=b.offsetWidth/100}c.removeChild(b);d.width="1em";a.prototype={Kb:/(px|em|ex|mm|cm|in|pt|pc|%)$/,ic:function(){var h=\r
+this.Jd;if(h===void 0)h=this.Jd=parseFloat(this.Y);return h},yb:function(){var h=this.ae;if(!h)h=this.ae=(h=this.Y.match(this.Kb))&&h[0]||"px";return h},a:function(h,k){var n=this.ic(),m=this.yb();switch(m){case "px":return n;case "%":return n*(typeof k==="function"?k():k)/100;case "em":return n*this.xb(h);case "ex":return n*this.xb(h)/2;default:return n*e[m]}},xb:function(h){var k=h.currentStyle.fontSize,n,m;if(k.indexOf("px")>0)return parseFloat(k);else if(h.tagName in f.cc){m=this;n=h.parentNode;\r
+return f.n(k).a(n,function(){return m.xb(n)})}else{h.appendChild(b);k=b.offsetWidth;b.parentNode===h&&h.removeChild(b);return k}}};f.n=function(h){return i[h]||(i[h]=new a(h))};return a}();f.Ja=function(){function a(e){this.X=e}var b=f.n("50%"),c={top:1,center:1,bottom:1},d={left:1,center:1,right:1};a.prototype={zd:function(){if(!this.ac){var e=this.X,g=e.length,j=f.v,i=j.qa,h=f.n("0");i=i.na;h=["left",h,"top",h];if(g===1){e.push(new j.ob(i,"center"));g++}if(g===2){i&(e[0].k|e[1].k)&&e[0].d in c&&\r
+e[1].d in d&&e.push(e.shift());if(e[0].k&i)if(e[0].d==="center")h[1]=b;else h[0]=e[0].d;else if(e[0].W())h[1]=f.n(e[0].d);if(e[1].k&i)if(e[1].d==="center")h[3]=b;else h[2]=e[1].d;else if(e[1].W())h[3]=f.n(e[1].d)}this.ac=h}return this.ac},coords:function(e,g,j){var i=this.zd(),h=i[1].a(e,g);e=i[3].a(e,j);return{x:i[0]==="right"?g-h:h,y:i[2]==="bottom"?j-e:e}}};return a}();f.Ka=function(){function a(b,c){this.h=b;this.f=c}a.prototype={a:function(b,c,d,e,g){var j=this.h,i=this.f,h=c/d;e=e/g;if(j===\r
+"contain"){j=e>h?c:d*e;i=e>h?c/e:d}else if(j==="cover"){j=e<h?c:d*e;i=e<h?c/e:d}else if(j==="auto"){i=i==="auto"?g:i.a(b,d);j=i*e}else{j=j.a(b,c);i=i==="auto"?j/e:i.a(b,d)}return{h:j,f:i}}};a.Kc=new a("auto","auto");return a}();f.Ec=function(){function a(b){this.Y=b}a.prototype={Kb:/[a-z]+$/i,yb:function(){return this.ad||(this.ad=this.Y.match(this.Kb)[0].toLowerCase())},jd:function(){var b=this.Vc,c;if(b===undefined){b=this.yb();c=parseFloat(this.Y,10);b=this.Vc=b==="deg"?c:b==="rad"?c/Math.PI*180:\r
+b==="grad"?c/400*360:b==="turn"?c*360:0}return b}};return a}();f.Jc=function(){function a(c){this.Y=c}var b={};a.Qd=/\s*rgba\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d+|\d*\.\d+)\s*\)\s*/;a.Fb={aliceblue:"F0F8FF",antiquewhite:"FAEBD7",aqua:"0FF",aquamarine:"7FFFD4",azure:"F0FFFF",beige:"F5F5DC",bisque:"FFE4C4",black:"000",blanchedalmond:"FFEBCD",blue:"00F",blueviolet:"8A2BE2",brown:"A52A2A",burlywood:"DEB887",cadetblue:"5F9EA0",chartreuse:"7FFF00",chocolate:"D2691E",coral:"FF7F50",cornflowerblue:"6495ED",\r
+cornsilk:"FFF8DC",crimson:"DC143C",cyan:"0FF",darkblue:"00008B",darkcyan:"008B8B",darkgoldenrod:"B8860B",darkgray:"A9A9A9",darkgreen:"006400",darkkhaki:"BDB76B",darkmagenta:"8B008B",darkolivegreen:"556B2F",darkorange:"FF8C00",darkorchid:"9932CC",darkred:"8B0000",darksalmon:"E9967A",darkseagreen:"8FBC8F",darkslateblue:"483D8B",darkslategray:"2F4F4F",darkturquoise:"00CED1",darkviolet:"9400D3",deeppink:"FF1493",deepskyblue:"00BFFF",dimgray:"696969",dodgerblue:"1E90FF",firebrick:"B22222",floralwhite:"FFFAF0",\r
+forestgreen:"228B22",fuchsia:"F0F",gainsboro:"DCDCDC",ghostwhite:"F8F8FF",gold:"FFD700",goldenrod:"DAA520",gray:"808080",green:"008000",greenyellow:"ADFF2F",honeydew:"F0FFF0",hotpink:"FF69B4",indianred:"CD5C5C",indigo:"4B0082",ivory:"FFFFF0",khaki:"F0E68C",lavender:"E6E6FA",lavenderblush:"FFF0F5",lawngreen:"7CFC00",lemonchiffon:"FFFACD",lightblue:"ADD8E6",lightcoral:"F08080",lightcyan:"E0FFFF",lightgoldenrodyellow:"FAFAD2",lightgreen:"90EE90",lightgrey:"D3D3D3",lightpink:"FFB6C1",lightsalmon:"FFA07A",\r
+lightseagreen:"20B2AA",lightskyblue:"87CEFA",lightslategray:"789",lightsteelblue:"B0C4DE",lightyellow:"FFFFE0",lime:"0F0",limegreen:"32CD32",linen:"FAF0E6",magenta:"F0F",maroon:"800000",mediumauqamarine:"66CDAA",mediumblue:"0000CD",mediumorchid:"BA55D3",mediumpurple:"9370D8",mediumseagreen:"3CB371",mediumslateblue:"7B68EE",mediumspringgreen:"00FA9A",mediumturquoise:"48D1CC",mediumvioletred:"C71585",midnightblue:"191970",mintcream:"F5FFFA",mistyrose:"FFE4E1",moccasin:"FFE4B5",navajowhite:"FFDEAD",\r
+navy:"000080",oldlace:"FDF5E6",olive:"808000",olivedrab:"688E23",orange:"FFA500",orangered:"FF4500",orchid:"DA70D6",palegoldenrod:"EEE8AA",palegreen:"98FB98",paleturquoise:"AFEEEE",palevioletred:"D87093",papayawhip:"FFEFD5",peachpuff:"FFDAB9",peru:"CD853F",pink:"FFC0CB",plum:"DDA0DD",powderblue:"B0E0E6",purple:"800080",red:"F00",rosybrown:"BC8F8F",royalblue:"4169E1",saddlebrown:"8B4513",salmon:"FA8072",sandybrown:"F4A460",seagreen:"2E8B57",seashell:"FFF5EE",sienna:"A0522D",silver:"C0C0C0",skyblue:"87CEEB",\r
+slateblue:"6A5ACD",slategray:"708090",snow:"FFFAFA",springgreen:"00FF7F",steelblue:"4682B4",tan:"D2B48C",teal:"008080",thistle:"D8BFD8",tomato:"FF6347",turquoise:"40E0D0",violet:"EE82EE",wheat:"F5DEB3",white:"FFF",whitesmoke:"F5F5F5",yellow:"FF0",yellowgreen:"9ACD32"};a.prototype={parse:function(){if(!this.Ua){var c=this.Y,d;if(d=c.match(a.Qd)){this.Ua="rgb("+d[1]+","+d[2]+","+d[3]+")";this.Yb=parseFloat(d[4])}else{if((d=c.toLowerCase())in a.Fb)c="#"+a.Fb[d];this.Ua=c;this.Yb=c==="transparent"?0:\r
+1}}},U:function(c){this.parse();return this.Ua==="currentColor"?c.currentStyle.color:this.Ua},fa:function(){this.parse();return this.Yb}};f.ha=function(c){return b[c]||(b[c]=new a(c))};return a}();f.v=function(){function a(c){this.$a=c;this.ch=0;this.X=[];this.Ga=0}var b=a.qa={Ia:1,Wb:2,z:4,Lc:8,Xb:16,na:32,K:64,oa:128,pa:256,Ra:512,Tc:1024,URL:2048};a.ob=function(c,d){this.k=c;this.d=d};a.ob.prototype={Ca:function(){return this.k&b.K||this.k&b.oa&&this.d==="0"},W:function(){return this.Ca()||this.k&\r
+b.Ra}};a.prototype={de:/\s/,Kd:/^[\+\-]?(\d*\.)?\d+/,url:/^url\(\s*("([^"]*)"|'([^']*)'|([!#$%&*-~]*))\s*\)/i,nc:/^\-?[_a-z][\w-]*/i,Yd:/^("([^"]*)"|'([^']*)')/,Bd:/^#([\da-f]{6}|[\da-f]{3})/i,be:{px:b.K,em:b.K,ex:b.K,mm:b.K,cm:b.K,"in":b.K,pt:b.K,pc:b.K,deg:b.Ia,rad:b.Ia,grad:b.Ia},fd:{rgb:1,rgba:1,hsl:1,hsla:1},next:function(c){function d(p,r){p=new a.ob(p,r);if(!c){k.X.push(p);k.Ga++}return p}function e(){k.Ga++;return null}var g,j,i,h,k=this;if(this.Ga<this.X.length)return this.X[this.Ga++];for(;this.de.test(this.$a.charAt(this.ch));)this.ch++;\r
+if(this.ch>=this.$a.length)return e();j=this.ch;g=this.$a.substring(this.ch);i=g.charAt(0);switch(i){case "#":if(h=g.match(this.Bd)){this.ch+=h[0].length;return d(b.z,h[0])}break;case '"':case "'":if(h=g.match(this.Yd)){this.ch+=h[0].length;return d(b.Tc,h[2]||h[3]||"")}break;case "/":case ",":this.ch++;return d(b.pa,i);case "u":if(h=g.match(this.url)){this.ch+=h[0].length;return d(b.URL,h[2]||h[3]||h[4]||"")}}if(h=g.match(this.Kd)){i=h[0];this.ch+=i.length;if(g.charAt(i.length)==="%"){this.ch++;\r
+return d(b.Ra,i+"%")}if(h=g.substring(i.length).match(this.nc)){i+=h[0];this.ch+=h[0].length;return d(this.be[h[0].toLowerCase()]||b.Lc,i)}return d(b.oa,i)}if(h=g.match(this.nc)){i=h[0];this.ch+=i.length;if(i.toLowerCase()in f.Jc.Fb||i==="currentColor"||i==="transparent")return d(b.z,i);if(g.charAt(i.length)==="("){this.ch++;if(i.toLowerCase()in this.fd){g=function(p){return p&&p.k&b.oa};h=function(p){return p&&p.k&(b.oa|b.Ra)};var n=function(p,r){return p&&p.d===r},m=function(){return k.next(1)};\r
+if((i.charAt(0)==="r"?h(m()):g(m()))&&n(m(),",")&&h(m())&&n(m(),",")&&h(m())&&(i==="rgb"||i==="hsa"||n(m(),",")&&g(m()))&&n(m(),")"))return d(b.z,this.$a.substring(j,this.ch));return e()}return d(b.Xb,i)}return d(b.na,i)}this.ch++;return d(b.Wb,i)},D:function(){return this.X[this.Ga-- -2]},all:function(){for(;this.next(););return this.X},ma:function(c,d){for(var e=[],g,j;g=this.next();){if(c(g)){j=true;this.D();break}e.push(g)}return d&&!j?null:e}};return a}();var ha=function(a){this.e=a};ha.prototype=\r
+{Z:0,Od:function(){var a=this.qb,b;return!a||(b=this.o())&&(a.x!==b.x||a.y!==b.y)},Td:function(){var a=this.qb,b;return!a||(b=this.o())&&(a.h!==b.h||a.f!==b.f)},hc:function(){var a=this.e,b=a.getBoundingClientRect(),c=f.ja===9,d=f.O===7,e=b.right-b.left;return{x:b.left,y:b.top,h:c||d?a.offsetWidth:e,f:c||d?a.offsetHeight:b.bottom-b.top,Hd:d&&e?a.offsetWidth/e:1}},o:function(){return this.Z?this.Va||(this.Va=this.hc()):this.hc()},Ad:function(){return!!this.qb},cb:function(){++this.Z},hb:function(){if(!--this.Z){if(this.Va)this.qb=\r
+this.Va;this.Va=null}}};(function(){function a(b){var c=f.p.Ba(b);return function(){if(this.Z){var d=this.$b||(this.$b={});return c in d?d[c]:(d[c]=b.call(this))}else return b.call(this)}}f.B={Z:0,ka:function(b){function c(d){this.e=d;this.Zb=this.ia()}f.p.Eb(c.prototype,f.B,b);c.$c={};return c},j:function(){var b=this.ia(),c=this.constructor.$c;return b?b in c?c[b]:(c[b]=this.la(b)):null},ia:a(function(){var b=this.e,c=this.constructor,d=b.style;b=b.currentStyle;var e=this.wa,g=this.Fa,j=c.Yc||(c.Yc=\r
+f.F+e);c=c.Zc||(c.Zc=f.nb+g.charAt(0).toUpperCase()+g.substring(1));return d[c]||b.getAttribute(j)||d[g]||b.getAttribute(e)}),i:a(function(){return!!this.j()}),H:a(function(){var b=this.ia(),c=b!==this.Zb;this.Zb=b;return c}),va:a,cb:function(){++this.Z},hb:function(){--this.Z||delete this.$b}}})();f.Sb=f.B.ka({wa:f.F+"background",Fa:f.nb+"Background",cd:{scroll:1,fixed:1,local:1},fb:{"repeat-x":1,"repeat-y":1,repeat:1,"no-repeat":1},sc:{"padding-box":1,"border-box":1,"content-box":1},Pd:{top:1,right:1,\r
+bottom:1,left:1,center:1},Ud:{contain:1,cover:1},eb:{Ma:"backgroundClip",z:"backgroundColor",da:"backgroundImage",Pa:"backgroundOrigin",S:"backgroundPosition",T:"backgroundRepeat",Sa:"backgroundSize"},la:function(a){function b(s){return s&&s.W()||s.k&k&&s.d in t}function c(s){return s&&(s.W()&&f.n(s.d)||s.d==="auto"&&"auto")}var d=this.e.currentStyle,e,g,j,i=f.v.qa,h=i.pa,k=i.na,n=i.z,m,p,r=0,t=this.Pd,v,l,q={M:[]};if(this.wb()){e=new f.v(a);for(j={};g=e.next();){m=g.k;p=g.d;if(!j.P&&m&i.Xb&&p===\r
+"linear-gradient"){v={ca:[],P:p};for(l={};g=e.next();){m=g.k;p=g.d;if(m&i.Wb&&p===")"){l.color&&v.ca.push(l);v.ca.length>1&&f.p.Eb(j,v);break}if(m&n){if(v.sa||v.zb){g=e.D();if(g.k!==h)break;e.next()}l={color:f.ha(p)};g=e.next();if(g.W())l.db=f.n(g.d);else e.D()}else if(m&i.Ia&&!v.sa&&!l.color&&!v.ca.length)v.sa=new f.Ec(g.d);else if(b(g)&&!v.zb&&!l.color&&!v.ca.length){e.D();v.zb=new f.Ja(e.ma(function(s){return!b(s)},false))}else if(m&h&&p===","){if(l.color){v.ca.push(l);l={}}}else break}}else if(!j.P&&\r
+m&i.URL){j.Ab=p;j.P="image"}else if(b(g)&&!j.$){e.D();j.$=new f.Ja(e.ma(function(s){return!b(s)},false))}else if(m&k)if(p in this.fb&&!j.bb)j.bb=p;else if(p in this.sc&&!j.Wa){j.Wa=p;if((g=e.next())&&g.k&k&&g.d in this.sc)j.ub=g.d;else{j.ub=p;e.D()}}else if(p in this.cd&&!j.bc)j.bc=p;else return null;else if(m&n&&!q.color)q.color=f.ha(p);else if(m&h&&p==="/"&&!j.Xa&&j.$){g=e.next();if(g.k&k&&g.d in this.Ud)j.Xa=new f.Ka(g.d);else if(g=c(g)){m=c(e.next());if(!m){m=g;e.D()}j.Xa=new f.Ka(g,m)}else return null}else if(m&\r
+h&&p===","&&j.P){j.Hb=a.substring(r,e.ch-1);r=e.ch;q.M.push(j);j={}}else return null}if(j.P){j.Hb=a.substring(r);q.M.push(j)}}else this.Bc(f.ja<9?function(){var s=this.eb,o=d[s.S+"X"],u=d[s.S+"Y"],x=d[s.da],y=d[s.z];if(y!=="transparent")q.color=f.ha(y);if(x!=="none")q.M=[{P:"image",Ab:(new f.v(x)).next().d,bb:d[s.T],$:new f.Ja((new f.v(o+" "+u)).all())}]}:function(){var s=this.eb,o=/\s*,\s*/,u=d[s.da].split(o),x=d[s.z],y,z,B,E,D,C;if(x!=="transparent")q.color=f.ha(x);if((E=u.length)&&u[0]!=="none"){x=\r
+d[s.T].split(o);y=d[s.S].split(o);z=d[s.Pa].split(o);B=d[s.Ma].split(o);s=d[s.Sa].split(o);q.M=[];for(o=0;o<E;o++)if((D=u[o])&&D!=="none"){C=s[o].split(" ");q.M.push({Hb:D+" "+x[o]+" "+y[o]+" / "+s[o]+" "+z[o]+" "+B[o],P:"image",Ab:(new f.v(D)).next().d,bb:x[o],$:new f.Ja((new f.v(y[o])).all()),Wa:z[o],ub:B[o],Xa:new f.Ka(C[0],C[1])})}}});return q.color||q.M[0]?q:null},Bc:function(a){var b=f.ja>8,c=this.eb,d=this.e.runtimeStyle,e=d[c.da],g=d[c.z],j=d[c.T],i,h,k,n;if(e)d[c.da]="";if(g)d[c.z]="";if(j)d[c.T]=\r
+"";if(b){i=d[c.Ma];h=d[c.Pa];n=d[c.S];k=d[c.Sa];if(i)d[c.Ma]="";if(h)d[c.Pa]="";if(n)d[c.S]="";if(k)d[c.Sa]=""}a=a.call(this);if(e)d[c.da]=e;if(g)d[c.z]=g;if(j)d[c.T]=j;if(b){if(i)d[c.Ma]=i;if(h)d[c.Pa]=h;if(n)d[c.S]=n;if(k)d[c.Sa]=k}return a},ia:f.B.va(function(){return this.wb()||this.Bc(function(){var a=this.e.currentStyle,b=this.eb;return a[b.z]+" "+a[b.da]+" "+a[b.T]+" "+a[b.S+"X"]+" "+a[b.S+"Y"]})}),wb:f.B.va(function(){var a=this.e;return a.style[this.Fa]||a.currentStyle.getAttribute(this.wa)}),\r
+qc:function(){var a=0;if(f.O<7){a=this.e;a=""+(a.style[f.nb+"PngFix"]||a.currentStyle.getAttribute(f.F+"png-fix"))==="true"}return a},i:f.B.va(function(){return(this.wb()||this.qc())&&!!this.j()})});f.Vb=f.B.ka({wc:["Top","Right","Bottom","Left"],Id:{thin:"1px",medium:"3px",thick:"5px"},la:function(){var a={},b={},c={},d=false,e=true,g=true,j=true;this.Cc(function(){for(var i=this.e.currentStyle,h=0,k,n,m,p,r,t,v;h<4;h++){m=this.wc[h];v=m.charAt(0).toLowerCase();k=b[v]=i["border"+m+"Style"];n=i["border"+\r
+m+"Color"];m=i["border"+m+"Width"];if(h>0){if(k!==p)g=false;if(n!==r)e=false;if(m!==t)j=false}p=k;r=n;t=m;c[v]=f.ha(n);m=a[v]=f.n(b[v]==="none"?"0":this.Id[m]||m);if(m.a(this.e)>0)d=true}});return d?{J:a,Zd:b,gd:c,ee:j,hd:e,$d:g}:null},ia:f.B.va(function(){var a=this.e,b=a.currentStyle,c;a.tagName in f.Ac&&a.offsetParent.currentStyle.borderCollapse==="collapse"||this.Cc(function(){c=b.borderWidth+"|"+b.borderStyle+"|"+b.borderColor});return c}),Cc:function(a){var b=this.e.runtimeStyle,c=b.borderWidth,\r
+d=b.borderColor;if(c)b.borderWidth="";if(d)b.borderColor="";a=a.call(this);if(c)b.borderWidth=c;if(d)b.borderColor=d;return a}});(function(){f.jb=f.B.ka({wa:"border-radius",Fa:"borderRadius",la:function(b){var c=null,d,e,g,j,i=false;if(b){e=new f.v(b);var h=function(){for(var k=[],n;(g=e.next())&&g.W();){j=f.n(g.d);n=j.ic();if(n<0)return null;if(n>0)i=true;k.push(j)}return k.length>0&&k.length<5?{tl:k[0],tr:k[1]||k[0],br:k[2]||k[0],bl:k[3]||k[1]||k[0]}:null};if(b=h()){if(g){if(g.k&f.v.qa.pa&&g.d===\r
+"/")d=h()}else d=b;if(i&&b&&d)c={x:b,y:d}}}return c}});var a=f.n("0");a={tl:a,tr:a,br:a,bl:a};f.jb.Dc={x:a,y:a}})();f.Ub=f.B.ka({wa:"border-image",Fa:"borderImage",fb:{stretch:1,round:1,repeat:1,space:1},la:function(a){var b=null,c,d,e,g,j,i,h=0,k=f.v.qa,n=k.na,m=k.oa,p=k.Ra;if(a){c=new f.v(a);b={};for(var r=function(l){return l&&l.k&k.pa&&l.d==="/"},t=function(l){return l&&l.k&n&&l.d==="fill"},v=function(){g=c.ma(function(l){return!(l.k&(m|p))});if(t(c.next())&&!b.fill)b.fill=true;else c.D();if(r(c.next())){h++;\r
+j=c.ma(function(l){return!l.W()&&!(l.k&n&&l.d==="auto")});if(r(c.next())){h++;i=c.ma(function(l){return!l.Ca()})}}else c.D()};a=c.next();){d=a.k;e=a.d;if(d&(m|p)&&!g){c.D();v()}else if(t(a)&&!b.fill){b.fill=true;v()}else if(d&n&&this.fb[e]&&!b.repeat){b.repeat={f:e};if(a=c.next())if(a.k&n&&this.fb[a.d])b.repeat.Ob=a.d;else c.D()}else if(d&k.URL&&!b.src)b.src=e;else return null}if(!b.src||!g||g.length<1||g.length>4||j&&j.length>4||h===1&&j.length<1||i&&i.length>4||h===2&&i.length<1)return null;if(!b.repeat)b.repeat=\r
+{f:"stretch"};if(!b.repeat.Ob)b.repeat.Ob=b.repeat.f;a=function(l,q){return{t:q(l[0]),r:q(l[1]||l[0]),b:q(l[2]||l[0]),l:q(l[3]||l[1]||l[0])}};b.slice=a(g,function(l){return f.n(l.k&m?l.d+"px":l.d)});if(j&&j[0])b.J=a(j,function(l){return l.W()?f.n(l.d):l.d});if(i&&i[0])b.Da=a(i,function(l){return l.Ca()?f.n(l.d):l.d})}return b}});f.Ic=f.B.ka({wa:"box-shadow",Fa:"boxShadow",la:function(a){var b,c=f.n,d=f.v.qa,e;if(a){e=new f.v(a);b={Da:[],Bb:[]};for(a=function(){for(var g,j,i,h,k,n;g=e.next();){i=g.d;\r
+j=g.k;if(j&d.pa&&i===",")break;else if(g.Ca()&&!k){e.D();k=e.ma(function(m){return!m.Ca()})}else if(j&d.z&&!h)h=i;else if(j&d.na&&i==="inset"&&!n)n=true;else return false}g=k&&k.length;if(g>1&&g<5){(n?b.Bb:b.Da).push({fe:c(k[0].d),ge:c(k[1].d),blur:c(k[2]?k[2].d:"0"),Vd:c(k[3]?k[3].d:"0"),color:f.ha(h||"currentColor")});return true}return false};a(););}return b&&(b.Bb.length||b.Da.length)?b:null}});f.Uc=f.B.ka({ia:f.B.va(function(){var a=this.e.currentStyle;return a.visibility+"|"+a.display}),la:function(){var a=\r
+this.e,b=a.runtimeStyle;a=a.currentStyle;var c=b.visibility,d;b.visibility="";d=a.visibility;b.visibility=c;return{ce:d!=="hidden",nd:a.display!=="none"}},i:function(){return false}});f.u={R:function(a){function b(c,d,e,g){this.e=c;this.s=d;this.g=e;this.parent=g}f.p.Eb(b.prototype,f.u,a);return b},Cb:false,Q:function(){return false},Ea:f.aa,Lb:function(){this.m();this.i()&&this.V()},ib:function(){this.Cb=true},Mb:function(){this.i()?this.V():this.m()},sb:function(a,b){this.vc(a);for(var c=this.ra||\r
+(this.ra=[]),d=a+1,e=c.length,g;d<e;d++)if(g=c[d])break;c[a]=b;this.I().insertBefore(b,g||null)},za:function(a){var b=this.ra;return b&&b[a]||null},vc:function(a){var b=this.za(a),c=this.Ta;if(b&&c){c.removeChild(b);this.ra[a]=null}},Aa:function(a,b,c,d){var e=this.rb||(this.rb={}),g=e[a];if(!g){g=e[a]=f.p.Za("shape");if(b)g.appendChild(g[b]=f.p.Za(b));if(d){c=this.za(d);if(!c){this.sb(d,doc.createElement("group"+d));c=this.za(d)}}c.appendChild(g);a=g.style;a.position="absolute";a.left=a.top=0;a.behavior=\r
+"url(#default#VML)"}return g},vb:function(a){var b=this.rb,c=b&&b[a];if(c){c.parentNode.removeChild(c);delete b[a]}return!!c},kc:function(a){var b=this.e,c=this.s.o(),d=c.h,e=c.f,g,j,i,h,k,n;c=a.x.tl.a(b,d);g=a.y.tl.a(b,e);j=a.x.tr.a(b,d);i=a.y.tr.a(b,e);h=a.x.br.a(b,d);k=a.y.br.a(b,e);n=a.x.bl.a(b,d);a=a.y.bl.a(b,e);d=Math.min(d/(c+j),e/(i+k),d/(n+h),e/(g+a));if(d<1){c*=d;g*=d;j*=d;i*=d;h*=d;k*=d;n*=d;a*=d}return{x:{tl:c,tr:j,br:h,bl:n},y:{tl:g,tr:i,br:k,bl:a}}},ya:function(a,b,c){b=b||1;var d,e,\r
+g=this.s.o();e=g.h*b;g=g.f*b;var j=this.g.G,i=Math.floor,h=Math.ceil,k=a?a.Jb*b:0,n=a?a.Ib*b:0,m=a?a.tb*b:0;a=a?a.Db*b:0;var p,r,t,v,l;if(c||j.i()){d=this.kc(c||j.j());c=d.x.tl*b;j=d.y.tl*b;p=d.x.tr*b;r=d.y.tr*b;t=d.x.br*b;v=d.y.br*b;l=d.x.bl*b;b=d.y.bl*b;e="m"+i(a)+","+i(j)+"qy"+i(c)+","+i(k)+"l"+h(e-p)+","+i(k)+"qx"+h(e-n)+","+i(r)+"l"+h(e-n)+","+h(g-v)+"qy"+h(e-t)+","+h(g-m)+"l"+i(l)+","+h(g-m)+"qx"+i(a)+","+h(g-b)+" x e"}else e="m"+i(a)+","+i(k)+"l"+h(e-n)+","+i(k)+"l"+h(e-n)+","+h(g-m)+"l"+i(a)+\r
+","+h(g-m)+"xe";return e},I:function(){var a=this.parent.za(this.N),b;if(!a){a=doc.createElement(this.Ya);b=a.style;b.position="absolute";b.top=b.left=0;this.parent.sb(this.N,a)}return a},mc:function(){var a=this.e,b=a.currentStyle,c=a.runtimeStyle,d=a.tagName,e=f.O===6,g;if(e&&(d in f.cc||d==="FIELDSET")||d==="BUTTON"||d==="INPUT"&&a.type in f.Gd){c.borderWidth="";d=this.g.w.wc;for(g=d.length;g--;){e=d[g];c["padding"+e]="";c["padding"+e]=f.n(b["padding"+e]).a(a)+f.n(b["border"+e+"Width"]).a(a)+(f.O!==\r
+8&&g%2?1:0)}c.borderWidth=0}else if(e){if(a.childNodes.length!==1||a.firstChild.tagName!=="ie6-mask"){b=doc.createElement("ie6-mask");d=b.style;d.visibility="visible";for(d.zoom=1;d=a.firstChild;)b.appendChild(d);a.appendChild(b);c.visibility="hidden"}}else c.borderColor="transparent"},ie:function(){},m:function(){this.parent.vc(this.N);delete this.rb;delete this.ra}};f.Rc=f.u.R({i:function(){var a=this.ed;for(var b in a)if(a.hasOwnProperty(b)&&a[b].i())return true;return false},Q:function(){return this.g.Pb.H()},\r
+ib:function(){if(this.i()){var a=this.jc(),b=a,c;a=a.currentStyle;var d=a.position,e=this.I().style,g=0,j=0;j=this.s.o();var i=j.Hd;if(d==="fixed"&&f.O>6){g=j.x*i;j=j.y*i;b=d}else{do b=b.offsetParent;while(b&&b.currentStyle.position==="static");if(b){c=b.getBoundingClientRect();b=b.currentStyle;g=(j.x-c.left)*i-(parseFloat(b.borderLeftWidth)||0);j=(j.y-c.top)*i-(parseFloat(b.borderTopWidth)||0)}else{b=doc.documentElement;g=(j.x+b.scrollLeft-b.clientLeft)*i;j=(j.y+b.scrollTop-b.clientTop)*i}b="absolute"}e.position=\r
+b;e.left=g;e.top=j;e.zIndex=d==="static"?-1:a.zIndex;this.Cb=true}},Mb:f.aa,Nb:function(){var a=this.g.Pb.j();this.I().style.display=a.ce&&a.nd?"":"none"},Lb:function(){this.i()?this.Nb():this.m()},jc:function(){var a=this.e;return a.tagName in f.Ac?a.offsetParent:a},I:function(){var a=this.Ta,b;if(!a){b=this.jc();a=this.Ta=doc.createElement("css3-container");a.style.direction="ltr";this.Nb();b.parentNode.insertBefore(a,b)}return a},ab:f.aa,m:function(){var a=this.Ta,b;if(a&&(b=a.parentNode))b.removeChild(a);\r
+delete this.Ta;delete this.ra}});f.Fc=f.u.R({N:2,Ya:"background",Q:function(){var a=this.g;return a.C.H()||a.G.H()},i:function(){var a=this.g;return a.q.i()||a.G.i()||a.C.i()||a.ga.i()&&a.ga.j().Bb},V:function(){var a=this.s.o();if(a.h&&a.f){this.od();this.pd()}},od:function(){var a=this.g.C.j(),b=this.s.o(),c=this.e,d=a&&a.color,e,g;if(d&&d.fa()>0){this.lc();a=this.Aa("bgColor","fill",this.I(),1);e=b.h;b=b.f;a.stroked=false;a.coordsize=e*2+","+b*2;a.coordorigin="1,1";a.path=this.ya(null,2);g=a.style;\r
+g.width=e;g.height=b;a.fill.color=d.U(c);c=d.fa();if(c<1)a.fill.opacity=c}else this.vb("bgColor")},pd:function(){var a=this.g.C.j(),b=this.s.o();a=a&&a.M;var c,d,e,g,j;if(a){this.lc();d=b.h;e=b.f;for(j=a.length;j--;){b=a[j];c=this.Aa("bgImage"+j,"fill",this.I(),2);c.stroked=false;c.fill.type="tile";c.fillcolor="none";c.coordsize=d*2+","+e*2;c.coordorigin="1,1";c.path=this.ya(0,2);g=c.style;g.width=d;g.height=e;if(b.P==="linear-gradient")this.bd(c,b);else{c.fill.src=b.Ab;this.Nd(c,j)}}}for(j=a?a.length:\r
+0;this.vb("bgImage"+j++););},Nd:function(a,b){var c=this;f.p.Rb(a.fill.src,function(d){var e=c.e,g=c.s.o(),j=g.h;g=g.f;if(j&&g){var i=a.fill,h=c.g,k=h.w.j(),n=k&&k.J;k=n?n.t.a(e):0;var m=n?n.r.a(e):0,p=n?n.b.a(e):0;n=n?n.l.a(e):0;h=h.C.j().M[b];e=h.$?h.$.coords(e,j-d.h-n-m,g-d.f-k-p):{x:0,y:0};h=h.bb;p=m=0;var r=j+1,t=g+1,v=f.O===8?0:1;n=Math.round(e.x)+n+0.5;k=Math.round(e.y)+k+0.5;i.position=n/j+","+k/g;i.size.x=1;i.size=d.h+"px,"+d.f+"px";if(h&&h!=="repeat"){if(h==="repeat-x"||h==="no-repeat"){m=\r
+k+1;t=k+d.f+v}if(h==="repeat-y"||h==="no-repeat"){p=n+1;r=n+d.h+v}a.style.clip="rect("+m+"px,"+r+"px,"+t+"px,"+p+"px)"}}})},bd:function(a,b){var c=this.e,d=this.s.o(),e=d.h,g=d.f;a=a.fill;d=b.ca;var j=d.length,i=Math.PI,h=f.Na,k=h.tc,n=h.dc;b=h.gc(c,e,g,b);h=b.sa;var m=b.xc,p=b.yc,r=b.Wd,t=b.Xd,v=b.rd,l=b.sd,q=b.kd,s=b.ld;b=b.rc;e=h%90?Math.atan2(q*e/g,s)/i*180:h+90;e+=180;e%=360;v=k(r,t,h,v,l);g=n(r,t,v[0],v[1]);i=[];v=k(m,p,h,r,t);n=n(m,p,v[0],v[1])/g*100;k=[];for(h=0;h<j;h++)k.push(d[h].db?d[h].db.a(c,\r
+b):h===0?0:h===j-1?b:null);for(h=1;h<j;h++){if(k[h]===null){m=k[h-1];b=h;do p=k[++b];while(p===null);k[h]=m+(p-m)/(b-h+1)}k[h]=Math.max(k[h],k[h-1])}for(h=0;h<j;h++)i.push(n+k[h]/g*100+"% "+d[h].color.U(c));a.angle=e;a.type="gradient";a.method="sigma";a.color=d[0].color.U(c);a.color2=d[j-1].color.U(c);if(a.colors)a.colors.value=i.join(",");else a.colors=i.join(",")},lc:function(){var a=this.e.runtimeStyle;a.backgroundImage="url(about:blank)";a.backgroundColor="transparent"},m:function(){f.u.m.call(this);\r
+var a=this.e.runtimeStyle;a.backgroundImage=a.backgroundColor=""}});f.Gc=f.u.R({N:4,Ya:"border",Q:function(){var a=this.g;return a.w.H()||a.G.H()},i:function(){var a=this.g;return a.G.i()&&!a.q.i()&&a.w.i()},V:function(){var a=this.e,b=this.g.w.j(),c=this.s.o(),d=c.h;c=c.f;var e,g,j,i,h;if(b){this.mc();b=this.wd(2);i=0;for(h=b.length;i<h;i++){j=b[i];e=this.Aa("borderPiece"+i,j.stroke?"stroke":"fill",this.I());e.coordsize=d*2+","+c*2;e.coordorigin="1,1";e.path=j.path;g=e.style;g.width=d;g.height=c;\r
+e.filled=!!j.fill;e.stroked=!!j.stroke;if(j.stroke){e=e.stroke;e.weight=j.Qb+"px";e.color=j.color.U(a);e.dashstyle=j.stroke==="dashed"?"2 2":j.stroke==="dotted"?"1 1":"solid";e.linestyle=j.stroke==="double"&&j.Qb>2?"ThinThin":"Single"}else e.fill.color=j.fill.U(a)}for(;this.vb("borderPiece"+i++););}},wd:function(a){var b=this.e,c,d,e,g=this.g.w,j=[],i,h,k,n,m=Math.round,p,r,t;if(g.i()){c=g.j();g=c.J;r=c.Zd;t=c.gd;if(c.ee&&c.$d&&c.hd){if(t.t.fa()>0){c=g.t.a(b);k=c/2;j.push({path:this.ya({Jb:k,Ib:k,\r
+tb:k,Db:k},a),stroke:r.t,color:t.t,Qb:c})}}else{a=a||1;c=this.s.o();d=c.h;e=c.f;c=m(g.t.a(b));k=m(g.r.a(b));n=m(g.b.a(b));b=m(g.l.a(b));var v={t:c,r:k,b:n,l:b};b=this.g.G;if(b.i())p=this.kc(b.j());i=Math.floor;h=Math.ceil;var l=function(o,u){return p?p[o][u]:0},q=function(o,u,x,y,z,B){var E=l("x",o),D=l("y",o),C=o.charAt(1)==="r";o=o.charAt(0)==="b";return E>0&&D>0?(B?"al":"ae")+(C?h(d-E):i(E))*a+","+(o?h(e-D):i(D))*a+","+(i(E)-u)*a+","+(i(D)-x)*a+","+y*65535+","+2949075*(z?1:-1):(B?"m":"l")+(C?d-\r
+u:u)*a+","+(o?e-x:x)*a},s=function(o,u,x,y){var z=o==="t"?i(l("x","tl"))*a+","+h(u)*a:o==="r"?h(d-u)*a+","+i(l("y","tr"))*a:o==="b"?h(d-l("x","br"))*a+","+i(e-u)*a:i(u)*a+","+h(e-l("y","bl"))*a;o=o==="t"?h(d-l("x","tr"))*a+","+h(u)*a:o==="r"?h(d-u)*a+","+h(e-l("y","br"))*a:o==="b"?i(l("x","bl"))*a+","+i(e-u)*a:i(u)*a+","+i(l("y","tl"))*a;return x?(y?"m"+o:"")+"l"+z:(y?"m"+z:"")+"l"+o};b=function(o,u,x,y,z,B){var E=o==="l"||o==="r",D=v[o],C,F;if(D>0&&r[o]!=="none"&&t[o].fa()>0){C=v[E?o:u];u=v[E?u:\r
+o];F=v[E?o:x];x=v[E?x:o];if(r[o]==="dashed"||r[o]==="dotted"){j.push({path:q(y,C,u,B+45,0,1)+q(y,0,0,B,1,0),fill:t[o]});j.push({path:s(o,D/2,0,1),stroke:r[o],Qb:D,color:t[o]});j.push({path:q(z,F,x,B,0,1)+q(z,0,0,B-45,1,0),fill:t[o]})}else j.push({path:q(y,C,u,B+45,0,1)+s(o,D,0,0)+q(z,F,x,B,0,0)+(r[o]==="double"&&D>2?q(z,F-i(F/3),x-i(x/3),B-45,1,0)+s(o,h(D/3*2),1,0)+q(y,C-i(C/3),u-i(u/3),B,1,0)+"x "+q(y,i(C/3),i(u/3),B+45,0,1)+s(o,i(D/3),1,0)+q(z,i(F/3),i(x/3),B,0,0):"")+q(z,0,0,B-45,1,0)+s(o,0,1,\r
+0)+q(y,0,0,B,1,0),fill:t[o]})}};b("t","l","r","tl","tr",90);b("r","t","b","tr","br",0);b("b","r","l","br","bl",-90);b("l","b","t","bl","tl",-180)}}return j},m:function(){if(this.ec||!this.g.q.i())this.e.runtimeStyle.borderColor="";f.u.m.call(this)}});f.Tb=f.u.R({N:5,Md:["t","tr","r","br","b","bl","l","tl","c"],Q:function(){return this.g.q.H()},i:function(){return this.g.q.i()},V:function(){this.I();var a=this.g.q.j(),b=this.g.w.j(),c=this.s.o(),d=this.e,e=this.uc;f.p.Rb(a.src,function(g){function j(s,\r
+o,u,x,y){s=e[s].style;var z=Math.max;s.width=z(o,0);s.height=z(u,0);s.left=x;s.top=y}function i(s,o,u){for(var x=0,y=s.length;x<y;x++)e[s[x]].imagedata[o]=u}var h=c.h,k=c.f,n=f.n("0"),m=a.J||(b?b.J:{t:n,r:n,b:n,l:n});n=m.t.a(d);var p=m.r.a(d),r=m.b.a(d);m=m.l.a(d);var t=a.slice,v=t.t.a(d),l=t.r.a(d),q=t.b.a(d);t=t.l.a(d);j("tl",m,n,0,0);j("t",h-m-p,n,m,0);j("tr",p,n,h-p,0);j("r",p,k-n-r,h-p,n);j("br",p,r,h-p,k-r);j("b",h-m-p,r,m,k-r);j("bl",m,r,0,k-r);j("l",m,k-n-r,0,n);j("c",h-m-p,k-n-r,m,n);i(["tl",\r
+"t","tr"],"cropBottom",(g.f-v)/g.f);i(["tl","l","bl"],"cropRight",(g.h-t)/g.h);i(["bl","b","br"],"cropTop",(g.f-q)/g.f);i(["tr","r","br"],"cropLeft",(g.h-l)/g.h);i(["l","r","c"],"cropTop",v/g.f);i(["l","r","c"],"cropBottom",q/g.f);i(["t","b","c"],"cropLeft",t/g.h);i(["t","b","c"],"cropRight",l/g.h);e.c.style.display=a.fill?"":"none"},this)},I:function(){var a=this.parent.za(this.N),b,c,d,e=this.Md,g=e.length;if(!a){a=doc.createElement("border-image");b=a.style;b.position="absolute";this.uc={};for(d=\r
+0;d<g;d++){c=this.uc[e[d]]=f.p.Za("rect");c.appendChild(f.p.Za("imagedata"));b=c.style;b.behavior="url(#default#VML)";b.position="absolute";b.top=b.left=0;c.imagedata.src=this.g.q.j().src;c.stroked=false;c.filled=false;a.appendChild(c)}this.parent.sb(this.N,a)}return a},Ea:function(){if(this.i()){var a=this.e,b=a.runtimeStyle,c=this.g.q.j().J;b.borderStyle="solid";if(c){b.borderTopWidth=c.t.a(a)+"px";b.borderRightWidth=c.r.a(a)+"px";b.borderBottomWidth=c.b.a(a)+"px";b.borderLeftWidth=c.l.a(a)+"px"}this.mc()}},\r
+m:function(){var a=this.e.runtimeStyle;a.borderStyle="";if(this.ec||!this.g.w.i())a.borderColor=a.borderWidth="";f.u.m.call(this)}});f.Hc=f.u.R({N:1,Ya:"outset-box-shadow",Q:function(){var a=this.g;return a.ga.H()||a.G.H()},i:function(){var a=this.g.ga;return a.i()&&a.j().Da[0]},V:function(){function a(C,F,O,H,M,P,I){C=b.Aa("shadow"+C+F,"fill",d,j-C);F=C.fill;C.coordsize=n*2+","+m*2;C.coordorigin="1,1";C.stroked=false;C.filled=true;F.color=M.U(c);if(P){F.type="gradienttitle";F.color2=F.color;F.opacity=\r
+0}C.path=I;l=C.style;l.left=O;l.top=H;l.width=n;l.height=m;return C}var b=this,c=this.e,d=this.I(),e=this.g,g=e.ga.j().Da;e=e.G.j();var j=g.length,i=j,h,k=this.s.o(),n=k.h,m=k.f;k=f.O===8?1:0;for(var p=["tl","tr","br","bl"],r,t,v,l,q,s,o,u,x,y,z,B,E,D;i--;){t=g[i];q=t.fe.a(c);s=t.ge.a(c);h=t.Vd.a(c);o=t.blur.a(c);t=t.color;u=-h-o;if(!e&&o)e=f.jb.Dc;u=this.ya({Jb:u,Ib:u,tb:u,Db:u},2,e);if(o){x=(h+o)*2+n;y=(h+o)*2+m;z=x?o*2/x:0;B=y?o*2/y:0;if(o-h>n/2||o-h>m/2)for(h=4;h--;){r=p[h];E=r.charAt(0)==="b";\r
+D=r.charAt(1)==="r";r=a(i,r,q,s,t,o,u);v=r.fill;v.focusposition=(D?1-z:z)+","+(E?1-B:B);v.focussize="0,0";r.style.clip="rect("+((E?y/2:0)+k)+"px,"+(D?x:x/2)+"px,"+(E?y:y/2)+"px,"+((D?x/2:0)+k)+"px)"}else{r=a(i,"",q,s,t,o,u);v=r.fill;v.focusposition=z+","+B;v.focussize=1-z*2+","+(1-B*2)}}else{r=a(i,"",q,s,t,o,u);q=t.fa();if(q<1)r.fill.opacity=q}}}});f.Pc=f.u.R({N:6,Ya:"imgEl",Q:function(){var a=this.g;return this.e.src!==this.Xc||a.G.H()},i:function(){var a=this.g;return a.G.i()||a.C.qc()},V:function(){this.Xc=\r
+j;this.Cd();var a=this.Aa("img","fill",this.I()),b=a.fill,c=this.s.o(),d=c.h;c=c.f;var e=this.g.w.j(),g=e&&e.J;e=this.e;var j=e.src,i=Math.round,h=e.currentStyle,k=f.n;if(!g||f.O<7){g=f.n("0");g={t:g,r:g,b:g,l:g}}a.stroked=false;b.type="frame";b.src=j;b.position=(d?0.5/d:0)+","+(c?0.5/c:0);a.coordsize=d*2+","+c*2;a.coordorigin="1,1";a.path=this.ya({Jb:i(g.t.a(e)+k(h.paddingTop).a(e)),Ib:i(g.r.a(e)+k(h.paddingRight).a(e)),tb:i(g.b.a(e)+k(h.paddingBottom).a(e)),Db:i(g.l.a(e)+k(h.paddingLeft).a(e))},\r
+2);a=a.style;a.width=d;a.height=c},Cd:function(){this.e.runtimeStyle.filter="alpha(opacity=0)"},m:function(){f.u.m.call(this);this.e.runtimeStyle.filter=""}});f.Oc=f.u.R({ib:f.aa,Mb:f.aa,Nb:f.aa,Lb:f.aa,Ld:/^,+|,+$/g,Fd:/,+/g,gb:function(a,b){(this.pb||(this.pb=[]))[a]=b||void 0},ab:function(){var a=this.pb,b;if(a&&(b=a.join(",").replace(this.Ld,"").replace(this.Fd,","))!==this.Wc)this.Wc=this.e.runtimeStyle.background=b},m:function(){this.e.runtimeStyle.background="";delete this.pb}});f.Mc=f.u.R({ua:1,\r
+Q:function(){return this.g.C.H()},i:function(){var a=this.g;return a.C.i()||a.q.i()},V:function(){var a=this.g.C.j(),b,c,d=0,e,g;if(a){b=[];if(c=a.M)for(;e=c[d++];)if(e.P==="linear-gradient"){g=this.vd(e.Wa);g=(e.Xa||f.Ka.Kc).a(this.e,g.h,g.f,g.h,g.f);b.push("url(data:image/svg+xml,"+escape(this.xd(e,g.h,g.f))+") "+this.dd(e.$)+" / "+g.h+"px "+g.f+"px "+(e.bc||"")+" "+(e.Wa||"")+" "+(e.ub||""))}else b.push(e.Hb);a.color&&b.push(a.color.Y);this.parent.gb(this.ua,b.join(","))}},dd:function(a){return a?\r
+a.X.map(function(b){return b.d}).join(" "):"0 0"},vd:function(a){var b=this.e,c=this.s.o(),d=c.h;c=c.f;var e;if(a!=="border-box")if((e=this.g.w.j())&&(e=e.J)){d-=e.l.a(b)+e.l.a(b);c-=e.t.a(b)+e.b.a(b)}if(a==="content-box"){a=f.n;e=b.currentStyle;d-=a(e.paddingLeft).a(b)+a(e.paddingRight).a(b);c-=a(e.paddingTop).a(b)+a(e.paddingBottom).a(b)}return{h:d,f:c}},xd:function(a,b,c){var d=this.e,e=a.ca,g=e.length,j=f.Na.gc(d,b,c,a);a=j.xc;var i=j.yc,h=j.td,k=j.ud;j=j.rc;var n,m,p,r,t;n=[];for(m=0;m<g;m++)n.push(e[m].db?\r
+e[m].db.a(d,j):m===0?0:m===g-1?j:null);for(m=1;m<g;m++)if(n[m]===null){r=n[m-1];p=m;do t=n[++p];while(t===null);n[m]=r+(t-r)/(p-m+1)}b=['<svg width="'+b+'" height="'+c+'" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="'+a/b*100+'%" y1="'+i/c*100+'%" x2="'+h/b*100+'%" y2="'+k/c*100+'%">'];for(m=0;m<g;m++)b.push('<stop offset="'+n[m]/j+'" stop-color="'+e[m].color.U(d)+'" stop-opacity="'+e[m].color.fa()+'"/>');b.push('</linearGradient></defs><rect width="100%" height="100%" fill="url(#g)"/></svg>');\r
+return b.join("")},m:function(){this.parent.gb(this.ua)}});f.Nc=f.u.R({T:"repeat",Sc:"stretch",Qc:"round",ua:0,Q:function(){return this.g.q.H()},i:function(){return this.g.q.i()},V:function(){var a=this,b=a.g.q.j(),c=a.g.w.j(),d=a.s.o(),e=b.repeat,g=e.f,j=e.Ob,i=a.e,h=0;f.p.Rb(b.src,function(k){function n(Q,R,U,V,W,Y,X,S,w,A){K.push('<pattern patternUnits="userSpaceOnUse" id="pattern'+G+'" x="'+(g===l?Q+U/2-w/2:Q)+'" y="'+(j===l?R+V/2-A/2:R)+'" width="'+w+'" height="'+A+'"><svg width="'+w+'" height="'+\r
+A+'" viewBox="'+W+" "+Y+" "+X+" "+S+'" preserveAspectRatio="none"><image xlink:href="'+v+'" x="0" y="0" width="'+r+'" height="'+t+'" /></svg></pattern>');J.push('<rect x="'+Q+'" y="'+R+'" width="'+U+'" height="'+V+'" fill="url(#pattern'+G+')" />');G++}var m=d.h,p=d.f,r=k.h,t=k.f,v=a.Dd(b.src,r,t),l=a.T,q=a.Sc;k=a.Qc;var s=Math.ceil,o=f.n("0"),u=b.J||(c?c.J:{t:o,r:o,b:o,l:o});o=u.t.a(i);var x=u.r.a(i),y=u.b.a(i);u=u.l.a(i);var z=b.slice,B=z.t.a(i),E=z.r.a(i),D=z.b.a(i);z=z.l.a(i);var C=m-u-x,F=p-o-\r
+y,O=r-z-E,H=t-B-D,M=g===q?C:O*o/B,P=j===q?F:H*x/E,I=g===q?C:O*y/D;q=j===q?F:H*u/z;var K=[],J=[],G=0;if(g===k){M-=(M-(C%M||M))/s(C/M);I-=(I-(C%I||I))/s(C/I)}if(j===k){P-=(P-(F%P||P))/s(F/P);q-=(q-(F%q||q))/s(F/q)}k=['<svg width="'+m+'" height="'+p+'" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">'];n(0,0,u,o,0,0,z,B,u,o);n(u,0,C,o,z,0,O,B,M,o);n(m-x,0,x,o,r-E,0,E,B,x,o);n(0,o,u,F,0,B,z,H,u,q);if(b.fill)n(u,o,C,F,z,B,O,H,M||I||O,q||P||H);n(m-x,o,x,F,r-E,B,E,H,x,P);n(0,\r
+p-y,u,y,0,t-D,z,D,u,y);n(u,p-y,C,y,z,t-D,O,D,I,y);n(m-x,p-y,x,y,r-E,t-D,E,D,x,y);k.push("<defs>"+K.join("\n")+"</defs>"+J.join("\n")+"</svg>");a.parent.gb(a.ua,"url(data:image/svg+xml,"+escape(k.join(""))+") no-repeat border-box border-box");h&&a.parent.ab()},a);h=1},Dd:function(){var a={};return function(b,c,d){var e=a[b],g;if(!e){e=new Image;g=doc.createElement("canvas");e.src=b;g.width=c;g.height=d;g.getContext("2d").drawImage(e,0,0);e=a[b]=g.toDataURL()}return e}}(),Ea:f.Tb.prototype.Ea,m:function(){var a=\r
+this.e.runtimeStyle;this.parent.gb(this.ua);a.borderColor=a.borderStyle=a.borderWidth=""}});f.kb=function(){function a(l,q){l.className+=" "+q}function b(l){var q=v.slice.call(arguments,1),s=q.length;setTimeout(function(){if(l)for(;s--;)a(l,q[s])},0)}function c(l){var q=v.slice.call(arguments,1),s=q.length;setTimeout(function(){if(l)for(;s--;){var o=q[s];o=t[o]||(t[o]=new RegExp("\\b"+o+"\\b","g"));l.className=l.className.replace(o,"")}},0)}function d(l){function q(){if(!U){var w,A,L=f.ja,T=l.currentStyle,\r
+N=T.getAttribute(g)==="true",da=T.getAttribute(i)!=="false",ea=T.getAttribute(h)!=="false";S=T.getAttribute(j);S=L>7?S!=="false":S==="true";if(!R){R=1;l.runtimeStyle.zoom=1;T=l;for(var fa=1;T=T.previousSibling;)if(T.nodeType===1){fa=0;break}fa&&a(l,p)}J.cb();if(N&&(A=J.o())&&(w=doc.documentElement||doc.body)&&(A.y>w.clientHeight||A.x>w.clientWidth||A.y+A.f<0||A.x+A.h<0)){if(!Y){Y=1;f.mb.ba(q)}}else{U=1;Y=R=0;f.mb.Ha(q);if(L===9){G={C:new f.Sb(l),q:new f.Ub(l),w:new f.Vb(l)};Q=[G.C,G.q];K=new f.Oc(l,\r
+J,G);w=[new f.Mc(l,J,G,K),new f.Nc(l,J,G,K)]}else{G={C:new f.Sb(l),w:new f.Vb(l),q:new f.Ub(l),G:new f.jb(l),ga:new f.Ic(l),Pb:new f.Uc(l)};Q=[G.C,G.w,G.q,G.G,G.ga,G.Pb];K=new f.Rc(l,J,G);w=[new f.Hc(l,J,G,K),new f.Fc(l,J,G,K),new f.Gc(l,J,G,K),new f.Tb(l,J,G,K)];l.tagName==="IMG"&&w.push(new f.Pc(l,J,G,K));K.ed=w}I=[K].concat(w);if(w=l.currentStyle.getAttribute(f.F+"watch-ancestors")){w=parseInt(w,10);A=0;for(N=l.parentNode;N&&(w==="NaN"||A++<w);){H(N,"onpropertychange",C);H(N,"onmouseenter",x);\r
+H(N,"onmouseleave",y);H(N,"onmousedown",z);if(N.tagName in f.fc){H(N,"onfocus",E);H(N,"onblur",D)}N=N.parentNode}}if(S){f.Oa.ba(o);f.Oa.Rd()}o(1)}if(!V){V=1;L<9&&H(l,"onmove",s);H(l,"onresize",s);H(l,"onpropertychange",u);ea&&H(l,"onmouseenter",x);if(ea||da)H(l,"onmouseleave",y);da&&H(l,"onmousedown",z);if(l.tagName in f.fc){H(l,"onfocus",E);H(l,"onblur",D)}f.Qa.ba(s);f.L.ba(M)}J.hb()}}function s(){J&&J.Ad()&&o()}function o(w){if(!X)if(U){var A,L=I.length;F();for(A=0;A<L;A++)I[A].Ea();if(w||J.Od())for(A=\r
+0;A<L;A++)I[A].ib();if(w||J.Td())for(A=0;A<L;A++)I[A].Mb();K.ab();O()}else R||q()}function u(){var w,A=I.length,L;w=event;if(!X&&!(w&&w.propertyName in r))if(U){F();for(w=0;w<A;w++)I[w].Ea();for(w=0;w<A;w++){L=I[w];L.Cb||L.ib();L.Q()&&L.Lb()}K.ab();O()}else R||q()}function x(){b(l,k)}function y(){c(l,k,n)}function z(){b(l,n);f.lb.ba(B)}function B(){c(l,n);f.lb.Ha(B)}function E(){b(l,m)}function D(){c(l,m)}function C(){var w=event.propertyName;if(w==="className"||w==="id")u()}function F(){J.cb();for(var w=\r
+Q.length;w--;)Q[w].cb()}function O(){for(var w=Q.length;w--;)Q[w].hb();J.hb()}function H(w,A,L){w.attachEvent(A,L);W.push([w,A,L])}function M(){if(V){for(var w=W.length,A;w--;){A=W[w];A[0].detachEvent(A[1],A[2])}f.L.Ha(M);V=0;W=[]}}function P(){if(!X){var w,A;M();X=1;if(I){w=0;for(A=I.length;w<A;w++){I[w].ec=1;I[w].m()}}S&&f.Oa.Ha(o);f.Qa.Ha(o);I=J=G=Q=l=null}}var I,K,J=new ha(l),G,Q,R,U,V,W=[],Y,X,S;this.Ed=q;this.update=o;this.m=P;this.qd=l}var e={},g=f.F+"lazy-init",j=f.F+"poll",i=f.F+"track-active",\r
+h=f.F+"track-hover",k=f.La+"hover",n=f.La+"active",m=f.La+"focus",p=f.La+"first-child",r={background:1,bgColor:1,display:1},t={},v=[];d.yd=function(l){var q=f.p.Ba(l);return e[q]||(e[q]=new d(l))};d.m=function(l){l=f.p.Ba(l);var q=e[l];if(q){q.m();delete e[l]}};d.md=function(){var l=[],q;if(e){for(var s in e)if(e.hasOwnProperty(s)){q=e[s];l.push(q.qd);q.m()}e={}}return l};return d}();f.supportsVML=f.zc;f.attach=function(a){f.ja<10&&f.zc&&f.kb.yd(a).Ed()};f.detach=function(a){f.kb.m(a)}};\r
+})();
\ No newline at end of file
--- /dev/null
+<?php\r
+/*\r
+This file is a wrapper, for use in PHP environments, which serves PIE.htc using the\r
+correct content-type, so that IE will recognize it as a behavior. Simply specify the\r
+behavior property to fetch this .php file instead of the .htc directly:\r
+\r
+.myElement {\r
+ [ ...css3 properties... ]\r
+ behavior: url(PIE.php);\r
+}\r
+\r
+This is only necessary when the web server is not configured to serve .htc files with\r
+the text/x-component content-type, and cannot easily be configured to do so (as is the\r
+case with some shared hosting providers).\r
+*/\r
+\r
+header( 'Content-type: text/x-component' );\r
+include( 'PIE.htc' );\r
+?>
\ No newline at end of file
--- /dev/null
+<!--
+PIE: CSS3 rendering for IE
+Version 1.0.0
+http://css3pie.com
+Dual-licensed for use under the Apache License Version 2.0 or the General Public License (GPL) Version 2.
+-->
+<PUBLIC:COMPONENT lightWeight="true">
+<!-- saved from url=(0014)about:internet -->
+<PUBLIC:ATTACH EVENT="oncontentready" FOR="element" ONEVENT="init()" />
+<PUBLIC:ATTACH EVENT="ondocumentready" FOR="element" ONEVENT="init()" />
+<PUBLIC:ATTACH EVENT="ondetach" FOR="element" ONEVENT="cleanup()" />
+
+<script type="text/javascript">
+var doc = element.document;var PIE = window['PIE'];
+
+if( !PIE ) {
+ PIE = window['PIE'] = {
+ CSS_PREFIX: '-pie-',
+ STYLE_PREFIX: 'Pie',
+ CLASS_PREFIX: 'pie_',
+ tableCellTags: {
+ 'TD': 1,
+ 'TH': 1
+ },
+
+ /**
+ * Lookup table of elements which cannot take custom children.
+ */
+ childlessElements: {
+ 'TABLE':1,
+ 'THEAD':1,
+ 'TBODY':1,
+ 'TFOOT':1,
+ 'TR':1,
+ 'INPUT':1,
+ 'TEXTAREA':1,
+ 'SELECT':1,
+ 'OPTION':1,
+ 'IMG':1,
+ 'HR':1
+ },
+
+ /**
+ * Elements that can receive user focus
+ */
+ focusableElements: {
+ 'A':1,
+ 'INPUT':1,
+ 'TEXTAREA':1,
+ 'SELECT':1,
+ 'BUTTON':1
+ },
+
+ /**
+ * Values of the type attribute for input elements displayed as buttons
+ */
+ inputButtonTypes: {
+ 'submit':1,
+ 'button':1,
+ 'reset':1
+ },
+
+ emptyFn: function() {}
+ };
+
+ // Force the background cache to be used. No reason it shouldn't be.
+ try {
+ doc.execCommand( 'BackgroundImageCache', false, true );
+ } catch(e) {}
+
+ (function() {
+ /*
+ * IE version detection approach by James Padolsey, with modifications -- from
+ * http://james.padolsey.com/javascript/detect-ie-in-js-using-conditional-comments/
+ */
+ var ieVersion = 4,
+ div = doc.createElement('div'),
+ all = div.getElementsByTagName('i'),
+ shape;
+ while (
+ div.innerHTML = '<!--[if gt IE ' + (++ieVersion) + ']><i></i><![endif]-->',
+ all[0]
+ ) {}
+ PIE.ieVersion = ieVersion;
+
+ // Detect IE6
+ if( ieVersion === 6 ) {
+ // IE6 can't access properties with leading dash, but can without it.
+ PIE.CSS_PREFIX = PIE.CSS_PREFIX.replace( /^-/, '' );
+ }
+
+ PIE.ieDocMode = doc.documentMode || PIE.ieVersion;
+
+ // Detect VML support (a small number of IE installs don't have a working VML engine)
+ div.innerHTML = '<v:shape adj="1"/>';
+ shape = div.firstChild;
+ shape.style['behavior'] = 'url(#default#VML)';
+ PIE.supportsVML = (typeof shape['adj'] === "object");
+ }());
+/**
+ * Utility functions
+ */
+(function() {
+ var vmlCreatorDoc,
+ idNum = 0,
+ imageSizes = {};
+
+
+ PIE.Util = {
+
+ /**
+ * To create a VML element, it must be created by a Document which has the VML
+ * namespace set. Unfortunately, if you try to add the namespace programatically
+ * into the main document, you will get an "Unspecified error" when trying to
+ * access document.namespaces before the document is finished loading. To get
+ * around this, we create a DocumentFragment, which in IE land is apparently a
+ * full-fledged Document. It allows adding namespaces immediately, so we add the
+ * namespace there and then have it create the VML element.
+ * @param {string} tag The tag name for the VML element
+ * @return {Element} The new VML element
+ */
+ createVmlElement: function( tag ) {
+ var vmlPrefix = 'css3vml';
+ if( !vmlCreatorDoc ) {
+ vmlCreatorDoc = doc.createDocumentFragment();
+ vmlCreatorDoc.namespaces.add( vmlPrefix, 'urn:schemas-microsoft-com:vml' );
+ }
+ return vmlCreatorDoc.createElement( vmlPrefix + ':' + tag );
+ },
+
+
+ /**
+ * Generate and return a unique ID for a given object. The generated ID is stored
+ * as a property of the object for future reuse.
+ * @param {Object} obj
+ */
+ getUID: function( obj ) {
+ return obj && obj[ '_pieId' ] || ( obj[ '_pieId' ] = '_' + ++idNum );
+ },
+
+
+ /**
+ * Simple utility for merging objects
+ * @param {Object} obj1 The main object into which all others will be merged
+ * @param {...Object} var_args Other objects which will be merged into the first, in order
+ */
+ merge: function( obj1 ) {
+ var i, len, p, objN, args = arguments;
+ for( i = 1, len = args.length; i < len; i++ ) {
+ objN = args[i];
+ for( p in objN ) {
+ if( objN.hasOwnProperty( p ) ) {
+ obj1[ p ] = objN[ p ];
+ }
+ }
+ }
+ return obj1;
+ },
+
+
+ /**
+ * Execute a callback function, passing it the dimensions of a given image once
+ * they are known.
+ * @param {string} src The source URL of the image
+ * @param {function({w:number, h:number})} func The callback function to be called once the image dimensions are known
+ * @param {Object} ctx A context object which will be used as the 'this' value within the executed callback function
+ */
+ withImageSize: function( src, func, ctx ) {
+ var size = imageSizes[ src ], img, queue;
+ if( size ) {
+ // If we have a queue, add to it
+ if( Object.prototype.toString.call( size ) === '[object Array]' ) {
+ size.push( [ func, ctx ] );
+ }
+ // Already have the size cached, call func right away
+ else {
+ func.call( ctx, size );
+ }
+ } else {
+ queue = imageSizes[ src ] = [ [ func, ctx ] ]; //create queue
+ img = new Image();
+ img.onload = function() {
+ size = imageSizes[ src ] = { w: img.width, h: img.height };
+ for( var i = 0, len = queue.length; i < len; i++ ) {
+ queue[ i ][ 0 ].call( queue[ i ][ 1 ], size );
+ }
+ img.onload = null;
+ };
+ img.src = src;
+ }
+ }
+ };
+})();/**
+ * Utility functions for handling gradients
+ */
+PIE.GradientUtil = {
+
+ getGradientMetrics: function( el, width, height, gradientInfo ) {
+ var angle = gradientInfo.angle,
+ startPos = gradientInfo.gradientStart,
+ startX, startY,
+ endX, endY,
+ startCornerX, startCornerY,
+ endCornerX, endCornerY,
+ deltaX, deltaY,
+ p, UNDEF;
+
+ // Find the "start" and "end" corners; these are the corners furthest along the gradient line.
+ // This is used below to find the start/end positions of the CSS3 gradient-line, and also in finding
+ // the total length of the VML rendered gradient-line corner to corner.
+ function findCorners() {
+ startCornerX = ( angle >= 90 && angle < 270 ) ? width : 0;
+ startCornerY = angle < 180 ? height : 0;
+ endCornerX = width - startCornerX;
+ endCornerY = height - startCornerY;
+ }
+
+ // Normalize the angle to a value between [0, 360)
+ function normalizeAngle() {
+ while( angle < 0 ) {
+ angle += 360;
+ }
+ angle = angle % 360;
+ }
+
+ // Find the start and end points of the gradient
+ if( startPos ) {
+ startPos = startPos.coords( el, width, height );
+ startX = startPos.x;
+ startY = startPos.y;
+ }
+ if( angle ) {
+ angle = angle.degrees();
+
+ normalizeAngle();
+ findCorners();
+
+ // If no start position was specified, then choose a corner as the starting point.
+ if( !startPos ) {
+ startX = startCornerX;
+ startY = startCornerY;
+ }
+
+ // Find the end position by extending a perpendicular line from the gradient-line which
+ // intersects the corner opposite from the starting corner.
+ p = PIE.GradientUtil.perpendicularIntersect( startX, startY, angle, endCornerX, endCornerY );
+ endX = p[0];
+ endY = p[1];
+ }
+ else if( startPos ) {
+ // Start position but no angle specified: find the end point by rotating 180deg around the center
+ endX = width - startX;
+ endY = height - startY;
+ }
+ else {
+ // Neither position nor angle specified; create vertical gradient from top to bottom
+ startX = startY = endX = 0;
+ endY = height;
+ }
+ deltaX = endX - startX;
+ deltaY = endY - startY;
+
+ if( angle === UNDEF ) {
+ // Get the angle based on the change in x/y from start to end point. Checks first for horizontal
+ // or vertical angles so they get exact whole numbers rather than what atan2 gives.
+ angle = ( !deltaX ? ( deltaY < 0 ? 90 : 270 ) :
+ ( !deltaY ? ( deltaX < 0 ? 180 : 0 ) :
+ -Math.atan2( deltaY, deltaX ) / Math.PI * 180
+ )
+ );
+ normalizeAngle();
+ findCorners();
+ }
+
+ return {
+ angle: angle,
+ startX: startX,
+ startY: startY,
+ endX: endX,
+ endY: endY,
+ startCornerX: startCornerX,
+ startCornerY: startCornerY,
+ endCornerX: endCornerX,
+ endCornerY: endCornerY,
+ deltaX: deltaX,
+ deltaY: deltaY,
+ lineLength: PIE.GradientUtil.distance( startX, startY, endX, endY )
+ }
+ },
+
+ /**
+ * Find the point along a given line (defined by a starting point and an angle), at which
+ * that line is intersected by a perpendicular line extending through another point.
+ * @param x1 - x coord of the starting point
+ * @param y1 - y coord of the starting point
+ * @param angle - angle of the line extending from the starting point (in degrees)
+ * @param x2 - x coord of point along the perpendicular line
+ * @param y2 - y coord of point along the perpendicular line
+ * @return [ x, y ]
+ */
+ perpendicularIntersect: function( x1, y1, angle, x2, y2 ) {
+ // Handle straight vertical and horizontal angles, for performance and to avoid
+ // divide-by-zero errors.
+ if( angle === 0 || angle === 180 ) {
+ return [ x2, y1 ];
+ }
+ else if( angle === 90 || angle === 270 ) {
+ return [ x1, y2 ];
+ }
+ else {
+ // General approach: determine the Ax+By=C formula for each line (the slope of the second
+ // line is the negative inverse of the first) and then solve for where both formulas have
+ // the same x/y values.
+ var a1 = Math.tan( -angle * Math.PI / 180 ),
+ c1 = a1 * x1 - y1,
+ a2 = -1 / a1,
+ c2 = a2 * x2 - y2,
+ d = a2 - a1,
+ endX = ( c2 - c1 ) / d,
+ endY = ( a1 * c2 - a2 * c1 ) / d;
+ return [ endX, endY ];
+ }
+ },
+
+ /**
+ * Find the distance between two points
+ * @param {Number} p1x
+ * @param {Number} p1y
+ * @param {Number} p2x
+ * @param {Number} p2y
+ * @return {Number} the distance
+ */
+ distance: function( p1x, p1y, p2x, p2y ) {
+ var dx = p2x - p1x,
+ dy = p2y - p1y;
+ return Math.abs(
+ dx === 0 ? dy :
+ dy === 0 ? dx :
+ Math.sqrt( dx * dx + dy * dy )
+ );
+ }
+
+};/**
+ *
+ */
+PIE.Observable = function() {
+ /**
+ * List of registered observer functions
+ */
+ this.observers = [];
+
+ /**
+ * Hash of function ids to their position in the observers list, for fast lookup
+ */
+ this.indexes = {};
+};
+PIE.Observable.prototype = {
+
+ observe: function( fn ) {
+ var id = PIE.Util.getUID( fn ),
+ indexes = this.indexes,
+ observers = this.observers;
+ if( !( id in indexes ) ) {
+ indexes[ id ] = observers.length;
+ observers.push( fn );
+ }
+ },
+
+ unobserve: function( fn ) {
+ var id = PIE.Util.getUID( fn ),
+ indexes = this.indexes;
+ if( id && id in indexes ) {
+ delete this.observers[ indexes[ id ] ];
+ delete indexes[ id ];
+ }
+ },
+
+ fire: function() {
+ var o = this.observers,
+ i = o.length;
+ while( i-- ) {
+ o[ i ] && o[ i ]();
+ }
+ }
+
+};/*
+ * Simple heartbeat timer - this is a brute-force workaround for syncing issues caused by IE not
+ * always firing the onmove and onresize events when elements are moved or resized. We check a few
+ * times every second to make sure the elements have the correct position and size. See Element.js
+ * which adds heartbeat listeners based on the custom -pie-poll flag, which defaults to true in IE8-9
+ * and false elsewhere.
+ */
+
+PIE.Heartbeat = new PIE.Observable();
+PIE.Heartbeat.run = function() {
+ var me = this,
+ interval;
+ if( !me.running ) {
+ interval = doc.documentElement.currentStyle.getAttribute( PIE.CSS_PREFIX + 'poll-interval' ) || 250;
+ (function beat() {
+ me.fire();
+ setTimeout(beat, interval);
+ })();
+ me.running = 1;
+ }
+};
+/**
+ * Create an observable listener for the onunload event
+ */
+(function() {
+ PIE.OnUnload = new PIE.Observable();
+
+ function handleUnload() {
+ PIE.OnUnload.fire();
+ window.detachEvent( 'onunload', handleUnload );
+ window[ 'PIE' ] = null;
+ }
+
+ window.attachEvent( 'onunload', handleUnload );
+
+ /**
+ * Attach an event which automatically gets detached onunload
+ */
+ PIE.OnUnload.attachManagedEvent = function( target, name, handler ) {
+ target.attachEvent( name, handler );
+ this.observe( function() {
+ target.detachEvent( name, handler );
+ } );
+ };
+})()/**
+ * Create a single observable listener for window resize events.
+ */
+PIE.OnResize = new PIE.Observable();
+
+PIE.OnUnload.attachManagedEvent( window, 'onresize', function() { PIE.OnResize.fire(); } );
+/**
+ * Create a single observable listener for scroll events. Used for lazy loading based
+ * on the viewport, and for fixed position backgrounds.
+ */
+(function() {
+ PIE.OnScroll = new PIE.Observable();
+
+ function scrolled() {
+ PIE.OnScroll.fire();
+ }
+
+ PIE.OnUnload.attachManagedEvent( window, 'onscroll', scrolled );
+
+ PIE.OnResize.observe( scrolled );
+})();
+/**
+ * Listen for printing events, destroy all active PIE instances when printing, and
+ * restore them afterward.
+ */
+(function() {
+
+ var elements;
+
+ function beforePrint() {
+ elements = PIE.Element.destroyAll();
+ }
+
+ function afterPrint() {
+ if( elements ) {
+ for( var i = 0, len = elements.length; i < len; i++ ) {
+ PIE[ 'attach' ]( elements[i] );
+ }
+ elements = 0;
+ }
+ }
+
+ if( PIE.ieDocMode < 9 ) {
+ PIE.OnUnload.attachManagedEvent( window, 'onbeforeprint', beforePrint );
+ PIE.OnUnload.attachManagedEvent( window, 'onafterprint', afterPrint );
+ }
+
+})();/**
+ * Create a single observable listener for document mouseup events.
+ */
+PIE.OnMouseup = new PIE.Observable();
+
+PIE.OnUnload.attachManagedEvent( doc, 'onmouseup', function() { PIE.OnMouseup.fire(); } );
+/**
+ * Wrapper for length and percentage style values. The value is immutable. A singleton instance per unique
+ * value is returned from PIE.getLength() - always use that instead of instantiating directly.
+ * @constructor
+ * @param {string} val The CSS string representing the length. It is assumed that this will already have
+ * been validated as a valid length or percentage syntax.
+ */
+PIE.Length = (function() {
+ var lengthCalcEl = doc.createElement( 'length-calc' ),
+ parent = doc.body || doc.documentElement,
+ s = lengthCalcEl.style,
+ conversions = {},
+ units = [ 'mm', 'cm', 'in', 'pt', 'pc' ],
+ i = units.length,
+ instances = {};
+
+ s.position = 'absolute';
+ s.top = s.left = '-9999px';
+
+ parent.appendChild( lengthCalcEl );
+ while( i-- ) {
+ s.width = '100' + units[i];
+ conversions[ units[i] ] = lengthCalcEl.offsetWidth / 100;
+ }
+ parent.removeChild( lengthCalcEl );
+
+ // All calcs from here on will use 1em
+ s.width = '1em';
+
+
+ function Length( val ) {
+ this.val = val;
+ }
+ Length.prototype = {
+ /**
+ * Regular expression for matching the length unit
+ * @private
+ */
+ unitRE: /(px|em|ex|mm|cm|in|pt|pc|%)$/,
+
+ /**
+ * Get the numeric value of the length
+ * @return {number} The value
+ */
+ getNumber: function() {
+ var num = this.num,
+ UNDEF;
+ if( num === UNDEF ) {
+ num = this.num = parseFloat( this.val );
+ }
+ return num;
+ },
+
+ /**
+ * Get the unit of the length
+ * @return {string} The unit
+ */
+ getUnit: function() {
+ var unit = this.unit,
+ m;
+ if( !unit ) {
+ m = this.val.match( this.unitRE );
+ unit = this.unit = ( m && m[0] ) || 'px';
+ }
+ return unit;
+ },
+
+ /**
+ * Determine whether this is a percentage length value
+ * @return {boolean}
+ */
+ isPercentage: function() {
+ return this.getUnit() === '%';
+ },
+
+ /**
+ * Resolve this length into a number of pixels.
+ * @param {Element} el - the context element, used to resolve font-relative values
+ * @param {(function():number|number)=} pct100 - the number of pixels that equal a 100% percentage. This can be either a number or a
+ * function which will be called to return the number.
+ */
+ pixels: function( el, pct100 ) {
+ var num = this.getNumber(),
+ unit = this.getUnit();
+ switch( unit ) {
+ case "px":
+ return num;
+ case "%":
+ return num * ( typeof pct100 === 'function' ? pct100() : pct100 ) / 100;
+ case "em":
+ return num * this.getEmPixels( el );
+ case "ex":
+ return num * this.getEmPixels( el ) / 2;
+ default:
+ return num * conversions[ unit ];
+ }
+ },
+
+ /**
+ * The em and ex units are relative to the font-size of the current element,
+ * however if the font-size is set using non-pixel units then we get that value
+ * rather than a pixel conversion. To get around this, we keep a floating element
+ * with width:1em which we insert into the target element and then read its offsetWidth.
+ * For elements that won't accept a child we insert into the parent node and perform
+ * additional calculation. If the font-size *is* specified in pixels, then we use that
+ * directly to avoid the expensive DOM manipulation.
+ * @param {Element} el
+ * @return {number}
+ */
+ getEmPixels: function( el ) {
+ var fs = el.currentStyle.fontSize,
+ px, parent, me;
+
+ if( fs.indexOf( 'px' ) > 0 ) {
+ return parseFloat( fs );
+ }
+ else if( el.tagName in PIE.childlessElements ) {
+ me = this;
+ parent = el.parentNode;
+ return PIE.getLength( fs ).pixels( parent, function() {
+ return me.getEmPixels( parent );
+ } );
+ }
+ else {
+ el.appendChild( lengthCalcEl );
+ px = lengthCalcEl.offsetWidth;
+ if( lengthCalcEl.parentNode === el ) { //not sure how this could be false but it sometimes is
+ el.removeChild( lengthCalcEl );
+ }
+ return px;
+ }
+ }
+ };
+
+
+ /**
+ * Retrieve a PIE.Length instance for the given value. A shared singleton instance is returned for each unique value.
+ * @param {string} val The CSS string representing the length. It is assumed that this will already have
+ * been validated as a valid length or percentage syntax.
+ */
+ PIE.getLength = function( val ) {
+ return instances[ val ] || ( instances[ val ] = new Length( val ) );
+ };
+
+ return Length;
+})();
+/**
+ * Wrapper for a CSS3 bg-position value. Takes up to 2 position keywords and 2 lengths/percentages.
+ * @constructor
+ * @param {Array.<PIE.Tokenizer.Token>} tokens The tokens making up the background position value.
+ */
+PIE.BgPosition = (function() {
+
+ var length_fifty = PIE.getLength( '50%' ),
+ vert_idents = { 'top': 1, 'center': 1, 'bottom': 1 },
+ horiz_idents = { 'left': 1, 'center': 1, 'right': 1 };
+
+
+ function BgPosition( tokens ) {
+ this.tokens = tokens;
+ }
+ BgPosition.prototype = {
+ /**
+ * Normalize the values into the form:
+ * [ xOffsetSide, xOffsetLength, yOffsetSide, yOffsetLength ]
+ * where: xOffsetSide is either 'left' or 'right',
+ * yOffsetSide is either 'top' or 'bottom',
+ * and x/yOffsetLength are both PIE.Length objects.
+ * @return {Array}
+ */
+ getValues: function() {
+ if( !this._values ) {
+ var tokens = this.tokens,
+ len = tokens.length,
+ Tokenizer = PIE.Tokenizer,
+ identType = Tokenizer.Type,
+ length_zero = PIE.getLength( '0' ),
+ type_ident = identType.IDENT,
+ type_length = identType.LENGTH,
+ type_percent = identType.PERCENT,
+ type, value,
+ vals = [ 'left', length_zero, 'top', length_zero ];
+
+ // If only one value, the second is assumed to be 'center'
+ if( len === 1 ) {
+ tokens.push( new Tokenizer.Token( type_ident, 'center' ) );
+ len++;
+ }
+
+ // Two values - CSS2
+ if( len === 2 ) {
+ // If both idents, they can appear in either order, so switch them if needed
+ if( type_ident & ( tokens[0].tokenType | tokens[1].tokenType ) &&
+ tokens[0].tokenValue in vert_idents && tokens[1].tokenValue in horiz_idents ) {
+ tokens.push( tokens.shift() );
+ }
+ if( tokens[0].tokenType & type_ident ) {
+ if( tokens[0].tokenValue === 'center' ) {
+ vals[1] = length_fifty;
+ } else {
+ vals[0] = tokens[0].tokenValue;
+ }
+ }
+ else if( tokens[0].isLengthOrPercent() ) {
+ vals[1] = PIE.getLength( tokens[0].tokenValue );
+ }
+ if( tokens[1].tokenType & type_ident ) {
+ if( tokens[1].tokenValue === 'center' ) {
+ vals[3] = length_fifty;
+ } else {
+ vals[2] = tokens[1].tokenValue;
+ }
+ }
+ else if( tokens[1].isLengthOrPercent() ) {
+ vals[3] = PIE.getLength( tokens[1].tokenValue );
+ }
+ }
+
+ // Three or four values - CSS3
+ else {
+ // TODO
+ }
+
+ this._values = vals;
+ }
+ return this._values;
+ },
+
+ /**
+ * Find the coordinates of the background image from the upper-left corner of the background area.
+ * Note that these coordinate values are not rounded.
+ * @param {Element} el
+ * @param {number} width - the width for percentages (background area width minus image width)
+ * @param {number} height - the height for percentages (background area height minus image height)
+ * @return {Object} { x: Number, y: Number }
+ */
+ coords: function( el, width, height ) {
+ var vals = this.getValues(),
+ pxX = vals[1].pixels( el, width ),
+ pxY = vals[3].pixels( el, height );
+
+ return {
+ x: vals[0] === 'right' ? width - pxX : pxX,
+ y: vals[2] === 'bottom' ? height - pxY : pxY
+ };
+ }
+ };
+
+ return BgPosition;
+})();
+/**
+ * Wrapper for a CSS3 background-size value.
+ * @constructor
+ * @param {String|PIE.Length} w The width parameter
+ * @param {String|PIE.Length} h The height parameter, if any
+ */
+PIE.BgSize = (function() {
+
+ var CONTAIN = 'contain',
+ COVER = 'cover',
+ AUTO = 'auto';
+
+
+ function BgSize( w, h ) {
+ this.w = w;
+ this.h = h;
+ }
+ BgSize.prototype = {
+
+ pixels: function( el, areaW, areaH, imgW, imgH ) {
+ var me = this,
+ w = me.w,
+ h = me.h,
+ areaRatio = areaW / areaH,
+ imgRatio = imgW / imgH;
+
+ if ( w === CONTAIN ) {
+ w = imgRatio > areaRatio ? areaW : areaH * imgRatio;
+ h = imgRatio > areaRatio ? areaW / imgRatio : areaH;
+ }
+ else if ( w === COVER ) {
+ w = imgRatio < areaRatio ? areaW : areaH * imgRatio;
+ h = imgRatio < areaRatio ? areaW / imgRatio : areaH;
+ }
+ else if ( w === AUTO ) {
+ h = ( h === AUTO ? imgH : h.pixels( el, areaH ) );
+ w = h * imgRatio;
+ }
+ else {
+ w = w.pixels( el, areaW );
+ h = ( h === AUTO ? w / imgRatio : h.pixels( el, areaH ) );
+ }
+
+ return { w: w, h: h };
+ }
+
+ };
+
+ BgSize.DEFAULT = new BgSize( AUTO, AUTO );
+
+ return BgSize;
+})();
+/**
+ * Wrapper for angle values; handles conversion to degrees from all allowed angle units
+ * @constructor
+ * @param {string} val The raw CSS value for the angle. It is assumed it has been pre-validated.
+ */
+PIE.Angle = (function() {
+ function Angle( val ) {
+ this.val = val;
+ }
+ Angle.prototype = {
+ unitRE: /[a-z]+$/i,
+
+ /**
+ * @return {string} The unit of the angle value
+ */
+ getUnit: function() {
+ return this._unit || ( this._unit = this.val.match( this.unitRE )[0].toLowerCase() );
+ },
+
+ /**
+ * Get the numeric value of the angle in degrees.
+ * @return {number} The degrees value
+ */
+ degrees: function() {
+ var deg = this._deg, u, n;
+ if( deg === undefined ) {
+ u = this.getUnit();
+ n = parseFloat( this.val, 10 );
+ deg = this._deg = ( u === 'deg' ? n : u === 'rad' ? n / Math.PI * 180 : u === 'grad' ? n / 400 * 360 : u === 'turn' ? n * 360 : 0 );
+ }
+ return deg;
+ }
+ };
+
+ return Angle;
+})();/**
+ * Abstraction for colors values. Allows detection of rgba values. A singleton instance per unique
+ * value is returned from PIE.getColor() - always use that instead of instantiating directly.
+ * @constructor
+ * @param {string} val The raw CSS string value for the color
+ */
+PIE.Color = (function() {
+ var instances = {};
+
+ function Color( val ) {
+ this.val = val;
+ }
+
+ /**
+ * Regular expression for matching rgba colors and extracting their components
+ * @type {RegExp}
+ */
+ Color.rgbaRE = /\s*rgba\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d+|\d*\.\d+)\s*\)\s*/;
+
+ Color.names = {
+ "aliceblue":"F0F8FF", "antiquewhite":"FAEBD7", "aqua":"0FF",
+ "aquamarine":"7FFFD4", "azure":"F0FFFF", "beige":"F5F5DC",
+ "bisque":"FFE4C4", "black":"000", "blanchedalmond":"FFEBCD",
+ "blue":"00F", "blueviolet":"8A2BE2", "brown":"A52A2A",
+ "burlywood":"DEB887", "cadetblue":"5F9EA0", "chartreuse":"7FFF00",
+ "chocolate":"D2691E", "coral":"FF7F50", "cornflowerblue":"6495ED",
+ "cornsilk":"FFF8DC", "crimson":"DC143C", "cyan":"0FF",
+ "darkblue":"00008B", "darkcyan":"008B8B", "darkgoldenrod":"B8860B",
+ "darkgray":"A9A9A9", "darkgreen":"006400", "darkkhaki":"BDB76B",
+ "darkmagenta":"8B008B", "darkolivegreen":"556B2F", "darkorange":"FF8C00",
+ "darkorchid":"9932CC", "darkred":"8B0000", "darksalmon":"E9967A",
+ "darkseagreen":"8FBC8F", "darkslateblue":"483D8B", "darkslategray":"2F4F4F",
+ "darkturquoise":"00CED1", "darkviolet":"9400D3", "deeppink":"FF1493",
+ "deepskyblue":"00BFFF", "dimgray":"696969", "dodgerblue":"1E90FF",
+ "firebrick":"B22222", "floralwhite":"FFFAF0", "forestgreen":"228B22",
+ "fuchsia":"F0F", "gainsboro":"DCDCDC", "ghostwhite":"F8F8FF",
+ "gold":"FFD700", "goldenrod":"DAA520", "gray":"808080",
+ "green":"008000", "greenyellow":"ADFF2F", "honeydew":"F0FFF0",
+ "hotpink":"FF69B4", "indianred":"CD5C5C", "indigo":"4B0082",
+ "ivory":"FFFFF0", "khaki":"F0E68C", "lavender":"E6E6FA",
+ "lavenderblush":"FFF0F5", "lawngreen":"7CFC00", "lemonchiffon":"FFFACD",
+ "lightblue":"ADD8E6", "lightcoral":"F08080", "lightcyan":"E0FFFF",
+ "lightgoldenrodyellow":"FAFAD2", "lightgreen":"90EE90", "lightgrey":"D3D3D3",
+ "lightpink":"FFB6C1", "lightsalmon":"FFA07A", "lightseagreen":"20B2AA",
+ "lightskyblue":"87CEFA", "lightslategray":"789", "lightsteelblue":"B0C4DE",
+ "lightyellow":"FFFFE0", "lime":"0F0", "limegreen":"32CD32",
+ "linen":"FAF0E6", "magenta":"F0F", "maroon":"800000",
+ "mediumauqamarine":"66CDAA", "mediumblue":"0000CD", "mediumorchid":"BA55D3",
+ "mediumpurple":"9370D8", "mediumseagreen":"3CB371", "mediumslateblue":"7B68EE",
+ "mediumspringgreen":"00FA9A", "mediumturquoise":"48D1CC", "mediumvioletred":"C71585",
+ "midnightblue":"191970", "mintcream":"F5FFFA", "mistyrose":"FFE4E1",
+ "moccasin":"FFE4B5", "navajowhite":"FFDEAD", "navy":"000080",
+ "oldlace":"FDF5E6", "olive":"808000", "olivedrab":"688E23",
+ "orange":"FFA500", "orangered":"FF4500", "orchid":"DA70D6",
+ "palegoldenrod":"EEE8AA", "palegreen":"98FB98", "paleturquoise":"AFEEEE",
+ "palevioletred":"D87093", "papayawhip":"FFEFD5", "peachpuff":"FFDAB9",
+ "peru":"CD853F", "pink":"FFC0CB", "plum":"DDA0DD",
+ "powderblue":"B0E0E6", "purple":"800080", "red":"F00",
+ "rosybrown":"BC8F8F", "royalblue":"4169E1", "saddlebrown":"8B4513",
+ "salmon":"FA8072", "sandybrown":"F4A460", "seagreen":"2E8B57",
+ "seashell":"FFF5EE", "sienna":"A0522D", "silver":"C0C0C0",
+ "skyblue":"87CEEB", "slateblue":"6A5ACD", "slategray":"708090",
+ "snow":"FFFAFA", "springgreen":"00FF7F", "steelblue":"4682B4",
+ "tan":"D2B48C", "teal":"008080", "thistle":"D8BFD8",
+ "tomato":"FF6347", "turquoise":"40E0D0", "violet":"EE82EE",
+ "wheat":"F5DEB3", "white":"FFF", "whitesmoke":"F5F5F5",
+ "yellow":"FF0", "yellowgreen":"9ACD32"
+ };
+
+ Color.prototype = {
+ /**
+ * @private
+ */
+ parse: function() {
+ if( !this._color ) {
+ var me = this,
+ v = me.val,
+ vLower,
+ m = v.match( Color.rgbaRE );
+ if( m ) {
+ me._color = 'rgb(' + m[1] + ',' + m[2] + ',' + m[3] + ')';
+ me._alpha = parseFloat( m[4] );
+ }
+ else {
+ if( ( vLower = v.toLowerCase() ) in Color.names ) {
+ v = '#' + Color.names[vLower];
+ }
+ me._color = v;
+ me._alpha = ( v === 'transparent' ? 0 : 1 );
+ }
+ }
+ },
+
+ /**
+ * Retrieve the value of the color in a format usable by IE natively. This will be the same as
+ * the raw input value, except for rgba values which will be converted to an rgb value.
+ * @param {Element} el The context element, used to get 'currentColor' keyword value.
+ * @return {string} Color value
+ */
+ colorValue: function( el ) {
+ this.parse();
+ return this._color === 'currentColor' ? el.currentStyle.color : this._color;
+ },
+
+ /**
+ * Retrieve the alpha value of the color. Will be 1 for all values except for rgba values
+ * with an alpha component.
+ * @return {number} The alpha value, from 0 to 1.
+ */
+ alpha: function() {
+ this.parse();
+ return this._alpha;
+ }
+ };
+
+
+ /**
+ * Retrieve a PIE.Color instance for the given value. A shared singleton instance is returned for each unique value.
+ * @param {string} val The CSS string representing the color. It is assumed that this will already have
+ * been validated as a valid color syntax.
+ */
+ PIE.getColor = function(val) {
+ return instances[ val ] || ( instances[ val ] = new Color( val ) );
+ };
+
+ return Color;
+})();/**
+ * A tokenizer for CSS value strings.
+ * @constructor
+ * @param {string} css The CSS value string
+ */
+PIE.Tokenizer = (function() {
+ function Tokenizer( css ) {
+ this.css = css;
+ this.ch = 0;
+ this.tokens = [];
+ this.tokenIndex = 0;
+ }
+
+ /**
+ * Enumeration of token type constants.
+ * @enum {number}
+ */
+ var Type = Tokenizer.Type = {
+ ANGLE: 1,
+ CHARACTER: 2,
+ COLOR: 4,
+ DIMEN: 8,
+ FUNCTION: 16,
+ IDENT: 32,
+ LENGTH: 64,
+ NUMBER: 128,
+ OPERATOR: 256,
+ PERCENT: 512,
+ STRING: 1024,
+ URL: 2048
+ };
+
+ /**
+ * A single token
+ * @constructor
+ * @param {number} type The type of the token - see PIE.Tokenizer.Type
+ * @param {string} value The value of the token
+ */
+ Tokenizer.Token = function( type, value ) {
+ this.tokenType = type;
+ this.tokenValue = value;
+ };
+ Tokenizer.Token.prototype = {
+ isLength: function() {
+ return this.tokenType & Type.LENGTH || ( this.tokenType & Type.NUMBER && this.tokenValue === '0' );
+ },
+ isLengthOrPercent: function() {
+ return this.isLength() || this.tokenType & Type.PERCENT;
+ }
+ };
+
+ Tokenizer.prototype = {
+ whitespace: /\s/,
+ number: /^[\+\-]?(\d*\.)?\d+/,
+ url: /^url\(\s*("([^"]*)"|'([^']*)'|([!#$%&*-~]*))\s*\)/i,
+ ident: /^\-?[_a-z][\w-]*/i,
+ string: /^("([^"]*)"|'([^']*)')/,
+ operator: /^[\/,]/,
+ hash: /^#[\w]+/,
+ hashColor: /^#([\da-f]{6}|[\da-f]{3})/i,
+
+ unitTypes: {
+ 'px': Type.LENGTH, 'em': Type.LENGTH, 'ex': Type.LENGTH,
+ 'mm': Type.LENGTH, 'cm': Type.LENGTH, 'in': Type.LENGTH,
+ 'pt': Type.LENGTH, 'pc': Type.LENGTH,
+ 'deg': Type.ANGLE, 'rad': Type.ANGLE, 'grad': Type.ANGLE
+ },
+
+ colorFunctions: {
+ 'rgb': 1, 'rgba': 1, 'hsl': 1, 'hsla': 1
+ },
+
+
+ /**
+ * Advance to and return the next token in the CSS string. If the end of the CSS string has
+ * been reached, null will be returned.
+ * @param {boolean} forget - if true, the token will not be stored for the purposes of backtracking with prev().
+ * @return {PIE.Tokenizer.Token}
+ */
+ next: function( forget ) {
+ var css, ch, firstChar, match, val,
+ me = this;
+
+ function newToken( type, value ) {
+ var tok = new Tokenizer.Token( type, value );
+ if( !forget ) {
+ me.tokens.push( tok );
+ me.tokenIndex++;
+ }
+ return tok;
+ }
+ function failure() {
+ me.tokenIndex++;
+ return null;
+ }
+
+ // In case we previously backed up, return the stored token in the next slot
+ if( this.tokenIndex < this.tokens.length ) {
+ return this.tokens[ this.tokenIndex++ ];
+ }
+
+ // Move past leading whitespace characters
+ while( this.whitespace.test( this.css.charAt( this.ch ) ) ) {
+ this.ch++;
+ }
+ if( this.ch >= this.css.length ) {
+ return failure();
+ }
+
+ ch = this.ch;
+ css = this.css.substring( this.ch );
+ firstChar = css.charAt( 0 );
+ switch( firstChar ) {
+ case '#':
+ if( match = css.match( this.hashColor ) ) {
+ this.ch += match[0].length;
+ return newToken( Type.COLOR, match[0] );
+ }
+ break;
+
+ case '"':
+ case "'":
+ if( match = css.match( this.string ) ) {
+ this.ch += match[0].length;
+ return newToken( Type.STRING, match[2] || match[3] || '' );
+ }
+ break;
+
+ case "/":
+ case ",":
+ this.ch++;
+ return newToken( Type.OPERATOR, firstChar );
+
+ case 'u':
+ if( match = css.match( this.url ) ) {
+ this.ch += match[0].length;
+ return newToken( Type.URL, match[2] || match[3] || match[4] || '' );
+ }
+ }
+
+ // Numbers and values starting with numbers
+ if( match = css.match( this.number ) ) {
+ val = match[0];
+ this.ch += val.length;
+
+ // Check if it is followed by a unit
+ if( css.charAt( val.length ) === '%' ) {
+ this.ch++;
+ return newToken( Type.PERCENT, val + '%' );
+ }
+ if( match = css.substring( val.length ).match( this.ident ) ) {
+ val += match[0];
+ this.ch += match[0].length;
+ return newToken( this.unitTypes[ match[0].toLowerCase() ] || Type.DIMEN, val );
+ }
+
+ // Plain ol' number
+ return newToken( Type.NUMBER, val );
+ }
+
+ // Identifiers
+ if( match = css.match( this.ident ) ) {
+ val = match[0];
+ this.ch += val.length;
+
+ // Named colors
+ if( val.toLowerCase() in PIE.Color.names || val === 'currentColor' || val === 'transparent' ) {
+ return newToken( Type.COLOR, val );
+ }
+
+ // Functions
+ if( css.charAt( val.length ) === '(' ) {
+ this.ch++;
+
+ // Color values in function format: rgb, rgba, hsl, hsla
+ if( val.toLowerCase() in this.colorFunctions ) {
+ function isNum( tok ) {
+ return tok && tok.tokenType & Type.NUMBER;
+ }
+ function isNumOrPct( tok ) {
+ return tok && ( tok.tokenType & ( Type.NUMBER | Type.PERCENT ) );
+ }
+ function isValue( tok, val ) {
+ return tok && tok.tokenValue === val;
+ }
+ function next() {
+ return me.next( 1 );
+ }
+
+ if( ( val.charAt(0) === 'r' ? isNumOrPct( next() ) : isNum( next() ) ) &&
+ isValue( next(), ',' ) &&
+ isNumOrPct( next() ) &&
+ isValue( next(), ',' ) &&
+ isNumOrPct( next() ) &&
+ ( val === 'rgb' || val === 'hsa' || (
+ isValue( next(), ',' ) &&
+ isNum( next() )
+ ) ) &&
+ isValue( next(), ')' ) ) {
+ return newToken( Type.COLOR, this.css.substring( ch, this.ch ) );
+ }
+ return failure();
+ }
+
+ return newToken( Type.FUNCTION, val );
+ }
+
+ // Other identifier
+ return newToken( Type.IDENT, val );
+ }
+
+ // Standalone character
+ this.ch++;
+ return newToken( Type.CHARACTER, firstChar );
+ },
+
+ /**
+ * Determine whether there is another token
+ * @return {boolean}
+ */
+ hasNext: function() {
+ var next = this.next();
+ this.prev();
+ return !!next;
+ },
+
+ /**
+ * Back up and return the previous token
+ * @return {PIE.Tokenizer.Token}
+ */
+ prev: function() {
+ return this.tokens[ this.tokenIndex-- - 2 ];
+ },
+
+ /**
+ * Retrieve all the tokens in the CSS string
+ * @return {Array.<PIE.Tokenizer.Token>}
+ */
+ all: function() {
+ while( this.next() ) {}
+ return this.tokens;
+ },
+
+ /**
+ * Return a list of tokens from the current position until the given function returns
+ * true. The final token will not be included in the list.
+ * @param {function():boolean} func - test function
+ * @param {boolean} require - if true, then if the end of the CSS string is reached
+ * before the test function returns true, null will be returned instead of the
+ * tokens that have been found so far.
+ * @return {Array.<PIE.Tokenizer.Token>}
+ */
+ until: function( func, require ) {
+ var list = [], t, hit;
+ while( t = this.next() ) {
+ if( func( t ) ) {
+ hit = true;
+ this.prev();
+ break;
+ }
+ list.push( t );
+ }
+ return require && !hit ? null : list;
+ }
+ };
+
+ return Tokenizer;
+})();/**
+ * Handles calculating, caching, and detecting changes to size and position of the element.
+ * @constructor
+ * @param {Element} el the target element
+ */
+PIE.BoundsInfo = function( el ) {
+ this.targetElement = el;
+};
+PIE.BoundsInfo.prototype = {
+
+ _locked: 0,
+
+ positionChanged: function() {
+ var last = this._lastBounds,
+ bounds;
+ return !last || ( ( bounds = this.getBounds() ) && ( last.x !== bounds.x || last.y !== bounds.y ) );
+ },
+
+ sizeChanged: function() {
+ var last = this._lastBounds,
+ bounds;
+ return !last || ( ( bounds = this.getBounds() ) && ( last.w !== bounds.w || last.h !== bounds.h ) );
+ },
+
+ getLiveBounds: function() {
+ var el = this.targetElement,
+ rect = el.getBoundingClientRect(),
+ isIE9 = PIE.ieDocMode === 9,
+ isIE7 = PIE.ieVersion === 7,
+ width = rect.right - rect.left;
+ return {
+ x: rect.left,
+ y: rect.top,
+ // In some cases scrolling the page will cause IE9 to report incorrect dimensions
+ // in the rect returned by getBoundingClientRect, so we must query offsetWidth/Height
+ // instead. Also IE7 is inconsistent in using logical vs. device pixels in measurements
+ // so we must calculate the ratio and use it in certain places as a position adjustment.
+ w: isIE9 || isIE7 ? el.offsetWidth : width,
+ h: isIE9 || isIE7 ? el.offsetHeight : rect.bottom - rect.top,
+ logicalZoomRatio: ( isIE7 && width ) ? el.offsetWidth / width : 1
+ };
+ },
+
+ getBounds: function() {
+ return this._locked ?
+ ( this._lockedBounds || ( this._lockedBounds = this.getLiveBounds() ) ) :
+ this.getLiveBounds();
+ },
+
+ hasBeenQueried: function() {
+ return !!this._lastBounds;
+ },
+
+ lock: function() {
+ ++this._locked;
+ },
+
+ unlock: function() {
+ if( !--this._locked ) {
+ if( this._lockedBounds ) this._lastBounds = this._lockedBounds;
+ this._lockedBounds = null;
+ }
+ }
+
+};
+(function() {
+
+function cacheWhenLocked( fn ) {
+ var uid = PIE.Util.getUID( fn );
+ return function() {
+ if( this._locked ) {
+ var cache = this._lockedValues || ( this._lockedValues = {} );
+ return ( uid in cache ) ? cache[ uid ] : ( cache[ uid ] = fn.call( this ) );
+ } else {
+ return fn.call( this );
+ }
+ }
+}
+
+
+PIE.StyleInfoBase = {
+
+ _locked: 0,
+
+ /**
+ * Create a new StyleInfo class, with the standard constructor, and augmented by
+ * the StyleInfoBase's members.
+ * @param proto
+ */
+ newStyleInfo: function( proto ) {
+ function StyleInfo( el ) {
+ this.targetElement = el;
+ this._lastCss = this.getCss();
+ }
+ PIE.Util.merge( StyleInfo.prototype, PIE.StyleInfoBase, proto );
+ StyleInfo._propsCache = {};
+ return StyleInfo;
+ },
+
+ /**
+ * Get an object representation of the target CSS style, caching it for each unique
+ * CSS value string.
+ * @return {Object}
+ */
+ getProps: function() {
+ var css = this.getCss(),
+ cache = this.constructor._propsCache;
+ return css ? ( css in cache ? cache[ css ] : ( cache[ css ] = this.parseCss( css ) ) ) : null;
+ },
+
+ /**
+ * Get the raw CSS value for the target style
+ * @return {string}
+ */
+ getCss: cacheWhenLocked( function() {
+ var el = this.targetElement,
+ ctor = this.constructor,
+ s = el.style,
+ cs = el.currentStyle,
+ cssProp = this.cssProperty,
+ styleProp = this.styleProperty,
+ prefixedCssProp = ctor._prefixedCssProp || ( ctor._prefixedCssProp = PIE.CSS_PREFIX + cssProp ),
+ prefixedStyleProp = ctor._prefixedStyleProp || ( ctor._prefixedStyleProp = PIE.STYLE_PREFIX + styleProp.charAt(0).toUpperCase() + styleProp.substring(1) );
+ return s[ prefixedStyleProp ] || cs.getAttribute( prefixedCssProp ) || s[ styleProp ] || cs.getAttribute( cssProp );
+ } ),
+
+ /**
+ * Determine whether the target CSS style is active.
+ * @return {boolean}
+ */
+ isActive: cacheWhenLocked( function() {
+ return !!this.getProps();
+ } ),
+
+ /**
+ * Determine whether the target CSS style has changed since the last time it was used.
+ * @return {boolean}
+ */
+ changed: cacheWhenLocked( function() {
+ var currentCss = this.getCss(),
+ changed = currentCss !== this._lastCss;
+ this._lastCss = currentCss;
+ return changed;
+ } ),
+
+ cacheWhenLocked: cacheWhenLocked,
+
+ lock: function() {
+ ++this._locked;
+ },
+
+ unlock: function() {
+ if( !--this._locked ) {
+ delete this._lockedValues;
+ }
+ }
+};
+
+})();/**
+ * Handles parsing, caching, and detecting changes to background (and -pie-background) CSS
+ * @constructor
+ * @param {Element} el the target element
+ */
+PIE.BackgroundStyleInfo = PIE.StyleInfoBase.newStyleInfo( {
+
+ cssProperty: PIE.CSS_PREFIX + 'background',
+ styleProperty: PIE.STYLE_PREFIX + 'Background',
+
+ attachIdents: { 'scroll':1, 'fixed':1, 'local':1 },
+ repeatIdents: { 'repeat-x':1, 'repeat-y':1, 'repeat':1, 'no-repeat':1 },
+ originAndClipIdents: { 'padding-box':1, 'border-box':1, 'content-box':1 },
+ positionIdents: { 'top':1, 'right':1, 'bottom':1, 'left':1, 'center':1 },
+ sizeIdents: { 'contain':1, 'cover':1 },
+ propertyNames: {
+ CLIP: 'backgroundClip',
+ COLOR: 'backgroundColor',
+ IMAGE: 'backgroundImage',
+ ORIGIN: 'backgroundOrigin',
+ POSITION: 'backgroundPosition',
+ REPEAT: 'backgroundRepeat',
+ SIZE: 'backgroundSize'
+ },
+
+ /**
+ * For background styles, we support the -pie-background property but fall back to the standard
+ * backround* properties. The reason we have to use the prefixed version is that IE natively
+ * parses the standard properties and if it sees something it doesn't know how to parse, for example
+ * multiple values or gradient definitions, it will throw that away and not make it available through
+ * currentStyle.
+ *
+ * Format of return object:
+ * {
+ * color: <PIE.Color>,
+ * bgImages: [
+ * {
+ * imgType: 'image',
+ * imgUrl: 'image.png',
+ * imgRepeat: <'no-repeat' | 'repeat-x' | 'repeat-y' | 'repeat'>,
+ * bgPosition: <PIE.BgPosition>,
+ * bgAttachment: <'scroll' | 'fixed' | 'local'>,
+ * bgOrigin: <'border-box' | 'padding-box' | 'content-box'>,
+ * bgClip: <'border-box' | 'padding-box'>,
+ * bgSize: <PIE.BgSize>,
+ * origString: 'url(img.png) no-repeat top left'
+ * },
+ * {
+ * imgType: 'linear-gradient',
+ * gradientStart: <PIE.BgPosition>,
+ * angle: <PIE.Angle>,
+ * stops: [
+ * { color: <PIE.Color>, offset: <PIE.Length> },
+ * { color: <PIE.Color>, offset: <PIE.Length> }, ...
+ * ]
+ * }
+ * ]
+ * }
+ * @param {String} css
+ * @override
+ */
+ parseCss: function( css ) {
+ var el = this.targetElement,
+ cs = el.currentStyle,
+ tokenizer, token, image,
+ tok_type = PIE.Tokenizer.Type,
+ type_operator = tok_type.OPERATOR,
+ type_ident = tok_type.IDENT,
+ type_color = tok_type.COLOR,
+ tokType, tokVal,
+ beginCharIndex = 0,
+ positionIdents = this.positionIdents,
+ gradient, stop, width, height,
+ props = { bgImages: [] };
+
+ function isBgPosToken( token ) {
+ return token && token.isLengthOrPercent() || ( token.tokenType & type_ident && token.tokenValue in positionIdents );
+ }
+
+ function sizeToken( token ) {
+ return token && ( ( token.isLengthOrPercent() && PIE.getLength( token.tokenValue ) ) || ( token.tokenValue === 'auto' && 'auto' ) );
+ }
+
+ // If the CSS3-specific -pie-background property is present, parse it
+ if( this.getCss3() ) {
+ tokenizer = new PIE.Tokenizer( css );
+ image = {};
+
+ while( token = tokenizer.next() ) {
+ tokType = token.tokenType;
+ tokVal = token.tokenValue;
+
+ if( !image.imgType && tokType & tok_type.FUNCTION && tokVal === 'linear-gradient' ) {
+ gradient = { stops: [], imgType: tokVal };
+ stop = {};
+ while( token = tokenizer.next() ) {
+ tokType = token.tokenType;
+ tokVal = token.tokenValue;
+
+ // If we reached the end of the function and had at least 2 stops, flush the info
+ if( tokType & tok_type.CHARACTER && tokVal === ')' ) {
+ if( stop.color ) {
+ gradient.stops.push( stop );
+ }
+ if( gradient.stops.length > 1 ) {
+ PIE.Util.merge( image, gradient );
+ }
+ break;
+ }
+
+ // Color stop - must start with color
+ if( tokType & type_color ) {
+ // if we already have an angle/position, make sure that the previous token was a comma
+ if( gradient.angle || gradient.gradientStart ) {
+ token = tokenizer.prev();
+ if( token.tokenType !== type_operator ) {
+ break; //fail
+ }
+ tokenizer.next();
+ }
+
+ stop = {
+ color: PIE.getColor( tokVal )
+ };
+ // check for offset following color
+ token = tokenizer.next();
+ if( token.isLengthOrPercent() ) {
+ stop.offset = PIE.getLength( token.tokenValue );
+ } else {
+ tokenizer.prev();
+ }
+ }
+ // Angle - can only appear in first spot
+ else if( tokType & tok_type.ANGLE && !gradient.angle && !stop.color && !gradient.stops.length ) {
+ gradient.angle = new PIE.Angle( token.tokenValue );
+ }
+ else if( isBgPosToken( token ) && !gradient.gradientStart && !stop.color && !gradient.stops.length ) {
+ tokenizer.prev();
+ gradient.gradientStart = new PIE.BgPosition(
+ tokenizer.until( function( t ) {
+ return !isBgPosToken( t );
+ }, false )
+ );
+ }
+ else if( tokType & type_operator && tokVal === ',' ) {
+ if( stop.color ) {
+ gradient.stops.push( stop );
+ stop = {};
+ }
+ }
+ else {
+ // Found something we didn't recognize; fail without adding image
+ break;
+ }
+ }
+ }
+ else if( !image.imgType && tokType & tok_type.URL ) {
+ image.imgUrl = tokVal;
+ image.imgType = 'image';
+ }
+ else if( isBgPosToken( token ) && !image.bgPosition ) {
+ tokenizer.prev();
+ image.bgPosition = new PIE.BgPosition(
+ tokenizer.until( function( t ) {
+ return !isBgPosToken( t );
+ }, false )
+ );
+ }
+ else if( tokType & type_ident ) {
+ if( tokVal in this.repeatIdents && !image.imgRepeat ) {
+ image.imgRepeat = tokVal;
+ }
+ else if( tokVal in this.originAndClipIdents && !image.bgOrigin ) {
+ image.bgOrigin = tokVal;
+ if( ( token = tokenizer.next() ) && ( token.tokenType & type_ident ) &&
+ token.tokenValue in this.originAndClipIdents ) {
+ image.bgClip = token.tokenValue;
+ } else {
+ image.bgClip = tokVal;
+ tokenizer.prev();
+ }
+ }
+ else if( tokVal in this.attachIdents && !image.bgAttachment ) {
+ image.bgAttachment = tokVal;
+ }
+ else {
+ return null;
+ }
+ }
+ else if( tokType & type_color && !props.color ) {
+ props.color = PIE.getColor( tokVal );
+ }
+ else if( tokType & type_operator && tokVal === '/' && !image.bgSize && image.bgPosition ) {
+ // background size
+ token = tokenizer.next();
+ if( token.tokenType & type_ident && token.tokenValue in this.sizeIdents ) {
+ image.bgSize = new PIE.BgSize( token.tokenValue );
+ }
+ else if( width = sizeToken( token ) ) {
+ height = sizeToken( tokenizer.next() );
+ if ( !height ) {
+ height = width;
+ tokenizer.prev();
+ }
+ image.bgSize = new PIE.BgSize( width, height );
+ }
+ else {
+ return null;
+ }
+ }
+ // new layer
+ else if( tokType & type_operator && tokVal === ',' && image.imgType ) {
+ image.origString = css.substring( beginCharIndex, tokenizer.ch - 1 );
+ beginCharIndex = tokenizer.ch;
+ props.bgImages.push( image );
+ image = {};
+ }
+ else {
+ // Found something unrecognized; chuck everything
+ return null;
+ }
+ }
+
+ // leftovers
+ if( image.imgType ) {
+ image.origString = css.substring( beginCharIndex );
+ props.bgImages.push( image );
+ }
+ }
+
+ // Otherwise, use the standard background properties; let IE give us the values rather than parsing them
+ else {
+ this.withActualBg( PIE.ieDocMode < 9 ?
+ function() {
+ var propNames = this.propertyNames,
+ posX = cs[propNames.POSITION + 'X'],
+ posY = cs[propNames.POSITION + 'Y'],
+ img = cs[propNames.IMAGE],
+ color = cs[propNames.COLOR];
+
+ if( color !== 'transparent' ) {
+ props.color = PIE.getColor( color )
+ }
+ if( img !== 'none' ) {
+ props.bgImages = [ {
+ imgType: 'image',
+ imgUrl: new PIE.Tokenizer( img ).next().tokenValue,
+ imgRepeat: cs[propNames.REPEAT],
+ bgPosition: new PIE.BgPosition( new PIE.Tokenizer( posX + ' ' + posY ).all() )
+ } ];
+ }
+ } :
+ function() {
+ var propNames = this.propertyNames,
+ splitter = /\s*,\s*/,
+ images = cs[propNames.IMAGE].split( splitter ),
+ color = cs[propNames.COLOR],
+ repeats, positions, origins, clips, sizes, i, len, image, sizeParts;
+
+ if( color !== 'transparent' ) {
+ props.color = PIE.getColor( color )
+ }
+
+ len = images.length;
+ if( len && images[0] !== 'none' ) {
+ repeats = cs[propNames.REPEAT].split( splitter );
+ positions = cs[propNames.POSITION].split( splitter );
+ origins = cs[propNames.ORIGIN].split( splitter );
+ clips = cs[propNames.CLIP].split( splitter );
+ sizes = cs[propNames.SIZE].split( splitter );
+
+ props.bgImages = [];
+ for( i = 0; i < len; i++ ) {
+ image = images[ i ];
+ if( image && image !== 'none' ) {
+ sizeParts = sizes[i].split( ' ' );
+ props.bgImages.push( {
+ origString: image + ' ' + repeats[ i ] + ' ' + positions[ i ] + ' / ' + sizes[ i ] + ' ' +
+ origins[ i ] + ' ' + clips[ i ],
+ imgType: 'image',
+ imgUrl: new PIE.Tokenizer( image ).next().tokenValue,
+ imgRepeat: repeats[ i ],
+ bgPosition: new PIE.BgPosition( new PIE.Tokenizer( positions[ i ] ).all() ),
+ bgOrigin: origins[ i ],
+ bgClip: clips[ i ],
+ bgSize: new PIE.BgSize( sizeParts[ 0 ], sizeParts[ 1 ] )
+ } );
+ }
+ }
+ }
+ }
+ );
+ }
+
+ return ( props.color || props.bgImages[0] ) ? props : null;
+ },
+
+ /**
+ * Execute a function with the actual background styles (not overridden with runtimeStyle
+ * properties set by the renderers) available via currentStyle.
+ * @param fn
+ */
+ withActualBg: function( fn ) {
+ var isIE9 = PIE.ieDocMode > 8,
+ propNames = this.propertyNames,
+ rs = this.targetElement.runtimeStyle,
+ rsImage = rs[propNames.IMAGE],
+ rsColor = rs[propNames.COLOR],
+ rsRepeat = rs[propNames.REPEAT],
+ rsClip, rsOrigin, rsSize, rsPosition, ret;
+
+ if( rsImage ) rs[propNames.IMAGE] = '';
+ if( rsColor ) rs[propNames.COLOR] = '';
+ if( rsRepeat ) rs[propNames.REPEAT] = '';
+ if( isIE9 ) {
+ rsClip = rs[propNames.CLIP];
+ rsOrigin = rs[propNames.ORIGIN];
+ rsPosition = rs[propNames.POSITION];
+ rsSize = rs[propNames.SIZE];
+ if( rsClip ) rs[propNames.CLIP] = '';
+ if( rsOrigin ) rs[propNames.ORIGIN] = '';
+ if( rsPosition ) rs[propNames.POSITION] = '';
+ if( rsSize ) rs[propNames.SIZE] = '';
+ }
+
+ ret = fn.call( this );
+
+ if( rsImage ) rs[propNames.IMAGE] = rsImage;
+ if( rsColor ) rs[propNames.COLOR] = rsColor;
+ if( rsRepeat ) rs[propNames.REPEAT] = rsRepeat;
+ if( isIE9 ) {
+ if( rsClip ) rs[propNames.CLIP] = rsClip;
+ if( rsOrigin ) rs[propNames.ORIGIN] = rsOrigin;
+ if( rsPosition ) rs[propNames.POSITION] = rsPosition;
+ if( rsSize ) rs[propNames.SIZE] = rsSize;
+ }
+
+ return ret;
+ },
+
+ getCss: PIE.StyleInfoBase.cacheWhenLocked( function() {
+ return this.getCss3() ||
+ this.withActualBg( function() {
+ var cs = this.targetElement.currentStyle,
+ propNames = this.propertyNames;
+ return cs[propNames.COLOR] + ' ' + cs[propNames.IMAGE] + ' ' + cs[propNames.REPEAT] + ' ' +
+ cs[propNames.POSITION + 'X'] + ' ' + cs[propNames.POSITION + 'Y'];
+ } );
+ } ),
+
+ getCss3: PIE.StyleInfoBase.cacheWhenLocked( function() {
+ var el = this.targetElement;
+ return el.style[ this.styleProperty ] || el.currentStyle.getAttribute( this.cssProperty );
+ } ),
+
+ /**
+ * Tests if style.PiePngFix or the -pie-png-fix property is set to true in IE6.
+ */
+ isPngFix: function() {
+ var val = 0, el;
+ if( PIE.ieVersion < 7 ) {
+ el = this.targetElement;
+ val = ( '' + ( el.style[ PIE.STYLE_PREFIX + 'PngFix' ] || el.currentStyle.getAttribute( PIE.CSS_PREFIX + 'png-fix' ) ) === 'true' );
+ }
+ return val;
+ },
+
+ /**
+ * The isActive logic is slightly different, because getProps() always returns an object
+ * even if it is just falling back to the native background properties. But we only want
+ * to report is as being "active" if either the -pie-background override property is present
+ * and parses successfully or '-pie-png-fix' is set to true in IE6.
+ */
+ isActive: PIE.StyleInfoBase.cacheWhenLocked( function() {
+ return (this.getCss3() || this.isPngFix()) && !!this.getProps();
+ } )
+
+} );/**
+ * Handles parsing, caching, and detecting changes to border CSS
+ * @constructor
+ * @param {Element} el the target element
+ */
+PIE.BorderStyleInfo = PIE.StyleInfoBase.newStyleInfo( {
+
+ sides: [ 'Top', 'Right', 'Bottom', 'Left' ],
+ namedWidths: {
+ 'thin': '1px',
+ 'medium': '3px',
+ 'thick': '5px'
+ },
+
+ parseCss: function( css ) {
+ var w = {},
+ s = {},
+ c = {},
+ active = false,
+ colorsSame = true,
+ stylesSame = true,
+ widthsSame = true;
+
+ this.withActualBorder( function() {
+ var el = this.targetElement,
+ cs = el.currentStyle,
+ i = 0,
+ style, color, width, lastStyle, lastColor, lastWidth, side, ltr;
+ for( ; i < 4; i++ ) {
+ side = this.sides[ i ];
+
+ ltr = side.charAt(0).toLowerCase();
+ style = s[ ltr ] = cs[ 'border' + side + 'Style' ];
+ color = cs[ 'border' + side + 'Color' ];
+ width = cs[ 'border' + side + 'Width' ];
+
+ if( i > 0 ) {
+ if( style !== lastStyle ) { stylesSame = false; }
+ if( color !== lastColor ) { colorsSame = false; }
+ if( width !== lastWidth ) { widthsSame = false; }
+ }
+ lastStyle = style;
+ lastColor = color;
+ lastWidth = width;
+
+ c[ ltr ] = PIE.getColor( color );
+
+ width = w[ ltr ] = PIE.getLength( s[ ltr ] === 'none' ? '0' : ( this.namedWidths[ width ] || width ) );
+ if( width.pixels( this.targetElement ) > 0 ) {
+ active = true;
+ }
+ }
+ } );
+
+ return active ? {
+ widths: w,
+ styles: s,
+ colors: c,
+ widthsSame: widthsSame,
+ colorsSame: colorsSame,
+ stylesSame: stylesSame
+ } : null;
+ },
+
+ getCss: PIE.StyleInfoBase.cacheWhenLocked( function() {
+ var el = this.targetElement,
+ cs = el.currentStyle,
+ css;
+
+ // Don't redraw or hide borders for cells in border-collapse:collapse tables
+ if( !( el.tagName in PIE.tableCellTags && el.offsetParent.currentStyle.borderCollapse === 'collapse' ) ) {
+ this.withActualBorder( function() {
+ css = cs.borderWidth + '|' + cs.borderStyle + '|' + cs.borderColor;
+ } );
+ }
+ return css;
+ } ),
+
+ /**
+ * Execute a function with the actual border styles (not overridden with runtimeStyle
+ * properties set by the renderers) available via currentStyle.
+ * @param fn
+ */
+ withActualBorder: function( fn ) {
+ var rs = this.targetElement.runtimeStyle,
+ rsWidth = rs.borderWidth,
+ rsColor = rs.borderColor,
+ ret;
+
+ if( rsWidth ) rs.borderWidth = '';
+ if( rsColor ) rs.borderColor = '';
+
+ ret = fn.call( this );
+
+ if( rsWidth ) rs.borderWidth = rsWidth;
+ if( rsColor ) rs.borderColor = rsColor;
+
+ return ret;
+ }
+
+} );
+/**
+ * Handles parsing, caching, and detecting changes to border-radius CSS
+ * @constructor
+ * @param {Element} el the target element
+ */
+(function() {
+
+PIE.BorderRadiusStyleInfo = PIE.StyleInfoBase.newStyleInfo( {
+
+ cssProperty: 'border-radius',
+ styleProperty: 'borderRadius',
+
+ parseCss: function( css ) {
+ var p = null, x, y,
+ tokenizer, token, length,
+ hasNonZero = false;
+
+ if( css ) {
+ tokenizer = new PIE.Tokenizer( css );
+
+ function collectLengths() {
+ var arr = [], num;
+ while( ( token = tokenizer.next() ) && token.isLengthOrPercent() ) {
+ length = PIE.getLength( token.tokenValue );
+ num = length.getNumber();
+ if( num < 0 ) {
+ return null;
+ }
+ if( num > 0 ) {
+ hasNonZero = true;
+ }
+ arr.push( length );
+ }
+ return arr.length > 0 && arr.length < 5 ? {
+ 'tl': arr[0],
+ 'tr': arr[1] || arr[0],
+ 'br': arr[2] || arr[0],
+ 'bl': arr[3] || arr[1] || arr[0]
+ } : null;
+ }
+
+ // Grab the initial sequence of lengths
+ if( x = collectLengths() ) {
+ // See if there is a slash followed by more lengths, for the y-axis radii
+ if( token ) {
+ if( token.tokenType & PIE.Tokenizer.Type.OPERATOR && token.tokenValue === '/' ) {
+ y = collectLengths();
+ }
+ } else {
+ y = x;
+ }
+
+ // Treat all-zero values the same as no value
+ if( hasNonZero && x && y ) {
+ p = { x: x, y : y };
+ }
+ }
+ }
+
+ return p;
+ }
+} );
+
+var zero = PIE.getLength( '0' ),
+ zeros = { 'tl': zero, 'tr': zero, 'br': zero, 'bl': zero };
+PIE.BorderRadiusStyleInfo.ALL_ZERO = { x: zeros, y: zeros };
+
+})();/**
+ * Handles parsing, caching, and detecting changes to border-image CSS
+ * @constructor
+ * @param {Element} el the target element
+ */
+PIE.BorderImageStyleInfo = PIE.StyleInfoBase.newStyleInfo( {
+
+ cssProperty: 'border-image',
+ styleProperty: 'borderImage',
+
+ repeatIdents: { 'stretch':1, 'round':1, 'repeat':1, 'space':1 },
+
+ parseCss: function( css ) {
+ var p = null, tokenizer, token, type, value,
+ slices, widths, outsets,
+ slashCount = 0,
+ Type = PIE.Tokenizer.Type,
+ IDENT = Type.IDENT,
+ NUMBER = Type.NUMBER,
+ PERCENT = Type.PERCENT;
+
+ if( css ) {
+ tokenizer = new PIE.Tokenizer( css );
+ p = {};
+
+ function isSlash( token ) {
+ return token && ( token.tokenType & Type.OPERATOR ) && ( token.tokenValue === '/' );
+ }
+
+ function isFillIdent( token ) {
+ return token && ( token.tokenType & IDENT ) && ( token.tokenValue === 'fill' );
+ }
+
+ function collectSlicesEtc() {
+ slices = tokenizer.until( function( tok ) {
+ return !( tok.tokenType & ( NUMBER | PERCENT ) );
+ } );
+
+ if( isFillIdent( tokenizer.next() ) && !p.fill ) {
+ p.fill = true;
+ } else {
+ tokenizer.prev();
+ }
+
+ if( isSlash( tokenizer.next() ) ) {
+ slashCount++;
+ widths = tokenizer.until( function( token ) {
+ return !token.isLengthOrPercent() && !( ( token.tokenType & IDENT ) && token.tokenValue === 'auto' );
+ } );
+
+ if( isSlash( tokenizer.next() ) ) {
+ slashCount++;
+ outsets = tokenizer.until( function( token ) {
+ return !token.isLength();
+ } );
+ }
+ } else {
+ tokenizer.prev();
+ }
+ }
+
+ while( token = tokenizer.next() ) {
+ type = token.tokenType;
+ value = token.tokenValue;
+
+ // Numbers and/or 'fill' keyword: slice values. May be followed optionally by width values, followed optionally by outset values
+ if( type & ( NUMBER | PERCENT ) && !slices ) {
+ tokenizer.prev();
+ collectSlicesEtc();
+ }
+ else if( isFillIdent( token ) && !p.fill ) {
+ p.fill = true;
+ collectSlicesEtc();
+ }
+
+ // Idents: one or values for 'repeat'
+ else if( ( type & IDENT ) && this.repeatIdents[value] && !p.repeat ) {
+ p.repeat = { h: value };
+ if( token = tokenizer.next() ) {
+ if( ( token.tokenType & IDENT ) && this.repeatIdents[token.tokenValue] ) {
+ p.repeat.v = token.tokenValue;
+ } else {
+ tokenizer.prev();
+ }
+ }
+ }
+
+ // URL of the image
+ else if( ( type & Type.URL ) && !p.src ) {
+ p.src = value;
+ }
+
+ // Found something unrecognized; exit.
+ else {
+ return null;
+ }
+ }
+
+ // Validate what we collected
+ if( !p.src || !slices || slices.length < 1 || slices.length > 4 ||
+ ( widths && widths.length > 4 ) || ( slashCount === 1 && widths.length < 1 ) ||
+ ( outsets && outsets.length > 4 ) || ( slashCount === 2 && outsets.length < 1 ) ) {
+ return null;
+ }
+
+ // Fill in missing values
+ if( !p.repeat ) {
+ p.repeat = { h: 'stretch' };
+ }
+ if( !p.repeat.v ) {
+ p.repeat.v = p.repeat.h;
+ }
+
+ function distributeSides( tokens, convertFn ) {
+ return {
+ 't': convertFn( tokens[0] ),
+ 'r': convertFn( tokens[1] || tokens[0] ),
+ 'b': convertFn( tokens[2] || tokens[0] ),
+ 'l': convertFn( tokens[3] || tokens[1] || tokens[0] )
+ };
+ }
+
+ p.slice = distributeSides( slices, function( tok ) {
+ return PIE.getLength( ( tok.tokenType & NUMBER ) ? tok.tokenValue + 'px' : tok.tokenValue );
+ } );
+
+ if( widths && widths[0] ) {
+ p.widths = distributeSides( widths, function( tok ) {
+ return tok.isLengthOrPercent() ? PIE.getLength( tok.tokenValue ) : tok.tokenValue;
+ } );
+ }
+
+ if( outsets && outsets[0] ) {
+ p.outset = distributeSides( outsets, function( tok ) {
+ return tok.isLength() ? PIE.getLength( tok.tokenValue ) : tok.tokenValue;
+ } );
+ }
+ }
+
+ return p;
+ }
+
+} );/**
+ * Handles parsing, caching, and detecting changes to box-shadow CSS
+ * @constructor
+ * @param {Element} el the target element
+ */
+PIE.BoxShadowStyleInfo = PIE.StyleInfoBase.newStyleInfo( {
+
+ cssProperty: 'box-shadow',
+ styleProperty: 'boxShadow',
+
+ parseCss: function( css ) {
+ var props,
+ getLength = PIE.getLength,
+ Type = PIE.Tokenizer.Type,
+ tokenizer;
+
+ if( css ) {
+ tokenizer = new PIE.Tokenizer( css );
+ props = { outset: [], inset: [] };
+
+ function parseItem() {
+ var token, type, value, color, lengths, inset, len;
+
+ while( token = tokenizer.next() ) {
+ value = token.tokenValue;
+ type = token.tokenType;
+
+ if( type & Type.OPERATOR && value === ',' ) {
+ break;
+ }
+ else if( token.isLength() && !lengths ) {
+ tokenizer.prev();
+ lengths = tokenizer.until( function( token ) {
+ return !token.isLength();
+ } );
+ }
+ else if( type & Type.COLOR && !color ) {
+ color = value;
+ }
+ else if( type & Type.IDENT && value === 'inset' && !inset ) {
+ inset = true;
+ }
+ else { //encountered an unrecognized token; fail.
+ return false;
+ }
+ }
+
+ len = lengths && lengths.length;
+ if( len > 1 && len < 5 ) {
+ ( inset ? props.inset : props.outset ).push( {
+ xOffset: getLength( lengths[0].tokenValue ),
+ yOffset: getLength( lengths[1].tokenValue ),
+ blur: getLength( lengths[2] ? lengths[2].tokenValue : '0' ),
+ spread: getLength( lengths[3] ? lengths[3].tokenValue : '0' ),
+ color: PIE.getColor( color || 'currentColor' )
+ } );
+ return true;
+ }
+ return false;
+ }
+
+ while( parseItem() ) {}
+ }
+
+ return props && ( props.inset.length || props.outset.length ) ? props : null;
+ }
+} );
+/**
+ * Retrieves the state of the element's visibility and display
+ * @constructor
+ * @param {Element} el the target element
+ */
+PIE.VisibilityStyleInfo = PIE.StyleInfoBase.newStyleInfo( {
+
+ getCss: PIE.StyleInfoBase.cacheWhenLocked( function() {
+ var cs = this.targetElement.currentStyle;
+ return cs.visibility + '|' + cs.display;
+ } ),
+
+ parseCss: function() {
+ var el = this.targetElement,
+ rs = el.runtimeStyle,
+ cs = el.currentStyle,
+ rsVis = rs.visibility,
+ csVis;
+
+ rs.visibility = '';
+ csVis = cs.visibility;
+ rs.visibility = rsVis;
+
+ return {
+ visible: csVis !== 'hidden',
+ displayed: cs.display !== 'none'
+ }
+ },
+
+ /**
+ * Always return false for isActive, since this property alone will not trigger
+ * a renderer to do anything.
+ */
+ isActive: function() {
+ return false;
+ }
+
+} );
+PIE.RendererBase = {
+
+ /**
+ * Create a new Renderer class, with the standard constructor, and augmented by
+ * the RendererBase's members.
+ * @param proto
+ */
+ newRenderer: function( proto ) {
+ function Renderer( el, boundsInfo, styleInfos, parent ) {
+ this.targetElement = el;
+ this.boundsInfo = boundsInfo;
+ this.styleInfos = styleInfos;
+ this.parent = parent;
+ }
+ PIE.Util.merge( Renderer.prototype, PIE.RendererBase, proto );
+ return Renderer;
+ },
+
+ /**
+ * Flag indicating the element has already been positioned at least once.
+ * @type {boolean}
+ */
+ isPositioned: false,
+
+ /**
+ * Determine if the renderer needs to be updated
+ * @return {boolean}
+ */
+ needsUpdate: function() {
+ return false;
+ },
+
+ /**
+ * Run any preparation logic that would affect the main update logic of this
+ * renderer or any of the other renderers, e.g. things that might affect the
+ * element's size or style properties.
+ */
+ prepareUpdate: PIE.emptyFn,
+
+ /**
+ * Tell the renderer to update based on modified properties
+ */
+ updateProps: function() {
+ this.destroy();
+ if( this.isActive() ) {
+ this.draw();
+ }
+ },
+
+ /**
+ * Tell the renderer to update based on modified element position
+ */
+ updatePos: function() {
+ this.isPositioned = true;
+ },
+
+ /**
+ * Tell the renderer to update based on modified element dimensions
+ */
+ updateSize: function() {
+ if( this.isActive() ) {
+ this.draw();
+ } else {
+ this.destroy();
+ }
+ },
+
+
+ /**
+ * Add a layer element, with the given z-order index, to the renderer's main box element. We can't use
+ * z-index because that breaks when the root rendering box's z-index is 'auto' in IE8+ standards mode.
+ * So instead we make sure they are inserted into the DOM in the correct order.
+ * @param {number} index
+ * @param {Element} el
+ */
+ addLayer: function( index, el ) {
+ this.removeLayer( index );
+ for( var layers = this._layers || ( this._layers = [] ), i = index + 1, len = layers.length, layer; i < len; i++ ) {
+ layer = layers[i];
+ if( layer ) {
+ break;
+ }
+ }
+ layers[index] = el;
+ this.getBox().insertBefore( el, layer || null );
+ },
+
+ /**
+ * Retrieve a layer element by its index, or null if not present
+ * @param {number} index
+ * @return {Element}
+ */
+ getLayer: function( index ) {
+ var layers = this._layers;
+ return layers && layers[index] || null;
+ },
+
+ /**
+ * Remove a layer element by its index
+ * @param {number} index
+ */
+ removeLayer: function( index ) {
+ var layer = this.getLayer( index ),
+ box = this._box;
+ if( layer && box ) {
+ box.removeChild( layer );
+ this._layers[index] = null;
+ }
+ },
+
+
+ /**
+ * Get a VML shape by name, creating it if necessary.
+ * @param {string} name A name identifying the element
+ * @param {string=} subElName If specified a subelement of the shape will be created with this tag name
+ * @param {Element} parent The parent element for the shape; will be ignored if 'group' is specified
+ * @param {number=} group If specified, an ordinal group for the shape. 1 or greater. Groups are rendered
+ * using container elements in the correct order, to get correct z stacking without z-index.
+ */
+ getShape: function( name, subElName, parent, group ) {
+ var shapes = this._shapes || ( this._shapes = {} ),
+ shape = shapes[ name ],
+ s;
+
+ if( !shape ) {
+ shape = shapes[ name ] = PIE.Util.createVmlElement( 'shape' );
+ if( subElName ) {
+ shape.appendChild( shape[ subElName ] = PIE.Util.createVmlElement( subElName ) );
+ }
+
+ if( group ) {
+ parent = this.getLayer( group );
+ if( !parent ) {
+ this.addLayer( group, doc.createElement( 'group' + group ) );
+ parent = this.getLayer( group );
+ }
+ }
+
+ parent.appendChild( shape );
+
+ s = shape.style;
+ s.position = 'absolute';
+ s.left = s.top = 0;
+ s['behavior'] = 'url(#default#VML)';
+ }
+ return shape;
+ },
+
+ /**
+ * Delete a named shape which was created by getShape(). Returns true if a shape with the
+ * given name was found and deleted, or false if there was no shape of that name.
+ * @param {string} name
+ * @return {boolean}
+ */
+ deleteShape: function( name ) {
+ var shapes = this._shapes,
+ shape = shapes && shapes[ name ];
+ if( shape ) {
+ shape.parentNode.removeChild( shape );
+ delete shapes[ name ];
+ }
+ return !!shape;
+ },
+
+
+ /**
+ * For a given set of border radius length/percentage values, convert them to concrete pixel
+ * values based on the current size of the target element.
+ * @param {Object} radii
+ * @return {Object}
+ */
+ getRadiiPixels: function( radii ) {
+ var el = this.targetElement,
+ bounds = this.boundsInfo.getBounds(),
+ w = bounds.w,
+ h = bounds.h,
+ tlX, tlY, trX, trY, brX, brY, blX, blY, f;
+
+ tlX = radii.x['tl'].pixels( el, w );
+ tlY = radii.y['tl'].pixels( el, h );
+ trX = radii.x['tr'].pixels( el, w );
+ trY = radii.y['tr'].pixels( el, h );
+ brX = radii.x['br'].pixels( el, w );
+ brY = radii.y['br'].pixels( el, h );
+ blX = radii.x['bl'].pixels( el, w );
+ blY = radii.y['bl'].pixels( el, h );
+
+ // If any corner ellipses overlap, reduce them all by the appropriate factor. This formula
+ // is taken straight from the CSS3 Backgrounds and Borders spec.
+ f = Math.min(
+ w / ( tlX + trX ),
+ h / ( trY + brY ),
+ w / ( blX + brX ),
+ h / ( tlY + blY )
+ );
+ if( f < 1 ) {
+ tlX *= f;
+ tlY *= f;
+ trX *= f;
+ trY *= f;
+ brX *= f;
+ brY *= f;
+ blX *= f;
+ blY *= f;
+ }
+
+ return {
+ x: {
+ 'tl': tlX,
+ 'tr': trX,
+ 'br': brX,
+ 'bl': blX
+ },
+ y: {
+ 'tl': tlY,
+ 'tr': trY,
+ 'br': brY,
+ 'bl': blY
+ }
+ }
+ },
+
+ /**
+ * Return the VML path string for the element's background box, with corners rounded.
+ * @param {Object.<{t:number, r:number, b:number, l:number}>} shrink - if present, specifies number of
+ * pixels to shrink the box path inward from the element's four sides.
+ * @param {number=} mult If specified, all coordinates will be multiplied by this number
+ * @param {Object=} radii If specified, this will be used for the corner radii instead of the properties
+ * from this renderer's borderRadiusInfo object.
+ * @return {string} the VML path
+ */
+ getBoxPath: function( shrink, mult, radii ) {
+ mult = mult || 1;
+
+ var r, str,
+ bounds = this.boundsInfo.getBounds(),
+ w = bounds.w * mult,
+ h = bounds.h * mult,
+ radInfo = this.styleInfos.borderRadiusInfo,
+ floor = Math.floor, ceil = Math.ceil,
+ shrinkT = shrink ? shrink.t * mult : 0,
+ shrinkR = shrink ? shrink.r * mult : 0,
+ shrinkB = shrink ? shrink.b * mult : 0,
+ shrinkL = shrink ? shrink.l * mult : 0,
+ tlX, tlY, trX, trY, brX, brY, blX, blY;
+
+ if( radii || radInfo.isActive() ) {
+ r = this.getRadiiPixels( radii || radInfo.getProps() );
+
+ tlX = r.x['tl'] * mult;
+ tlY = r.y['tl'] * mult;
+ trX = r.x['tr'] * mult;
+ trY = r.y['tr'] * mult;
+ brX = r.x['br'] * mult;
+ brY = r.y['br'] * mult;
+ blX = r.x['bl'] * mult;
+ blY = r.y['bl'] * mult;
+
+ str = 'm' + floor( shrinkL ) + ',' + floor( tlY ) +
+ 'qy' + floor( tlX ) + ',' + floor( shrinkT ) +
+ 'l' + ceil( w - trX ) + ',' + floor( shrinkT ) +
+ 'qx' + ceil( w - shrinkR ) + ',' + floor( trY ) +
+ 'l' + ceil( w - shrinkR ) + ',' + ceil( h - brY ) +
+ 'qy' + ceil( w - brX ) + ',' + ceil( h - shrinkB ) +
+ 'l' + floor( blX ) + ',' + ceil( h - shrinkB ) +
+ 'qx' + floor( shrinkL ) + ',' + ceil( h - blY ) + ' x e';
+ } else {
+ // simplified path for non-rounded box
+ str = 'm' + floor( shrinkL ) + ',' + floor( shrinkT ) +
+ 'l' + ceil( w - shrinkR ) + ',' + floor( shrinkT ) +
+ 'l' + ceil( w - shrinkR ) + ',' + ceil( h - shrinkB ) +
+ 'l' + floor( shrinkL ) + ',' + ceil( h - shrinkB ) +
+ 'xe';
+ }
+ return str;
+ },
+
+
+ /**
+ * Get the container element for the shapes, creating it if necessary.
+ */
+ getBox: function() {
+ var box = this.parent.getLayer( this.boxZIndex ), s;
+
+ if( !box ) {
+ box = doc.createElement( this.boxName );
+ s = box.style;
+ s.position = 'absolute';
+ s.top = s.left = 0;
+ this.parent.addLayer( this.boxZIndex, box );
+ }
+
+ return box;
+ },
+
+
+ /**
+ * Hide the actual border of the element. In IE7 and up we can just set its color to transparent;
+ * however IE6 does not support transparent borders so we have to get tricky with it. Also, some elements
+ * like form buttons require removing the border width altogether, so for those we increase the padding
+ * by the border size.
+ */
+ hideBorder: function() {
+ var el = this.targetElement,
+ cs = el.currentStyle,
+ rs = el.runtimeStyle,
+ tag = el.tagName,
+ isIE6 = PIE.ieVersion === 6,
+ sides, side, i;
+
+ if( ( isIE6 && ( tag in PIE.childlessElements || tag === 'FIELDSET' ) ) ||
+ tag === 'BUTTON' || ( tag === 'INPUT' && el.type in PIE.inputButtonTypes ) ) {
+ rs.borderWidth = '';
+ sides = this.styleInfos.borderInfo.sides;
+ for( i = sides.length; i--; ) {
+ side = sides[ i ];
+ rs[ 'padding' + side ] = '';
+ rs[ 'padding' + side ] = ( PIE.getLength( cs[ 'padding' + side ] ) ).pixels( el ) +
+ ( PIE.getLength( cs[ 'border' + side + 'Width' ] ) ).pixels( el ) +
+ ( PIE.ieVersion !== 8 && i % 2 ? 1 : 0 ); //needs an extra horizontal pixel to counteract the extra "inner border" going away
+ }
+ rs.borderWidth = 0;
+ }
+ else if( isIE6 ) {
+ // Wrap all the element's children in a custom element, set the element to visiblity:hidden,
+ // and set the wrapper element to visiblity:visible. This hides the outer element's decorations
+ // (background and border) but displays all the contents.
+ // TODO find a better way to do this that doesn't mess up the DOM parent-child relationship,
+ // as this can interfere with other author scripts which add/modify/delete children. Also, this
+ // won't work for elements which cannot take children, e.g. input/button/textarea/img/etc. Look into
+ // using a compositor filter or some other filter which masks the border.
+ if( el.childNodes.length !== 1 || el.firstChild.tagName !== 'ie6-mask' ) {
+ var cont = doc.createElement( 'ie6-mask' ),
+ s = cont.style, child;
+ s.visibility = 'visible';
+ s.zoom = 1;
+ while( child = el.firstChild ) {
+ cont.appendChild( child );
+ }
+ el.appendChild( cont );
+ rs.visibility = 'hidden';
+ }
+ }
+ else {
+ rs.borderColor = 'transparent';
+ }
+ },
+
+ unhideBorder: function() {
+
+ },
+
+
+ /**
+ * Destroy the rendered objects. This is a base implementation which handles common renderer
+ * structures, but individual renderers may override as necessary.
+ */
+ destroy: function() {
+ this.parent.removeLayer( this.boxZIndex );
+ delete this._shapes;
+ delete this._layers;
+ }
+};
+/**
+ * Root renderer; creates the outermost container element and handles keeping it aligned
+ * with the target element's size and position.
+ * @param {Element} el The target element
+ * @param {Object} styleInfos The StyleInfo objects
+ */
+PIE.RootRenderer = PIE.RendererBase.newRenderer( {
+
+ isActive: function() {
+ var children = this.childRenderers;
+ for( var i in children ) {
+ if( children.hasOwnProperty( i ) && children[ i ].isActive() ) {
+ return true;
+ }
+ }
+ return false;
+ },
+
+ needsUpdate: function() {
+ return this.styleInfos.visibilityInfo.changed();
+ },
+
+ updatePos: function() {
+ if( this.isActive() ) {
+ var el = this.getPositioningElement(),
+ par = el,
+ docEl,
+ parRect,
+ tgtCS = el.currentStyle,
+ tgtPos = tgtCS.position,
+ boxPos,
+ s = this.getBox().style, cs,
+ x = 0, y = 0,
+ elBounds = this.boundsInfo.getBounds(),
+ logicalZoomRatio = elBounds.logicalZoomRatio;
+
+ if( tgtPos === 'fixed' && PIE.ieVersion > 6 ) {
+ x = elBounds.x * logicalZoomRatio;
+ y = elBounds.y * logicalZoomRatio;
+ boxPos = tgtPos;
+ } else {
+ // Get the element's offsets from its nearest positioned ancestor. Uses
+ // getBoundingClientRect for accuracy and speed.
+ do {
+ par = par.offsetParent;
+ } while( par && ( par.currentStyle.position === 'static' ) );
+ if( par ) {
+ parRect = par.getBoundingClientRect();
+ cs = par.currentStyle;
+ x = ( elBounds.x - parRect.left ) * logicalZoomRatio - ( parseFloat(cs.borderLeftWidth) || 0 );
+ y = ( elBounds.y - parRect.top ) * logicalZoomRatio - ( parseFloat(cs.borderTopWidth) || 0 );
+ } else {
+ docEl = doc.documentElement;
+ x = ( elBounds.x + docEl.scrollLeft - docEl.clientLeft ) * logicalZoomRatio;
+ y = ( elBounds.y + docEl.scrollTop - docEl.clientTop ) * logicalZoomRatio;
+ }
+ boxPos = 'absolute';
+ }
+
+ s.position = boxPos;
+ s.left = x;
+ s.top = y;
+ s.zIndex = tgtPos === 'static' ? -1 : tgtCS.zIndex;
+ this.isPositioned = true;
+ }
+ },
+
+ updateSize: PIE.emptyFn,
+
+ updateVisibility: function() {
+ var vis = this.styleInfos.visibilityInfo.getProps();
+ this.getBox().style.display = ( vis.visible && vis.displayed ) ? '' : 'none';
+ },
+
+ updateProps: function() {
+ if( this.isActive() ) {
+ this.updateVisibility();
+ } else {
+ this.destroy();
+ }
+ },
+
+ getPositioningElement: function() {
+ var el = this.targetElement;
+ return el.tagName in PIE.tableCellTags ? el.offsetParent : el;
+ },
+
+ getBox: function() {
+ var box = this._box, el;
+ if( !box ) {
+ el = this.getPositioningElement();
+ box = this._box = doc.createElement( 'css3-container' );
+ box.style['direction'] = 'ltr'; //fix positioning bug in rtl environments
+
+ this.updateVisibility();
+
+ el.parentNode.insertBefore( box, el );
+ }
+ return box;
+ },
+
+ finishUpdate: PIE.emptyFn,
+
+ destroy: function() {
+ var box = this._box, par;
+ if( box && ( par = box.parentNode ) ) {
+ par.removeChild( box );
+ }
+ delete this._box;
+ delete this._layers;
+ }
+
+} );
+/**
+ * Renderer for element backgrounds.
+ * @constructor
+ * @param {Element} el The target element
+ * @param {Object} styleInfos The StyleInfo objects
+ * @param {PIE.RootRenderer} parent
+ */
+PIE.BackgroundRenderer = PIE.RendererBase.newRenderer( {
+
+ boxZIndex: 2,
+ boxName: 'background',
+
+ needsUpdate: function() {
+ var si = this.styleInfos;
+ return si.backgroundInfo.changed() || si.borderRadiusInfo.changed();
+ },
+
+ isActive: function() {
+ var si = this.styleInfos;
+ return si.borderImageInfo.isActive() ||
+ si.borderRadiusInfo.isActive() ||
+ si.backgroundInfo.isActive() ||
+ ( si.boxShadowInfo.isActive() && si.boxShadowInfo.getProps().inset );
+ },
+
+ /**
+ * Draw the shapes
+ */
+ draw: function() {
+ var bounds = this.boundsInfo.getBounds();
+ if( bounds.w && bounds.h ) {
+ this.drawBgColor();
+ this.drawBgImages();
+ }
+ },
+
+ /**
+ * Draw the background color shape
+ */
+ drawBgColor: function() {
+ var props = this.styleInfos.backgroundInfo.getProps(),
+ bounds = this.boundsInfo.getBounds(),
+ el = this.targetElement,
+ color = props && props.color,
+ shape, w, h, s, alpha;
+
+ if( color && color.alpha() > 0 ) {
+ this.hideBackground();
+
+ shape = this.getShape( 'bgColor', 'fill', this.getBox(), 1 );
+ w = bounds.w;
+ h = bounds.h;
+ shape.stroked = false;
+ shape.coordsize = w * 2 + ',' + h * 2;
+ shape.coordorigin = '1,1';
+ shape.path = this.getBoxPath( null, 2 );
+ s = shape.style;
+ s.width = w;
+ s.height = h;
+ shape.fill.color = color.colorValue( el );
+
+ alpha = color.alpha();
+ if( alpha < 1 ) {
+ shape.fill.opacity = alpha;
+ }
+ } else {
+ this.deleteShape( 'bgColor' );
+ }
+ },
+
+ /**
+ * Draw all the background image layers
+ */
+ drawBgImages: function() {
+ var props = this.styleInfos.backgroundInfo.getProps(),
+ bounds = this.boundsInfo.getBounds(),
+ images = props && props.bgImages,
+ img, shape, w, h, s, i;
+
+ if( images ) {
+ this.hideBackground();
+
+ w = bounds.w;
+ h = bounds.h;
+
+ i = images.length;
+ while( i-- ) {
+ img = images[i];
+ shape = this.getShape( 'bgImage' + i, 'fill', this.getBox(), 2 );
+
+ shape.stroked = false;
+ shape.fill.type = 'tile';
+ shape.fillcolor = 'none';
+ shape.coordsize = w * 2 + ',' + h * 2;
+ shape.coordorigin = '1,1';
+ shape.path = this.getBoxPath( 0, 2 );
+ s = shape.style;
+ s.width = w;
+ s.height = h;
+
+ if( img.imgType === 'linear-gradient' ) {
+ this.addLinearGradient( shape, img );
+ }
+ else {
+ shape.fill.src = img.imgUrl;
+ this.positionBgImage( shape, i );
+ }
+ }
+ }
+
+ // Delete any bgImage shapes previously created which weren't used above
+ i = images ? images.length : 0;
+ while( this.deleteShape( 'bgImage' + i++ ) ) {}
+ },
+
+
+ /**
+ * Set the position and clipping of the background image for a layer
+ * @param {Element} shape
+ * @param {number} index
+ */
+ positionBgImage: function( shape, index ) {
+ var me = this;
+ PIE.Util.withImageSize( shape.fill.src, function( size ) {
+ var el = me.targetElement,
+ bounds = me.boundsInfo.getBounds(),
+ elW = bounds.w,
+ elH = bounds.h;
+
+ // It's possible that the element dimensions are zero now but weren't when the original
+ // update executed, make sure that's not the case to avoid divide-by-zero error
+ if( elW && elH ) {
+ var fill = shape.fill,
+ si = me.styleInfos,
+ border = si.borderInfo.getProps(),
+ bw = border && border.widths,
+ bwT = bw ? bw['t'].pixels( el ) : 0,
+ bwR = bw ? bw['r'].pixels( el ) : 0,
+ bwB = bw ? bw['b'].pixels( el ) : 0,
+ bwL = bw ? bw['l'].pixels( el ) : 0,
+ bg = si.backgroundInfo.getProps().bgImages[ index ],
+ bgPos = bg.bgPosition ? bg.bgPosition.coords( el, elW - size.w - bwL - bwR, elH - size.h - bwT - bwB ) : { x:0, y:0 },
+ repeat = bg.imgRepeat,
+ pxX, pxY,
+ clipT = 0, clipL = 0,
+ clipR = elW + 1, clipB = elH + 1, //make sure the default clip region is not inside the box (by a subpixel)
+ clipAdjust = PIE.ieVersion === 8 ? 0 : 1; //prior to IE8 requires 1 extra pixel in the image clip region
+
+ // Positioning - find the pixel offset from the top/left and convert to a ratio
+ // The position is shifted by half a pixel, to adjust for the half-pixel coordorigin shift which is
+ // needed to fix antialiasing but makes the bg image fuzzy.
+ pxX = Math.round( bgPos.x ) + bwL + 0.5;
+ pxY = Math.round( bgPos.y ) + bwT + 0.5;
+ fill.position = ( pxX / elW ) + ',' + ( pxY / elH );
+
+ // Set the size of the image. We have to actually set it to px values otherwise it will not honor
+ // the user's browser zoom level and always display at its natural screen size.
+ fill['size']['x'] = 1; //Can be any value, just has to be set to "prime" it so the next line works. Weird!
+ fill['size'] = size.w + 'px,' + size.h + 'px';
+
+ // Repeating - clip the image shape
+ if( repeat && repeat !== 'repeat' ) {
+ if( repeat === 'repeat-x' || repeat === 'no-repeat' ) {
+ clipT = pxY + 1;
+ clipB = pxY + size.h + clipAdjust;
+ }
+ if( repeat === 'repeat-y' || repeat === 'no-repeat' ) {
+ clipL = pxX + 1;
+ clipR = pxX + size.w + clipAdjust;
+ }
+ shape.style.clip = 'rect(' + clipT + 'px,' + clipR + 'px,' + clipB + 'px,' + clipL + 'px)';
+ }
+ }
+ } );
+ },
+
+
+ /**
+ * Draw the linear gradient for a gradient layer
+ * @param {Element} shape
+ * @param {Object} info The object holding the information about the gradient
+ */
+ addLinearGradient: function( shape, info ) {
+ var el = this.targetElement,
+ bounds = this.boundsInfo.getBounds(),
+ w = bounds.w,
+ h = bounds.h,
+ fill = shape.fill,
+ stops = info.stops,
+ stopCount = stops.length,
+ PI = Math.PI,
+ GradientUtil = PIE.GradientUtil,
+ perpendicularIntersect = GradientUtil.perpendicularIntersect,
+ distance = GradientUtil.distance,
+ metrics = GradientUtil.getGradientMetrics( el, w, h, info ),
+ angle = metrics.angle,
+ startX = metrics.startX,
+ startY = metrics.startY,
+ startCornerX = metrics.startCornerX,
+ startCornerY = metrics.startCornerY,
+ endCornerX = metrics.endCornerX,
+ endCornerY = metrics.endCornerY,
+ deltaX = metrics.deltaX,
+ deltaY = metrics.deltaY,
+ lineLength = metrics.lineLength,
+ vmlAngle, vmlGradientLength, vmlColors,
+ stopPx, vmlOffsetPct,
+ p, i, j, before, after;
+
+ // In VML land, the angle of the rendered gradient depends on the aspect ratio of the shape's
+ // bounding box; for example specifying a 45 deg angle actually results in a gradient
+ // drawn diagonally from one corner to its opposite corner, which will only appear to the
+ // viewer as 45 degrees if the shape is equilateral. We adjust for this by taking the x/y deltas
+ // between the start and end points, multiply one of them by the shape's aspect ratio,
+ // and get their arctangent, resulting in an appropriate VML angle. If the angle is perfectly
+ // horizontal or vertical then we don't need to do this conversion.
+ vmlAngle = ( angle % 90 ) ? Math.atan2( deltaX * w / h, deltaY ) / PI * 180 : ( angle + 90 );
+
+ // VML angles are 180 degrees offset from CSS angles
+ vmlAngle += 180;
+ vmlAngle = vmlAngle % 360;
+
+ // Add all the stops to the VML 'colors' list, including the first and last stops.
+ // For each, we find its pixel offset along the gradient-line; if the offset of a stop is less
+ // than that of its predecessor we increase it to be equal. We then map that pixel offset to a
+ // percentage along the VML gradient-line, which runs from shape corner to corner.
+ p = perpendicularIntersect( startCornerX, startCornerY, angle, endCornerX, endCornerY );
+ vmlGradientLength = distance( startCornerX, startCornerY, p[0], p[1] );
+ vmlColors = [];
+ p = perpendicularIntersect( startX, startY, angle, startCornerX, startCornerY );
+ vmlOffsetPct = distance( startX, startY, p[0], p[1] ) / vmlGradientLength * 100;
+
+ // Find the pixel offsets along the CSS3 gradient-line for each stop.
+ stopPx = [];
+ for( i = 0; i < stopCount; i++ ) {
+ stopPx.push( stops[i].offset ? stops[i].offset.pixels( el, lineLength ) :
+ i === 0 ? 0 : i === stopCount - 1 ? lineLength : null );
+ }
+ // Fill in gaps with evenly-spaced offsets
+ for( i = 1; i < stopCount; i++ ) {
+ if( stopPx[ i ] === null ) {
+ before = stopPx[ i - 1 ];
+ j = i;
+ do {
+ after = stopPx[ ++j ];
+ } while( after === null );
+ stopPx[ i ] = before + ( after - before ) / ( j - i + 1 );
+ }
+ // Make sure each stop's offset is no less than the one before it
+ stopPx[ i ] = Math.max( stopPx[ i ], stopPx[ i - 1 ] );
+ }
+
+ // Convert to percentage along the VML gradient line and add to the VML 'colors' value
+ for( i = 0; i < stopCount; i++ ) {
+ vmlColors.push(
+ ( vmlOffsetPct + ( stopPx[ i ] / vmlGradientLength * 100 ) ) + '% ' + stops[i].color.colorValue( el )
+ );
+ }
+
+ // Now, finally, we're ready to render the gradient fill. Set the start and end colors to
+ // the first and last stop colors; this just sets outer bounds for the gradient.
+ fill['angle'] = vmlAngle;
+ fill['type'] = 'gradient';
+ fill['method'] = 'sigma';
+ fill['color'] = stops[0].color.colorValue( el );
+ fill['color2'] = stops[stopCount - 1].color.colorValue( el );
+ if( fill['colors'] ) { //sometimes the colors object isn't initialized so we have to assign it directly (?)
+ fill['colors'].value = vmlColors.join( ',' );
+ } else {
+ fill['colors'] = vmlColors.join( ',' );
+ }
+ },
+
+
+ /**
+ * Hide the actual background image and color of the element.
+ */
+ hideBackground: function() {
+ var rs = this.targetElement.runtimeStyle;
+ rs.backgroundImage = 'url(about:blank)'; //ensures the background area reacts to mouse events
+ rs.backgroundColor = 'transparent';
+ },
+
+ destroy: function() {
+ PIE.RendererBase.destroy.call( this );
+ var rs = this.targetElement.runtimeStyle;
+ rs.backgroundImage = rs.backgroundColor = '';
+ }
+
+} );
+/**
+ * Renderer for element borders.
+ * @constructor
+ * @param {Element} el The target element
+ * @param {Object} styleInfos The StyleInfo objects
+ * @param {PIE.RootRenderer} parent
+ */
+PIE.BorderRenderer = PIE.RendererBase.newRenderer( {
+
+ boxZIndex: 4,
+ boxName: 'border',
+
+ needsUpdate: function() {
+ var si = this.styleInfos;
+ return si.borderInfo.changed() || si.borderRadiusInfo.changed();
+ },
+
+ isActive: function() {
+ var si = this.styleInfos;
+ return si.borderRadiusInfo.isActive() &&
+ !si.borderImageInfo.isActive() &&
+ si.borderInfo.isActive(); //check BorderStyleInfo last because it's the most expensive
+ },
+
+ /**
+ * Draw the border shape(s)
+ */
+ draw: function() {
+ var el = this.targetElement,
+ props = this.styleInfos.borderInfo.getProps(),
+ bounds = this.boundsInfo.getBounds(),
+ w = bounds.w,
+ h = bounds.h,
+ shape, stroke, s,
+ segments, seg, i, len;
+
+ if( props ) {
+ this.hideBorder();
+
+ segments = this.getBorderSegments( 2 );
+ for( i = 0, len = segments.length; i < len; i++) {
+ seg = segments[i];
+ shape = this.getShape( 'borderPiece' + i, seg.stroke ? 'stroke' : 'fill', this.getBox() );
+ shape.coordsize = w * 2 + ',' + h * 2;
+ shape.coordorigin = '1,1';
+ shape.path = seg.path;
+ s = shape.style;
+ s.width = w;
+ s.height = h;
+
+ shape.filled = !!seg.fill;
+ shape.stroked = !!seg.stroke;
+ if( seg.stroke ) {
+ stroke = shape.stroke;
+ stroke['weight'] = seg.weight + 'px';
+ stroke.color = seg.color.colorValue( el );
+ stroke['dashstyle'] = seg.stroke === 'dashed' ? '2 2' : seg.stroke === 'dotted' ? '1 1' : 'solid';
+ stroke['linestyle'] = seg.stroke === 'double' && seg.weight > 2 ? 'ThinThin' : 'Single';
+ } else {
+ shape.fill.color = seg.fill.colorValue( el );
+ }
+ }
+
+ // remove any previously-created border shapes which didn't get used above
+ while( this.deleteShape( 'borderPiece' + i++ ) ) {}
+ }
+ },
+
+
+ /**
+ * Get the VML path definitions for the border segment(s).
+ * @param {number=} mult If specified, all coordinates will be multiplied by this number
+ * @return {Array.<string>}
+ */
+ getBorderSegments: function( mult ) {
+ var el = this.targetElement,
+ bounds, elW, elH,
+ borderInfo = this.styleInfos.borderInfo,
+ segments = [],
+ floor, ceil, wT, wR, wB, wL,
+ round = Math.round,
+ borderProps, radiusInfo, radii, widths, styles, colors;
+
+ if( borderInfo.isActive() ) {
+ borderProps = borderInfo.getProps();
+
+ widths = borderProps.widths;
+ styles = borderProps.styles;
+ colors = borderProps.colors;
+
+ if( borderProps.widthsSame && borderProps.stylesSame && borderProps.colorsSame ) {
+ if( colors['t'].alpha() > 0 ) {
+ // shortcut for identical border on all sides - only need 1 stroked shape
+ wT = widths['t'].pixels( el ); //thickness
+ wR = wT / 2; //shrink
+ segments.push( {
+ path: this.getBoxPath( { t: wR, r: wR, b: wR, l: wR }, mult ),
+ stroke: styles['t'],
+ color: colors['t'],
+ weight: wT
+ } );
+ }
+ }
+ else {
+ mult = mult || 1;
+ bounds = this.boundsInfo.getBounds();
+ elW = bounds.w;
+ elH = bounds.h;
+
+ wT = round( widths['t'].pixels( el ) );
+ wR = round( widths['r'].pixels( el ) );
+ wB = round( widths['b'].pixels( el ) );
+ wL = round( widths['l'].pixels( el ) );
+ var pxWidths = {
+ 't': wT,
+ 'r': wR,
+ 'b': wB,
+ 'l': wL
+ };
+
+ radiusInfo = this.styleInfos.borderRadiusInfo;
+ if( radiusInfo.isActive() ) {
+ radii = this.getRadiiPixels( radiusInfo.getProps() );
+ }
+
+ floor = Math.floor;
+ ceil = Math.ceil;
+
+ function radius( xy, corner ) {
+ return radii ? radii[ xy ][ corner ] : 0;
+ }
+
+ function curve( corner, shrinkX, shrinkY, startAngle, ccw, doMove ) {
+ var rx = radius( 'x', corner),
+ ry = radius( 'y', corner),
+ deg = 65535,
+ isRight = corner.charAt( 1 ) === 'r',
+ isBottom = corner.charAt( 0 ) === 'b';
+ return ( rx > 0 && ry > 0 ) ?
+ ( doMove ? 'al' : 'ae' ) +
+ ( isRight ? ceil( elW - rx ) : floor( rx ) ) * mult + ',' + // center x
+ ( isBottom ? ceil( elH - ry ) : floor( ry ) ) * mult + ',' + // center y
+ ( floor( rx ) - shrinkX ) * mult + ',' + // width
+ ( floor( ry ) - shrinkY ) * mult + ',' + // height
+ ( startAngle * deg ) + ',' + // start angle
+ ( 45 * deg * ( ccw ? 1 : -1 ) // angle change
+ ) : (
+ ( doMove ? 'm' : 'l' ) +
+ ( isRight ? elW - shrinkX : shrinkX ) * mult + ',' +
+ ( isBottom ? elH - shrinkY : shrinkY ) * mult
+ );
+ }
+
+ function line( side, shrink, ccw, doMove ) {
+ var
+ start = (
+ side === 't' ?
+ floor( radius( 'x', 'tl') ) * mult + ',' + ceil( shrink ) * mult :
+ side === 'r' ?
+ ceil( elW - shrink ) * mult + ',' + floor( radius( 'y', 'tr') ) * mult :
+ side === 'b' ?
+ ceil( elW - radius( 'x', 'br') ) * mult + ',' + floor( elH - shrink ) * mult :
+ // side === 'l' ?
+ floor( shrink ) * mult + ',' + ceil( elH - radius( 'y', 'bl') ) * mult
+ ),
+ end = (
+ side === 't' ?
+ ceil( elW - radius( 'x', 'tr') ) * mult + ',' + ceil( shrink ) * mult :
+ side === 'r' ?
+ ceil( elW - shrink ) * mult + ',' + ceil( elH - radius( 'y', 'br') ) * mult :
+ side === 'b' ?
+ floor( radius( 'x', 'bl') ) * mult + ',' + floor( elH - shrink ) * mult :
+ // side === 'l' ?
+ floor( shrink ) * mult + ',' + floor( radius( 'y', 'tl') ) * mult
+ );
+ return ccw ? ( doMove ? 'm' + end : '' ) + 'l' + start :
+ ( doMove ? 'm' + start : '' ) + 'l' + end;
+ }
+
+
+ function addSide( side, sideBefore, sideAfter, cornerBefore, cornerAfter, baseAngle ) {
+ var vert = side === 'l' || side === 'r',
+ sideW = pxWidths[ side ],
+ beforeX, beforeY, afterX, afterY;
+
+ if( sideW > 0 && styles[ side ] !== 'none' && colors[ side ].alpha() > 0 ) {
+ beforeX = pxWidths[ vert ? side : sideBefore ];
+ beforeY = pxWidths[ vert ? sideBefore : side ];
+ afterX = pxWidths[ vert ? side : sideAfter ];
+ afterY = pxWidths[ vert ? sideAfter : side ];
+
+ if( styles[ side ] === 'dashed' || styles[ side ] === 'dotted' ) {
+ segments.push( {
+ path: curve( cornerBefore, beforeX, beforeY, baseAngle + 45, 0, 1 ) +
+ curve( cornerBefore, 0, 0, baseAngle, 1, 0 ),
+ fill: colors[ side ]
+ } );
+ segments.push( {
+ path: line( side, sideW / 2, 0, 1 ),
+ stroke: styles[ side ],
+ weight: sideW,
+ color: colors[ side ]
+ } );
+ segments.push( {
+ path: curve( cornerAfter, afterX, afterY, baseAngle, 0, 1 ) +
+ curve( cornerAfter, 0, 0, baseAngle - 45, 1, 0 ),
+ fill: colors[ side ]
+ } );
+ }
+ else {
+ segments.push( {
+ path: curve( cornerBefore, beforeX, beforeY, baseAngle + 45, 0, 1 ) +
+ line( side, sideW, 0, 0 ) +
+ curve( cornerAfter, afterX, afterY, baseAngle, 0, 0 ) +
+
+ ( styles[ side ] === 'double' && sideW > 2 ?
+ curve( cornerAfter, afterX - floor( afterX / 3 ), afterY - floor( afterY / 3 ), baseAngle - 45, 1, 0 ) +
+ line( side, ceil( sideW / 3 * 2 ), 1, 0 ) +
+ curve( cornerBefore, beforeX - floor( beforeX / 3 ), beforeY - floor( beforeY / 3 ), baseAngle, 1, 0 ) +
+ 'x ' +
+ curve( cornerBefore, floor( beforeX / 3 ), floor( beforeY / 3 ), baseAngle + 45, 0, 1 ) +
+ line( side, floor( sideW / 3 ), 1, 0 ) +
+ curve( cornerAfter, floor( afterX / 3 ), floor( afterY / 3 ), baseAngle, 0, 0 )
+ : '' ) +
+
+ curve( cornerAfter, 0, 0, baseAngle - 45, 1, 0 ) +
+ line( side, 0, 1, 0 ) +
+ curve( cornerBefore, 0, 0, baseAngle, 1, 0 ),
+ fill: colors[ side ]
+ } );
+ }
+ }
+ }
+
+ addSide( 't', 'l', 'r', 'tl', 'tr', 90 );
+ addSide( 'r', 't', 'b', 'tr', 'br', 0 );
+ addSide( 'b', 'r', 'l', 'br', 'bl', -90 );
+ addSide( 'l', 'b', 't', 'bl', 'tl', -180 );
+ }
+ }
+
+ return segments;
+ },
+
+ destroy: function() {
+ var me = this;
+ if (me.finalized || !me.styleInfos.borderImageInfo.isActive()) {
+ me.targetElement.runtimeStyle.borderColor = '';
+ }
+ PIE.RendererBase.destroy.call( me );
+ }
+
+
+} );
+/**
+ * Renderer for border-image
+ * @constructor
+ * @param {Element} el The target element
+ * @param {Object} styleInfos The StyleInfo objects
+ * @param {PIE.RootRenderer} parent
+ */
+PIE.BorderImageRenderer = PIE.RendererBase.newRenderer( {
+
+ boxZIndex: 5,
+ pieceNames: [ 't', 'tr', 'r', 'br', 'b', 'bl', 'l', 'tl', 'c' ],
+
+ needsUpdate: function() {
+ return this.styleInfos.borderImageInfo.changed();
+ },
+
+ isActive: function() {
+ return this.styleInfos.borderImageInfo.isActive();
+ },
+
+ draw: function() {
+ this.getBox(); //make sure pieces are created
+
+ var props = this.styleInfos.borderImageInfo.getProps(),
+ borderProps = this.styleInfos.borderInfo.getProps(),
+ bounds = this.boundsInfo.getBounds(),
+ el = this.targetElement,
+ pieces = this.pieces;
+
+ PIE.Util.withImageSize( props.src, function( imgSize ) {
+ var elW = bounds.w,
+ elH = bounds.h,
+ zero = PIE.getLength( '0' ),
+ widths = props.widths || ( borderProps ? borderProps.widths : { 't': zero, 'r': zero, 'b': zero, 'l': zero } ),
+ widthT = widths['t'].pixels( el ),
+ widthR = widths['r'].pixels( el ),
+ widthB = widths['b'].pixels( el ),
+ widthL = widths['l'].pixels( el ),
+ slices = props.slice,
+ sliceT = slices['t'].pixels( el ),
+ sliceR = slices['r'].pixels( el ),
+ sliceB = slices['b'].pixels( el ),
+ sliceL = slices['l'].pixels( el );
+
+ // Piece positions and sizes
+ function setSizeAndPos( piece, w, h, x, y ) {
+ var s = pieces[piece].style,
+ max = Math.max;
+ s.width = max(w, 0);
+ s.height = max(h, 0);
+ s.left = x;
+ s.top = y;
+ }
+ setSizeAndPos( 'tl', widthL, widthT, 0, 0 );
+ setSizeAndPos( 't', elW - widthL - widthR, widthT, widthL, 0 );
+ setSizeAndPos( 'tr', widthR, widthT, elW - widthR, 0 );
+ setSizeAndPos( 'r', widthR, elH - widthT - widthB, elW - widthR, widthT );
+ setSizeAndPos( 'br', widthR, widthB, elW - widthR, elH - widthB );
+ setSizeAndPos( 'b', elW - widthL - widthR, widthB, widthL, elH - widthB );
+ setSizeAndPos( 'bl', widthL, widthB, 0, elH - widthB );
+ setSizeAndPos( 'l', widthL, elH - widthT - widthB, 0, widthT );
+ setSizeAndPos( 'c', elW - widthL - widthR, elH - widthT - widthB, widthL, widthT );
+
+
+ // image croppings
+ function setCrops( sides, crop, val ) {
+ for( var i=0, len=sides.length; i < len; i++ ) {
+ pieces[ sides[i] ]['imagedata'][ crop ] = val;
+ }
+ }
+
+ // corners
+ setCrops( [ 'tl', 't', 'tr' ], 'cropBottom', ( imgSize.h - sliceT ) / imgSize.h );
+ setCrops( [ 'tl', 'l', 'bl' ], 'cropRight', ( imgSize.w - sliceL ) / imgSize.w );
+ setCrops( [ 'bl', 'b', 'br' ], 'cropTop', ( imgSize.h - sliceB ) / imgSize.h );
+ setCrops( [ 'tr', 'r', 'br' ], 'cropLeft', ( imgSize.w - sliceR ) / imgSize.w );
+
+ // edges and center
+ // TODO right now this treats everything like 'stretch', need to support other schemes
+ //if( props.repeat.v === 'stretch' ) {
+ setCrops( [ 'l', 'r', 'c' ], 'cropTop', sliceT / imgSize.h );
+ setCrops( [ 'l', 'r', 'c' ], 'cropBottom', sliceB / imgSize.h );
+ //}
+ //if( props.repeat.h === 'stretch' ) {
+ setCrops( [ 't', 'b', 'c' ], 'cropLeft', sliceL / imgSize.w );
+ setCrops( [ 't', 'b', 'c' ], 'cropRight', sliceR / imgSize.w );
+ //}
+
+ // center fill
+ pieces['c'].style.display = props.fill ? '' : 'none';
+ }, this );
+ },
+
+ getBox: function() {
+ var box = this.parent.getLayer( this.boxZIndex ),
+ s, piece, i,
+ pieceNames = this.pieceNames,
+ len = pieceNames.length;
+
+ if( !box ) {
+ box = doc.createElement( 'border-image' );
+ s = box.style;
+ s.position = 'absolute';
+
+ this.pieces = {};
+
+ for( i = 0; i < len; i++ ) {
+ piece = this.pieces[ pieceNames[i] ] = PIE.Util.createVmlElement( 'rect' );
+ piece.appendChild( PIE.Util.createVmlElement( 'imagedata' ) );
+ s = piece.style;
+ s['behavior'] = 'url(#default#VML)';
+ s.position = "absolute";
+ s.top = s.left = 0;
+ piece['imagedata'].src = this.styleInfos.borderImageInfo.getProps().src;
+ piece.stroked = false;
+ piece.filled = false;
+ box.appendChild( piece );
+ }
+
+ this.parent.addLayer( this.boxZIndex, box );
+ }
+
+ return box;
+ },
+
+ prepareUpdate: function() {
+ if (this.isActive()) {
+ var me = this,
+ el = me.targetElement,
+ rs = el.runtimeStyle,
+ widths = me.styleInfos.borderImageInfo.getProps().widths;
+
+ // Force border-style to solid so it doesn't collapse
+ rs.borderStyle = 'solid';
+
+ // If widths specified in border-image shorthand, override border-width
+ // NOTE px units needed here as this gets used by the IE9 renderer too
+ if ( widths ) {
+ rs.borderTopWidth = widths['t'].pixels( el ) + 'px';
+ rs.borderRightWidth = widths['r'].pixels( el ) + 'px';
+ rs.borderBottomWidth = widths['b'].pixels( el ) + 'px';
+ rs.borderLeftWidth = widths['l'].pixels( el ) + 'px';
+ }
+
+ // Make the border transparent
+ me.hideBorder();
+ }
+ },
+
+ destroy: function() {
+ var me = this,
+ rs = me.targetElement.runtimeStyle;
+ rs.borderStyle = '';
+ if (me.finalized || !me.styleInfos.borderInfo.isActive()) {
+ rs.borderColor = rs.borderWidth = '';
+ }
+ PIE.RendererBase.destroy.call( this );
+ }
+
+} );
+/**
+ * Renderer for outset box-shadows
+ * @constructor
+ * @param {Element} el The target element
+ * @param {Object} styleInfos The StyleInfo objects
+ * @param {PIE.RootRenderer} parent
+ */
+PIE.BoxShadowOutsetRenderer = PIE.RendererBase.newRenderer( {
+
+ boxZIndex: 1,
+ boxName: 'outset-box-shadow',
+
+ needsUpdate: function() {
+ var si = this.styleInfos;
+ return si.boxShadowInfo.changed() || si.borderRadiusInfo.changed();
+ },
+
+ isActive: function() {
+ var boxShadowInfo = this.styleInfos.boxShadowInfo;
+ return boxShadowInfo.isActive() && boxShadowInfo.getProps().outset[0];
+ },
+
+ draw: function() {
+ var me = this,
+ el = this.targetElement,
+ box = this.getBox(),
+ styleInfos = this.styleInfos,
+ shadowInfos = styleInfos.boxShadowInfo.getProps().outset,
+ radii = styleInfos.borderRadiusInfo.getProps(),
+ len = shadowInfos.length,
+ i = len, j,
+ bounds = this.boundsInfo.getBounds(),
+ w = bounds.w,
+ h = bounds.h,
+ clipAdjust = PIE.ieVersion === 8 ? 1 : 0, //workaround for IE8 bug where VML leaks out top/left of clip region by 1px
+ corners = [ 'tl', 'tr', 'br', 'bl' ], corner,
+ shadowInfo, shape, fill, ss, xOff, yOff, spread, blur, shrink, color, alpha, path,
+ totalW, totalH, focusX, focusY, isBottom, isRight;
+
+
+ function getShadowShape( index, corner, xOff, yOff, color, blur, path ) {
+ var shape = me.getShape( 'shadow' + index + corner, 'fill', box, len - index ),
+ fill = shape.fill;
+
+ // Position and size
+ shape['coordsize'] = w * 2 + ',' + h * 2;
+ shape['coordorigin'] = '1,1';
+
+ // Color and opacity
+ shape['stroked'] = false;
+ shape['filled'] = true;
+ fill.color = color.colorValue( el );
+ if( blur ) {
+ fill['type'] = 'gradienttitle'; //makes the VML gradient follow the shape's outline - hooray for undocumented features?!?!
+ fill['color2'] = fill.color;
+ fill['opacity'] = 0;
+ }
+
+ // Path
+ shape.path = path;
+
+ // This needs to go last for some reason, to prevent rendering at incorrect size
+ ss = shape.style;
+ ss.left = xOff;
+ ss.top = yOff;
+ ss.width = w;
+ ss.height = h;
+
+ return shape;
+ }
+
+
+ while( i-- ) {
+ shadowInfo = shadowInfos[ i ];
+ xOff = shadowInfo.xOffset.pixels( el );
+ yOff = shadowInfo.yOffset.pixels( el );
+ spread = shadowInfo.spread.pixels( el );
+ blur = shadowInfo.blur.pixels( el );
+ color = shadowInfo.color;
+ // Shape path
+ shrink = -spread - blur;
+ if( !radii && blur ) {
+ // If blurring, use a non-null border radius info object so that getBoxPath will
+ // round the corners of the expanded shadow shape rather than squaring them off.
+ radii = PIE.BorderRadiusStyleInfo.ALL_ZERO;
+ }
+ path = this.getBoxPath( { t: shrink, r: shrink, b: shrink, l: shrink }, 2, radii );
+
+ if( blur ) {
+ totalW = ( spread + blur ) * 2 + w;
+ totalH = ( spread + blur ) * 2 + h;
+ focusX = totalW ? blur * 2 / totalW : 0;
+ focusY = totalH ? blur * 2 / totalH : 0;
+ if( blur - spread > w / 2 || blur - spread > h / 2 ) {
+ // If the blur is larger than half the element's narrowest dimension, we cannot do
+ // this with a single shape gradient, because its focussize would have to be less than
+ // zero which results in ugly artifacts. Instead we create four shapes, each with its
+ // gradient focus past center, and then clip them so each only shows the quadrant
+ // opposite the focus.
+ for( j = 4; j--; ) {
+ corner = corners[j];
+ isBottom = corner.charAt( 0 ) === 'b';
+ isRight = corner.charAt( 1 ) === 'r';
+ shape = getShadowShape( i, corner, xOff, yOff, color, blur, path );
+ fill = shape.fill;
+ fill['focusposition'] = ( isRight ? 1 - focusX : focusX ) + ',' +
+ ( isBottom ? 1 - focusY : focusY );
+ fill['focussize'] = '0,0';
+
+ // Clip to show only the appropriate quadrant. Add 1px to the top/left clip values
+ // in IE8 to prevent a bug where IE8 displays one pixel outside the clip region.
+ shape.style.clip = 'rect(' + ( ( isBottom ? totalH / 2 : 0 ) + clipAdjust ) + 'px,' +
+ ( isRight ? totalW : totalW / 2 ) + 'px,' +
+ ( isBottom ? totalH : totalH / 2 ) + 'px,' +
+ ( ( isRight ? totalW / 2 : 0 ) + clipAdjust ) + 'px)';
+ }
+ } else {
+ // TODO delete old quadrant shapes if resizing expands past the barrier
+ shape = getShadowShape( i, '', xOff, yOff, color, blur, path );
+ fill = shape.fill;
+ fill['focusposition'] = focusX + ',' + focusY;
+ fill['focussize'] = ( 1 - focusX * 2 ) + ',' + ( 1 - focusY * 2 );
+ }
+ } else {
+ shape = getShadowShape( i, '', xOff, yOff, color, blur, path );
+ alpha = color.alpha();
+ if( alpha < 1 ) {
+ // shape.style.filter = 'alpha(opacity=' + ( alpha * 100 ) + ')';
+ // ss.filter = 'progid:DXImageTransform.Microsoft.BasicImage(opacity=' + ( alpha ) + ')';
+ shape.fill.opacity = alpha;
+ }
+ }
+ }
+ }
+
+} );
+/**
+ * Renderer for re-rendering img elements using VML. Kicks in if the img has
+ * a border-radius applied, or if the -pie-png-fix flag is set.
+ * @constructor
+ * @param {Element} el The target element
+ * @param {Object} styleInfos The StyleInfo objects
+ * @param {PIE.RootRenderer} parent
+ */
+PIE.ImgRenderer = PIE.RendererBase.newRenderer( {
+
+ boxZIndex: 6,
+ boxName: 'imgEl',
+
+ needsUpdate: function() {
+ var si = this.styleInfos;
+ return this.targetElement.src !== this._lastSrc || si.borderRadiusInfo.changed();
+ },
+
+ isActive: function() {
+ var si = this.styleInfos;
+ return si.borderRadiusInfo.isActive() || si.backgroundInfo.isPngFix();
+ },
+
+ draw: function() {
+ this._lastSrc = src;
+ this.hideActualImg();
+
+ var shape = this.getShape( 'img', 'fill', this.getBox() ),
+ fill = shape.fill,
+ bounds = this.boundsInfo.getBounds(),
+ w = bounds.w,
+ h = bounds.h,
+ borderProps = this.styleInfos.borderInfo.getProps(),
+ borderWidths = borderProps && borderProps.widths,
+ el = this.targetElement,
+ src = el.src,
+ round = Math.round,
+ cs = el.currentStyle,
+ getLength = PIE.getLength,
+ s, zero;
+
+ // In IE6, the BorderRenderer will have hidden the border by moving the border-width to
+ // the padding; therefore we want to pretend the borders have no width so they aren't doubled
+ // when adding in the current padding value below.
+ if( !borderWidths || PIE.ieVersion < 7 ) {
+ zero = PIE.getLength( '0' );
+ borderWidths = { 't': zero, 'r': zero, 'b': zero, 'l': zero };
+ }
+
+ shape.stroked = false;
+ fill.type = 'frame';
+ fill.src = src;
+ fill.position = (w ? 0.5 / w : 0) + ',' + (h ? 0.5 / h : 0);
+ shape.coordsize = w * 2 + ',' + h * 2;
+ shape.coordorigin = '1,1';
+ shape.path = this.getBoxPath( {
+ t: round( borderWidths['t'].pixels( el ) + getLength( cs.paddingTop ).pixels( el ) ),
+ r: round( borderWidths['r'].pixels( el ) + getLength( cs.paddingRight ).pixels( el ) ),
+ b: round( borderWidths['b'].pixels( el ) + getLength( cs.paddingBottom ).pixels( el ) ),
+ l: round( borderWidths['l'].pixels( el ) + getLength( cs.paddingLeft ).pixels( el ) )
+ }, 2 );
+ s = shape.style;
+ s.width = w;
+ s.height = h;
+ },
+
+ hideActualImg: function() {
+ this.targetElement.runtimeStyle.filter = 'alpha(opacity=0)';
+ },
+
+ destroy: function() {
+ PIE.RendererBase.destroy.call( this );
+ this.targetElement.runtimeStyle.filter = '';
+ }
+
+} );
+/**
+ * Root renderer for IE9; manages the rendering layers in the element's background
+ * @param {Element} el The target element
+ * @param {Object} styleInfos The StyleInfo objects
+ */
+PIE.IE9RootRenderer = PIE.RendererBase.newRenderer( {
+
+ updatePos: PIE.emptyFn,
+ updateSize: PIE.emptyFn,
+ updateVisibility: PIE.emptyFn,
+ updateProps: PIE.emptyFn,
+
+ outerCommasRE: /^,+|,+$/g,
+ innerCommasRE: /,+/g,
+
+ setBackgroundLayer: function(zIndex, bg) {
+ var me = this,
+ bgLayers = me._bgLayers || ( me._bgLayers = [] ),
+ undef;
+ bgLayers[zIndex] = bg || undef;
+ },
+
+ finishUpdate: function() {
+ var me = this,
+ bgLayers = me._bgLayers,
+ bg;
+ if( bgLayers && ( bg = bgLayers.join( ',' ).replace( me.outerCommasRE, '' ).replace( me.innerCommasRE, ',' ) ) !== me._lastBg ) {
+ me._lastBg = me.targetElement.runtimeStyle.background = bg;
+ }
+ },
+
+ destroy: function() {
+ this.targetElement.runtimeStyle.background = '';
+ delete this._bgLayers;
+ }
+
+} );
+/**
+ * Renderer for element backgrounds, specific for IE9. Only handles translating CSS3 gradients
+ * to an equivalent SVG data URI.
+ * @constructor
+ * @param {Element} el The target element
+ * @param {Object} styleInfos The StyleInfo objects
+ */
+PIE.IE9BackgroundRenderer = PIE.RendererBase.newRenderer( {
+
+ bgLayerZIndex: 1,
+
+ needsUpdate: function() {
+ var si = this.styleInfos;
+ return si.backgroundInfo.changed();
+ },
+
+ isActive: function() {
+ var si = this.styleInfos;
+ return si.backgroundInfo.isActive() || si.borderImageInfo.isActive();
+ },
+
+ draw: function() {
+ var me = this,
+ props = me.styleInfos.backgroundInfo.getProps(),
+ bg, images, i = 0, img, bgAreaSize, bgSize;
+
+ if ( props ) {
+ bg = [];
+
+ images = props.bgImages;
+ if ( images ) {
+ while( img = images[ i++ ] ) {
+ if (img.imgType === 'linear-gradient' ) {
+ bgAreaSize = me.getBgAreaSize( img.bgOrigin );
+ bgSize = ( img.bgSize || PIE.BgSize.DEFAULT ).pixels(
+ me.targetElement, bgAreaSize.w, bgAreaSize.h, bgAreaSize.w, bgAreaSize.h
+ ),
+ bg.push(
+ 'url(data:image/svg+xml,' + escape( me.getGradientSvg( img, bgSize.w, bgSize.h ) ) + ') ' +
+ me.bgPositionToString( img.bgPosition ) + ' / ' + bgSize.w + 'px ' + bgSize.h + 'px ' +
+ ( img.bgAttachment || '' ) + ' ' + ( img.bgOrigin || '' ) + ' ' + ( img.bgClip || '' )
+ );
+ } else {
+ bg.push( img.origString );
+ }
+ }
+ }
+
+ if ( props.color ) {
+ bg.push( props.color.val );
+ }
+
+ me.parent.setBackgroundLayer(me.bgLayerZIndex, bg.join(','));
+ }
+ },
+
+ bgPositionToString: function( bgPosition ) {
+ return bgPosition ? bgPosition.tokens.map(function(token) {
+ return token.tokenValue;
+ }).join(' ') : '0 0';
+ },
+
+ getBgAreaSize: function( bgOrigin ) {
+ var me = this,
+ el = me.targetElement,
+ bounds = me.boundsInfo.getBounds(),
+ elW = bounds.w,
+ elH = bounds.h,
+ w = elW,
+ h = elH,
+ borders, getLength, cs;
+
+ if( bgOrigin !== 'border-box' ) {
+ borders = me.styleInfos.borderInfo.getProps();
+ if( borders && ( borders = borders.widths ) ) {
+ w -= borders[ 'l' ].pixels( el ) + borders[ 'l' ].pixels( el );
+ h -= borders[ 't' ].pixels( el ) + borders[ 'b' ].pixels( el );
+ }
+ }
+
+ if ( bgOrigin === 'content-box' ) {
+ getLength = PIE.getLength;
+ cs = el.currentStyle;
+ w -= getLength( cs.paddingLeft ).pixels( el ) + getLength( cs.paddingRight ).pixels( el );
+ h -= getLength( cs.paddingTop ).pixels( el ) + getLength( cs.paddingBottom ).pixels( el );
+ }
+
+ return { w: w, h: h };
+ },
+
+ getGradientSvg: function( info, bgWidth, bgHeight ) {
+ var el = this.targetElement,
+ stopsInfo = info.stops,
+ stopCount = stopsInfo.length,
+ metrics = PIE.GradientUtil.getGradientMetrics( el, bgWidth, bgHeight, info ),
+ startX = metrics.startX,
+ startY = metrics.startY,
+ endX = metrics.endX,
+ endY = metrics.endY,
+ lineLength = metrics.lineLength,
+ stopPx,
+ i, j, before, after,
+ svg;
+
+ // Find the pixel offsets along the CSS3 gradient-line for each stop.
+ stopPx = [];
+ for( i = 0; i < stopCount; i++ ) {
+ stopPx.push( stopsInfo[i].offset ? stopsInfo[i].offset.pixels( el, lineLength ) :
+ i === 0 ? 0 : i === stopCount - 1 ? lineLength : null );
+ }
+ // Fill in gaps with evenly-spaced offsets
+ for( i = 1; i < stopCount; i++ ) {
+ if( stopPx[ i ] === null ) {
+ before = stopPx[ i - 1 ];
+ j = i;
+ do {
+ after = stopPx[ ++j ];
+ } while( after === null );
+ stopPx[ i ] = before + ( after - before ) / ( j - i + 1 );
+ }
+ }
+
+ svg = [
+ '<svg width="' + bgWidth + '" height="' + bgHeight + '" xmlns="http://www.w3.org/2000/svg">' +
+ '<defs>' +
+ '<linearGradient id="g" gradientUnits="userSpaceOnUse"' +
+ ' x1="' + ( startX / bgWidth * 100 ) + '%" y1="' + ( startY / bgHeight * 100 ) + '%" x2="' + ( endX / bgWidth * 100 ) + '%" y2="' + ( endY / bgHeight * 100 ) + '%">'
+ ];
+
+ // Convert to percentage along the SVG gradient line and add to the stops list
+ for( i = 0; i < stopCount; i++ ) {
+ svg.push(
+ '<stop offset="' + ( stopPx[ i ] / lineLength ) +
+ '" stop-color="' + stopsInfo[i].color.colorValue( el ) +
+ '" stop-opacity="' + stopsInfo[i].color.alpha() + '"/>'
+ );
+ }
+
+ svg.push(
+ '</linearGradient>' +
+ '</defs>' +
+ '<rect width="100%" height="100%" fill="url(#g)"/>' +
+ '</svg>'
+ );
+
+ return svg.join( '' );
+ },
+
+ destroy: function() {
+ this.parent.setBackgroundLayer( this.bgLayerZIndex );
+ }
+
+} );
+/**
+ * Renderer for border-image
+ * @constructor
+ * @param {Element} el The target element
+ * @param {Object} styleInfos The StyleInfo objects
+ * @param {PIE.RootRenderer} parent
+ */
+PIE.IE9BorderImageRenderer = PIE.RendererBase.newRenderer( {
+
+ REPEAT: 'repeat',
+ STRETCH: 'stretch',
+ ROUND: 'round',
+
+ bgLayerZIndex: 0,
+
+ needsUpdate: function() {
+ return this.styleInfos.borderImageInfo.changed();
+ },
+
+ isActive: function() {
+ return this.styleInfos.borderImageInfo.isActive();
+ },
+
+ draw: function() {
+ var me = this,
+ props = me.styleInfos.borderImageInfo.getProps(),
+ borderProps = me.styleInfos.borderInfo.getProps(),
+ bounds = me.boundsInfo.getBounds(),
+ repeat = props.repeat,
+ repeatH = repeat.h,
+ repeatV = repeat.v,
+ el = me.targetElement,
+ isAsync = 0;
+
+ PIE.Util.withImageSize( props.src, function( imgSize ) {
+ var elW = bounds.w,
+ elH = bounds.h,
+ imgW = imgSize.w,
+ imgH = imgSize.h,
+
+ // The image cannot be referenced as a URL directly in the SVG because IE9 throws a strange
+ // security exception (perhaps due to cross-origin policy within data URIs?) Therefore we
+ // work around this by converting the image data into a data URI itself using a transient
+ // canvas. This unfortunately requires the border-image src to be within the same domain,
+ // which isn't a limitation in true border-image, so we need to try and find a better fix.
+ imgSrc = me.imageToDataURI( props.src, imgW, imgH ),
+
+ REPEAT = me.REPEAT,
+ STRETCH = me.STRETCH,
+ ROUND = me.ROUND,
+ ceil = Math.ceil,
+
+ zero = PIE.getLength( '0' ),
+ widths = props.widths || ( borderProps ? borderProps.widths : { 't': zero, 'r': zero, 'b': zero, 'l': zero } ),
+ widthT = widths['t'].pixels( el ),
+ widthR = widths['r'].pixels( el ),
+ widthB = widths['b'].pixels( el ),
+ widthL = widths['l'].pixels( el ),
+ slices = props.slice,
+ sliceT = slices['t'].pixels( el ),
+ sliceR = slices['r'].pixels( el ),
+ sliceB = slices['b'].pixels( el ),
+ sliceL = slices['l'].pixels( el ),
+ centerW = elW - widthL - widthR,
+ middleH = elH - widthT - widthB,
+ imgCenterW = imgW - sliceL - sliceR,
+ imgMiddleH = imgH - sliceT - sliceB,
+
+ // Determine the size of each tile - 'round' is handled below
+ tileSizeT = repeatH === STRETCH ? centerW : imgCenterW * widthT / sliceT,
+ tileSizeR = repeatV === STRETCH ? middleH : imgMiddleH * widthR / sliceR,
+ tileSizeB = repeatH === STRETCH ? centerW : imgCenterW * widthB / sliceB,
+ tileSizeL = repeatV === STRETCH ? middleH : imgMiddleH * widthL / sliceL,
+
+ svg,
+ patterns = [],
+ rects = [],
+ i = 0;
+
+ // For 'round', subtract from each tile's size enough so that they fill the space a whole number of times
+ if (repeatH === ROUND) {
+ tileSizeT -= (tileSizeT - (centerW % tileSizeT || tileSizeT)) / ceil(centerW / tileSizeT);
+ tileSizeB -= (tileSizeB - (centerW % tileSizeB || tileSizeB)) / ceil(centerW / tileSizeB);
+ }
+ if (repeatV === ROUND) {
+ tileSizeR -= (tileSizeR - (middleH % tileSizeR || tileSizeR)) / ceil(middleH / tileSizeR);
+ tileSizeL -= (tileSizeL - (middleH % tileSizeL || tileSizeL)) / ceil(middleH / tileSizeL);
+ }
+
+
+ // Build the SVG for the border-image rendering. Add each piece as a pattern, which is then stretched
+ // or repeated as the fill of a rect of appropriate size.
+ svg = [
+ '<svg width="' + elW + '" height="' + elH + '" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">'
+ ];
+
+ function addImage( x, y, w, h, cropX, cropY, cropW, cropH, tileW, tileH ) {
+ patterns.push(
+ '<pattern patternUnits="userSpaceOnUse" id="pattern' + i + '" ' +
+ 'x="' + (repeatH === REPEAT ? x + w / 2 - tileW / 2 : x) + '" ' +
+ 'y="' + (repeatV === REPEAT ? y + h / 2 - tileH / 2 : y) + '" ' +
+ 'width="' + tileW + '" height="' + tileH + '">' +
+ '<svg width="' + tileW + '" height="' + tileH + '" viewBox="' + cropX + ' ' + cropY + ' ' + cropW + ' ' + cropH + '" preserveAspectRatio="none">' +
+ '<image xlink:href="' + imgSrc + '" x="0" y="0" width="' + imgW + '" height="' + imgH + '" />' +
+ '</svg>' +
+ '</pattern>'
+ );
+ rects.push(
+ '<rect x="' + x + '" y="' + y + '" width="' + w + '" height="' + h + '" fill="url(#pattern' + i + ')" />'
+ );
+ i++;
+ }
+ addImage( 0, 0, widthL, widthT, 0, 0, sliceL, sliceT, widthL, widthT ); // top left
+ addImage( widthL, 0, centerW, widthT, sliceL, 0, imgCenterW, sliceT, tileSizeT, widthT ); // top center
+ addImage( elW - widthR, 0, widthR, widthT, imgW - sliceR, 0, sliceR, sliceT, widthR, widthT ); // top right
+ addImage( 0, widthT, widthL, middleH, 0, sliceT, sliceL, imgMiddleH, widthL, tileSizeL ); // middle left
+ if ( props.fill ) { // center fill
+ addImage( widthL, widthT, centerW, middleH, sliceL, sliceT, imgCenterW, imgMiddleH,
+ tileSizeT || tileSizeB || imgCenterW, tileSizeL || tileSizeR || imgMiddleH );
+ }
+ addImage( elW - widthR, widthT, widthR, middleH, imgW - sliceR, sliceT, sliceR, imgMiddleH, widthR, tileSizeR ); // middle right
+ addImage( 0, elH - widthB, widthL, widthB, 0, imgH - sliceB, sliceL, sliceB, widthL, widthB ); // bottom left
+ addImage( widthL, elH - widthB, centerW, widthB, sliceL, imgH - sliceB, imgCenterW, sliceB, tileSizeB, widthB ); // bottom center
+ addImage( elW - widthR, elH - widthB, widthR, widthB, imgW - sliceR, imgH - sliceB, sliceR, sliceB, widthR, widthB ); // bottom right
+
+ svg.push(
+ '<defs>' +
+ patterns.join('\n') +
+ '</defs>' +
+ rects.join('\n') +
+ '</svg>'
+ );
+
+ me.parent.setBackgroundLayer( me.bgLayerZIndex, 'url(data:image/svg+xml,' + escape( svg.join( '' ) ) + ') no-repeat border-box border-box' );
+
+ // If the border-image's src wasn't immediately available, the SVG for its background layer
+ // will have been created asynchronously after the main element's update has finished; we'll
+ // therefore need to force the root renderer to sync to the final background once finished.
+ if( isAsync ) {
+ me.parent.finishUpdate();
+ }
+ }, me );
+
+ isAsync = 1;
+ },
+
+ /**
+ * Convert a given image to a data URI
+ */
+ imageToDataURI: (function() {
+ var uris = {};
+ return function( src, width, height ) {
+ var uri = uris[ src ],
+ image, canvas;
+ if ( !uri ) {
+ image = new Image();
+ canvas = doc.createElement( 'canvas' );
+ image.src = src;
+ canvas.width = width;
+ canvas.height = height;
+ canvas.getContext( '2d' ).drawImage( image, 0, 0 );
+ uri = uris[ src ] = canvas.toDataURL();
+ }
+ return uri;
+ }
+ })(),
+
+ prepareUpdate: PIE.BorderImageRenderer.prototype.prepareUpdate,
+
+ destroy: function() {
+ var me = this,
+ rs = me.targetElement.runtimeStyle;
+ me.parent.setBackgroundLayer( me.bgLayerZIndex );
+ rs.borderColor = rs.borderStyle = rs.borderWidth = '';
+ }
+
+} );
+
+PIE.Element = (function() {
+
+ var wrappers = {},
+ lazyInitCssProp = PIE.CSS_PREFIX + 'lazy-init',
+ pollCssProp = PIE.CSS_PREFIX + 'poll',
+ trackActiveCssProp = PIE.CSS_PREFIX + 'track-active',
+ trackHoverCssProp = PIE.CSS_PREFIX + 'track-hover',
+ hoverClass = PIE.CLASS_PREFIX + 'hover',
+ activeClass = PIE.CLASS_PREFIX + 'active',
+ focusClass = PIE.CLASS_PREFIX + 'focus',
+ firstChildClass = PIE.CLASS_PREFIX + 'first-child',
+ ignorePropertyNames = { 'background':1, 'bgColor':1, 'display': 1 },
+ classNameRegExes = {},
+ dummyArray = [];
+
+
+ function addClass( el, className ) {
+ el.className += ' ' + className;
+ }
+
+ function removeClass( el, className ) {
+ var re = classNameRegExes[ className ] ||
+ ( classNameRegExes[ className ] = new RegExp( '\\b' + className + '\\b', 'g' ) );
+ el.className = el.className.replace( re, '' );
+ }
+
+ function delayAddClass( el, className /*, className2*/ ) {
+ var classes = dummyArray.slice.call( arguments, 1 ),
+ i = classes.length;
+ setTimeout( function() {
+ if( el ) {
+ while( i-- ) {
+ addClass( el, classes[ i ] );
+ }
+ }
+ }, 0 );
+ }
+
+ function delayRemoveClass( el, className /*, className2*/ ) {
+ var classes = dummyArray.slice.call( arguments, 1 ),
+ i = classes.length;
+ setTimeout( function() {
+ if( el ) {
+ while( i-- ) {
+ removeClass( el, classes[ i ] );
+ }
+ }
+ }, 0 );
+ }
+
+
+
+ function Element( el ) {
+ var renderers,
+ rootRenderer,
+ boundsInfo = new PIE.BoundsInfo( el ),
+ styleInfos,
+ styleInfosArr,
+ initializing,
+ initialized,
+ eventsAttached,
+ eventListeners = [],
+ delayed,
+ destroyed,
+ poll;
+
+ /**
+ * Initialize PIE for this element.
+ */
+ function init() {
+ if( !initialized ) {
+ var docEl,
+ bounds,
+ ieDocMode = PIE.ieDocMode,
+ cs = el.currentStyle,
+ lazy = cs.getAttribute( lazyInitCssProp ) === 'true',
+ trackActive = cs.getAttribute( trackActiveCssProp ) !== 'false',
+ trackHover = cs.getAttribute( trackHoverCssProp ) !== 'false',
+ childRenderers;
+
+ // Polling for size/position changes: default to on in IE8, off otherwise, overridable by -pie-poll
+ poll = cs.getAttribute( pollCssProp );
+ poll = ieDocMode > 7 ? poll !== 'false' : poll === 'true';
+
+ // Force layout so move/resize events will fire. Set this as soon as possible to avoid layout changes
+ // after load, but make sure it only gets called the first time through to avoid recursive calls to init().
+ if( !initializing ) {
+ initializing = 1;
+ el.runtimeStyle.zoom = 1;
+ initFirstChildPseudoClass();
+ }
+
+ boundsInfo.lock();
+
+ // If the -pie-lazy-init:true flag is set, check if the element is outside the viewport and if so, delay initialization
+ if( lazy && ( bounds = boundsInfo.getBounds() ) && ( docEl = doc.documentElement || doc.body ) &&
+ ( bounds.y > docEl.clientHeight || bounds.x > docEl.clientWidth || bounds.y + bounds.h < 0 || bounds.x + bounds.w < 0 ) ) {
+ if( !delayed ) {
+ delayed = 1;
+ PIE.OnScroll.observe( init );
+ }
+ } else {
+ initialized = 1;
+ delayed = initializing = 0;
+ PIE.OnScroll.unobserve( init );
+
+ // Create the style infos and renderers
+ if ( ieDocMode === 9 ) {
+ styleInfos = {
+ backgroundInfo: new PIE.BackgroundStyleInfo( el ),
+ borderImageInfo: new PIE.BorderImageStyleInfo( el ),
+ borderInfo: new PIE.BorderStyleInfo( el )
+ };
+ styleInfosArr = [
+ styleInfos.backgroundInfo,
+ styleInfos.borderImageInfo
+ ];
+ rootRenderer = new PIE.IE9RootRenderer( el, boundsInfo, styleInfos );
+ childRenderers = [
+ new PIE.IE9BackgroundRenderer( el, boundsInfo, styleInfos, rootRenderer ),
+ new PIE.IE9BorderImageRenderer( el, boundsInfo, styleInfos, rootRenderer )
+ ];
+ } else {
+
+ styleInfos = {
+ backgroundInfo: new PIE.BackgroundStyleInfo( el ),
+ borderInfo: new PIE.BorderStyleInfo( el ),
+ borderImageInfo: new PIE.BorderImageStyleInfo( el ),
+ borderRadiusInfo: new PIE.BorderRadiusStyleInfo( el ),
+ boxShadowInfo: new PIE.BoxShadowStyleInfo( el ),
+ visibilityInfo: new PIE.VisibilityStyleInfo( el )
+ };
+ styleInfosArr = [
+ styleInfos.backgroundInfo,
+ styleInfos.borderInfo,
+ styleInfos.borderImageInfo,
+ styleInfos.borderRadiusInfo,
+ styleInfos.boxShadowInfo,
+ styleInfos.visibilityInfo
+ ];
+ rootRenderer = new PIE.RootRenderer( el, boundsInfo, styleInfos );
+ childRenderers = [
+ new PIE.BoxShadowOutsetRenderer( el, boundsInfo, styleInfos, rootRenderer ),
+ new PIE.BackgroundRenderer( el, boundsInfo, styleInfos, rootRenderer ),
+ //new PIE.BoxShadowInsetRenderer( el, boundsInfo, styleInfos, rootRenderer ),
+ new PIE.BorderRenderer( el, boundsInfo, styleInfos, rootRenderer ),
+ new PIE.BorderImageRenderer( el, boundsInfo, styleInfos, rootRenderer )
+ ];
+ if( el.tagName === 'IMG' ) {
+ childRenderers.push( new PIE.ImgRenderer( el, boundsInfo, styleInfos, rootRenderer ) );
+ }
+ rootRenderer.childRenderers = childRenderers; // circular reference, can't pass in constructor; TODO is there a cleaner way?
+ }
+ renderers = [ rootRenderer ].concat( childRenderers );
+
+ // Add property change listeners to ancestors if requested
+ initAncestorEventListeners();
+
+ // Add to list of polled elements in IE8
+ if( poll ) {
+ PIE.Heartbeat.observe( update );
+ PIE.Heartbeat.run();
+ }
+
+ // Trigger rendering
+ update( 1 );
+ }
+
+ if( !eventsAttached ) {
+ eventsAttached = 1;
+ if( ieDocMode < 9 ) {
+ addListener( el, 'onmove', handleMoveOrResize );
+ }
+ addListener( el, 'onresize', handleMoveOrResize );
+ addListener( el, 'onpropertychange', propChanged );
+ if( trackHover ) {
+ addListener( el, 'onmouseenter', mouseEntered );
+ }
+ if( trackHover || trackActive ) {
+ addListener( el, 'onmouseleave', mouseLeft );
+ }
+ if( trackActive ) {
+ addListener( el, 'onmousedown', mousePressed );
+ }
+ if( el.tagName in PIE.focusableElements ) {
+ addListener( el, 'onfocus', focused );
+ addListener( el, 'onblur', blurred );
+ }
+ PIE.OnResize.observe( handleMoveOrResize );
+
+ PIE.OnUnload.observe( removeEventListeners );
+ }
+
+ boundsInfo.unlock();
+ }
+ }
+
+
+
+
+ /**
+ * Event handler for onmove and onresize events. Invokes update() only if the element's
+ * bounds have previously been calculated, to prevent multiple runs during page load when
+ * the element has no initial CSS3 properties.
+ */
+ function handleMoveOrResize() {
+ if( boundsInfo && boundsInfo.hasBeenQueried() ) {
+ update();
+ }
+ }
+
+
+ /**
+ * Update position and/or size as necessary. Both move and resize events call
+ * this rather than the updatePos/Size functions because sometimes, particularly
+ * during page load, one will fire but the other won't.
+ */
+ function update( force ) {
+ if( !destroyed ) {
+ if( initialized ) {
+ var i, len = renderers.length;
+
+ lockAll();
+ for( i = 0; i < len; i++ ) {
+ renderers[i].prepareUpdate();
+ }
+ if( force || boundsInfo.positionChanged() ) {
+ /* TODO just using getBoundingClientRect (used internally by BoundsInfo) for detecting
+ position changes may not always be accurate; it's possible that
+ an element will actually move relative to its positioning parent, but its position
+ relative to the viewport will stay the same. Need to come up with a better way to
+ track movement. The most accurate would be the same logic used in RootRenderer.updatePos()
+ but that is a more expensive operation since it does some DOM walking, and we want this
+ check to be as fast as possible. */
+ for( i = 0; i < len; i++ ) {
+ renderers[i].updatePos();
+ }
+ }
+ if( force || boundsInfo.sizeChanged() ) {
+ for( i = 0; i < len; i++ ) {
+ renderers[i].updateSize();
+ }
+ }
+ rootRenderer.finishUpdate();
+ unlockAll();
+ }
+ else if( !initializing ) {
+ init();
+ }
+ }
+ }
+
+ /**
+ * Handle property changes to trigger update when appropriate.
+ */
+ function propChanged() {
+ var i, len = renderers.length,
+ renderer,
+ e = event;
+
+ // Some elements like <table> fire onpropertychange events for old-school background properties
+ // ('background', 'bgColor') when runtimeStyle background properties are changed, which
+ // results in an infinite loop; therefore we filter out those property names. Also, 'display'
+ // is ignored because size calculations don't work correctly immediately when its onpropertychange
+ // event fires, and because it will trigger an onresize event anyway.
+ if( !destroyed && !( e && e.propertyName in ignorePropertyNames ) ) {
+ if( initialized ) {
+ lockAll();
+ for( i = 0; i < len; i++ ) {
+ renderers[i].prepareUpdate();
+ }
+ for( i = 0; i < len; i++ ) {
+ renderer = renderers[i];
+ // Make sure position is synced if the element hasn't already been rendered.
+ // TODO this feels sloppy - look into merging propChanged and update functions
+ if( !renderer.isPositioned ) {
+ renderer.updatePos();
+ }
+ if( renderer.needsUpdate() ) {
+ renderer.updateProps();
+ }
+ }
+ rootRenderer.finishUpdate();
+ unlockAll();
+ }
+ else if( !initializing ) {
+ init();
+ }
+ }
+ }
+
+
+ /**
+ * Handle mouseenter events. Adds a custom class to the element to allow IE6 to add
+ * hover styles to non-link elements, and to trigger a propertychange update.
+ */
+ function mouseEntered() {
+ //must delay this because the mouseenter event fires before the :hover styles are added.
+ delayAddClass( el, hoverClass );
+ }
+
+ /**
+ * Handle mouseleave events
+ */
+ function mouseLeft() {
+ //must delay this because the mouseleave event fires before the :hover styles are removed.
+ delayRemoveClass( el, hoverClass, activeClass );
+ }
+
+ /**
+ * Handle mousedown events. Adds a custom class to the element to allow IE6 to add
+ * active styles to non-link elements, and to trigger a propertychange update.
+ */
+ function mousePressed() {
+ //must delay this because the mousedown event fires before the :active styles are added.
+ delayAddClass( el, activeClass );
+
+ // listen for mouseups on the document; can't just be on the element because the user might
+ // have dragged out of the element while the mouse button was held down
+ PIE.OnMouseup.observe( mouseReleased );
+ }
+
+ /**
+ * Handle mouseup events
+ */
+ function mouseReleased() {
+ //must delay this because the mouseup event fires before the :active styles are removed.
+ delayRemoveClass( el, activeClass );
+
+ PIE.OnMouseup.unobserve( mouseReleased );
+ }
+
+ /**
+ * Handle focus events. Adds a custom class to the element to trigger a propertychange update.
+ */
+ function focused() {
+ //must delay this because the focus event fires before the :focus styles are added.
+ delayAddClass( el, focusClass );
+ }
+
+ /**
+ * Handle blur events
+ */
+ function blurred() {
+ //must delay this because the blur event fires before the :focus styles are removed.
+ delayRemoveClass( el, focusClass );
+ }
+
+
+ /**
+ * Handle property changes on ancestors of the element; see initAncestorEventListeners()
+ * which adds these listeners as requested with the -pie-watch-ancestors CSS property.
+ */
+ function ancestorPropChanged() {
+ var name = event.propertyName;
+ if( name === 'className' || name === 'id' ) {
+ propChanged();
+ }
+ }
+
+ function lockAll() {
+ boundsInfo.lock();
+ for( var i = styleInfosArr.length; i--; ) {
+ styleInfosArr[i].lock();
+ }
+ }
+
+ function unlockAll() {
+ for( var i = styleInfosArr.length; i--; ) {
+ styleInfosArr[i].unlock();
+ }
+ boundsInfo.unlock();
+ }
+
+
+ function addListener( targetEl, type, handler ) {
+ targetEl.attachEvent( type, handler );
+ eventListeners.push( [ targetEl, type, handler ] );
+ }
+
+ /**
+ * Remove all event listeners from the element and any monitored ancestors.
+ */
+ function removeEventListeners() {
+ if (eventsAttached) {
+ var i = eventListeners.length,
+ listener;
+
+ while( i-- ) {
+ listener = eventListeners[ i ];
+ listener[ 0 ].detachEvent( listener[ 1 ], listener[ 2 ] );
+ }
+
+ PIE.OnUnload.unobserve( removeEventListeners );
+ eventsAttached = 0;
+ eventListeners = [];
+ }
+ }
+
+
+ /**
+ * Clean everything up when the behavior is removed from the element, or the element
+ * is manually destroyed.
+ */
+ function destroy() {
+ if( !destroyed ) {
+ var i, len;
+
+ removeEventListeners();
+
+ destroyed = 1;
+
+ // destroy any active renderers
+ if( renderers ) {
+ for( i = 0, len = renderers.length; i < len; i++ ) {
+ renderers[i].finalized = 1;
+ renderers[i].destroy();
+ }
+ }
+
+ // Remove from list of polled elements in IE8
+ if( poll ) {
+ PIE.Heartbeat.unobserve( update );
+ }
+ // Stop onresize listening
+ PIE.OnResize.unobserve( update );
+
+ // Kill references
+ renderers = boundsInfo = styleInfos = styleInfosArr = el = null;
+ }
+ }
+
+
+ /**
+ * If requested via the custom -pie-watch-ancestors CSS property, add onpropertychange and
+ * other event listeners to ancestor(s) of the element so we can pick up style changes
+ * based on CSS rules using descendant selectors.
+ */
+ function initAncestorEventListeners() {
+ var watch = el.currentStyle.getAttribute( PIE.CSS_PREFIX + 'watch-ancestors' ),
+ i, a;
+ if( watch ) {
+ watch = parseInt( watch, 10 );
+ i = 0;
+ a = el.parentNode;
+ while( a && ( watch === 'NaN' || i++ < watch ) ) {
+ addListener( a, 'onpropertychange', ancestorPropChanged );
+ addListener( a, 'onmouseenter', mouseEntered );
+ addListener( a, 'onmouseleave', mouseLeft );
+ addListener( a, 'onmousedown', mousePressed );
+ if( a.tagName in PIE.focusableElements ) {
+ addListener( a, 'onfocus', focused );
+ addListener( a, 'onblur', blurred );
+ }
+ a = a.parentNode;
+ }
+ }
+ }
+
+
+ /**
+ * If the target element is a first child, add a pie_first-child class to it. This allows using
+ * the added class as a workaround for the fact that PIE's rendering element breaks the :first-child
+ * pseudo-class selector.
+ */
+ function initFirstChildPseudoClass() {
+ var tmpEl = el,
+ isFirst = 1;
+ while( tmpEl = tmpEl.previousSibling ) {
+ if( tmpEl.nodeType === 1 ) {
+ isFirst = 0;
+ break;
+ }
+ }
+ if( isFirst ) {
+ addClass( el, firstChildClass );
+ }
+ }
+
+
+ // These methods are all already bound to this instance so there's no need to wrap them
+ // in a closure to maintain the 'this' scope object when calling them.
+ this.init = init;
+ this.update = update;
+ this.destroy = destroy;
+ this.el = el;
+ }
+
+ Element.getInstance = function( el ) {
+ var id = PIE.Util.getUID( el );
+ return wrappers[ id ] || ( wrappers[ id ] = new Element( el ) );
+ };
+
+ Element.destroy = function( el ) {
+ var id = PIE.Util.getUID( el ),
+ wrapper = wrappers[ id ];
+ if( wrapper ) {
+ wrapper.destroy();
+ delete wrappers[ id ];
+ }
+ };
+
+ Element.destroyAll = function() {
+ var els = [], wrapper;
+ if( wrappers ) {
+ for( var w in wrappers ) {
+ if( wrappers.hasOwnProperty( w ) ) {
+ wrapper = wrappers[ w ];
+ els.push( wrapper.el );
+ wrapper.destroy();
+ }
+ }
+ wrappers = {};
+ }
+ return els;
+ };
+
+ return Element;
+})();
+
+/*
+ * This file exposes the public API for invoking PIE.
+ */
+
+
+/**
+ * @property supportsVML
+ * True if the current IE browser environment has a functioning VML engine. Should be true
+ * in most IEs, but in rare cases may be false. If false, PIE will exit immediately when
+ * attached to an element; this property may be used for debugging or by external scripts
+ * to perform some special action when VML support is absent.
+ * @type {boolean}
+ */
+PIE[ 'supportsVML' ] = PIE.supportsVML;
+
+
+/**
+ * Programatically attach PIE to a single element.
+ * @param {Element} el
+ */
+PIE[ 'attach' ] = function( el ) {
+ if (PIE.ieDocMode < 10 && PIE.supportsVML) {
+ PIE.Element.getInstance( el ).init();
+ }
+};
+
+
+/**
+ * Programatically detach PIE from a single element.
+ * @param {Element} el
+ */
+PIE[ 'detach' ] = function( el ) {
+ PIE.Element.destroy( el );
+};
+
+
+} // if( !PIE )
+var el = element;
+
+function init() {
+ if ( doc.media !== 'print' ) { // IE strangely attaches a second copy of the behavior to elements when printing
+ var PIE = window[ 'PIE' ];
+ if( PIE ) {
+ PIE['attach']( el );
+ }
+ }
+}
+
+function cleanup() {
+ if ( doc.media !== 'print' ) {
+ var PIE = window[ 'PIE' ];
+ if (PIE) {
+ PIE['detach']( el );
+ el = 0;
+ }
+ }
+}
+
+if( el.readyState === 'complete' ) {
+ init();
+}
+</script>
+</PUBLIC:COMPONENT>
--- /dev/null
+/*\r
+PIE: CSS3 rendering for IE\r
+Version 1.0.0\r
+http://css3pie.com\r
+Dual-licensed for use under the Apache License Version 2.0 or the General Public License (GPL) Version 2.\r
+*/\r
+(function(){\r
+var doc = document;var PIE = window['PIE'];\r
+\r
+if( !PIE ) {\r
+ PIE = window['PIE'] = {\r
+ CSS_PREFIX: '-pie-',\r
+ STYLE_PREFIX: 'Pie',\r
+ CLASS_PREFIX: 'pie_',\r
+ tableCellTags: {\r
+ 'TD': 1,\r
+ 'TH': 1\r
+ },\r
+\r
+ /**\r
+ * Lookup table of elements which cannot take custom children.\r
+ */\r
+ childlessElements: {\r
+ 'TABLE':1,\r
+ 'THEAD':1,\r
+ 'TBODY':1,\r
+ 'TFOOT':1,\r
+ 'TR':1,\r
+ 'INPUT':1,\r
+ 'TEXTAREA':1,\r
+ 'SELECT':1,\r
+ 'OPTION':1,\r
+ 'IMG':1,\r
+ 'HR':1\r
+ },\r
+\r
+ /**\r
+ * Elements that can receive user focus\r
+ */\r
+ focusableElements: {\r
+ 'A':1,\r
+ 'INPUT':1,\r
+ 'TEXTAREA':1,\r
+ 'SELECT':1,\r
+ 'BUTTON':1\r
+ },\r
+\r
+ /**\r
+ * Values of the type attribute for input elements displayed as buttons\r
+ */\r
+ inputButtonTypes: {\r
+ 'submit':1,\r
+ 'button':1,\r
+ 'reset':1\r
+ },\r
+\r
+ emptyFn: function() {}\r
+ };\r
+\r
+ // Force the background cache to be used. No reason it shouldn't be.\r
+ try {\r
+ doc.execCommand( 'BackgroundImageCache', false, true );\r
+ } catch(e) {}\r
+\r
+ (function() {\r
+ /*\r
+ * IE version detection approach by James Padolsey, with modifications -- from\r
+ * http://james.padolsey.com/javascript/detect-ie-in-js-using-conditional-comments/\r
+ */\r
+ var ieVersion = 4,\r
+ div = doc.createElement('div'),\r
+ all = div.getElementsByTagName('i'),\r
+ shape;\r
+ while (\r
+ div.innerHTML = '<!--[if gt IE ' + (++ieVersion) + ']><i></i><![endif]-->',\r
+ all[0]\r
+ ) {}\r
+ PIE.ieVersion = ieVersion;\r
+\r
+ // Detect IE6\r
+ if( ieVersion === 6 ) {\r
+ // IE6 can't access properties with leading dash, but can without it.\r
+ PIE.CSS_PREFIX = PIE.CSS_PREFIX.replace( /^-/, '' );\r
+ }\r
+\r
+ PIE.ieDocMode = doc.documentMode || PIE.ieVersion;\r
+\r
+ // Detect VML support (a small number of IE installs don't have a working VML engine)\r
+ div.innerHTML = '<v:shape adj="1"/>';\r
+ shape = div.firstChild;\r
+ shape.style['behavior'] = 'url(#default#VML)';\r
+ PIE.supportsVML = (typeof shape['adj'] === "object");\r
+ }());\r
+/**\r
+ * Utility functions\r
+ */\r
+(function() {\r
+ var vmlCreatorDoc,\r
+ idNum = 0,\r
+ imageSizes = {};\r
+\r
+\r
+ PIE.Util = {\r
+\r
+ /**\r
+ * To create a VML element, it must be created by a Document which has the VML\r
+ * namespace set. Unfortunately, if you try to add the namespace programatically\r
+ * into the main document, you will get an "Unspecified error" when trying to\r
+ * access document.namespaces before the document is finished loading. To get\r
+ * around this, we create a DocumentFragment, which in IE land is apparently a\r
+ * full-fledged Document. It allows adding namespaces immediately, so we add the\r
+ * namespace there and then have it create the VML element.\r
+ * @param {string} tag The tag name for the VML element\r
+ * @return {Element} The new VML element\r
+ */\r
+ createVmlElement: function( tag ) {\r
+ var vmlPrefix = 'css3vml';\r
+ if( !vmlCreatorDoc ) {\r
+ vmlCreatorDoc = doc.createDocumentFragment();\r
+ vmlCreatorDoc.namespaces.add( vmlPrefix, 'urn:schemas-microsoft-com:vml' );\r
+ }\r
+ return vmlCreatorDoc.createElement( vmlPrefix + ':' + tag );\r
+ },\r
+\r
+\r
+ /**\r
+ * Generate and return a unique ID for a given object. The generated ID is stored\r
+ * as a property of the object for future reuse.\r
+ * @param {Object} obj\r
+ */\r
+ getUID: function( obj ) {\r
+ return obj && obj[ '_pieId' ] || ( obj[ '_pieId' ] = '_' + ++idNum );\r
+ },\r
+\r
+\r
+ /**\r
+ * Simple utility for merging objects\r
+ * @param {Object} obj1 The main object into which all others will be merged\r
+ * @param {...Object} var_args Other objects which will be merged into the first, in order\r
+ */\r
+ merge: function( obj1 ) {\r
+ var i, len, p, objN, args = arguments;\r
+ for( i = 1, len = args.length; i < len; i++ ) {\r
+ objN = args[i];\r
+ for( p in objN ) {\r
+ if( objN.hasOwnProperty( p ) ) {\r
+ obj1[ p ] = objN[ p ];\r
+ }\r
+ }\r
+ }\r
+ return obj1;\r
+ },\r
+\r
+\r
+ /**\r
+ * Execute a callback function, passing it the dimensions of a given image once\r
+ * they are known.\r
+ * @param {string} src The source URL of the image\r
+ * @param {function({w:number, h:number})} func The callback function to be called once the image dimensions are known\r
+ * @param {Object} ctx A context object which will be used as the 'this' value within the executed callback function\r
+ */\r
+ withImageSize: function( src, func, ctx ) {\r
+ var size = imageSizes[ src ], img, queue;\r
+ if( size ) {\r
+ // If we have a queue, add to it\r
+ if( Object.prototype.toString.call( size ) === '[object Array]' ) {\r
+ size.push( [ func, ctx ] );\r
+ }\r
+ // Already have the size cached, call func right away\r
+ else {\r
+ func.call( ctx, size );\r
+ }\r
+ } else {\r
+ queue = imageSizes[ src ] = [ [ func, ctx ] ]; //create queue\r
+ img = new Image();\r
+ img.onload = function() {\r
+ size = imageSizes[ src ] = { w: img.width, h: img.height };\r
+ for( var i = 0, len = queue.length; i < len; i++ ) {\r
+ queue[ i ][ 0 ].call( queue[ i ][ 1 ], size );\r
+ }\r
+ img.onload = null;\r
+ };\r
+ img.src = src;\r
+ }\r
+ }\r
+ };\r
+})();/**\r
+ * Utility functions for handling gradients\r
+ */\r
+PIE.GradientUtil = {\r
+\r
+ getGradientMetrics: function( el, width, height, gradientInfo ) {\r
+ var angle = gradientInfo.angle,\r
+ startPos = gradientInfo.gradientStart,\r
+ startX, startY,\r
+ endX, endY,\r
+ startCornerX, startCornerY,\r
+ endCornerX, endCornerY,\r
+ deltaX, deltaY,\r
+ p, UNDEF;\r
+\r
+ // Find the "start" and "end" corners; these are the corners furthest along the gradient line.\r
+ // This is used below to find the start/end positions of the CSS3 gradient-line, and also in finding\r
+ // the total length of the VML rendered gradient-line corner to corner.\r
+ function findCorners() {\r
+ startCornerX = ( angle >= 90 && angle < 270 ) ? width : 0;\r
+ startCornerY = angle < 180 ? height : 0;\r
+ endCornerX = width - startCornerX;\r
+ endCornerY = height - startCornerY;\r
+ }\r
+\r
+ // Normalize the angle to a value between [0, 360)\r
+ function normalizeAngle() {\r
+ while( angle < 0 ) {\r
+ angle += 360;\r
+ }\r
+ angle = angle % 360;\r
+ }\r
+\r
+ // Find the start and end points of the gradient\r
+ if( startPos ) {\r
+ startPos = startPos.coords( el, width, height );\r
+ startX = startPos.x;\r
+ startY = startPos.y;\r
+ }\r
+ if( angle ) {\r
+ angle = angle.degrees();\r
+\r
+ normalizeAngle();\r
+ findCorners();\r
+\r
+ // If no start position was specified, then choose a corner as the starting point.\r
+ if( !startPos ) {\r
+ startX = startCornerX;\r
+ startY = startCornerY;\r
+ }\r
+\r
+ // Find the end position by extending a perpendicular line from the gradient-line which\r
+ // intersects the corner opposite from the starting corner.\r
+ p = PIE.GradientUtil.perpendicularIntersect( startX, startY, angle, endCornerX, endCornerY );\r
+ endX = p[0];\r
+ endY = p[1];\r
+ }\r
+ else if( startPos ) {\r
+ // Start position but no angle specified: find the end point by rotating 180deg around the center\r
+ endX = width - startX;\r
+ endY = height - startY;\r
+ }\r
+ else {\r
+ // Neither position nor angle specified; create vertical gradient from top to bottom\r
+ startX = startY = endX = 0;\r
+ endY = height;\r
+ }\r
+ deltaX = endX - startX;\r
+ deltaY = endY - startY;\r
+\r
+ if( angle === UNDEF ) {\r
+ // Get the angle based on the change in x/y from start to end point. Checks first for horizontal\r
+ // or vertical angles so they get exact whole numbers rather than what atan2 gives.\r
+ angle = ( !deltaX ? ( deltaY < 0 ? 90 : 270 ) :\r
+ ( !deltaY ? ( deltaX < 0 ? 180 : 0 ) :\r
+ -Math.atan2( deltaY, deltaX ) / Math.PI * 180\r
+ )\r
+ );\r
+ normalizeAngle();\r
+ findCorners();\r
+ }\r
+\r
+ return {\r
+ angle: angle,\r
+ startX: startX,\r
+ startY: startY,\r
+ endX: endX,\r
+ endY: endY,\r
+ startCornerX: startCornerX,\r
+ startCornerY: startCornerY,\r
+ endCornerX: endCornerX,\r
+ endCornerY: endCornerY,\r
+ deltaX: deltaX,\r
+ deltaY: deltaY,\r
+ lineLength: PIE.GradientUtil.distance( startX, startY, endX, endY )\r
+ }\r
+ },\r
+\r
+ /**\r
+ * Find the point along a given line (defined by a starting point and an angle), at which\r
+ * that line is intersected by a perpendicular line extending through another point.\r
+ * @param x1 - x coord of the starting point\r
+ * @param y1 - y coord of the starting point\r
+ * @param angle - angle of the line extending from the starting point (in degrees)\r
+ * @param x2 - x coord of point along the perpendicular line\r
+ * @param y2 - y coord of point along the perpendicular line\r
+ * @return [ x, y ]\r
+ */\r
+ perpendicularIntersect: function( x1, y1, angle, x2, y2 ) {\r
+ // Handle straight vertical and horizontal angles, for performance and to avoid\r
+ // divide-by-zero errors.\r
+ if( angle === 0 || angle === 180 ) {\r
+ return [ x2, y1 ];\r
+ }\r
+ else if( angle === 90 || angle === 270 ) {\r
+ return [ x1, y2 ];\r
+ }\r
+ else {\r
+ // General approach: determine the Ax+By=C formula for each line (the slope of the second\r
+ // line is the negative inverse of the first) and then solve for where both formulas have\r
+ // the same x/y values.\r
+ var a1 = Math.tan( -angle * Math.PI / 180 ),\r
+ c1 = a1 * x1 - y1,\r
+ a2 = -1 / a1,\r
+ c2 = a2 * x2 - y2,\r
+ d = a2 - a1,\r
+ endX = ( c2 - c1 ) / d,\r
+ endY = ( a1 * c2 - a2 * c1 ) / d;\r
+ return [ endX, endY ];\r
+ }\r
+ },\r
+\r
+ /**\r
+ * Find the distance between two points\r
+ * @param {Number} p1x\r
+ * @param {Number} p1y\r
+ * @param {Number} p2x\r
+ * @param {Number} p2y\r
+ * @return {Number} the distance\r
+ */\r
+ distance: function( p1x, p1y, p2x, p2y ) {\r
+ var dx = p2x - p1x,\r
+ dy = p2y - p1y;\r
+ return Math.abs(\r
+ dx === 0 ? dy :\r
+ dy === 0 ? dx :\r
+ Math.sqrt( dx * dx + dy * dy )\r
+ );\r
+ }\r
+\r
+};/**\r
+ * \r
+ */\r
+PIE.Observable = function() {\r
+ /**\r
+ * List of registered observer functions\r
+ */\r
+ this.observers = [];\r
+\r
+ /**\r
+ * Hash of function ids to their position in the observers list, for fast lookup\r
+ */\r
+ this.indexes = {};\r
+};\r
+PIE.Observable.prototype = {\r
+\r
+ observe: function( fn ) {\r
+ var id = PIE.Util.getUID( fn ),\r
+ indexes = this.indexes,\r
+ observers = this.observers;\r
+ if( !( id in indexes ) ) {\r
+ indexes[ id ] = observers.length;\r
+ observers.push( fn );\r
+ }\r
+ },\r
+\r
+ unobserve: function( fn ) {\r
+ var id = PIE.Util.getUID( fn ),\r
+ indexes = this.indexes;\r
+ if( id && id in indexes ) {\r
+ delete this.observers[ indexes[ id ] ];\r
+ delete indexes[ id ];\r
+ }\r
+ },\r
+\r
+ fire: function() {\r
+ var o = this.observers,\r
+ i = o.length;\r
+ while( i-- ) {\r
+ o[ i ] && o[ i ]();\r
+ }\r
+ }\r
+\r
+};/*\r
+ * Simple heartbeat timer - this is a brute-force workaround for syncing issues caused by IE not\r
+ * always firing the onmove and onresize events when elements are moved or resized. We check a few\r
+ * times every second to make sure the elements have the correct position and size. See Element.js\r
+ * which adds heartbeat listeners based on the custom -pie-poll flag, which defaults to true in IE8-9\r
+ * and false elsewhere.\r
+ */\r
+\r
+PIE.Heartbeat = new PIE.Observable();\r
+PIE.Heartbeat.run = function() {\r
+ var me = this,\r
+ interval;\r
+ if( !me.running ) {\r
+ interval = doc.documentElement.currentStyle.getAttribute( PIE.CSS_PREFIX + 'poll-interval' ) || 250;\r
+ (function beat() {\r
+ me.fire();\r
+ setTimeout(beat, interval);\r
+ })();\r
+ me.running = 1;\r
+ }\r
+};\r
+/**\r
+ * Create an observable listener for the onunload event\r
+ */\r
+(function() {\r
+ PIE.OnUnload = new PIE.Observable();\r
+\r
+ function handleUnload() {\r
+ PIE.OnUnload.fire();\r
+ window.detachEvent( 'onunload', handleUnload );\r
+ window[ 'PIE' ] = null;\r
+ }\r
+\r
+ window.attachEvent( 'onunload', handleUnload );\r
+\r
+ /**\r
+ * Attach an event which automatically gets detached onunload\r
+ */\r
+ PIE.OnUnload.attachManagedEvent = function( target, name, handler ) {\r
+ target.attachEvent( name, handler );\r
+ this.observe( function() {\r
+ target.detachEvent( name, handler );\r
+ } );\r
+ };\r
+})()/**\r
+ * Create a single observable listener for window resize events.\r
+ */\r
+PIE.OnResize = new PIE.Observable();\r
+\r
+PIE.OnUnload.attachManagedEvent( window, 'onresize', function() { PIE.OnResize.fire(); } );\r
+/**\r
+ * Create a single observable listener for scroll events. Used for lazy loading based\r
+ * on the viewport, and for fixed position backgrounds.\r
+ */\r
+(function() {\r
+ PIE.OnScroll = new PIE.Observable();\r
+\r
+ function scrolled() {\r
+ PIE.OnScroll.fire();\r
+ }\r
+\r
+ PIE.OnUnload.attachManagedEvent( window, 'onscroll', scrolled );\r
+\r
+ PIE.OnResize.observe( scrolled );\r
+})();\r
+/**\r
+ * Listen for printing events, destroy all active PIE instances when printing, and\r
+ * restore them afterward.\r
+ */\r
+(function() {\r
+\r
+ var elements;\r
+\r
+ function beforePrint() {\r
+ elements = PIE.Element.destroyAll();\r
+ }\r
+\r
+ function afterPrint() {\r
+ if( elements ) {\r
+ for( var i = 0, len = elements.length; i < len; i++ ) {\r
+ PIE[ 'attach' ]( elements[i] );\r
+ }\r
+ elements = 0;\r
+ }\r
+ }\r
+\r
+ if( PIE.ieDocMode < 9 ) {\r
+ PIE.OnUnload.attachManagedEvent( window, 'onbeforeprint', beforePrint );\r
+ PIE.OnUnload.attachManagedEvent( window, 'onafterprint', afterPrint );\r
+ }\r
+\r
+})();/**\r
+ * Create a single observable listener for document mouseup events.\r
+ */\r
+PIE.OnMouseup = new PIE.Observable();\r
+\r
+PIE.OnUnload.attachManagedEvent( doc, 'onmouseup', function() { PIE.OnMouseup.fire(); } );\r
+/**\r
+ * Wrapper for length and percentage style values. The value is immutable. A singleton instance per unique\r
+ * value is returned from PIE.getLength() - always use that instead of instantiating directly.\r
+ * @constructor\r
+ * @param {string} val The CSS string representing the length. It is assumed that this will already have\r
+ * been validated as a valid length or percentage syntax.\r
+ */\r
+PIE.Length = (function() {\r
+ var lengthCalcEl = doc.createElement( 'length-calc' ),\r
+ parent = doc.body || doc.documentElement,\r
+ s = lengthCalcEl.style,\r
+ conversions = {},\r
+ units = [ 'mm', 'cm', 'in', 'pt', 'pc' ],\r
+ i = units.length,\r
+ instances = {};\r
+\r
+ s.position = 'absolute';\r
+ s.top = s.left = '-9999px';\r
+\r
+ parent.appendChild( lengthCalcEl );\r
+ while( i-- ) {\r
+ s.width = '100' + units[i];\r
+ conversions[ units[i] ] = lengthCalcEl.offsetWidth / 100;\r
+ }\r
+ parent.removeChild( lengthCalcEl );\r
+\r
+ // All calcs from here on will use 1em\r
+ s.width = '1em';\r
+\r
+\r
+ function Length( val ) {\r
+ this.val = val;\r
+ }\r
+ Length.prototype = {\r
+ /**\r
+ * Regular expression for matching the length unit\r
+ * @private\r
+ */\r
+ unitRE: /(px|em|ex|mm|cm|in|pt|pc|%)$/,\r
+\r
+ /**\r
+ * Get the numeric value of the length\r
+ * @return {number} The value\r
+ */\r
+ getNumber: function() {\r
+ var num = this.num,\r
+ UNDEF;\r
+ if( num === UNDEF ) {\r
+ num = this.num = parseFloat( this.val );\r
+ }\r
+ return num;\r
+ },\r
+\r
+ /**\r
+ * Get the unit of the length\r
+ * @return {string} The unit\r
+ */\r
+ getUnit: function() {\r
+ var unit = this.unit,\r
+ m;\r
+ if( !unit ) {\r
+ m = this.val.match( this.unitRE );\r
+ unit = this.unit = ( m && m[0] ) || 'px';\r
+ }\r
+ return unit;\r
+ },\r
+\r
+ /**\r
+ * Determine whether this is a percentage length value\r
+ * @return {boolean}\r
+ */\r
+ isPercentage: function() {\r
+ return this.getUnit() === '%';\r
+ },\r
+\r
+ /**\r
+ * Resolve this length into a number of pixels.\r
+ * @param {Element} el - the context element, used to resolve font-relative values\r
+ * @param {(function():number|number)=} pct100 - the number of pixels that equal a 100% percentage. This can be either a number or a\r
+ * function which will be called to return the number.\r
+ */\r
+ pixels: function( el, pct100 ) {\r
+ var num = this.getNumber(),\r
+ unit = this.getUnit();\r
+ switch( unit ) {\r
+ case "px":\r
+ return num;\r
+ case "%":\r
+ return num * ( typeof pct100 === 'function' ? pct100() : pct100 ) / 100;\r
+ case "em":\r
+ return num * this.getEmPixels( el );\r
+ case "ex":\r
+ return num * this.getEmPixels( el ) / 2;\r
+ default:\r
+ return num * conversions[ unit ];\r
+ }\r
+ },\r
+\r
+ /**\r
+ * The em and ex units are relative to the font-size of the current element,\r
+ * however if the font-size is set using non-pixel units then we get that value\r
+ * rather than a pixel conversion. To get around this, we keep a floating element\r
+ * with width:1em which we insert into the target element and then read its offsetWidth.\r
+ * For elements that won't accept a child we insert into the parent node and perform\r
+ * additional calculation. If the font-size *is* specified in pixels, then we use that\r
+ * directly to avoid the expensive DOM manipulation.\r
+ * @param {Element} el\r
+ * @return {number}\r
+ */\r
+ getEmPixels: function( el ) {\r
+ var fs = el.currentStyle.fontSize,\r
+ px, parent, me;\r
+\r
+ if( fs.indexOf( 'px' ) > 0 ) {\r
+ return parseFloat( fs );\r
+ }\r
+ else if( el.tagName in PIE.childlessElements ) {\r
+ me = this;\r
+ parent = el.parentNode;\r
+ return PIE.getLength( fs ).pixels( parent, function() {\r
+ return me.getEmPixels( parent );\r
+ } );\r
+ }\r
+ else {\r
+ el.appendChild( lengthCalcEl );\r
+ px = lengthCalcEl.offsetWidth;\r
+ if( lengthCalcEl.parentNode === el ) { //not sure how this could be false but it sometimes is\r
+ el.removeChild( lengthCalcEl );\r
+ }\r
+ return px;\r
+ }\r
+ }\r
+ };\r
+\r
+\r
+ /**\r
+ * Retrieve a PIE.Length instance for the given value. A shared singleton instance is returned for each unique value.\r
+ * @param {string} val The CSS string representing the length. It is assumed that this will already have\r
+ * been validated as a valid length or percentage syntax.\r
+ */\r
+ PIE.getLength = function( val ) {\r
+ return instances[ val ] || ( instances[ val ] = new Length( val ) );\r
+ };\r
+\r
+ return Length;\r
+})();\r
+/**\r
+ * Wrapper for a CSS3 bg-position value. Takes up to 2 position keywords and 2 lengths/percentages.\r
+ * @constructor\r
+ * @param {Array.<PIE.Tokenizer.Token>} tokens The tokens making up the background position value.\r
+ */\r
+PIE.BgPosition = (function() {\r
+\r
+ var length_fifty = PIE.getLength( '50%' ),\r
+ vert_idents = { 'top': 1, 'center': 1, 'bottom': 1 },\r
+ horiz_idents = { 'left': 1, 'center': 1, 'right': 1 };\r
+\r
+\r
+ function BgPosition( tokens ) {\r
+ this.tokens = tokens;\r
+ }\r
+ BgPosition.prototype = {\r
+ /**\r
+ * Normalize the values into the form:\r
+ * [ xOffsetSide, xOffsetLength, yOffsetSide, yOffsetLength ]\r
+ * where: xOffsetSide is either 'left' or 'right',\r
+ * yOffsetSide is either 'top' or 'bottom',\r
+ * and x/yOffsetLength are both PIE.Length objects.\r
+ * @return {Array}\r
+ */\r
+ getValues: function() {\r
+ if( !this._values ) {\r
+ var tokens = this.tokens,\r
+ len = tokens.length,\r
+ Tokenizer = PIE.Tokenizer,\r
+ identType = Tokenizer.Type,\r
+ length_zero = PIE.getLength( '0' ),\r
+ type_ident = identType.IDENT,\r
+ type_length = identType.LENGTH,\r
+ type_percent = identType.PERCENT,\r
+ type, value,\r
+ vals = [ 'left', length_zero, 'top', length_zero ];\r
+\r
+ // If only one value, the second is assumed to be 'center'\r
+ if( len === 1 ) {\r
+ tokens.push( new Tokenizer.Token( type_ident, 'center' ) );\r
+ len++;\r
+ }\r
+\r
+ // Two values - CSS2\r
+ if( len === 2 ) {\r
+ // If both idents, they can appear in either order, so switch them if needed\r
+ if( type_ident & ( tokens[0].tokenType | tokens[1].tokenType ) &&\r
+ tokens[0].tokenValue in vert_idents && tokens[1].tokenValue in horiz_idents ) {\r
+ tokens.push( tokens.shift() );\r
+ }\r
+ if( tokens[0].tokenType & type_ident ) {\r
+ if( tokens[0].tokenValue === 'center' ) {\r
+ vals[1] = length_fifty;\r
+ } else {\r
+ vals[0] = tokens[0].tokenValue;\r
+ }\r
+ }\r
+ else if( tokens[0].isLengthOrPercent() ) {\r
+ vals[1] = PIE.getLength( tokens[0].tokenValue );\r
+ }\r
+ if( tokens[1].tokenType & type_ident ) {\r
+ if( tokens[1].tokenValue === 'center' ) {\r
+ vals[3] = length_fifty;\r
+ } else {\r
+ vals[2] = tokens[1].tokenValue;\r
+ }\r
+ }\r
+ else if( tokens[1].isLengthOrPercent() ) {\r
+ vals[3] = PIE.getLength( tokens[1].tokenValue );\r
+ }\r
+ }\r
+\r
+ // Three or four values - CSS3\r
+ else {\r
+ // TODO\r
+ }\r
+\r
+ this._values = vals;\r
+ }\r
+ return this._values;\r
+ },\r
+\r
+ /**\r
+ * Find the coordinates of the background image from the upper-left corner of the background area.\r
+ * Note that these coordinate values are not rounded.\r
+ * @param {Element} el\r
+ * @param {number} width - the width for percentages (background area width minus image width)\r
+ * @param {number} height - the height for percentages (background area height minus image height)\r
+ * @return {Object} { x: Number, y: Number }\r
+ */\r
+ coords: function( el, width, height ) {\r
+ var vals = this.getValues(),\r
+ pxX = vals[1].pixels( el, width ),\r
+ pxY = vals[3].pixels( el, height );\r
+\r
+ return {\r
+ x: vals[0] === 'right' ? width - pxX : pxX,\r
+ y: vals[2] === 'bottom' ? height - pxY : pxY\r
+ };\r
+ }\r
+ };\r
+\r
+ return BgPosition;\r
+})();\r
+/**\r
+ * Wrapper for a CSS3 background-size value.\r
+ * @constructor\r
+ * @param {String|PIE.Length} w The width parameter\r
+ * @param {String|PIE.Length} h The height parameter, if any\r
+ */\r
+PIE.BgSize = (function() {\r
+\r
+ var CONTAIN = 'contain',\r
+ COVER = 'cover',\r
+ AUTO = 'auto';\r
+\r
+\r
+ function BgSize( w, h ) {\r
+ this.w = w;\r
+ this.h = h;\r
+ }\r
+ BgSize.prototype = {\r
+\r
+ pixels: function( el, areaW, areaH, imgW, imgH ) {\r
+ var me = this,\r
+ w = me.w,\r
+ h = me.h,\r
+ areaRatio = areaW / areaH,\r
+ imgRatio = imgW / imgH;\r
+\r
+ if ( w === CONTAIN ) {\r
+ w = imgRatio > areaRatio ? areaW : areaH * imgRatio;\r
+ h = imgRatio > areaRatio ? areaW / imgRatio : areaH;\r
+ }\r
+ else if ( w === COVER ) {\r
+ w = imgRatio < areaRatio ? areaW : areaH * imgRatio;\r
+ h = imgRatio < areaRatio ? areaW / imgRatio : areaH;\r
+ }\r
+ else if ( w === AUTO ) {\r
+ h = ( h === AUTO ? imgH : h.pixels( el, areaH ) );\r
+ w = h * imgRatio;\r
+ }\r
+ else {\r
+ w = w.pixels( el, areaW );\r
+ h = ( h === AUTO ? w / imgRatio : h.pixels( el, areaH ) );\r
+ }\r
+\r
+ return { w: w, h: h };\r
+ }\r
+\r
+ };\r
+\r
+ BgSize.DEFAULT = new BgSize( AUTO, AUTO );\r
+\r
+ return BgSize;\r
+})();\r
+/**\r
+ * Wrapper for angle values; handles conversion to degrees from all allowed angle units\r
+ * @constructor\r
+ * @param {string} val The raw CSS value for the angle. It is assumed it has been pre-validated.\r
+ */\r
+PIE.Angle = (function() {\r
+ function Angle( val ) {\r
+ this.val = val;\r
+ }\r
+ Angle.prototype = {\r
+ unitRE: /[a-z]+$/i,\r
+\r
+ /**\r
+ * @return {string} The unit of the angle value\r
+ */\r
+ getUnit: function() {\r
+ return this._unit || ( this._unit = this.val.match( this.unitRE )[0].toLowerCase() );\r
+ },\r
+\r
+ /**\r
+ * Get the numeric value of the angle in degrees.\r
+ * @return {number} The degrees value\r
+ */\r
+ degrees: function() {\r
+ var deg = this._deg, u, n;\r
+ if( deg === undefined ) {\r
+ u = this.getUnit();\r
+ n = parseFloat( this.val, 10 );\r
+ deg = this._deg = ( u === 'deg' ? n : u === 'rad' ? n / Math.PI * 180 : u === 'grad' ? n / 400 * 360 : u === 'turn' ? n * 360 : 0 );\r
+ }\r
+ return deg;\r
+ }\r
+ };\r
+\r
+ return Angle;\r
+})();/**\r
+ * Abstraction for colors values. Allows detection of rgba values. A singleton instance per unique\r
+ * value is returned from PIE.getColor() - always use that instead of instantiating directly.\r
+ * @constructor\r
+ * @param {string} val The raw CSS string value for the color\r
+ */\r
+PIE.Color = (function() {\r
+ var instances = {};\r
+\r
+ function Color( val ) {\r
+ this.val = val;\r
+ }\r
+\r
+ /**\r
+ * Regular expression for matching rgba colors and extracting their components\r
+ * @type {RegExp}\r
+ */\r
+ Color.rgbaRE = /\s*rgba\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d+|\d*\.\d+)\s*\)\s*/;\r
+\r
+ Color.names = {\r
+ "aliceblue":"F0F8FF", "antiquewhite":"FAEBD7", "aqua":"0FF",\r
+ "aquamarine":"7FFFD4", "azure":"F0FFFF", "beige":"F5F5DC",\r
+ "bisque":"FFE4C4", "black":"000", "blanchedalmond":"FFEBCD",\r
+ "blue":"00F", "blueviolet":"8A2BE2", "brown":"A52A2A",\r
+ "burlywood":"DEB887", "cadetblue":"5F9EA0", "chartreuse":"7FFF00",\r
+ "chocolate":"D2691E", "coral":"FF7F50", "cornflowerblue":"6495ED",\r
+ "cornsilk":"FFF8DC", "crimson":"DC143C", "cyan":"0FF",\r
+ "darkblue":"00008B", "darkcyan":"008B8B", "darkgoldenrod":"B8860B",\r
+ "darkgray":"A9A9A9", "darkgreen":"006400", "darkkhaki":"BDB76B",\r
+ "darkmagenta":"8B008B", "darkolivegreen":"556B2F", "darkorange":"FF8C00",\r
+ "darkorchid":"9932CC", "darkred":"8B0000", "darksalmon":"E9967A",\r
+ "darkseagreen":"8FBC8F", "darkslateblue":"483D8B", "darkslategray":"2F4F4F",\r
+ "darkturquoise":"00CED1", "darkviolet":"9400D3", "deeppink":"FF1493",\r
+ "deepskyblue":"00BFFF", "dimgray":"696969", "dodgerblue":"1E90FF",\r
+ "firebrick":"B22222", "floralwhite":"FFFAF0", "forestgreen":"228B22",\r
+ "fuchsia":"F0F", "gainsboro":"DCDCDC", "ghostwhite":"F8F8FF",\r
+ "gold":"FFD700", "goldenrod":"DAA520", "gray":"808080",\r
+ "green":"008000", "greenyellow":"ADFF2F", "honeydew":"F0FFF0",\r
+ "hotpink":"FF69B4", "indianred":"CD5C5C", "indigo":"4B0082",\r
+ "ivory":"FFFFF0", "khaki":"F0E68C", "lavender":"E6E6FA",\r
+ "lavenderblush":"FFF0F5", "lawngreen":"7CFC00", "lemonchiffon":"FFFACD",\r
+ "lightblue":"ADD8E6", "lightcoral":"F08080", "lightcyan":"E0FFFF",\r
+ "lightgoldenrodyellow":"FAFAD2", "lightgreen":"90EE90", "lightgrey":"D3D3D3",\r
+ "lightpink":"FFB6C1", "lightsalmon":"FFA07A", "lightseagreen":"20B2AA",\r
+ "lightskyblue":"87CEFA", "lightslategray":"789", "lightsteelblue":"B0C4DE",\r
+ "lightyellow":"FFFFE0", "lime":"0F0", "limegreen":"32CD32",\r
+ "linen":"FAF0E6", "magenta":"F0F", "maroon":"800000",\r
+ "mediumauqamarine":"66CDAA", "mediumblue":"0000CD", "mediumorchid":"BA55D3",\r
+ "mediumpurple":"9370D8", "mediumseagreen":"3CB371", "mediumslateblue":"7B68EE",\r
+ "mediumspringgreen":"00FA9A", "mediumturquoise":"48D1CC", "mediumvioletred":"C71585",\r
+ "midnightblue":"191970", "mintcream":"F5FFFA", "mistyrose":"FFE4E1",\r
+ "moccasin":"FFE4B5", "navajowhite":"FFDEAD", "navy":"000080",\r
+ "oldlace":"FDF5E6", "olive":"808000", "olivedrab":"688E23",\r
+ "orange":"FFA500", "orangered":"FF4500", "orchid":"DA70D6",\r
+ "palegoldenrod":"EEE8AA", "palegreen":"98FB98", "paleturquoise":"AFEEEE",\r
+ "palevioletred":"D87093", "papayawhip":"FFEFD5", "peachpuff":"FFDAB9",\r
+ "peru":"CD853F", "pink":"FFC0CB", "plum":"DDA0DD",\r
+ "powderblue":"B0E0E6", "purple":"800080", "red":"F00",\r
+ "rosybrown":"BC8F8F", "royalblue":"4169E1", "saddlebrown":"8B4513",\r
+ "salmon":"FA8072", "sandybrown":"F4A460", "seagreen":"2E8B57",\r
+ "seashell":"FFF5EE", "sienna":"A0522D", "silver":"C0C0C0",\r
+ "skyblue":"87CEEB", "slateblue":"6A5ACD", "slategray":"708090",\r
+ "snow":"FFFAFA", "springgreen":"00FF7F", "steelblue":"4682B4",\r
+ "tan":"D2B48C", "teal":"008080", "thistle":"D8BFD8",\r
+ "tomato":"FF6347", "turquoise":"40E0D0", "violet":"EE82EE",\r
+ "wheat":"F5DEB3", "white":"FFF", "whitesmoke":"F5F5F5",\r
+ "yellow":"FF0", "yellowgreen":"9ACD32"\r
+ };\r
+\r
+ Color.prototype = {\r
+ /**\r
+ * @private\r
+ */\r
+ parse: function() {\r
+ if( !this._color ) {\r
+ var me = this,\r
+ v = me.val,\r
+ vLower,\r
+ m = v.match( Color.rgbaRE );\r
+ if( m ) {\r
+ me._color = 'rgb(' + m[1] + ',' + m[2] + ',' + m[3] + ')';\r
+ me._alpha = parseFloat( m[4] );\r
+ }\r
+ else {\r
+ if( ( vLower = v.toLowerCase() ) in Color.names ) {\r
+ v = '#' + Color.names[vLower];\r
+ }\r
+ me._color = v;\r
+ me._alpha = ( v === 'transparent' ? 0 : 1 );\r
+ }\r
+ }\r
+ },\r
+\r
+ /**\r
+ * Retrieve the value of the color in a format usable by IE natively. This will be the same as\r
+ * the raw input value, except for rgba values which will be converted to an rgb value.\r
+ * @param {Element} el The context element, used to get 'currentColor' keyword value.\r
+ * @return {string} Color value\r
+ */\r
+ colorValue: function( el ) {\r
+ this.parse();\r
+ return this._color === 'currentColor' ? el.currentStyle.color : this._color;\r
+ },\r
+\r
+ /**\r
+ * Retrieve the alpha value of the color. Will be 1 for all values except for rgba values\r
+ * with an alpha component.\r
+ * @return {number} The alpha value, from 0 to 1.\r
+ */\r
+ alpha: function() {\r
+ this.parse();\r
+ return this._alpha;\r
+ }\r
+ };\r
+\r
+\r
+ /**\r
+ * Retrieve a PIE.Color instance for the given value. A shared singleton instance is returned for each unique value.\r
+ * @param {string} val The CSS string representing the color. It is assumed that this will already have\r
+ * been validated as a valid color syntax.\r
+ */\r
+ PIE.getColor = function(val) {\r
+ return instances[ val ] || ( instances[ val ] = new Color( val ) );\r
+ };\r
+\r
+ return Color;\r
+})();/**\r
+ * A tokenizer for CSS value strings.\r
+ * @constructor\r
+ * @param {string} css The CSS value string\r
+ */\r
+PIE.Tokenizer = (function() {\r
+ function Tokenizer( css ) {\r
+ this.css = css;\r
+ this.ch = 0;\r
+ this.tokens = [];\r
+ this.tokenIndex = 0;\r
+ }\r
+\r
+ /**\r
+ * Enumeration of token type constants.\r
+ * @enum {number}\r
+ */\r
+ var Type = Tokenizer.Type = {\r
+ ANGLE: 1,\r
+ CHARACTER: 2,\r
+ COLOR: 4,\r
+ DIMEN: 8,\r
+ FUNCTION: 16,\r
+ IDENT: 32,\r
+ LENGTH: 64,\r
+ NUMBER: 128,\r
+ OPERATOR: 256,\r
+ PERCENT: 512,\r
+ STRING: 1024,\r
+ URL: 2048\r
+ };\r
+\r
+ /**\r
+ * A single token\r
+ * @constructor\r
+ * @param {number} type The type of the token - see PIE.Tokenizer.Type\r
+ * @param {string} value The value of the token\r
+ */\r
+ Tokenizer.Token = function( type, value ) {\r
+ this.tokenType = type;\r
+ this.tokenValue = value;\r
+ };\r
+ Tokenizer.Token.prototype = {\r
+ isLength: function() {\r
+ return this.tokenType & Type.LENGTH || ( this.tokenType & Type.NUMBER && this.tokenValue === '0' );\r
+ },\r
+ isLengthOrPercent: function() {\r
+ return this.isLength() || this.tokenType & Type.PERCENT;\r
+ }\r
+ };\r
+\r
+ Tokenizer.prototype = {\r
+ whitespace: /\s/,\r
+ number: /^[\+\-]?(\d*\.)?\d+/,\r
+ url: /^url\(\s*("([^"]*)"|'([^']*)'|([!#$%&*-~]*))\s*\)/i,\r
+ ident: /^\-?[_a-z][\w-]*/i,\r
+ string: /^("([^"]*)"|'([^']*)')/,\r
+ operator: /^[\/,]/,\r
+ hash: /^#[\w]+/,\r
+ hashColor: /^#([\da-f]{6}|[\da-f]{3})/i,\r
+\r
+ unitTypes: {\r
+ 'px': Type.LENGTH, 'em': Type.LENGTH, 'ex': Type.LENGTH,\r
+ 'mm': Type.LENGTH, 'cm': Type.LENGTH, 'in': Type.LENGTH,\r
+ 'pt': Type.LENGTH, 'pc': Type.LENGTH,\r
+ 'deg': Type.ANGLE, 'rad': Type.ANGLE, 'grad': Type.ANGLE\r
+ },\r
+\r
+ colorFunctions: {\r
+ 'rgb': 1, 'rgba': 1, 'hsl': 1, 'hsla': 1\r
+ },\r
+\r
+\r
+ /**\r
+ * Advance to and return the next token in the CSS string. If the end of the CSS string has\r
+ * been reached, null will be returned.\r
+ * @param {boolean} forget - if true, the token will not be stored for the purposes of backtracking with prev().\r
+ * @return {PIE.Tokenizer.Token}\r
+ */\r
+ next: function( forget ) {\r
+ var css, ch, firstChar, match, val,\r
+ me = this;\r
+\r
+ function newToken( type, value ) {\r
+ var tok = new Tokenizer.Token( type, value );\r
+ if( !forget ) {\r
+ me.tokens.push( tok );\r
+ me.tokenIndex++;\r
+ }\r
+ return tok;\r
+ }\r
+ function failure() {\r
+ me.tokenIndex++;\r
+ return null;\r
+ }\r
+\r
+ // In case we previously backed up, return the stored token in the next slot\r
+ if( this.tokenIndex < this.tokens.length ) {\r
+ return this.tokens[ this.tokenIndex++ ];\r
+ }\r
+\r
+ // Move past leading whitespace characters\r
+ while( this.whitespace.test( this.css.charAt( this.ch ) ) ) {\r
+ this.ch++;\r
+ }\r
+ if( this.ch >= this.css.length ) {\r
+ return failure();\r
+ }\r
+\r
+ ch = this.ch;\r
+ css = this.css.substring( this.ch );\r
+ firstChar = css.charAt( 0 );\r
+ switch( firstChar ) {\r
+ case '#':\r
+ if( match = css.match( this.hashColor ) ) {\r
+ this.ch += match[0].length;\r
+ return newToken( Type.COLOR, match[0] );\r
+ }\r
+ break;\r
+\r
+ case '"':\r
+ case "'":\r
+ if( match = css.match( this.string ) ) {\r
+ this.ch += match[0].length;\r
+ return newToken( Type.STRING, match[2] || match[3] || '' );\r
+ }\r
+ break;\r
+\r
+ case "/":\r
+ case ",":\r
+ this.ch++;\r
+ return newToken( Type.OPERATOR, firstChar );\r
+\r
+ case 'u':\r
+ if( match = css.match( this.url ) ) {\r
+ this.ch += match[0].length;\r
+ return newToken( Type.URL, match[2] || match[3] || match[4] || '' );\r
+ }\r
+ }\r
+\r
+ // Numbers and values starting with numbers\r
+ if( match = css.match( this.number ) ) {\r
+ val = match[0];\r
+ this.ch += val.length;\r
+\r
+ // Check if it is followed by a unit\r
+ if( css.charAt( val.length ) === '%' ) {\r
+ this.ch++;\r
+ return newToken( Type.PERCENT, val + '%' );\r
+ }\r
+ if( match = css.substring( val.length ).match( this.ident ) ) {\r
+ val += match[0];\r
+ this.ch += match[0].length;\r
+ return newToken( this.unitTypes[ match[0].toLowerCase() ] || Type.DIMEN, val );\r
+ }\r
+\r
+ // Plain ol' number\r
+ return newToken( Type.NUMBER, val );\r
+ }\r
+\r
+ // Identifiers\r
+ if( match = css.match( this.ident ) ) {\r
+ val = match[0];\r
+ this.ch += val.length;\r
+\r
+ // Named colors\r
+ if( val.toLowerCase() in PIE.Color.names || val === 'currentColor' || val === 'transparent' ) {\r
+ return newToken( Type.COLOR, val );\r
+ }\r
+\r
+ // Functions\r
+ if( css.charAt( val.length ) === '(' ) {\r
+ this.ch++;\r
+\r
+ // Color values in function format: rgb, rgba, hsl, hsla\r
+ if( val.toLowerCase() in this.colorFunctions ) {\r
+ function isNum( tok ) {\r
+ return tok && tok.tokenType & Type.NUMBER;\r
+ }\r
+ function isNumOrPct( tok ) {\r
+ return tok && ( tok.tokenType & ( Type.NUMBER | Type.PERCENT ) );\r
+ }\r
+ function isValue( tok, val ) {\r
+ return tok && tok.tokenValue === val;\r
+ }\r
+ function next() {\r
+ return me.next( 1 );\r
+ }\r
+\r
+ if( ( val.charAt(0) === 'r' ? isNumOrPct( next() ) : isNum( next() ) ) &&\r
+ isValue( next(), ',' ) &&\r
+ isNumOrPct( next() ) &&\r
+ isValue( next(), ',' ) &&\r
+ isNumOrPct( next() ) &&\r
+ ( val === 'rgb' || val === 'hsa' || (\r
+ isValue( next(), ',' ) &&\r
+ isNum( next() )\r
+ ) ) &&\r
+ isValue( next(), ')' ) ) {\r
+ return newToken( Type.COLOR, this.css.substring( ch, this.ch ) );\r
+ }\r
+ return failure();\r
+ }\r
+\r
+ return newToken( Type.FUNCTION, val );\r
+ }\r
+\r
+ // Other identifier\r
+ return newToken( Type.IDENT, val );\r
+ }\r
+\r
+ // Standalone character\r
+ this.ch++;\r
+ return newToken( Type.CHARACTER, firstChar );\r
+ },\r
+\r
+ /**\r
+ * Determine whether there is another token\r
+ * @return {boolean}\r
+ */\r
+ hasNext: function() {\r
+ var next = this.next();\r
+ this.prev();\r
+ return !!next;\r
+ },\r
+\r
+ /**\r
+ * Back up and return the previous token\r
+ * @return {PIE.Tokenizer.Token}\r
+ */\r
+ prev: function() {\r
+ return this.tokens[ this.tokenIndex-- - 2 ];\r
+ },\r
+\r
+ /**\r
+ * Retrieve all the tokens in the CSS string\r
+ * @return {Array.<PIE.Tokenizer.Token>}\r
+ */\r
+ all: function() {\r
+ while( this.next() ) {}\r
+ return this.tokens;\r
+ },\r
+\r
+ /**\r
+ * Return a list of tokens from the current position until the given function returns\r
+ * true. The final token will not be included in the list.\r
+ * @param {function():boolean} func - test function\r
+ * @param {boolean} require - if true, then if the end of the CSS string is reached\r
+ * before the test function returns true, null will be returned instead of the\r
+ * tokens that have been found so far.\r
+ * @return {Array.<PIE.Tokenizer.Token>}\r
+ */\r
+ until: function( func, require ) {\r
+ var list = [], t, hit;\r
+ while( t = this.next() ) {\r
+ if( func( t ) ) {\r
+ hit = true;\r
+ this.prev();\r
+ break;\r
+ }\r
+ list.push( t );\r
+ }\r
+ return require && !hit ? null : list;\r
+ }\r
+ };\r
+\r
+ return Tokenizer;\r
+})();/**\r
+ * Handles calculating, caching, and detecting changes to size and position of the element.\r
+ * @constructor\r
+ * @param {Element} el the target element\r
+ */\r
+PIE.BoundsInfo = function( el ) {\r
+ this.targetElement = el;\r
+};\r
+PIE.BoundsInfo.prototype = {\r
+\r
+ _locked: 0,\r
+\r
+ positionChanged: function() {\r
+ var last = this._lastBounds,\r
+ bounds;\r
+ return !last || ( ( bounds = this.getBounds() ) && ( last.x !== bounds.x || last.y !== bounds.y ) );\r
+ },\r
+\r
+ sizeChanged: function() {\r
+ var last = this._lastBounds,\r
+ bounds;\r
+ return !last || ( ( bounds = this.getBounds() ) && ( last.w !== bounds.w || last.h !== bounds.h ) );\r
+ },\r
+\r
+ getLiveBounds: function() {\r
+ var el = this.targetElement,\r
+ rect = el.getBoundingClientRect(),\r
+ isIE9 = PIE.ieDocMode === 9,\r
+ isIE7 = PIE.ieVersion === 7,\r
+ width = rect.right - rect.left;\r
+ return {\r
+ x: rect.left,\r
+ y: rect.top,\r
+ // In some cases scrolling the page will cause IE9 to report incorrect dimensions\r
+ // in the rect returned by getBoundingClientRect, so we must query offsetWidth/Height\r
+ // instead. Also IE7 is inconsistent in using logical vs. device pixels in measurements\r
+ // so we must calculate the ratio and use it in certain places as a position adjustment.\r
+ w: isIE9 || isIE7 ? el.offsetWidth : width,\r
+ h: isIE9 || isIE7 ? el.offsetHeight : rect.bottom - rect.top,\r
+ logicalZoomRatio: ( isIE7 && width ) ? el.offsetWidth / width : 1\r
+ };\r
+ },\r
+\r
+ getBounds: function() {\r
+ return this._locked ? \r
+ ( this._lockedBounds || ( this._lockedBounds = this.getLiveBounds() ) ) :\r
+ this.getLiveBounds();\r
+ },\r
+\r
+ hasBeenQueried: function() {\r
+ return !!this._lastBounds;\r
+ },\r
+\r
+ lock: function() {\r
+ ++this._locked;\r
+ },\r
+\r
+ unlock: function() {\r
+ if( !--this._locked ) {\r
+ if( this._lockedBounds ) this._lastBounds = this._lockedBounds;\r
+ this._lockedBounds = null;\r
+ }\r
+ }\r
+\r
+};\r
+(function() {\r
+\r
+function cacheWhenLocked( fn ) {\r
+ var uid = PIE.Util.getUID( fn );\r
+ return function() {\r
+ if( this._locked ) {\r
+ var cache = this._lockedValues || ( this._lockedValues = {} );\r
+ return ( uid in cache ) ? cache[ uid ] : ( cache[ uid ] = fn.call( this ) );\r
+ } else {\r
+ return fn.call( this );\r
+ }\r
+ }\r
+}\r
+\r
+\r
+PIE.StyleInfoBase = {\r
+\r
+ _locked: 0,\r
+\r
+ /**\r
+ * Create a new StyleInfo class, with the standard constructor, and augmented by\r
+ * the StyleInfoBase's members.\r
+ * @param proto\r
+ */\r
+ newStyleInfo: function( proto ) {\r
+ function StyleInfo( el ) {\r
+ this.targetElement = el;\r
+ this._lastCss = this.getCss();\r
+ }\r
+ PIE.Util.merge( StyleInfo.prototype, PIE.StyleInfoBase, proto );\r
+ StyleInfo._propsCache = {};\r
+ return StyleInfo;\r
+ },\r
+\r
+ /**\r
+ * Get an object representation of the target CSS style, caching it for each unique\r
+ * CSS value string.\r
+ * @return {Object}\r
+ */\r
+ getProps: function() {\r
+ var css = this.getCss(),\r
+ cache = this.constructor._propsCache;\r
+ return css ? ( css in cache ? cache[ css ] : ( cache[ css ] = this.parseCss( css ) ) ) : null;\r
+ },\r
+\r
+ /**\r
+ * Get the raw CSS value for the target style\r
+ * @return {string}\r
+ */\r
+ getCss: cacheWhenLocked( function() {\r
+ var el = this.targetElement,\r
+ ctor = this.constructor,\r
+ s = el.style,\r
+ cs = el.currentStyle,\r
+ cssProp = this.cssProperty,\r
+ styleProp = this.styleProperty,\r
+ prefixedCssProp = ctor._prefixedCssProp || ( ctor._prefixedCssProp = PIE.CSS_PREFIX + cssProp ),\r
+ prefixedStyleProp = ctor._prefixedStyleProp || ( ctor._prefixedStyleProp = PIE.STYLE_PREFIX + styleProp.charAt(0).toUpperCase() + styleProp.substring(1) );\r
+ return s[ prefixedStyleProp ] || cs.getAttribute( prefixedCssProp ) || s[ styleProp ] || cs.getAttribute( cssProp );\r
+ } ),\r
+\r
+ /**\r
+ * Determine whether the target CSS style is active.\r
+ * @return {boolean}\r
+ */\r
+ isActive: cacheWhenLocked( function() {\r
+ return !!this.getProps();\r
+ } ),\r
+\r
+ /**\r
+ * Determine whether the target CSS style has changed since the last time it was used.\r
+ * @return {boolean}\r
+ */\r
+ changed: cacheWhenLocked( function() {\r
+ var currentCss = this.getCss(),\r
+ changed = currentCss !== this._lastCss;\r
+ this._lastCss = currentCss;\r
+ return changed;\r
+ } ),\r
+\r
+ cacheWhenLocked: cacheWhenLocked,\r
+\r
+ lock: function() {\r
+ ++this._locked;\r
+ },\r
+\r
+ unlock: function() {\r
+ if( !--this._locked ) {\r
+ delete this._lockedValues;\r
+ }\r
+ }\r
+};\r
+\r
+})();/**\r
+ * Handles parsing, caching, and detecting changes to background (and -pie-background) CSS\r
+ * @constructor\r
+ * @param {Element} el the target element\r
+ */\r
+PIE.BackgroundStyleInfo = PIE.StyleInfoBase.newStyleInfo( {\r
+\r
+ cssProperty: PIE.CSS_PREFIX + 'background',\r
+ styleProperty: PIE.STYLE_PREFIX + 'Background',\r
+\r
+ attachIdents: { 'scroll':1, 'fixed':1, 'local':1 },\r
+ repeatIdents: { 'repeat-x':1, 'repeat-y':1, 'repeat':1, 'no-repeat':1 },\r
+ originAndClipIdents: { 'padding-box':1, 'border-box':1, 'content-box':1 },\r
+ positionIdents: { 'top':1, 'right':1, 'bottom':1, 'left':1, 'center':1 },\r
+ sizeIdents: { 'contain':1, 'cover':1 },\r
+ propertyNames: {\r
+ CLIP: 'backgroundClip',\r
+ COLOR: 'backgroundColor',\r
+ IMAGE: 'backgroundImage',\r
+ ORIGIN: 'backgroundOrigin',\r
+ POSITION: 'backgroundPosition',\r
+ REPEAT: 'backgroundRepeat',\r
+ SIZE: 'backgroundSize'\r
+ },\r
+\r
+ /**\r
+ * For background styles, we support the -pie-background property but fall back to the standard\r
+ * backround* properties. The reason we have to use the prefixed version is that IE natively\r
+ * parses the standard properties and if it sees something it doesn't know how to parse, for example\r
+ * multiple values or gradient definitions, it will throw that away and not make it available through\r
+ * currentStyle.\r
+ *\r
+ * Format of return object:\r
+ * {\r
+ * color: <PIE.Color>,\r
+ * bgImages: [\r
+ * {\r
+ * imgType: 'image',\r
+ * imgUrl: 'image.png',\r
+ * imgRepeat: <'no-repeat' | 'repeat-x' | 'repeat-y' | 'repeat'>,\r
+ * bgPosition: <PIE.BgPosition>,\r
+ * bgAttachment: <'scroll' | 'fixed' | 'local'>,\r
+ * bgOrigin: <'border-box' | 'padding-box' | 'content-box'>,\r
+ * bgClip: <'border-box' | 'padding-box'>,\r
+ * bgSize: <PIE.BgSize>,\r
+ * origString: 'url(img.png) no-repeat top left'\r
+ * },\r
+ * {\r
+ * imgType: 'linear-gradient',\r
+ * gradientStart: <PIE.BgPosition>,\r
+ * angle: <PIE.Angle>,\r
+ * stops: [\r
+ * { color: <PIE.Color>, offset: <PIE.Length> },\r
+ * { color: <PIE.Color>, offset: <PIE.Length> }, ...\r
+ * ]\r
+ * }\r
+ * ]\r
+ * }\r
+ * @param {String} css\r
+ * @override\r
+ */\r
+ parseCss: function( css ) {\r
+ var el = this.targetElement,\r
+ cs = el.currentStyle,\r
+ tokenizer, token, image,\r
+ tok_type = PIE.Tokenizer.Type,\r
+ type_operator = tok_type.OPERATOR,\r
+ type_ident = tok_type.IDENT,\r
+ type_color = tok_type.COLOR,\r
+ tokType, tokVal,\r
+ beginCharIndex = 0,\r
+ positionIdents = this.positionIdents,\r
+ gradient, stop, width, height,\r
+ props = { bgImages: [] };\r
+\r
+ function isBgPosToken( token ) {\r
+ return token && token.isLengthOrPercent() || ( token.tokenType & type_ident && token.tokenValue in positionIdents );\r
+ }\r
+\r
+ function sizeToken( token ) {\r
+ return token && ( ( token.isLengthOrPercent() && PIE.getLength( token.tokenValue ) ) || ( token.tokenValue === 'auto' && 'auto' ) );\r
+ }\r
+\r
+ // If the CSS3-specific -pie-background property is present, parse it\r
+ if( this.getCss3() ) {\r
+ tokenizer = new PIE.Tokenizer( css );\r
+ image = {};\r
+\r
+ while( token = tokenizer.next() ) {\r
+ tokType = token.tokenType;\r
+ tokVal = token.tokenValue;\r
+\r
+ if( !image.imgType && tokType & tok_type.FUNCTION && tokVal === 'linear-gradient' ) {\r
+ gradient = { stops: [], imgType: tokVal };\r
+ stop = {};\r
+ while( token = tokenizer.next() ) {\r
+ tokType = token.tokenType;\r
+ tokVal = token.tokenValue;\r
+\r
+ // If we reached the end of the function and had at least 2 stops, flush the info\r
+ if( tokType & tok_type.CHARACTER && tokVal === ')' ) {\r
+ if( stop.color ) {\r
+ gradient.stops.push( stop );\r
+ }\r
+ if( gradient.stops.length > 1 ) {\r
+ PIE.Util.merge( image, gradient );\r
+ }\r
+ break;\r
+ }\r
+\r
+ // Color stop - must start with color\r
+ if( tokType & type_color ) {\r
+ // if we already have an angle/position, make sure that the previous token was a comma\r
+ if( gradient.angle || gradient.gradientStart ) {\r
+ token = tokenizer.prev();\r
+ if( token.tokenType !== type_operator ) {\r
+ break; //fail\r
+ }\r
+ tokenizer.next();\r
+ }\r
+\r
+ stop = {\r
+ color: PIE.getColor( tokVal )\r
+ };\r
+ // check for offset following color\r
+ token = tokenizer.next();\r
+ if( token.isLengthOrPercent() ) {\r
+ stop.offset = PIE.getLength( token.tokenValue );\r
+ } else {\r
+ tokenizer.prev();\r
+ }\r
+ }\r
+ // Angle - can only appear in first spot\r
+ else if( tokType & tok_type.ANGLE && !gradient.angle && !stop.color && !gradient.stops.length ) {\r
+ gradient.angle = new PIE.Angle( token.tokenValue );\r
+ }\r
+ else if( isBgPosToken( token ) && !gradient.gradientStart && !stop.color && !gradient.stops.length ) {\r
+ tokenizer.prev();\r
+ gradient.gradientStart = new PIE.BgPosition(\r
+ tokenizer.until( function( t ) {\r
+ return !isBgPosToken( t );\r
+ }, false )\r
+ );\r
+ }\r
+ else if( tokType & type_operator && tokVal === ',' ) {\r
+ if( stop.color ) {\r
+ gradient.stops.push( stop );\r
+ stop = {};\r
+ }\r
+ }\r
+ else {\r
+ // Found something we didn't recognize; fail without adding image\r
+ break;\r
+ }\r
+ }\r
+ }\r
+ else if( !image.imgType && tokType & tok_type.URL ) {\r
+ image.imgUrl = tokVal;\r
+ image.imgType = 'image';\r
+ }\r
+ else if( isBgPosToken( token ) && !image.bgPosition ) {\r
+ tokenizer.prev();\r
+ image.bgPosition = new PIE.BgPosition(\r
+ tokenizer.until( function( t ) {\r
+ return !isBgPosToken( t );\r
+ }, false )\r
+ );\r
+ }\r
+ else if( tokType & type_ident ) {\r
+ if( tokVal in this.repeatIdents && !image.imgRepeat ) {\r
+ image.imgRepeat = tokVal;\r
+ }\r
+ else if( tokVal in this.originAndClipIdents && !image.bgOrigin ) {\r
+ image.bgOrigin = tokVal;\r
+ if( ( token = tokenizer.next() ) && ( token.tokenType & type_ident ) &&\r
+ token.tokenValue in this.originAndClipIdents ) {\r
+ image.bgClip = token.tokenValue;\r
+ } else {\r
+ image.bgClip = tokVal;\r
+ tokenizer.prev();\r
+ }\r
+ }\r
+ else if( tokVal in this.attachIdents && !image.bgAttachment ) {\r
+ image.bgAttachment = tokVal;\r
+ }\r
+ else {\r
+ return null;\r
+ }\r
+ }\r
+ else if( tokType & type_color && !props.color ) {\r
+ props.color = PIE.getColor( tokVal );\r
+ }\r
+ else if( tokType & type_operator && tokVal === '/' && !image.bgSize && image.bgPosition ) {\r
+ // background size\r
+ token = tokenizer.next();\r
+ if( token.tokenType & type_ident && token.tokenValue in this.sizeIdents ) {\r
+ image.bgSize = new PIE.BgSize( token.tokenValue );\r
+ }\r
+ else if( width = sizeToken( token ) ) {\r
+ height = sizeToken( tokenizer.next() );\r
+ if ( !height ) {\r
+ height = width;\r
+ tokenizer.prev();\r
+ }\r
+ image.bgSize = new PIE.BgSize( width, height );\r
+ }\r
+ else {\r
+ return null;\r
+ }\r
+ }\r
+ // new layer\r
+ else if( tokType & type_operator && tokVal === ',' && image.imgType ) {\r
+ image.origString = css.substring( beginCharIndex, tokenizer.ch - 1 );\r
+ beginCharIndex = tokenizer.ch;\r
+ props.bgImages.push( image );\r
+ image = {};\r
+ }\r
+ else {\r
+ // Found something unrecognized; chuck everything\r
+ return null;\r
+ }\r
+ }\r
+\r
+ // leftovers\r
+ if( image.imgType ) {\r
+ image.origString = css.substring( beginCharIndex );\r
+ props.bgImages.push( image );\r
+ }\r
+ }\r
+\r
+ // Otherwise, use the standard background properties; let IE give us the values rather than parsing them\r
+ else {\r
+ this.withActualBg( PIE.ieDocMode < 9 ?\r
+ function() {\r
+ var propNames = this.propertyNames,\r
+ posX = cs[propNames.POSITION + 'X'],\r
+ posY = cs[propNames.POSITION + 'Y'],\r
+ img = cs[propNames.IMAGE],\r
+ color = cs[propNames.COLOR];\r
+\r
+ if( color !== 'transparent' ) {\r
+ props.color = PIE.getColor( color )\r
+ }\r
+ if( img !== 'none' ) {\r
+ props.bgImages = [ {\r
+ imgType: 'image',\r
+ imgUrl: new PIE.Tokenizer( img ).next().tokenValue,\r
+ imgRepeat: cs[propNames.REPEAT],\r
+ bgPosition: new PIE.BgPosition( new PIE.Tokenizer( posX + ' ' + posY ).all() )\r
+ } ];\r
+ }\r
+ } :\r
+ function() {\r
+ var propNames = this.propertyNames,\r
+ splitter = /\s*,\s*/,\r
+ images = cs[propNames.IMAGE].split( splitter ),\r
+ color = cs[propNames.COLOR],\r
+ repeats, positions, origins, clips, sizes, i, len, image, sizeParts;\r
+\r
+ if( color !== 'transparent' ) {\r
+ props.color = PIE.getColor( color )\r
+ }\r
+\r
+ len = images.length;\r
+ if( len && images[0] !== 'none' ) {\r
+ repeats = cs[propNames.REPEAT].split( splitter );\r
+ positions = cs[propNames.POSITION].split( splitter );\r
+ origins = cs[propNames.ORIGIN].split( splitter );\r
+ clips = cs[propNames.CLIP].split( splitter );\r
+ sizes = cs[propNames.SIZE].split( splitter );\r
+\r
+ props.bgImages = [];\r
+ for( i = 0; i < len; i++ ) {\r
+ image = images[ i ];\r
+ if( image && image !== 'none' ) {\r
+ sizeParts = sizes[i].split( ' ' );\r
+ props.bgImages.push( {\r
+ origString: image + ' ' + repeats[ i ] + ' ' + positions[ i ] + ' / ' + sizes[ i ] + ' ' +\r
+ origins[ i ] + ' ' + clips[ i ],\r
+ imgType: 'image',\r
+ imgUrl: new PIE.Tokenizer( image ).next().tokenValue,\r
+ imgRepeat: repeats[ i ],\r
+ bgPosition: new PIE.BgPosition( new PIE.Tokenizer( positions[ i ] ).all() ),\r
+ bgOrigin: origins[ i ],\r
+ bgClip: clips[ i ],\r
+ bgSize: new PIE.BgSize( sizeParts[ 0 ], sizeParts[ 1 ] )\r
+ } );\r
+ }\r
+ }\r
+ }\r
+ }\r
+ );\r
+ }\r
+\r
+ return ( props.color || props.bgImages[0] ) ? props : null;\r
+ },\r
+\r
+ /**\r
+ * Execute a function with the actual background styles (not overridden with runtimeStyle\r
+ * properties set by the renderers) available via currentStyle.\r
+ * @param fn\r
+ */\r
+ withActualBg: function( fn ) {\r
+ var isIE9 = PIE.ieDocMode > 8,\r
+ propNames = this.propertyNames,\r
+ rs = this.targetElement.runtimeStyle,\r
+ rsImage = rs[propNames.IMAGE],\r
+ rsColor = rs[propNames.COLOR],\r
+ rsRepeat = rs[propNames.REPEAT],\r
+ rsClip, rsOrigin, rsSize, rsPosition, ret;\r
+\r
+ if( rsImage ) rs[propNames.IMAGE] = '';\r
+ if( rsColor ) rs[propNames.COLOR] = '';\r
+ if( rsRepeat ) rs[propNames.REPEAT] = '';\r
+ if( isIE9 ) {\r
+ rsClip = rs[propNames.CLIP];\r
+ rsOrigin = rs[propNames.ORIGIN];\r
+ rsPosition = rs[propNames.POSITION];\r
+ rsSize = rs[propNames.SIZE];\r
+ if( rsClip ) rs[propNames.CLIP] = '';\r
+ if( rsOrigin ) rs[propNames.ORIGIN] = '';\r
+ if( rsPosition ) rs[propNames.POSITION] = '';\r
+ if( rsSize ) rs[propNames.SIZE] = '';\r
+ }\r
+\r
+ ret = fn.call( this );\r
+\r
+ if( rsImage ) rs[propNames.IMAGE] = rsImage;\r
+ if( rsColor ) rs[propNames.COLOR] = rsColor;\r
+ if( rsRepeat ) rs[propNames.REPEAT] = rsRepeat;\r
+ if( isIE9 ) {\r
+ if( rsClip ) rs[propNames.CLIP] = rsClip;\r
+ if( rsOrigin ) rs[propNames.ORIGIN] = rsOrigin;\r
+ if( rsPosition ) rs[propNames.POSITION] = rsPosition;\r
+ if( rsSize ) rs[propNames.SIZE] = rsSize;\r
+ }\r
+\r
+ return ret;\r
+ },\r
+\r
+ getCss: PIE.StyleInfoBase.cacheWhenLocked( function() {\r
+ return this.getCss3() ||\r
+ this.withActualBg( function() {\r
+ var cs = this.targetElement.currentStyle,\r
+ propNames = this.propertyNames;\r
+ return cs[propNames.COLOR] + ' ' + cs[propNames.IMAGE] + ' ' + cs[propNames.REPEAT] + ' ' +\r
+ cs[propNames.POSITION + 'X'] + ' ' + cs[propNames.POSITION + 'Y'];\r
+ } );\r
+ } ),\r
+\r
+ getCss3: PIE.StyleInfoBase.cacheWhenLocked( function() {\r
+ var el = this.targetElement;\r
+ return el.style[ this.styleProperty ] || el.currentStyle.getAttribute( this.cssProperty );\r
+ } ),\r
+\r
+ /**\r
+ * Tests if style.PiePngFix or the -pie-png-fix property is set to true in IE6.\r
+ */\r
+ isPngFix: function() {\r
+ var val = 0, el;\r
+ if( PIE.ieVersion < 7 ) {\r
+ el = this.targetElement;\r
+ val = ( '' + ( el.style[ PIE.STYLE_PREFIX + 'PngFix' ] || el.currentStyle.getAttribute( PIE.CSS_PREFIX + 'png-fix' ) ) === 'true' );\r
+ }\r
+ return val;\r
+ },\r
+ \r
+ /**\r
+ * The isActive logic is slightly different, because getProps() always returns an object\r
+ * even if it is just falling back to the native background properties. But we only want\r
+ * to report is as being "active" if either the -pie-background override property is present\r
+ * and parses successfully or '-pie-png-fix' is set to true in IE6.\r
+ */\r
+ isActive: PIE.StyleInfoBase.cacheWhenLocked( function() {\r
+ return (this.getCss3() || this.isPngFix()) && !!this.getProps();\r
+ } )\r
+\r
+} );/**\r
+ * Handles parsing, caching, and detecting changes to border CSS\r
+ * @constructor\r
+ * @param {Element} el the target element\r
+ */\r
+PIE.BorderStyleInfo = PIE.StyleInfoBase.newStyleInfo( {\r
+\r
+ sides: [ 'Top', 'Right', 'Bottom', 'Left' ],\r
+ namedWidths: {\r
+ 'thin': '1px',\r
+ 'medium': '3px',\r
+ 'thick': '5px'\r
+ },\r
+\r
+ parseCss: function( css ) {\r
+ var w = {},\r
+ s = {},\r
+ c = {},\r
+ active = false,\r
+ colorsSame = true,\r
+ stylesSame = true,\r
+ widthsSame = true;\r
+\r
+ this.withActualBorder( function() {\r
+ var el = this.targetElement,\r
+ cs = el.currentStyle,\r
+ i = 0,\r
+ style, color, width, lastStyle, lastColor, lastWidth, side, ltr;\r
+ for( ; i < 4; i++ ) {\r
+ side = this.sides[ i ];\r
+\r
+ ltr = side.charAt(0).toLowerCase();\r
+ style = s[ ltr ] = cs[ 'border' + side + 'Style' ];\r
+ color = cs[ 'border' + side + 'Color' ];\r
+ width = cs[ 'border' + side + 'Width' ];\r
+\r
+ if( i > 0 ) {\r
+ if( style !== lastStyle ) { stylesSame = false; }\r
+ if( color !== lastColor ) { colorsSame = false; }\r
+ if( width !== lastWidth ) { widthsSame = false; }\r
+ }\r
+ lastStyle = style;\r
+ lastColor = color;\r
+ lastWidth = width;\r
+\r
+ c[ ltr ] = PIE.getColor( color );\r
+\r
+ width = w[ ltr ] = PIE.getLength( s[ ltr ] === 'none' ? '0' : ( this.namedWidths[ width ] || width ) );\r
+ if( width.pixels( this.targetElement ) > 0 ) {\r
+ active = true;\r
+ }\r
+ }\r
+ } );\r
+\r
+ return active ? {\r
+ widths: w,\r
+ styles: s,\r
+ colors: c,\r
+ widthsSame: widthsSame,\r
+ colorsSame: colorsSame,\r
+ stylesSame: stylesSame\r
+ } : null;\r
+ },\r
+\r
+ getCss: PIE.StyleInfoBase.cacheWhenLocked( function() {\r
+ var el = this.targetElement,\r
+ cs = el.currentStyle,\r
+ css;\r
+\r
+ // Don't redraw or hide borders for cells in border-collapse:collapse tables\r
+ if( !( el.tagName in PIE.tableCellTags && el.offsetParent.currentStyle.borderCollapse === 'collapse' ) ) {\r
+ this.withActualBorder( function() {\r
+ css = cs.borderWidth + '|' + cs.borderStyle + '|' + cs.borderColor;\r
+ } );\r
+ }\r
+ return css;\r
+ } ),\r
+\r
+ /**\r
+ * Execute a function with the actual border styles (not overridden with runtimeStyle\r
+ * properties set by the renderers) available via currentStyle.\r
+ * @param fn\r
+ */\r
+ withActualBorder: function( fn ) {\r
+ var rs = this.targetElement.runtimeStyle,\r
+ rsWidth = rs.borderWidth,\r
+ rsColor = rs.borderColor,\r
+ ret;\r
+\r
+ if( rsWidth ) rs.borderWidth = '';\r
+ if( rsColor ) rs.borderColor = '';\r
+\r
+ ret = fn.call( this );\r
+\r
+ if( rsWidth ) rs.borderWidth = rsWidth;\r
+ if( rsColor ) rs.borderColor = rsColor;\r
+\r
+ return ret;\r
+ }\r
+\r
+} );\r
+/**\r
+ * Handles parsing, caching, and detecting changes to border-radius CSS\r
+ * @constructor\r
+ * @param {Element} el the target element\r
+ */\r
+(function() {\r
+\r
+PIE.BorderRadiusStyleInfo = PIE.StyleInfoBase.newStyleInfo( {\r
+\r
+ cssProperty: 'border-radius',\r
+ styleProperty: 'borderRadius',\r
+\r
+ parseCss: function( css ) {\r
+ var p = null, x, y,\r
+ tokenizer, token, length,\r
+ hasNonZero = false;\r
+\r
+ if( css ) {\r
+ tokenizer = new PIE.Tokenizer( css );\r
+\r
+ function collectLengths() {\r
+ var arr = [], num;\r
+ while( ( token = tokenizer.next() ) && token.isLengthOrPercent() ) {\r
+ length = PIE.getLength( token.tokenValue );\r
+ num = length.getNumber();\r
+ if( num < 0 ) {\r
+ return null;\r
+ }\r
+ if( num > 0 ) {\r
+ hasNonZero = true;\r
+ }\r
+ arr.push( length );\r
+ }\r
+ return arr.length > 0 && arr.length < 5 ? {\r
+ 'tl': arr[0],\r
+ 'tr': arr[1] || arr[0],\r
+ 'br': arr[2] || arr[0],\r
+ 'bl': arr[3] || arr[1] || arr[0]\r
+ } : null;\r
+ }\r
+\r
+ // Grab the initial sequence of lengths\r
+ if( x = collectLengths() ) {\r
+ // See if there is a slash followed by more lengths, for the y-axis radii\r
+ if( token ) {\r
+ if( token.tokenType & PIE.Tokenizer.Type.OPERATOR && token.tokenValue === '/' ) {\r
+ y = collectLengths();\r
+ }\r
+ } else {\r
+ y = x;\r
+ }\r
+\r
+ // Treat all-zero values the same as no value\r
+ if( hasNonZero && x && y ) {\r
+ p = { x: x, y : y };\r
+ }\r
+ }\r
+ }\r
+\r
+ return p;\r
+ }\r
+} );\r
+\r
+var zero = PIE.getLength( '0' ),\r
+ zeros = { 'tl': zero, 'tr': zero, 'br': zero, 'bl': zero };\r
+PIE.BorderRadiusStyleInfo.ALL_ZERO = { x: zeros, y: zeros };\r
+\r
+})();/**\r
+ * Handles parsing, caching, and detecting changes to border-image CSS\r
+ * @constructor\r
+ * @param {Element} el the target element\r
+ */\r
+PIE.BorderImageStyleInfo = PIE.StyleInfoBase.newStyleInfo( {\r
+\r
+ cssProperty: 'border-image',\r
+ styleProperty: 'borderImage',\r
+\r
+ repeatIdents: { 'stretch':1, 'round':1, 'repeat':1, 'space':1 },\r
+\r
+ parseCss: function( css ) {\r
+ var p = null, tokenizer, token, type, value,\r
+ slices, widths, outsets,\r
+ slashCount = 0,\r
+ Type = PIE.Tokenizer.Type,\r
+ IDENT = Type.IDENT,\r
+ NUMBER = Type.NUMBER,\r
+ PERCENT = Type.PERCENT;\r
+\r
+ if( css ) {\r
+ tokenizer = new PIE.Tokenizer( css );\r
+ p = {};\r
+\r
+ function isSlash( token ) {\r
+ return token && ( token.tokenType & Type.OPERATOR ) && ( token.tokenValue === '/' );\r
+ }\r
+\r
+ function isFillIdent( token ) {\r
+ return token && ( token.tokenType & IDENT ) && ( token.tokenValue === 'fill' );\r
+ }\r
+\r
+ function collectSlicesEtc() {\r
+ slices = tokenizer.until( function( tok ) {\r
+ return !( tok.tokenType & ( NUMBER | PERCENT ) );\r
+ } );\r
+\r
+ if( isFillIdent( tokenizer.next() ) && !p.fill ) {\r
+ p.fill = true;\r
+ } else {\r
+ tokenizer.prev();\r
+ }\r
+\r
+ if( isSlash( tokenizer.next() ) ) {\r
+ slashCount++;\r
+ widths = tokenizer.until( function( token ) {\r
+ return !token.isLengthOrPercent() && !( ( token.tokenType & IDENT ) && token.tokenValue === 'auto' );\r
+ } );\r
+\r
+ if( isSlash( tokenizer.next() ) ) {\r
+ slashCount++;\r
+ outsets = tokenizer.until( function( token ) {\r
+ return !token.isLength();\r
+ } );\r
+ }\r
+ } else {\r
+ tokenizer.prev();\r
+ }\r
+ }\r
+\r
+ while( token = tokenizer.next() ) {\r
+ type = token.tokenType;\r
+ value = token.tokenValue;\r
+\r
+ // Numbers and/or 'fill' keyword: slice values. May be followed optionally by width values, followed optionally by outset values\r
+ if( type & ( NUMBER | PERCENT ) && !slices ) {\r
+ tokenizer.prev();\r
+ collectSlicesEtc();\r
+ }\r
+ else if( isFillIdent( token ) && !p.fill ) {\r
+ p.fill = true;\r
+ collectSlicesEtc();\r
+ }\r
+\r
+ // Idents: one or values for 'repeat'\r
+ else if( ( type & IDENT ) && this.repeatIdents[value] && !p.repeat ) {\r
+ p.repeat = { h: value };\r
+ if( token = tokenizer.next() ) {\r
+ if( ( token.tokenType & IDENT ) && this.repeatIdents[token.tokenValue] ) {\r
+ p.repeat.v = token.tokenValue;\r
+ } else {\r
+ tokenizer.prev();\r
+ }\r
+ }\r
+ }\r
+\r
+ // URL of the image\r
+ else if( ( type & Type.URL ) && !p.src ) {\r
+ p.src = value;\r
+ }\r
+\r
+ // Found something unrecognized; exit.\r
+ else {\r
+ return null;\r
+ }\r
+ }\r
+\r
+ // Validate what we collected\r
+ if( !p.src || !slices || slices.length < 1 || slices.length > 4 ||\r
+ ( widths && widths.length > 4 ) || ( slashCount === 1 && widths.length < 1 ) ||\r
+ ( outsets && outsets.length > 4 ) || ( slashCount === 2 && outsets.length < 1 ) ) {\r
+ return null;\r
+ }\r
+\r
+ // Fill in missing values\r
+ if( !p.repeat ) {\r
+ p.repeat = { h: 'stretch' };\r
+ }\r
+ if( !p.repeat.v ) {\r
+ p.repeat.v = p.repeat.h;\r
+ }\r
+\r
+ function distributeSides( tokens, convertFn ) {\r
+ return {\r
+ 't': convertFn( tokens[0] ),\r
+ 'r': convertFn( tokens[1] || tokens[0] ),\r
+ 'b': convertFn( tokens[2] || tokens[0] ),\r
+ 'l': convertFn( tokens[3] || tokens[1] || tokens[0] )\r
+ };\r
+ }\r
+\r
+ p.slice = distributeSides( slices, function( tok ) {\r
+ return PIE.getLength( ( tok.tokenType & NUMBER ) ? tok.tokenValue + 'px' : tok.tokenValue );\r
+ } );\r
+\r
+ if( widths && widths[0] ) {\r
+ p.widths = distributeSides( widths, function( tok ) {\r
+ return tok.isLengthOrPercent() ? PIE.getLength( tok.tokenValue ) : tok.tokenValue;\r
+ } );\r
+ }\r
+\r
+ if( outsets && outsets[0] ) {\r
+ p.outset = distributeSides( outsets, function( tok ) {\r
+ return tok.isLength() ? PIE.getLength( tok.tokenValue ) : tok.tokenValue;\r
+ } );\r
+ }\r
+ }\r
+\r
+ return p;\r
+ }\r
+\r
+} );/**\r
+ * Handles parsing, caching, and detecting changes to box-shadow CSS\r
+ * @constructor\r
+ * @param {Element} el the target element\r
+ */\r
+PIE.BoxShadowStyleInfo = PIE.StyleInfoBase.newStyleInfo( {\r
+\r
+ cssProperty: 'box-shadow',\r
+ styleProperty: 'boxShadow',\r
+\r
+ parseCss: function( css ) {\r
+ var props,\r
+ getLength = PIE.getLength,\r
+ Type = PIE.Tokenizer.Type,\r
+ tokenizer;\r
+\r
+ if( css ) {\r
+ tokenizer = new PIE.Tokenizer( css );\r
+ props = { outset: [], inset: [] };\r
+\r
+ function parseItem() {\r
+ var token, type, value, color, lengths, inset, len;\r
+\r
+ while( token = tokenizer.next() ) {\r
+ value = token.tokenValue;\r
+ type = token.tokenType;\r
+\r
+ if( type & Type.OPERATOR && value === ',' ) {\r
+ break;\r
+ }\r
+ else if( token.isLength() && !lengths ) {\r
+ tokenizer.prev();\r
+ lengths = tokenizer.until( function( token ) {\r
+ return !token.isLength();\r
+ } );\r
+ }\r
+ else if( type & Type.COLOR && !color ) {\r
+ color = value;\r
+ }\r
+ else if( type & Type.IDENT && value === 'inset' && !inset ) {\r
+ inset = true;\r
+ }\r
+ else { //encountered an unrecognized token; fail.\r
+ return false;\r
+ }\r
+ }\r
+\r
+ len = lengths && lengths.length;\r
+ if( len > 1 && len < 5 ) {\r
+ ( inset ? props.inset : props.outset ).push( {\r
+ xOffset: getLength( lengths[0].tokenValue ),\r
+ yOffset: getLength( lengths[1].tokenValue ),\r
+ blur: getLength( lengths[2] ? lengths[2].tokenValue : '0' ),\r
+ spread: getLength( lengths[3] ? lengths[3].tokenValue : '0' ),\r
+ color: PIE.getColor( color || 'currentColor' )\r
+ } );\r
+ return true;\r
+ }\r
+ return false;\r
+ }\r
+\r
+ while( parseItem() ) {}\r
+ }\r
+\r
+ return props && ( props.inset.length || props.outset.length ) ? props : null;\r
+ }\r
+} );\r
+/**\r
+ * Retrieves the state of the element's visibility and display\r
+ * @constructor\r
+ * @param {Element} el the target element\r
+ */\r
+PIE.VisibilityStyleInfo = PIE.StyleInfoBase.newStyleInfo( {\r
+\r
+ getCss: PIE.StyleInfoBase.cacheWhenLocked( function() {\r
+ var cs = this.targetElement.currentStyle;\r
+ return cs.visibility + '|' + cs.display;\r
+ } ),\r
+\r
+ parseCss: function() {\r
+ var el = this.targetElement,\r
+ rs = el.runtimeStyle,\r
+ cs = el.currentStyle,\r
+ rsVis = rs.visibility,\r
+ csVis;\r
+\r
+ rs.visibility = '';\r
+ csVis = cs.visibility;\r
+ rs.visibility = rsVis;\r
+\r
+ return {\r
+ visible: csVis !== 'hidden',\r
+ displayed: cs.display !== 'none'\r
+ }\r
+ },\r
+\r
+ /**\r
+ * Always return false for isActive, since this property alone will not trigger\r
+ * a renderer to do anything.\r
+ */\r
+ isActive: function() {\r
+ return false;\r
+ }\r
+\r
+} );\r
+PIE.RendererBase = {\r
+\r
+ /**\r
+ * Create a new Renderer class, with the standard constructor, and augmented by\r
+ * the RendererBase's members.\r
+ * @param proto\r
+ */\r
+ newRenderer: function( proto ) {\r
+ function Renderer( el, boundsInfo, styleInfos, parent ) {\r
+ this.targetElement = el;\r
+ this.boundsInfo = boundsInfo;\r
+ this.styleInfos = styleInfos;\r
+ this.parent = parent;\r
+ }\r
+ PIE.Util.merge( Renderer.prototype, PIE.RendererBase, proto );\r
+ return Renderer;\r
+ },\r
+\r
+ /**\r
+ * Flag indicating the element has already been positioned at least once.\r
+ * @type {boolean}\r
+ */\r
+ isPositioned: false,\r
+\r
+ /**\r
+ * Determine if the renderer needs to be updated\r
+ * @return {boolean}\r
+ */\r
+ needsUpdate: function() {\r
+ return false;\r
+ },\r
+\r
+ /**\r
+ * Run any preparation logic that would affect the main update logic of this\r
+ * renderer or any of the other renderers, e.g. things that might affect the\r
+ * element's size or style properties.\r
+ */\r
+ prepareUpdate: PIE.emptyFn,\r
+\r
+ /**\r
+ * Tell the renderer to update based on modified properties\r
+ */\r
+ updateProps: function() {\r
+ this.destroy();\r
+ if( this.isActive() ) {\r
+ this.draw();\r
+ }\r
+ },\r
+\r
+ /**\r
+ * Tell the renderer to update based on modified element position\r
+ */\r
+ updatePos: function() {\r
+ this.isPositioned = true;\r
+ },\r
+\r
+ /**\r
+ * Tell the renderer to update based on modified element dimensions\r
+ */\r
+ updateSize: function() {\r
+ if( this.isActive() ) {\r
+ this.draw();\r
+ } else {\r
+ this.destroy();\r
+ }\r
+ },\r
+\r
+\r
+ /**\r
+ * Add a layer element, with the given z-order index, to the renderer's main box element. We can't use\r
+ * z-index because that breaks when the root rendering box's z-index is 'auto' in IE8+ standards mode.\r
+ * So instead we make sure they are inserted into the DOM in the correct order.\r
+ * @param {number} index\r
+ * @param {Element} el\r
+ */\r
+ addLayer: function( index, el ) {\r
+ this.removeLayer( index );\r
+ for( var layers = this._layers || ( this._layers = [] ), i = index + 1, len = layers.length, layer; i < len; i++ ) {\r
+ layer = layers[i];\r
+ if( layer ) {\r
+ break;\r
+ }\r
+ }\r
+ layers[index] = el;\r
+ this.getBox().insertBefore( el, layer || null );\r
+ },\r
+\r
+ /**\r
+ * Retrieve a layer element by its index, or null if not present\r
+ * @param {number} index\r
+ * @return {Element}\r
+ */\r
+ getLayer: function( index ) {\r
+ var layers = this._layers;\r
+ return layers && layers[index] || null;\r
+ },\r
+\r
+ /**\r
+ * Remove a layer element by its index\r
+ * @param {number} index\r
+ */\r
+ removeLayer: function( index ) {\r
+ var layer = this.getLayer( index ),\r
+ box = this._box;\r
+ if( layer && box ) {\r
+ box.removeChild( layer );\r
+ this._layers[index] = null;\r
+ }\r
+ },\r
+\r
+\r
+ /**\r
+ * Get a VML shape by name, creating it if necessary.\r
+ * @param {string} name A name identifying the element\r
+ * @param {string=} subElName If specified a subelement of the shape will be created with this tag name\r
+ * @param {Element} parent The parent element for the shape; will be ignored if 'group' is specified\r
+ * @param {number=} group If specified, an ordinal group for the shape. 1 or greater. Groups are rendered\r
+ * using container elements in the correct order, to get correct z stacking without z-index.\r
+ */\r
+ getShape: function( name, subElName, parent, group ) {\r
+ var shapes = this._shapes || ( this._shapes = {} ),\r
+ shape = shapes[ name ],\r
+ s;\r
+\r
+ if( !shape ) {\r
+ shape = shapes[ name ] = PIE.Util.createVmlElement( 'shape' );\r
+ if( subElName ) {\r
+ shape.appendChild( shape[ subElName ] = PIE.Util.createVmlElement( subElName ) );\r
+ }\r
+\r
+ if( group ) {\r
+ parent = this.getLayer( group );\r
+ if( !parent ) {\r
+ this.addLayer( group, doc.createElement( 'group' + group ) );\r
+ parent = this.getLayer( group );\r
+ }\r
+ }\r
+\r
+ parent.appendChild( shape );\r
+\r
+ s = shape.style;\r
+ s.position = 'absolute';\r
+ s.left = s.top = 0;\r
+ s['behavior'] = 'url(#default#VML)';\r
+ }\r
+ return shape;\r
+ },\r
+\r
+ /**\r
+ * Delete a named shape which was created by getShape(). Returns true if a shape with the\r
+ * given name was found and deleted, or false if there was no shape of that name.\r
+ * @param {string} name\r
+ * @return {boolean}\r
+ */\r
+ deleteShape: function( name ) {\r
+ var shapes = this._shapes,\r
+ shape = shapes && shapes[ name ];\r
+ if( shape ) {\r
+ shape.parentNode.removeChild( shape );\r
+ delete shapes[ name ];\r
+ }\r
+ return !!shape;\r
+ },\r
+\r
+\r
+ /**\r
+ * For a given set of border radius length/percentage values, convert them to concrete pixel\r
+ * values based on the current size of the target element.\r
+ * @param {Object} radii\r
+ * @return {Object}\r
+ */\r
+ getRadiiPixels: function( radii ) {\r
+ var el = this.targetElement,\r
+ bounds = this.boundsInfo.getBounds(),\r
+ w = bounds.w,\r
+ h = bounds.h,\r
+ tlX, tlY, trX, trY, brX, brY, blX, blY, f;\r
+\r
+ tlX = radii.x['tl'].pixels( el, w );\r
+ tlY = radii.y['tl'].pixels( el, h );\r
+ trX = radii.x['tr'].pixels( el, w );\r
+ trY = radii.y['tr'].pixels( el, h );\r
+ brX = radii.x['br'].pixels( el, w );\r
+ brY = radii.y['br'].pixels( el, h );\r
+ blX = radii.x['bl'].pixels( el, w );\r
+ blY = radii.y['bl'].pixels( el, h );\r
+\r
+ // If any corner ellipses overlap, reduce them all by the appropriate factor. This formula\r
+ // is taken straight from the CSS3 Backgrounds and Borders spec.\r
+ f = Math.min(\r
+ w / ( tlX + trX ),\r
+ h / ( trY + brY ),\r
+ w / ( blX + brX ),\r
+ h / ( tlY + blY )\r
+ );\r
+ if( f < 1 ) {\r
+ tlX *= f;\r
+ tlY *= f;\r
+ trX *= f;\r
+ trY *= f;\r
+ brX *= f;\r
+ brY *= f;\r
+ blX *= f;\r
+ blY *= f;\r
+ }\r
+\r
+ return {\r
+ x: {\r
+ 'tl': tlX,\r
+ 'tr': trX,\r
+ 'br': brX,\r
+ 'bl': blX\r
+ },\r
+ y: {\r
+ 'tl': tlY,\r
+ 'tr': trY,\r
+ 'br': brY,\r
+ 'bl': blY\r
+ }\r
+ }\r
+ },\r
+\r
+ /**\r
+ * Return the VML path string for the element's background box, with corners rounded.\r
+ * @param {Object.<{t:number, r:number, b:number, l:number}>} shrink - if present, specifies number of\r
+ * pixels to shrink the box path inward from the element's four sides.\r
+ * @param {number=} mult If specified, all coordinates will be multiplied by this number\r
+ * @param {Object=} radii If specified, this will be used for the corner radii instead of the properties\r
+ * from this renderer's borderRadiusInfo object.\r
+ * @return {string} the VML path\r
+ */\r
+ getBoxPath: function( shrink, mult, radii ) {\r
+ mult = mult || 1;\r
+\r
+ var r, str,\r
+ bounds = this.boundsInfo.getBounds(),\r
+ w = bounds.w * mult,\r
+ h = bounds.h * mult,\r
+ radInfo = this.styleInfos.borderRadiusInfo,\r
+ floor = Math.floor, ceil = Math.ceil,\r
+ shrinkT = shrink ? shrink.t * mult : 0,\r
+ shrinkR = shrink ? shrink.r * mult : 0,\r
+ shrinkB = shrink ? shrink.b * mult : 0,\r
+ shrinkL = shrink ? shrink.l * mult : 0,\r
+ tlX, tlY, trX, trY, brX, brY, blX, blY;\r
+\r
+ if( radii || radInfo.isActive() ) {\r
+ r = this.getRadiiPixels( radii || radInfo.getProps() );\r
+\r
+ tlX = r.x['tl'] * mult;\r
+ tlY = r.y['tl'] * mult;\r
+ trX = r.x['tr'] * mult;\r
+ trY = r.y['tr'] * mult;\r
+ brX = r.x['br'] * mult;\r
+ brY = r.y['br'] * mult;\r
+ blX = r.x['bl'] * mult;\r
+ blY = r.y['bl'] * mult;\r
+\r
+ str = 'm' + floor( shrinkL ) + ',' + floor( tlY ) +\r
+ 'qy' + floor( tlX ) + ',' + floor( shrinkT ) +\r
+ 'l' + ceil( w - trX ) + ',' + floor( shrinkT ) +\r
+ 'qx' + ceil( w - shrinkR ) + ',' + floor( trY ) +\r
+ 'l' + ceil( w - shrinkR ) + ',' + ceil( h - brY ) +\r
+ 'qy' + ceil( w - brX ) + ',' + ceil( h - shrinkB ) +\r
+ 'l' + floor( blX ) + ',' + ceil( h - shrinkB ) +\r
+ 'qx' + floor( shrinkL ) + ',' + ceil( h - blY ) + ' x e';\r
+ } else {\r
+ // simplified path for non-rounded box\r
+ str = 'm' + floor( shrinkL ) + ',' + floor( shrinkT ) +\r
+ 'l' + ceil( w - shrinkR ) + ',' + floor( shrinkT ) +\r
+ 'l' + ceil( w - shrinkR ) + ',' + ceil( h - shrinkB ) +\r
+ 'l' + floor( shrinkL ) + ',' + ceil( h - shrinkB ) +\r
+ 'xe';\r
+ }\r
+ return str;\r
+ },\r
+\r
+\r
+ /**\r
+ * Get the container element for the shapes, creating it if necessary.\r
+ */\r
+ getBox: function() {\r
+ var box = this.parent.getLayer( this.boxZIndex ), s;\r
+\r
+ if( !box ) {\r
+ box = doc.createElement( this.boxName );\r
+ s = box.style;\r
+ s.position = 'absolute';\r
+ s.top = s.left = 0;\r
+ this.parent.addLayer( this.boxZIndex, box );\r
+ }\r
+\r
+ return box;\r
+ },\r
+\r
+\r
+ /**\r
+ * Hide the actual border of the element. In IE7 and up we can just set its color to transparent;\r
+ * however IE6 does not support transparent borders so we have to get tricky with it. Also, some elements\r
+ * like form buttons require removing the border width altogether, so for those we increase the padding\r
+ * by the border size.\r
+ */\r
+ hideBorder: function() {\r
+ var el = this.targetElement,\r
+ cs = el.currentStyle,\r
+ rs = el.runtimeStyle,\r
+ tag = el.tagName,\r
+ isIE6 = PIE.ieVersion === 6,\r
+ sides, side, i;\r
+\r
+ if( ( isIE6 && ( tag in PIE.childlessElements || tag === 'FIELDSET' ) ) ||\r
+ tag === 'BUTTON' || ( tag === 'INPUT' && el.type in PIE.inputButtonTypes ) ) {\r
+ rs.borderWidth = '';\r
+ sides = this.styleInfos.borderInfo.sides;\r
+ for( i = sides.length; i--; ) {\r
+ side = sides[ i ];\r
+ rs[ 'padding' + side ] = '';\r
+ rs[ 'padding' + side ] = ( PIE.getLength( cs[ 'padding' + side ] ) ).pixels( el ) +\r
+ ( PIE.getLength( cs[ 'border' + side + 'Width' ] ) ).pixels( el ) +\r
+ ( PIE.ieVersion !== 8 && i % 2 ? 1 : 0 ); //needs an extra horizontal pixel to counteract the extra "inner border" going away\r
+ }\r
+ rs.borderWidth = 0;\r
+ }\r
+ else if( isIE6 ) {\r
+ // Wrap all the element's children in a custom element, set the element to visiblity:hidden,\r
+ // and set the wrapper element to visiblity:visible. This hides the outer element's decorations\r
+ // (background and border) but displays all the contents.\r
+ // TODO find a better way to do this that doesn't mess up the DOM parent-child relationship,\r
+ // as this can interfere with other author scripts which add/modify/delete children. Also, this\r
+ // won't work for elements which cannot take children, e.g. input/button/textarea/img/etc. Look into\r
+ // using a compositor filter or some other filter which masks the border.\r
+ if( el.childNodes.length !== 1 || el.firstChild.tagName !== 'ie6-mask' ) {\r
+ var cont = doc.createElement( 'ie6-mask' ),\r
+ s = cont.style, child;\r
+ s.visibility = 'visible';\r
+ s.zoom = 1;\r
+ while( child = el.firstChild ) {\r
+ cont.appendChild( child );\r
+ }\r
+ el.appendChild( cont );\r
+ rs.visibility = 'hidden';\r
+ }\r
+ }\r
+ else {\r
+ rs.borderColor = 'transparent';\r
+ }\r
+ },\r
+\r
+ unhideBorder: function() {\r
+ \r
+ },\r
+\r
+\r
+ /**\r
+ * Destroy the rendered objects. This is a base implementation which handles common renderer\r
+ * structures, but individual renderers may override as necessary.\r
+ */\r
+ destroy: function() {\r
+ this.parent.removeLayer( this.boxZIndex );\r
+ delete this._shapes;\r
+ delete this._layers;\r
+ }\r
+};\r
+/**\r
+ * Root renderer; creates the outermost container element and handles keeping it aligned\r
+ * with the target element's size and position.\r
+ * @param {Element} el The target element\r
+ * @param {Object} styleInfos The StyleInfo objects\r
+ */\r
+PIE.RootRenderer = PIE.RendererBase.newRenderer( {\r
+\r
+ isActive: function() {\r
+ var children = this.childRenderers;\r
+ for( var i in children ) {\r
+ if( children.hasOwnProperty( i ) && children[ i ].isActive() ) {\r
+ return true;\r
+ }\r
+ }\r
+ return false;\r
+ },\r
+\r
+ needsUpdate: function() {\r
+ return this.styleInfos.visibilityInfo.changed();\r
+ },\r
+\r
+ updatePos: function() {\r
+ if( this.isActive() ) {\r
+ var el = this.getPositioningElement(),\r
+ par = el,\r
+ docEl,\r
+ parRect,\r
+ tgtCS = el.currentStyle,\r
+ tgtPos = tgtCS.position,\r
+ boxPos,\r
+ s = this.getBox().style, cs,\r
+ x = 0, y = 0,\r
+ elBounds = this.boundsInfo.getBounds(),\r
+ logicalZoomRatio = elBounds.logicalZoomRatio;\r
+\r
+ if( tgtPos === 'fixed' && PIE.ieVersion > 6 ) {\r
+ x = elBounds.x * logicalZoomRatio;\r
+ y = elBounds.y * logicalZoomRatio;\r
+ boxPos = tgtPos;\r
+ } else {\r
+ // Get the element's offsets from its nearest positioned ancestor. Uses\r
+ // getBoundingClientRect for accuracy and speed.\r
+ do {\r
+ par = par.offsetParent;\r
+ } while( par && ( par.currentStyle.position === 'static' ) );\r
+ if( par ) {\r
+ parRect = par.getBoundingClientRect();\r
+ cs = par.currentStyle;\r
+ x = ( elBounds.x - parRect.left ) * logicalZoomRatio - ( parseFloat(cs.borderLeftWidth) || 0 );\r
+ y = ( elBounds.y - parRect.top ) * logicalZoomRatio - ( parseFloat(cs.borderTopWidth) || 0 );\r
+ } else {\r
+ docEl = doc.documentElement;\r
+ x = ( elBounds.x + docEl.scrollLeft - docEl.clientLeft ) * logicalZoomRatio;\r
+ y = ( elBounds.y + docEl.scrollTop - docEl.clientTop ) * logicalZoomRatio;\r
+ }\r
+ boxPos = 'absolute';\r
+ }\r
+\r
+ s.position = boxPos;\r
+ s.left = x;\r
+ s.top = y;\r
+ s.zIndex = tgtPos === 'static' ? -1 : tgtCS.zIndex;\r
+ this.isPositioned = true;\r
+ }\r
+ },\r
+\r
+ updateSize: PIE.emptyFn,\r
+\r
+ updateVisibility: function() {\r
+ var vis = this.styleInfos.visibilityInfo.getProps();\r
+ this.getBox().style.display = ( vis.visible && vis.displayed ) ? '' : 'none';\r
+ },\r
+\r
+ updateProps: function() {\r
+ if( this.isActive() ) {\r
+ this.updateVisibility();\r
+ } else {\r
+ this.destroy();\r
+ }\r
+ },\r
+\r
+ getPositioningElement: function() {\r
+ var el = this.targetElement;\r
+ return el.tagName in PIE.tableCellTags ? el.offsetParent : el;\r
+ },\r
+\r
+ getBox: function() {\r
+ var box = this._box, el;\r
+ if( !box ) {\r
+ el = this.getPositioningElement();\r
+ box = this._box = doc.createElement( 'css3-container' );\r
+ box.style['direction'] = 'ltr'; //fix positioning bug in rtl environments\r
+\r
+ this.updateVisibility();\r
+\r
+ el.parentNode.insertBefore( box, el );\r
+ }\r
+ return box;\r
+ },\r
+\r
+ finishUpdate: PIE.emptyFn,\r
+\r
+ destroy: function() {\r
+ var box = this._box, par;\r
+ if( box && ( par = box.parentNode ) ) {\r
+ par.removeChild( box );\r
+ }\r
+ delete this._box;\r
+ delete this._layers;\r
+ }\r
+\r
+} );\r
+/**\r
+ * Renderer for element backgrounds.\r
+ * @constructor\r
+ * @param {Element} el The target element\r
+ * @param {Object} styleInfos The StyleInfo objects\r
+ * @param {PIE.RootRenderer} parent\r
+ */\r
+PIE.BackgroundRenderer = PIE.RendererBase.newRenderer( {\r
+\r
+ boxZIndex: 2,\r
+ boxName: 'background',\r
+\r
+ needsUpdate: function() {\r
+ var si = this.styleInfos;\r
+ return si.backgroundInfo.changed() || si.borderRadiusInfo.changed();\r
+ },\r
+\r
+ isActive: function() {\r
+ var si = this.styleInfos;\r
+ return si.borderImageInfo.isActive() ||\r
+ si.borderRadiusInfo.isActive() ||\r
+ si.backgroundInfo.isActive() ||\r
+ ( si.boxShadowInfo.isActive() && si.boxShadowInfo.getProps().inset );\r
+ },\r
+\r
+ /**\r
+ * Draw the shapes\r
+ */\r
+ draw: function() {\r
+ var bounds = this.boundsInfo.getBounds();\r
+ if( bounds.w && bounds.h ) {\r
+ this.drawBgColor();\r
+ this.drawBgImages();\r
+ }\r
+ },\r
+\r
+ /**\r
+ * Draw the background color shape\r
+ */\r
+ drawBgColor: function() {\r
+ var props = this.styleInfos.backgroundInfo.getProps(),\r
+ bounds = this.boundsInfo.getBounds(),\r
+ el = this.targetElement,\r
+ color = props && props.color,\r
+ shape, w, h, s, alpha;\r
+\r
+ if( color && color.alpha() > 0 ) {\r
+ this.hideBackground();\r
+\r
+ shape = this.getShape( 'bgColor', 'fill', this.getBox(), 1 );\r
+ w = bounds.w;\r
+ h = bounds.h;\r
+ shape.stroked = false;\r
+ shape.coordsize = w * 2 + ',' + h * 2;\r
+ shape.coordorigin = '1,1';\r
+ shape.path = this.getBoxPath( null, 2 );\r
+ s = shape.style;\r
+ s.width = w;\r
+ s.height = h;\r
+ shape.fill.color = color.colorValue( el );\r
+\r
+ alpha = color.alpha();\r
+ if( alpha < 1 ) {\r
+ shape.fill.opacity = alpha;\r
+ }\r
+ } else {\r
+ this.deleteShape( 'bgColor' );\r
+ }\r
+ },\r
+\r
+ /**\r
+ * Draw all the background image layers\r
+ */\r
+ drawBgImages: function() {\r
+ var props = this.styleInfos.backgroundInfo.getProps(),\r
+ bounds = this.boundsInfo.getBounds(),\r
+ images = props && props.bgImages,\r
+ img, shape, w, h, s, i;\r
+\r
+ if( images ) {\r
+ this.hideBackground();\r
+\r
+ w = bounds.w;\r
+ h = bounds.h;\r
+\r
+ i = images.length;\r
+ while( i-- ) {\r
+ img = images[i];\r
+ shape = this.getShape( 'bgImage' + i, 'fill', this.getBox(), 2 );\r
+\r
+ shape.stroked = false;\r
+ shape.fill.type = 'tile';\r
+ shape.fillcolor = 'none';\r
+ shape.coordsize = w * 2 + ',' + h * 2;\r
+ shape.coordorigin = '1,1';\r
+ shape.path = this.getBoxPath( 0, 2 );\r
+ s = shape.style;\r
+ s.width = w;\r
+ s.height = h;\r
+\r
+ if( img.imgType === 'linear-gradient' ) {\r
+ this.addLinearGradient( shape, img );\r
+ }\r
+ else {\r
+ shape.fill.src = img.imgUrl;\r
+ this.positionBgImage( shape, i );\r
+ }\r
+ }\r
+ }\r
+\r
+ // Delete any bgImage shapes previously created which weren't used above\r
+ i = images ? images.length : 0;\r
+ while( this.deleteShape( 'bgImage' + i++ ) ) {}\r
+ },\r
+\r
+\r
+ /**\r
+ * Set the position and clipping of the background image for a layer\r
+ * @param {Element} shape\r
+ * @param {number} index\r
+ */\r
+ positionBgImage: function( shape, index ) {\r
+ var me = this;\r
+ PIE.Util.withImageSize( shape.fill.src, function( size ) {\r
+ var el = me.targetElement,\r
+ bounds = me.boundsInfo.getBounds(),\r
+ elW = bounds.w,\r
+ elH = bounds.h;\r
+\r
+ // It's possible that the element dimensions are zero now but weren't when the original\r
+ // update executed, make sure that's not the case to avoid divide-by-zero error\r
+ if( elW && elH ) {\r
+ var fill = shape.fill,\r
+ si = me.styleInfos,\r
+ border = si.borderInfo.getProps(),\r
+ bw = border && border.widths,\r
+ bwT = bw ? bw['t'].pixels( el ) : 0,\r
+ bwR = bw ? bw['r'].pixels( el ) : 0,\r
+ bwB = bw ? bw['b'].pixels( el ) : 0,\r
+ bwL = bw ? bw['l'].pixels( el ) : 0,\r
+ bg = si.backgroundInfo.getProps().bgImages[ index ],\r
+ bgPos = bg.bgPosition ? bg.bgPosition.coords( el, elW - size.w - bwL - bwR, elH - size.h - bwT - bwB ) : { x:0, y:0 },\r
+ repeat = bg.imgRepeat,\r
+ pxX, pxY,\r
+ clipT = 0, clipL = 0,\r
+ clipR = elW + 1, clipB = elH + 1, //make sure the default clip region is not inside the box (by a subpixel)\r
+ clipAdjust = PIE.ieVersion === 8 ? 0 : 1; //prior to IE8 requires 1 extra pixel in the image clip region\r
+\r
+ // Positioning - find the pixel offset from the top/left and convert to a ratio\r
+ // The position is shifted by half a pixel, to adjust for the half-pixel coordorigin shift which is\r
+ // needed to fix antialiasing but makes the bg image fuzzy.\r
+ pxX = Math.round( bgPos.x ) + bwL + 0.5;\r
+ pxY = Math.round( bgPos.y ) + bwT + 0.5;\r
+ fill.position = ( pxX / elW ) + ',' + ( pxY / elH );\r
+\r
+ // Set the size of the image. We have to actually set it to px values otherwise it will not honor\r
+ // the user's browser zoom level and always display at its natural screen size.\r
+ fill['size']['x'] = 1; //Can be any value, just has to be set to "prime" it so the next line works. Weird!\r
+ fill['size'] = size.w + 'px,' + size.h + 'px';\r
+\r
+ // Repeating - clip the image shape\r
+ if( repeat && repeat !== 'repeat' ) {\r
+ if( repeat === 'repeat-x' || repeat === 'no-repeat' ) {\r
+ clipT = pxY + 1;\r
+ clipB = pxY + size.h + clipAdjust;\r
+ }\r
+ if( repeat === 'repeat-y' || repeat === 'no-repeat' ) {\r
+ clipL = pxX + 1;\r
+ clipR = pxX + size.w + clipAdjust;\r
+ }\r
+ shape.style.clip = 'rect(' + clipT + 'px,' + clipR + 'px,' + clipB + 'px,' + clipL + 'px)';\r
+ }\r
+ }\r
+ } );\r
+ },\r
+\r
+\r
+ /**\r
+ * Draw the linear gradient for a gradient layer\r
+ * @param {Element} shape\r
+ * @param {Object} info The object holding the information about the gradient\r
+ */\r
+ addLinearGradient: function( shape, info ) {\r
+ var el = this.targetElement,\r
+ bounds = this.boundsInfo.getBounds(),\r
+ w = bounds.w,\r
+ h = bounds.h,\r
+ fill = shape.fill,\r
+ stops = info.stops,\r
+ stopCount = stops.length,\r
+ PI = Math.PI,\r
+ GradientUtil = PIE.GradientUtil,\r
+ perpendicularIntersect = GradientUtil.perpendicularIntersect,\r
+ distance = GradientUtil.distance,\r
+ metrics = GradientUtil.getGradientMetrics( el, w, h, info ),\r
+ angle = metrics.angle,\r
+ startX = metrics.startX,\r
+ startY = metrics.startY,\r
+ startCornerX = metrics.startCornerX,\r
+ startCornerY = metrics.startCornerY,\r
+ endCornerX = metrics.endCornerX,\r
+ endCornerY = metrics.endCornerY,\r
+ deltaX = metrics.deltaX,\r
+ deltaY = metrics.deltaY,\r
+ lineLength = metrics.lineLength,\r
+ vmlAngle, vmlGradientLength, vmlColors,\r
+ stopPx, vmlOffsetPct,\r
+ p, i, j, before, after;\r
+\r
+ // In VML land, the angle of the rendered gradient depends on the aspect ratio of the shape's\r
+ // bounding box; for example specifying a 45 deg angle actually results in a gradient\r
+ // drawn diagonally from one corner to its opposite corner, which will only appear to the\r
+ // viewer as 45 degrees if the shape is equilateral. We adjust for this by taking the x/y deltas\r
+ // between the start and end points, multiply one of them by the shape's aspect ratio,\r
+ // and get their arctangent, resulting in an appropriate VML angle. If the angle is perfectly\r
+ // horizontal or vertical then we don't need to do this conversion.\r
+ vmlAngle = ( angle % 90 ) ? Math.atan2( deltaX * w / h, deltaY ) / PI * 180 : ( angle + 90 );\r
+\r
+ // VML angles are 180 degrees offset from CSS angles\r
+ vmlAngle += 180;\r
+ vmlAngle = vmlAngle % 360;\r
+\r
+ // Add all the stops to the VML 'colors' list, including the first and last stops.\r
+ // For each, we find its pixel offset along the gradient-line; if the offset of a stop is less\r
+ // than that of its predecessor we increase it to be equal. We then map that pixel offset to a\r
+ // percentage along the VML gradient-line, which runs from shape corner to corner.\r
+ p = perpendicularIntersect( startCornerX, startCornerY, angle, endCornerX, endCornerY );\r
+ vmlGradientLength = distance( startCornerX, startCornerY, p[0], p[1] );\r
+ vmlColors = [];\r
+ p = perpendicularIntersect( startX, startY, angle, startCornerX, startCornerY );\r
+ vmlOffsetPct = distance( startX, startY, p[0], p[1] ) / vmlGradientLength * 100;\r
+\r
+ // Find the pixel offsets along the CSS3 gradient-line for each stop.\r
+ stopPx = [];\r
+ for( i = 0; i < stopCount; i++ ) {\r
+ stopPx.push( stops[i].offset ? stops[i].offset.pixels( el, lineLength ) :\r
+ i === 0 ? 0 : i === stopCount - 1 ? lineLength : null );\r
+ }\r
+ // Fill in gaps with evenly-spaced offsets\r
+ for( i = 1; i < stopCount; i++ ) {\r
+ if( stopPx[ i ] === null ) {\r
+ before = stopPx[ i - 1 ];\r
+ j = i;\r
+ do {\r
+ after = stopPx[ ++j ];\r
+ } while( after === null );\r
+ stopPx[ i ] = before + ( after - before ) / ( j - i + 1 );\r
+ }\r
+ // Make sure each stop's offset is no less than the one before it\r
+ stopPx[ i ] = Math.max( stopPx[ i ], stopPx[ i - 1 ] );\r
+ }\r
+\r
+ // Convert to percentage along the VML gradient line and add to the VML 'colors' value\r
+ for( i = 0; i < stopCount; i++ ) {\r
+ vmlColors.push(\r
+ ( vmlOffsetPct + ( stopPx[ i ] / vmlGradientLength * 100 ) ) + '% ' + stops[i].color.colorValue( el )\r
+ );\r
+ }\r
+\r
+ // Now, finally, we're ready to render the gradient fill. Set the start and end colors to\r
+ // the first and last stop colors; this just sets outer bounds for the gradient.\r
+ fill['angle'] = vmlAngle;\r
+ fill['type'] = 'gradient';\r
+ fill['method'] = 'sigma';\r
+ fill['color'] = stops[0].color.colorValue( el );\r
+ fill['color2'] = stops[stopCount - 1].color.colorValue( el );\r
+ if( fill['colors'] ) { //sometimes the colors object isn't initialized so we have to assign it directly (?)\r
+ fill['colors'].value = vmlColors.join( ',' );\r
+ } else {\r
+ fill['colors'] = vmlColors.join( ',' );\r
+ }\r
+ },\r
+\r
+\r
+ /**\r
+ * Hide the actual background image and color of the element.\r
+ */\r
+ hideBackground: function() {\r
+ var rs = this.targetElement.runtimeStyle;\r
+ rs.backgroundImage = 'url(about:blank)'; //ensures the background area reacts to mouse events\r
+ rs.backgroundColor = 'transparent';\r
+ },\r
+\r
+ destroy: function() {\r
+ PIE.RendererBase.destroy.call( this );\r
+ var rs = this.targetElement.runtimeStyle;\r
+ rs.backgroundImage = rs.backgroundColor = '';\r
+ }\r
+\r
+} );\r
+/**\r
+ * Renderer for element borders.\r
+ * @constructor\r
+ * @param {Element} el The target element\r
+ * @param {Object} styleInfos The StyleInfo objects\r
+ * @param {PIE.RootRenderer} parent\r
+ */\r
+PIE.BorderRenderer = PIE.RendererBase.newRenderer( {\r
+\r
+ boxZIndex: 4,\r
+ boxName: 'border',\r
+\r
+ needsUpdate: function() {\r
+ var si = this.styleInfos;\r
+ return si.borderInfo.changed() || si.borderRadiusInfo.changed();\r
+ },\r
+\r
+ isActive: function() {\r
+ var si = this.styleInfos;\r
+ return si.borderRadiusInfo.isActive() &&\r
+ !si.borderImageInfo.isActive() &&\r
+ si.borderInfo.isActive(); //check BorderStyleInfo last because it's the most expensive\r
+ },\r
+\r
+ /**\r
+ * Draw the border shape(s)\r
+ */\r
+ draw: function() {\r
+ var el = this.targetElement,\r
+ props = this.styleInfos.borderInfo.getProps(),\r
+ bounds = this.boundsInfo.getBounds(),\r
+ w = bounds.w,\r
+ h = bounds.h,\r
+ shape, stroke, s,\r
+ segments, seg, i, len;\r
+\r
+ if( props ) {\r
+ this.hideBorder();\r
+\r
+ segments = this.getBorderSegments( 2 );\r
+ for( i = 0, len = segments.length; i < len; i++) {\r
+ seg = segments[i];\r
+ shape = this.getShape( 'borderPiece' + i, seg.stroke ? 'stroke' : 'fill', this.getBox() );\r
+ shape.coordsize = w * 2 + ',' + h * 2;\r
+ shape.coordorigin = '1,1';\r
+ shape.path = seg.path;\r
+ s = shape.style;\r
+ s.width = w;\r
+ s.height = h;\r
+\r
+ shape.filled = !!seg.fill;\r
+ shape.stroked = !!seg.stroke;\r
+ if( seg.stroke ) {\r
+ stroke = shape.stroke;\r
+ stroke['weight'] = seg.weight + 'px';\r
+ stroke.color = seg.color.colorValue( el );\r
+ stroke['dashstyle'] = seg.stroke === 'dashed' ? '2 2' : seg.stroke === 'dotted' ? '1 1' : 'solid';\r
+ stroke['linestyle'] = seg.stroke === 'double' && seg.weight > 2 ? 'ThinThin' : 'Single';\r
+ } else {\r
+ shape.fill.color = seg.fill.colorValue( el );\r
+ }\r
+ }\r
+\r
+ // remove any previously-created border shapes which didn't get used above\r
+ while( this.deleteShape( 'borderPiece' + i++ ) ) {}\r
+ }\r
+ },\r
+\r
+\r
+ /**\r
+ * Get the VML path definitions for the border segment(s).\r
+ * @param {number=} mult If specified, all coordinates will be multiplied by this number\r
+ * @return {Array.<string>}\r
+ */\r
+ getBorderSegments: function( mult ) {\r
+ var el = this.targetElement,\r
+ bounds, elW, elH,\r
+ borderInfo = this.styleInfos.borderInfo,\r
+ segments = [],\r
+ floor, ceil, wT, wR, wB, wL,\r
+ round = Math.round,\r
+ borderProps, radiusInfo, radii, widths, styles, colors;\r
+\r
+ if( borderInfo.isActive() ) {\r
+ borderProps = borderInfo.getProps();\r
+\r
+ widths = borderProps.widths;\r
+ styles = borderProps.styles;\r
+ colors = borderProps.colors;\r
+\r
+ if( borderProps.widthsSame && borderProps.stylesSame && borderProps.colorsSame ) {\r
+ if( colors['t'].alpha() > 0 ) {\r
+ // shortcut for identical border on all sides - only need 1 stroked shape\r
+ wT = widths['t'].pixels( el ); //thickness\r
+ wR = wT / 2; //shrink\r
+ segments.push( {\r
+ path: this.getBoxPath( { t: wR, r: wR, b: wR, l: wR }, mult ),\r
+ stroke: styles['t'],\r
+ color: colors['t'],\r
+ weight: wT\r
+ } );\r
+ }\r
+ }\r
+ else {\r
+ mult = mult || 1;\r
+ bounds = this.boundsInfo.getBounds();\r
+ elW = bounds.w;\r
+ elH = bounds.h;\r
+\r
+ wT = round( widths['t'].pixels( el ) );\r
+ wR = round( widths['r'].pixels( el ) );\r
+ wB = round( widths['b'].pixels( el ) );\r
+ wL = round( widths['l'].pixels( el ) );\r
+ var pxWidths = {\r
+ 't': wT,\r
+ 'r': wR,\r
+ 'b': wB,\r
+ 'l': wL\r
+ };\r
+\r
+ radiusInfo = this.styleInfos.borderRadiusInfo;\r
+ if( radiusInfo.isActive() ) {\r
+ radii = this.getRadiiPixels( radiusInfo.getProps() );\r
+ }\r
+\r
+ floor = Math.floor;\r
+ ceil = Math.ceil;\r
+\r
+ function radius( xy, corner ) {\r
+ return radii ? radii[ xy ][ corner ] : 0;\r
+ }\r
+\r
+ function curve( corner, shrinkX, shrinkY, startAngle, ccw, doMove ) {\r
+ var rx = radius( 'x', corner),\r
+ ry = radius( 'y', corner),\r
+ deg = 65535,\r
+ isRight = corner.charAt( 1 ) === 'r',\r
+ isBottom = corner.charAt( 0 ) === 'b';\r
+ return ( rx > 0 && ry > 0 ) ?\r
+ ( doMove ? 'al' : 'ae' ) +\r
+ ( isRight ? ceil( elW - rx ) : floor( rx ) ) * mult + ',' + // center x\r
+ ( isBottom ? ceil( elH - ry ) : floor( ry ) ) * mult + ',' + // center y\r
+ ( floor( rx ) - shrinkX ) * mult + ',' + // width\r
+ ( floor( ry ) - shrinkY ) * mult + ',' + // height\r
+ ( startAngle * deg ) + ',' + // start angle\r
+ ( 45 * deg * ( ccw ? 1 : -1 ) // angle change\r
+ ) : (\r
+ ( doMove ? 'm' : 'l' ) +\r
+ ( isRight ? elW - shrinkX : shrinkX ) * mult + ',' +\r
+ ( isBottom ? elH - shrinkY : shrinkY ) * mult\r
+ );\r
+ }\r
+\r
+ function line( side, shrink, ccw, doMove ) {\r
+ var\r
+ start = (\r
+ side === 't' ?\r
+ floor( radius( 'x', 'tl') ) * mult + ',' + ceil( shrink ) * mult :\r
+ side === 'r' ?\r
+ ceil( elW - shrink ) * mult + ',' + floor( radius( 'y', 'tr') ) * mult :\r
+ side === 'b' ?\r
+ ceil( elW - radius( 'x', 'br') ) * mult + ',' + floor( elH - shrink ) * mult :\r
+ // side === 'l' ?\r
+ floor( shrink ) * mult + ',' + ceil( elH - radius( 'y', 'bl') ) * mult\r
+ ),\r
+ end = (\r
+ side === 't' ?\r
+ ceil( elW - radius( 'x', 'tr') ) * mult + ',' + ceil( shrink ) * mult :\r
+ side === 'r' ?\r
+ ceil( elW - shrink ) * mult + ',' + ceil( elH - radius( 'y', 'br') ) * mult :\r
+ side === 'b' ?\r
+ floor( radius( 'x', 'bl') ) * mult + ',' + floor( elH - shrink ) * mult :\r
+ // side === 'l' ?\r
+ floor( shrink ) * mult + ',' + floor( radius( 'y', 'tl') ) * mult\r
+ );\r
+ return ccw ? ( doMove ? 'm' + end : '' ) + 'l' + start :\r
+ ( doMove ? 'm' + start : '' ) + 'l' + end;\r
+ }\r
+\r
+\r
+ function addSide( side, sideBefore, sideAfter, cornerBefore, cornerAfter, baseAngle ) {\r
+ var vert = side === 'l' || side === 'r',\r
+ sideW = pxWidths[ side ],\r
+ beforeX, beforeY, afterX, afterY;\r
+\r
+ if( sideW > 0 && styles[ side ] !== 'none' && colors[ side ].alpha() > 0 ) {\r
+ beforeX = pxWidths[ vert ? side : sideBefore ];\r
+ beforeY = pxWidths[ vert ? sideBefore : side ];\r
+ afterX = pxWidths[ vert ? side : sideAfter ];\r
+ afterY = pxWidths[ vert ? sideAfter : side ];\r
+\r
+ if( styles[ side ] === 'dashed' || styles[ side ] === 'dotted' ) {\r
+ segments.push( {\r
+ path: curve( cornerBefore, beforeX, beforeY, baseAngle + 45, 0, 1 ) +\r
+ curve( cornerBefore, 0, 0, baseAngle, 1, 0 ),\r
+ fill: colors[ side ]\r
+ } );\r
+ segments.push( {\r
+ path: line( side, sideW / 2, 0, 1 ),\r
+ stroke: styles[ side ],\r
+ weight: sideW,\r
+ color: colors[ side ]\r
+ } );\r
+ segments.push( {\r
+ path: curve( cornerAfter, afterX, afterY, baseAngle, 0, 1 ) +\r
+ curve( cornerAfter, 0, 0, baseAngle - 45, 1, 0 ),\r
+ fill: colors[ side ]\r
+ } );\r
+ }\r
+ else {\r
+ segments.push( {\r
+ path: curve( cornerBefore, beforeX, beforeY, baseAngle + 45, 0, 1 ) +\r
+ line( side, sideW, 0, 0 ) +\r
+ curve( cornerAfter, afterX, afterY, baseAngle, 0, 0 ) +\r
+\r
+ ( styles[ side ] === 'double' && sideW > 2 ?\r
+ curve( cornerAfter, afterX - floor( afterX / 3 ), afterY - floor( afterY / 3 ), baseAngle - 45, 1, 0 ) +\r
+ line( side, ceil( sideW / 3 * 2 ), 1, 0 ) +\r
+ curve( cornerBefore, beforeX - floor( beforeX / 3 ), beforeY - floor( beforeY / 3 ), baseAngle, 1, 0 ) +\r
+ 'x ' +\r
+ curve( cornerBefore, floor( beforeX / 3 ), floor( beforeY / 3 ), baseAngle + 45, 0, 1 ) +\r
+ line( side, floor( sideW / 3 ), 1, 0 ) +\r
+ curve( cornerAfter, floor( afterX / 3 ), floor( afterY / 3 ), baseAngle, 0, 0 )\r
+ : '' ) +\r
+\r
+ curve( cornerAfter, 0, 0, baseAngle - 45, 1, 0 ) +\r
+ line( side, 0, 1, 0 ) +\r
+ curve( cornerBefore, 0, 0, baseAngle, 1, 0 ),\r
+ fill: colors[ side ]\r
+ } );\r
+ }\r
+ }\r
+ }\r
+\r
+ addSide( 't', 'l', 'r', 'tl', 'tr', 90 );\r
+ addSide( 'r', 't', 'b', 'tr', 'br', 0 );\r
+ addSide( 'b', 'r', 'l', 'br', 'bl', -90 );\r
+ addSide( 'l', 'b', 't', 'bl', 'tl', -180 );\r
+ }\r
+ }\r
+\r
+ return segments;\r
+ },\r
+\r
+ destroy: function() {\r
+ var me = this;\r
+ if (me.finalized || !me.styleInfos.borderImageInfo.isActive()) {\r
+ me.targetElement.runtimeStyle.borderColor = '';\r
+ }\r
+ PIE.RendererBase.destroy.call( me );\r
+ }\r
+\r
+\r
+} );\r
+/**\r
+ * Renderer for border-image\r
+ * @constructor\r
+ * @param {Element} el The target element\r
+ * @param {Object} styleInfos The StyleInfo objects\r
+ * @param {PIE.RootRenderer} parent\r
+ */\r
+PIE.BorderImageRenderer = PIE.RendererBase.newRenderer( {\r
+\r
+ boxZIndex: 5,\r
+ pieceNames: [ 't', 'tr', 'r', 'br', 'b', 'bl', 'l', 'tl', 'c' ],\r
+\r
+ needsUpdate: function() {\r
+ return this.styleInfos.borderImageInfo.changed();\r
+ },\r
+\r
+ isActive: function() {\r
+ return this.styleInfos.borderImageInfo.isActive();\r
+ },\r
+\r
+ draw: function() {\r
+ this.getBox(); //make sure pieces are created\r
+\r
+ var props = this.styleInfos.borderImageInfo.getProps(),\r
+ borderProps = this.styleInfos.borderInfo.getProps(),\r
+ bounds = this.boundsInfo.getBounds(),\r
+ el = this.targetElement,\r
+ pieces = this.pieces;\r
+\r
+ PIE.Util.withImageSize( props.src, function( imgSize ) {\r
+ var elW = bounds.w,\r
+ elH = bounds.h,\r
+ zero = PIE.getLength( '0' ),\r
+ widths = props.widths || ( borderProps ? borderProps.widths : { 't': zero, 'r': zero, 'b': zero, 'l': zero } ),\r
+ widthT = widths['t'].pixels( el ),\r
+ widthR = widths['r'].pixels( el ),\r
+ widthB = widths['b'].pixels( el ),\r
+ widthL = widths['l'].pixels( el ),\r
+ slices = props.slice,\r
+ sliceT = slices['t'].pixels( el ),\r
+ sliceR = slices['r'].pixels( el ),\r
+ sliceB = slices['b'].pixels( el ),\r
+ sliceL = slices['l'].pixels( el );\r
+\r
+ // Piece positions and sizes\r
+ function setSizeAndPos( piece, w, h, x, y ) {\r
+ var s = pieces[piece].style,\r
+ max = Math.max;\r
+ s.width = max(w, 0);\r
+ s.height = max(h, 0);\r
+ s.left = x;\r
+ s.top = y;\r
+ }\r
+ setSizeAndPos( 'tl', widthL, widthT, 0, 0 );\r
+ setSizeAndPos( 't', elW - widthL - widthR, widthT, widthL, 0 );\r
+ setSizeAndPos( 'tr', widthR, widthT, elW - widthR, 0 );\r
+ setSizeAndPos( 'r', widthR, elH - widthT - widthB, elW - widthR, widthT );\r
+ setSizeAndPos( 'br', widthR, widthB, elW - widthR, elH - widthB );\r
+ setSizeAndPos( 'b', elW - widthL - widthR, widthB, widthL, elH - widthB );\r
+ setSizeAndPos( 'bl', widthL, widthB, 0, elH - widthB );\r
+ setSizeAndPos( 'l', widthL, elH - widthT - widthB, 0, widthT );\r
+ setSizeAndPos( 'c', elW - widthL - widthR, elH - widthT - widthB, widthL, widthT );\r
+\r
+\r
+ // image croppings\r
+ function setCrops( sides, crop, val ) {\r
+ for( var i=0, len=sides.length; i < len; i++ ) {\r
+ pieces[ sides[i] ]['imagedata'][ crop ] = val;\r
+ }\r
+ }\r
+\r
+ // corners\r
+ setCrops( [ 'tl', 't', 'tr' ], 'cropBottom', ( imgSize.h - sliceT ) / imgSize.h );\r
+ setCrops( [ 'tl', 'l', 'bl' ], 'cropRight', ( imgSize.w - sliceL ) / imgSize.w );\r
+ setCrops( [ 'bl', 'b', 'br' ], 'cropTop', ( imgSize.h - sliceB ) / imgSize.h );\r
+ setCrops( [ 'tr', 'r', 'br' ], 'cropLeft', ( imgSize.w - sliceR ) / imgSize.w );\r
+\r
+ // edges and center\r
+ // TODO right now this treats everything like 'stretch', need to support other schemes\r
+ //if( props.repeat.v === 'stretch' ) {\r
+ setCrops( [ 'l', 'r', 'c' ], 'cropTop', sliceT / imgSize.h );\r
+ setCrops( [ 'l', 'r', 'c' ], 'cropBottom', sliceB / imgSize.h );\r
+ //}\r
+ //if( props.repeat.h === 'stretch' ) {\r
+ setCrops( [ 't', 'b', 'c' ], 'cropLeft', sliceL / imgSize.w );\r
+ setCrops( [ 't', 'b', 'c' ], 'cropRight', sliceR / imgSize.w );\r
+ //}\r
+\r
+ // center fill\r
+ pieces['c'].style.display = props.fill ? '' : 'none';\r
+ }, this );\r
+ },\r
+\r
+ getBox: function() {\r
+ var box = this.parent.getLayer( this.boxZIndex ),\r
+ s, piece, i,\r
+ pieceNames = this.pieceNames,\r
+ len = pieceNames.length;\r
+\r
+ if( !box ) {\r
+ box = doc.createElement( 'border-image' );\r
+ s = box.style;\r
+ s.position = 'absolute';\r
+\r
+ this.pieces = {};\r
+\r
+ for( i = 0; i < len; i++ ) {\r
+ piece = this.pieces[ pieceNames[i] ] = PIE.Util.createVmlElement( 'rect' );\r
+ piece.appendChild( PIE.Util.createVmlElement( 'imagedata' ) );\r
+ s = piece.style;\r
+ s['behavior'] = 'url(#default#VML)';\r
+ s.position = "absolute";\r
+ s.top = s.left = 0;\r
+ piece['imagedata'].src = this.styleInfos.borderImageInfo.getProps().src;\r
+ piece.stroked = false;\r
+ piece.filled = false;\r
+ box.appendChild( piece );\r
+ }\r
+\r
+ this.parent.addLayer( this.boxZIndex, box );\r
+ }\r
+\r
+ return box;\r
+ },\r
+\r
+ prepareUpdate: function() {\r
+ if (this.isActive()) {\r
+ var me = this,\r
+ el = me.targetElement,\r
+ rs = el.runtimeStyle,\r
+ widths = me.styleInfos.borderImageInfo.getProps().widths;\r
+\r
+ // Force border-style to solid so it doesn't collapse\r
+ rs.borderStyle = 'solid';\r
+\r
+ // If widths specified in border-image shorthand, override border-width\r
+ // NOTE px units needed here as this gets used by the IE9 renderer too\r
+ if ( widths ) {\r
+ rs.borderTopWidth = widths['t'].pixels( el ) + 'px';\r
+ rs.borderRightWidth = widths['r'].pixels( el ) + 'px';\r
+ rs.borderBottomWidth = widths['b'].pixels( el ) + 'px';\r
+ rs.borderLeftWidth = widths['l'].pixels( el ) + 'px';\r
+ }\r
+\r
+ // Make the border transparent\r
+ me.hideBorder();\r
+ }\r
+ },\r
+\r
+ destroy: function() {\r
+ var me = this,\r
+ rs = me.targetElement.runtimeStyle;\r
+ rs.borderStyle = '';\r
+ if (me.finalized || !me.styleInfos.borderInfo.isActive()) {\r
+ rs.borderColor = rs.borderWidth = '';\r
+ }\r
+ PIE.RendererBase.destroy.call( this );\r
+ }\r
+\r
+} );\r
+/**\r
+ * Renderer for outset box-shadows\r
+ * @constructor\r
+ * @param {Element} el The target element\r
+ * @param {Object} styleInfos The StyleInfo objects\r
+ * @param {PIE.RootRenderer} parent\r
+ */\r
+PIE.BoxShadowOutsetRenderer = PIE.RendererBase.newRenderer( {\r
+\r
+ boxZIndex: 1,\r
+ boxName: 'outset-box-shadow',\r
+\r
+ needsUpdate: function() {\r
+ var si = this.styleInfos;\r
+ return si.boxShadowInfo.changed() || si.borderRadiusInfo.changed();\r
+ },\r
+\r
+ isActive: function() {\r
+ var boxShadowInfo = this.styleInfos.boxShadowInfo;\r
+ return boxShadowInfo.isActive() && boxShadowInfo.getProps().outset[0];\r
+ },\r
+\r
+ draw: function() {\r
+ var me = this,\r
+ el = this.targetElement,\r
+ box = this.getBox(),\r
+ styleInfos = this.styleInfos,\r
+ shadowInfos = styleInfos.boxShadowInfo.getProps().outset,\r
+ radii = styleInfos.borderRadiusInfo.getProps(),\r
+ len = shadowInfos.length,\r
+ i = len, j,\r
+ bounds = this.boundsInfo.getBounds(),\r
+ w = bounds.w,\r
+ h = bounds.h,\r
+ clipAdjust = PIE.ieVersion === 8 ? 1 : 0, //workaround for IE8 bug where VML leaks out top/left of clip region by 1px\r
+ corners = [ 'tl', 'tr', 'br', 'bl' ], corner,\r
+ shadowInfo, shape, fill, ss, xOff, yOff, spread, blur, shrink, color, alpha, path,\r
+ totalW, totalH, focusX, focusY, isBottom, isRight;\r
+\r
+\r
+ function getShadowShape( index, corner, xOff, yOff, color, blur, path ) {\r
+ var shape = me.getShape( 'shadow' + index + corner, 'fill', box, len - index ),\r
+ fill = shape.fill;\r
+\r
+ // Position and size\r
+ shape['coordsize'] = w * 2 + ',' + h * 2;\r
+ shape['coordorigin'] = '1,1';\r
+\r
+ // Color and opacity\r
+ shape['stroked'] = false;\r
+ shape['filled'] = true;\r
+ fill.color = color.colorValue( el );\r
+ if( blur ) {\r
+ fill['type'] = 'gradienttitle'; //makes the VML gradient follow the shape's outline - hooray for undocumented features?!?!\r
+ fill['color2'] = fill.color;\r
+ fill['opacity'] = 0;\r
+ }\r
+\r
+ // Path\r
+ shape.path = path;\r
+\r
+ // This needs to go last for some reason, to prevent rendering at incorrect size\r
+ ss = shape.style;\r
+ ss.left = xOff;\r
+ ss.top = yOff;\r
+ ss.width = w;\r
+ ss.height = h;\r
+\r
+ return shape;\r
+ }\r
+\r
+\r
+ while( i-- ) {\r
+ shadowInfo = shadowInfos[ i ];\r
+ xOff = shadowInfo.xOffset.pixels( el );\r
+ yOff = shadowInfo.yOffset.pixels( el );\r
+ spread = shadowInfo.spread.pixels( el );\r
+ blur = shadowInfo.blur.pixels( el );\r
+ color = shadowInfo.color;\r
+ // Shape path\r
+ shrink = -spread - blur;\r
+ if( !radii && blur ) {\r
+ // If blurring, use a non-null border radius info object so that getBoxPath will\r
+ // round the corners of the expanded shadow shape rather than squaring them off.\r
+ radii = PIE.BorderRadiusStyleInfo.ALL_ZERO;\r
+ }\r
+ path = this.getBoxPath( { t: shrink, r: shrink, b: shrink, l: shrink }, 2, radii );\r
+\r
+ if( blur ) {\r
+ totalW = ( spread + blur ) * 2 + w;\r
+ totalH = ( spread + blur ) * 2 + h;\r
+ focusX = totalW ? blur * 2 / totalW : 0;\r
+ focusY = totalH ? blur * 2 / totalH : 0;\r
+ if( blur - spread > w / 2 || blur - spread > h / 2 ) {\r
+ // If the blur is larger than half the element's narrowest dimension, we cannot do\r
+ // this with a single shape gradient, because its focussize would have to be less than\r
+ // zero which results in ugly artifacts. Instead we create four shapes, each with its\r
+ // gradient focus past center, and then clip them so each only shows the quadrant\r
+ // opposite the focus.\r
+ for( j = 4; j--; ) {\r
+ corner = corners[j];\r
+ isBottom = corner.charAt( 0 ) === 'b';\r
+ isRight = corner.charAt( 1 ) === 'r';\r
+ shape = getShadowShape( i, corner, xOff, yOff, color, blur, path );\r
+ fill = shape.fill;\r
+ fill['focusposition'] = ( isRight ? 1 - focusX : focusX ) + ',' +\r
+ ( isBottom ? 1 - focusY : focusY );\r
+ fill['focussize'] = '0,0';\r
+\r
+ // Clip to show only the appropriate quadrant. Add 1px to the top/left clip values\r
+ // in IE8 to prevent a bug where IE8 displays one pixel outside the clip region.\r
+ shape.style.clip = 'rect(' + ( ( isBottom ? totalH / 2 : 0 ) + clipAdjust ) + 'px,' +\r
+ ( isRight ? totalW : totalW / 2 ) + 'px,' +\r
+ ( isBottom ? totalH : totalH / 2 ) + 'px,' +\r
+ ( ( isRight ? totalW / 2 : 0 ) + clipAdjust ) + 'px)';\r
+ }\r
+ } else {\r
+ // TODO delete old quadrant shapes if resizing expands past the barrier\r
+ shape = getShadowShape( i, '', xOff, yOff, color, blur, path );\r
+ fill = shape.fill;\r
+ fill['focusposition'] = focusX + ',' + focusY;\r
+ fill['focussize'] = ( 1 - focusX * 2 ) + ',' + ( 1 - focusY * 2 );\r
+ }\r
+ } else {\r
+ shape = getShadowShape( i, '', xOff, yOff, color, blur, path );\r
+ alpha = color.alpha();\r
+ if( alpha < 1 ) {\r
+ // shape.style.filter = 'alpha(opacity=' + ( alpha * 100 ) + ')';\r
+ // ss.filter = 'progid:DXImageTransform.Microsoft.BasicImage(opacity=' + ( alpha ) + ')';\r
+ shape.fill.opacity = alpha;\r
+ }\r
+ }\r
+ }\r
+ }\r
+\r
+} );\r
+/**\r
+ * Renderer for re-rendering img elements using VML. Kicks in if the img has\r
+ * a border-radius applied, or if the -pie-png-fix flag is set.\r
+ * @constructor\r
+ * @param {Element} el The target element\r
+ * @param {Object} styleInfos The StyleInfo objects\r
+ * @param {PIE.RootRenderer} parent\r
+ */\r
+PIE.ImgRenderer = PIE.RendererBase.newRenderer( {\r
+\r
+ boxZIndex: 6,\r
+ boxName: 'imgEl',\r
+\r
+ needsUpdate: function() {\r
+ var si = this.styleInfos;\r
+ return this.targetElement.src !== this._lastSrc || si.borderRadiusInfo.changed();\r
+ },\r
+\r
+ isActive: function() {\r
+ var si = this.styleInfos;\r
+ return si.borderRadiusInfo.isActive() || si.backgroundInfo.isPngFix();\r
+ },\r
+\r
+ draw: function() {\r
+ this._lastSrc = src;\r
+ this.hideActualImg();\r
+\r
+ var shape = this.getShape( 'img', 'fill', this.getBox() ),\r
+ fill = shape.fill,\r
+ bounds = this.boundsInfo.getBounds(),\r
+ w = bounds.w,\r
+ h = bounds.h,\r
+ borderProps = this.styleInfos.borderInfo.getProps(),\r
+ borderWidths = borderProps && borderProps.widths,\r
+ el = this.targetElement,\r
+ src = el.src,\r
+ round = Math.round,\r
+ cs = el.currentStyle,\r
+ getLength = PIE.getLength,\r
+ s, zero;\r
+\r
+ // In IE6, the BorderRenderer will have hidden the border by moving the border-width to\r
+ // the padding; therefore we want to pretend the borders have no width so they aren't doubled\r
+ // when adding in the current padding value below.\r
+ if( !borderWidths || PIE.ieVersion < 7 ) {\r
+ zero = PIE.getLength( '0' );\r
+ borderWidths = { 't': zero, 'r': zero, 'b': zero, 'l': zero };\r
+ }\r
+\r
+ shape.stroked = false;\r
+ fill.type = 'frame';\r
+ fill.src = src;\r
+ fill.position = (w ? 0.5 / w : 0) + ',' + (h ? 0.5 / h : 0);\r
+ shape.coordsize = w * 2 + ',' + h * 2;\r
+ shape.coordorigin = '1,1';\r
+ shape.path = this.getBoxPath( {\r
+ t: round( borderWidths['t'].pixels( el ) + getLength( cs.paddingTop ).pixels( el ) ),\r
+ r: round( borderWidths['r'].pixels( el ) + getLength( cs.paddingRight ).pixels( el ) ),\r
+ b: round( borderWidths['b'].pixels( el ) + getLength( cs.paddingBottom ).pixels( el ) ),\r
+ l: round( borderWidths['l'].pixels( el ) + getLength( cs.paddingLeft ).pixels( el ) )\r
+ }, 2 );\r
+ s = shape.style;\r
+ s.width = w;\r
+ s.height = h;\r
+ },\r
+\r
+ hideActualImg: function() {\r
+ this.targetElement.runtimeStyle.filter = 'alpha(opacity=0)';\r
+ },\r
+\r
+ destroy: function() {\r
+ PIE.RendererBase.destroy.call( this );\r
+ this.targetElement.runtimeStyle.filter = '';\r
+ }\r
+\r
+} );\r
+/**\r
+ * Root renderer for IE9; manages the rendering layers in the element's background\r
+ * @param {Element} el The target element\r
+ * @param {Object} styleInfos The StyleInfo objects\r
+ */\r
+PIE.IE9RootRenderer = PIE.RendererBase.newRenderer( {\r
+\r
+ updatePos: PIE.emptyFn,\r
+ updateSize: PIE.emptyFn,\r
+ updateVisibility: PIE.emptyFn,\r
+ updateProps: PIE.emptyFn,\r
+\r
+ outerCommasRE: /^,+|,+$/g,\r
+ innerCommasRE: /,+/g,\r
+\r
+ setBackgroundLayer: function(zIndex, bg) {\r
+ var me = this,\r
+ bgLayers = me._bgLayers || ( me._bgLayers = [] ),\r
+ undef;\r
+ bgLayers[zIndex] = bg || undef;\r
+ },\r
+\r
+ finishUpdate: function() {\r
+ var me = this,\r
+ bgLayers = me._bgLayers,\r
+ bg;\r
+ if( bgLayers && ( bg = bgLayers.join( ',' ).replace( me.outerCommasRE, '' ).replace( me.innerCommasRE, ',' ) ) !== me._lastBg ) {\r
+ me._lastBg = me.targetElement.runtimeStyle.background = bg;\r
+ }\r
+ },\r
+\r
+ destroy: function() {\r
+ this.targetElement.runtimeStyle.background = '';\r
+ delete this._bgLayers;\r
+ }\r
+\r
+} );\r
+/**\r
+ * Renderer for element backgrounds, specific for IE9. Only handles translating CSS3 gradients\r
+ * to an equivalent SVG data URI.\r
+ * @constructor\r
+ * @param {Element} el The target element\r
+ * @param {Object} styleInfos The StyleInfo objects\r
+ */\r
+PIE.IE9BackgroundRenderer = PIE.RendererBase.newRenderer( {\r
+\r
+ bgLayerZIndex: 1,\r
+\r
+ needsUpdate: function() {\r
+ var si = this.styleInfos;\r
+ return si.backgroundInfo.changed();\r
+ },\r
+\r
+ isActive: function() {\r
+ var si = this.styleInfos;\r
+ return si.backgroundInfo.isActive() || si.borderImageInfo.isActive();\r
+ },\r
+\r
+ draw: function() {\r
+ var me = this,\r
+ props = me.styleInfos.backgroundInfo.getProps(),\r
+ bg, images, i = 0, img, bgAreaSize, bgSize;\r
+\r
+ if ( props ) {\r
+ bg = [];\r
+\r
+ images = props.bgImages;\r
+ if ( images ) {\r
+ while( img = images[ i++ ] ) {\r
+ if (img.imgType === 'linear-gradient' ) {\r
+ bgAreaSize = me.getBgAreaSize( img.bgOrigin );\r
+ bgSize = ( img.bgSize || PIE.BgSize.DEFAULT ).pixels(\r
+ me.targetElement, bgAreaSize.w, bgAreaSize.h, bgAreaSize.w, bgAreaSize.h\r
+ ),\r
+ bg.push(\r
+ 'url(data:image/svg+xml,' + escape( me.getGradientSvg( img, bgSize.w, bgSize.h ) ) + ') ' +\r
+ me.bgPositionToString( img.bgPosition ) + ' / ' + bgSize.w + 'px ' + bgSize.h + 'px ' +\r
+ ( img.bgAttachment || '' ) + ' ' + ( img.bgOrigin || '' ) + ' ' + ( img.bgClip || '' )\r
+ );\r
+ } else {\r
+ bg.push( img.origString );\r
+ }\r
+ }\r
+ }\r
+\r
+ if ( props.color ) {\r
+ bg.push( props.color.val );\r
+ }\r
+\r
+ me.parent.setBackgroundLayer(me.bgLayerZIndex, bg.join(','));\r
+ }\r
+ },\r
+\r
+ bgPositionToString: function( bgPosition ) {\r
+ return bgPosition ? bgPosition.tokens.map(function(token) {\r
+ return token.tokenValue;\r
+ }).join(' ') : '0 0';\r
+ },\r
+\r
+ getBgAreaSize: function( bgOrigin ) {\r
+ var me = this,\r
+ el = me.targetElement,\r
+ bounds = me.boundsInfo.getBounds(),\r
+ elW = bounds.w,\r
+ elH = bounds.h,\r
+ w = elW,\r
+ h = elH,\r
+ borders, getLength, cs;\r
+\r
+ if( bgOrigin !== 'border-box' ) {\r
+ borders = me.styleInfos.borderInfo.getProps();\r
+ if( borders && ( borders = borders.widths ) ) {\r
+ w -= borders[ 'l' ].pixels( el ) + borders[ 'l' ].pixels( el );\r
+ h -= borders[ 't' ].pixels( el ) + borders[ 'b' ].pixels( el );\r
+ }\r
+ }\r
+\r
+ if ( bgOrigin === 'content-box' ) {\r
+ getLength = PIE.getLength;\r
+ cs = el.currentStyle;\r
+ w -= getLength( cs.paddingLeft ).pixels( el ) + getLength( cs.paddingRight ).pixels( el );\r
+ h -= getLength( cs.paddingTop ).pixels( el ) + getLength( cs.paddingBottom ).pixels( el );\r
+ }\r
+\r
+ return { w: w, h: h };\r
+ },\r
+\r
+ getGradientSvg: function( info, bgWidth, bgHeight ) {\r
+ var el = this.targetElement,\r
+ stopsInfo = info.stops,\r
+ stopCount = stopsInfo.length,\r
+ metrics = PIE.GradientUtil.getGradientMetrics( el, bgWidth, bgHeight, info ),\r
+ startX = metrics.startX,\r
+ startY = metrics.startY,\r
+ endX = metrics.endX,\r
+ endY = metrics.endY,\r
+ lineLength = metrics.lineLength,\r
+ stopPx,\r
+ i, j, before, after,\r
+ svg;\r
+\r
+ // Find the pixel offsets along the CSS3 gradient-line for each stop.\r
+ stopPx = [];\r
+ for( i = 0; i < stopCount; i++ ) {\r
+ stopPx.push( stopsInfo[i].offset ? stopsInfo[i].offset.pixels( el, lineLength ) :\r
+ i === 0 ? 0 : i === stopCount - 1 ? lineLength : null );\r
+ }\r
+ // Fill in gaps with evenly-spaced offsets\r
+ for( i = 1; i < stopCount; i++ ) {\r
+ if( stopPx[ i ] === null ) {\r
+ before = stopPx[ i - 1 ];\r
+ j = i;\r
+ do {\r
+ after = stopPx[ ++j ];\r
+ } while( after === null );\r
+ stopPx[ i ] = before + ( after - before ) / ( j - i + 1 );\r
+ }\r
+ }\r
+\r
+ svg = [\r
+ '<svg width="' + bgWidth + '" height="' + bgHeight + '" xmlns="http://www.w3.org/2000/svg">' +\r
+ '<defs>' +\r
+ '<linearGradient id="g" gradientUnits="userSpaceOnUse"' +\r
+ ' x1="' + ( startX / bgWidth * 100 ) + '%" y1="' + ( startY / bgHeight * 100 ) + '%" x2="' + ( endX / bgWidth * 100 ) + '%" y2="' + ( endY / bgHeight * 100 ) + '%">'\r
+ ];\r
+\r
+ // Convert to percentage along the SVG gradient line and add to the stops list\r
+ for( i = 0; i < stopCount; i++ ) {\r
+ svg.push(\r
+ '<stop offset="' + ( stopPx[ i ] / lineLength ) +\r
+ '" stop-color="' + stopsInfo[i].color.colorValue( el ) +\r
+ '" stop-opacity="' + stopsInfo[i].color.alpha() + '"/>'\r
+ );\r
+ }\r
+\r
+ svg.push(\r
+ '</linearGradient>' +\r
+ '</defs>' +\r
+ '<rect width="100%" height="100%" fill="url(#g)"/>' +\r
+ '</svg>'\r
+ );\r
+\r
+ return svg.join( '' );\r
+ },\r
+\r
+ destroy: function() {\r
+ this.parent.setBackgroundLayer( this.bgLayerZIndex );\r
+ }\r
+\r
+} );\r
+/**\r
+ * Renderer for border-image\r
+ * @constructor\r
+ * @param {Element} el The target element\r
+ * @param {Object} styleInfos The StyleInfo objects\r
+ * @param {PIE.RootRenderer} parent\r
+ */\r
+PIE.IE9BorderImageRenderer = PIE.RendererBase.newRenderer( {\r
+\r
+ REPEAT: 'repeat',\r
+ STRETCH: 'stretch',\r
+ ROUND: 'round',\r
+\r
+ bgLayerZIndex: 0,\r
+\r
+ needsUpdate: function() {\r
+ return this.styleInfos.borderImageInfo.changed();\r
+ },\r
+\r
+ isActive: function() {\r
+ return this.styleInfos.borderImageInfo.isActive();\r
+ },\r
+\r
+ draw: function() {\r
+ var me = this,\r
+ props = me.styleInfos.borderImageInfo.getProps(),\r
+ borderProps = me.styleInfos.borderInfo.getProps(),\r
+ bounds = me.boundsInfo.getBounds(),\r
+ repeat = props.repeat,\r
+ repeatH = repeat.h,\r
+ repeatV = repeat.v,\r
+ el = me.targetElement,\r
+ isAsync = 0;\r
+\r
+ PIE.Util.withImageSize( props.src, function( imgSize ) {\r
+ var elW = bounds.w,\r
+ elH = bounds.h,\r
+ imgW = imgSize.w,\r
+ imgH = imgSize.h,\r
+\r
+ // The image cannot be referenced as a URL directly in the SVG because IE9 throws a strange\r
+ // security exception (perhaps due to cross-origin policy within data URIs?) Therefore we\r
+ // work around this by converting the image data into a data URI itself using a transient\r
+ // canvas. This unfortunately requires the border-image src to be within the same domain,\r
+ // which isn't a limitation in true border-image, so we need to try and find a better fix.\r
+ imgSrc = me.imageToDataURI( props.src, imgW, imgH ),\r
+\r
+ REPEAT = me.REPEAT,\r
+ STRETCH = me.STRETCH,\r
+ ROUND = me.ROUND,\r
+ ceil = Math.ceil,\r
+\r
+ zero = PIE.getLength( '0' ),\r
+ widths = props.widths || ( borderProps ? borderProps.widths : { 't': zero, 'r': zero, 'b': zero, 'l': zero } ),\r
+ widthT = widths['t'].pixels( el ),\r
+ widthR = widths['r'].pixels( el ),\r
+ widthB = widths['b'].pixels( el ),\r
+ widthL = widths['l'].pixels( el ),\r
+ slices = props.slice,\r
+ sliceT = slices['t'].pixels( el ),\r
+ sliceR = slices['r'].pixels( el ),\r
+ sliceB = slices['b'].pixels( el ),\r
+ sliceL = slices['l'].pixels( el ),\r
+ centerW = elW - widthL - widthR,\r
+ middleH = elH - widthT - widthB,\r
+ imgCenterW = imgW - sliceL - sliceR,\r
+ imgMiddleH = imgH - sliceT - sliceB,\r
+\r
+ // Determine the size of each tile - 'round' is handled below\r
+ tileSizeT = repeatH === STRETCH ? centerW : imgCenterW * widthT / sliceT,\r
+ tileSizeR = repeatV === STRETCH ? middleH : imgMiddleH * widthR / sliceR,\r
+ tileSizeB = repeatH === STRETCH ? centerW : imgCenterW * widthB / sliceB,\r
+ tileSizeL = repeatV === STRETCH ? middleH : imgMiddleH * widthL / sliceL,\r
+\r
+ svg,\r
+ patterns = [],\r
+ rects = [],\r
+ i = 0;\r
+\r
+ // For 'round', subtract from each tile's size enough so that they fill the space a whole number of times\r
+ if (repeatH === ROUND) {\r
+ tileSizeT -= (tileSizeT - (centerW % tileSizeT || tileSizeT)) / ceil(centerW / tileSizeT);\r
+ tileSizeB -= (tileSizeB - (centerW % tileSizeB || tileSizeB)) / ceil(centerW / tileSizeB);\r
+ }\r
+ if (repeatV === ROUND) {\r
+ tileSizeR -= (tileSizeR - (middleH % tileSizeR || tileSizeR)) / ceil(middleH / tileSizeR);\r
+ tileSizeL -= (tileSizeL - (middleH % tileSizeL || tileSizeL)) / ceil(middleH / tileSizeL);\r
+ }\r
+\r
+\r
+ // Build the SVG for the border-image rendering. Add each piece as a pattern, which is then stretched\r
+ // or repeated as the fill of a rect of appropriate size.\r
+ svg = [\r
+ '<svg width="' + elW + '" height="' + elH + '" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">'\r
+ ];\r
+\r
+ function addImage( x, y, w, h, cropX, cropY, cropW, cropH, tileW, tileH ) {\r
+ patterns.push(\r
+ '<pattern patternUnits="userSpaceOnUse" id="pattern' + i + '" ' +\r
+ 'x="' + (repeatH === REPEAT ? x + w / 2 - tileW / 2 : x) + '" ' +\r
+ 'y="' + (repeatV === REPEAT ? y + h / 2 - tileH / 2 : y) + '" ' +\r
+ 'width="' + tileW + '" height="' + tileH + '">' +\r
+ '<svg width="' + tileW + '" height="' + tileH + '" viewBox="' + cropX + ' ' + cropY + ' ' + cropW + ' ' + cropH + '" preserveAspectRatio="none">' +\r
+ '<image xlink:href="' + imgSrc + '" x="0" y="0" width="' + imgW + '" height="' + imgH + '" />' +\r
+ '</svg>' +\r
+ '</pattern>'\r
+ );\r
+ rects.push(\r
+ '<rect x="' + x + '" y="' + y + '" width="' + w + '" height="' + h + '" fill="url(#pattern' + i + ')" />'\r
+ );\r
+ i++;\r
+ }\r
+ addImage( 0, 0, widthL, widthT, 0, 0, sliceL, sliceT, widthL, widthT ); // top left\r
+ addImage( widthL, 0, centerW, widthT, sliceL, 0, imgCenterW, sliceT, tileSizeT, widthT ); // top center\r
+ addImage( elW - widthR, 0, widthR, widthT, imgW - sliceR, 0, sliceR, sliceT, widthR, widthT ); // top right\r
+ addImage( 0, widthT, widthL, middleH, 0, sliceT, sliceL, imgMiddleH, widthL, tileSizeL ); // middle left\r
+ if ( props.fill ) { // center fill\r
+ addImage( widthL, widthT, centerW, middleH, sliceL, sliceT, imgCenterW, imgMiddleH, \r
+ tileSizeT || tileSizeB || imgCenterW, tileSizeL || tileSizeR || imgMiddleH );\r
+ }\r
+ addImage( elW - widthR, widthT, widthR, middleH, imgW - sliceR, sliceT, sliceR, imgMiddleH, widthR, tileSizeR ); // middle right\r
+ addImage( 0, elH - widthB, widthL, widthB, 0, imgH - sliceB, sliceL, sliceB, widthL, widthB ); // bottom left\r
+ addImage( widthL, elH - widthB, centerW, widthB, sliceL, imgH - sliceB, imgCenterW, sliceB, tileSizeB, widthB ); // bottom center\r
+ addImage( elW - widthR, elH - widthB, widthR, widthB, imgW - sliceR, imgH - sliceB, sliceR, sliceB, widthR, widthB ); // bottom right\r
+\r
+ svg.push(\r
+ '<defs>' +\r
+ patterns.join('\n') +\r
+ '</defs>' +\r
+ rects.join('\n') +\r
+ '</svg>'\r
+ );\r
+\r
+ me.parent.setBackgroundLayer( me.bgLayerZIndex, 'url(data:image/svg+xml,' + escape( svg.join( '' ) ) + ') no-repeat border-box border-box' );\r
+\r
+ // If the border-image's src wasn't immediately available, the SVG for its background layer\r
+ // will have been created asynchronously after the main element's update has finished; we'll\r
+ // therefore need to force the root renderer to sync to the final background once finished.\r
+ if( isAsync ) {\r
+ me.parent.finishUpdate();\r
+ }\r
+ }, me );\r
+\r
+ isAsync = 1;\r
+ },\r
+\r
+ /**\r
+ * Convert a given image to a data URI\r
+ */\r
+ imageToDataURI: (function() {\r
+ var uris = {};\r
+ return function( src, width, height ) {\r
+ var uri = uris[ src ],\r
+ image, canvas;\r
+ if ( !uri ) {\r
+ image = new Image();\r
+ canvas = doc.createElement( 'canvas' );\r
+ image.src = src;\r
+ canvas.width = width;\r
+ canvas.height = height;\r
+ canvas.getContext( '2d' ).drawImage( image, 0, 0 );\r
+ uri = uris[ src ] = canvas.toDataURL();\r
+ }\r
+ return uri;\r
+ }\r
+ })(),\r
+\r
+ prepareUpdate: PIE.BorderImageRenderer.prototype.prepareUpdate,\r
+\r
+ destroy: function() {\r
+ var me = this,\r
+ rs = me.targetElement.runtimeStyle;\r
+ me.parent.setBackgroundLayer( me.bgLayerZIndex );\r
+ rs.borderColor = rs.borderStyle = rs.borderWidth = '';\r
+ }\r
+\r
+} );\r
+\r
+PIE.Element = (function() {\r
+\r
+ var wrappers = {},\r
+ lazyInitCssProp = PIE.CSS_PREFIX + 'lazy-init',\r
+ pollCssProp = PIE.CSS_PREFIX + 'poll',\r
+ trackActiveCssProp = PIE.CSS_PREFIX + 'track-active',\r
+ trackHoverCssProp = PIE.CSS_PREFIX + 'track-hover',\r
+ hoverClass = PIE.CLASS_PREFIX + 'hover',\r
+ activeClass = PIE.CLASS_PREFIX + 'active',\r
+ focusClass = PIE.CLASS_PREFIX + 'focus',\r
+ firstChildClass = PIE.CLASS_PREFIX + 'first-child',\r
+ ignorePropertyNames = { 'background':1, 'bgColor':1, 'display': 1 },\r
+ classNameRegExes = {},\r
+ dummyArray = [];\r
+\r
+\r
+ function addClass( el, className ) {\r
+ el.className += ' ' + className;\r
+ }\r
+\r
+ function removeClass( el, className ) {\r
+ var re = classNameRegExes[ className ] ||\r
+ ( classNameRegExes[ className ] = new RegExp( '\\b' + className + '\\b', 'g' ) );\r
+ el.className = el.className.replace( re, '' );\r
+ }\r
+\r
+ function delayAddClass( el, className /*, className2*/ ) {\r
+ var classes = dummyArray.slice.call( arguments, 1 ),\r
+ i = classes.length;\r
+ setTimeout( function() {\r
+ if( el ) {\r
+ while( i-- ) {\r
+ addClass( el, classes[ i ] );\r
+ }\r
+ }\r
+ }, 0 );\r
+ }\r
+\r
+ function delayRemoveClass( el, className /*, className2*/ ) {\r
+ var classes = dummyArray.slice.call( arguments, 1 ),\r
+ i = classes.length;\r
+ setTimeout( function() {\r
+ if( el ) {\r
+ while( i-- ) {\r
+ removeClass( el, classes[ i ] );\r
+ }\r
+ }\r
+ }, 0 );\r
+ }\r
+\r
+\r
+\r
+ function Element( el ) {\r
+ var renderers,\r
+ rootRenderer,\r
+ boundsInfo = new PIE.BoundsInfo( el ),\r
+ styleInfos,\r
+ styleInfosArr,\r
+ initializing,\r
+ initialized,\r
+ eventsAttached,\r
+ eventListeners = [],\r
+ delayed,\r
+ destroyed,\r
+ poll;\r
+\r
+ /**\r
+ * Initialize PIE for this element.\r
+ */\r
+ function init() {\r
+ if( !initialized ) {\r
+ var docEl,\r
+ bounds,\r
+ ieDocMode = PIE.ieDocMode,\r
+ cs = el.currentStyle,\r
+ lazy = cs.getAttribute( lazyInitCssProp ) === 'true',\r
+ trackActive = cs.getAttribute( trackActiveCssProp ) !== 'false',\r
+ trackHover = cs.getAttribute( trackHoverCssProp ) !== 'false',\r
+ childRenderers;\r
+\r
+ // Polling for size/position changes: default to on in IE8, off otherwise, overridable by -pie-poll\r
+ poll = cs.getAttribute( pollCssProp );\r
+ poll = ieDocMode > 7 ? poll !== 'false' : poll === 'true';\r
+\r
+ // Force layout so move/resize events will fire. Set this as soon as possible to avoid layout changes\r
+ // after load, but make sure it only gets called the first time through to avoid recursive calls to init().\r
+ if( !initializing ) {\r
+ initializing = 1;\r
+ el.runtimeStyle.zoom = 1;\r
+ initFirstChildPseudoClass();\r
+ }\r
+\r
+ boundsInfo.lock();\r
+\r
+ // If the -pie-lazy-init:true flag is set, check if the element is outside the viewport and if so, delay initialization\r
+ if( lazy && ( bounds = boundsInfo.getBounds() ) && ( docEl = doc.documentElement || doc.body ) &&\r
+ ( bounds.y > docEl.clientHeight || bounds.x > docEl.clientWidth || bounds.y + bounds.h < 0 || bounds.x + bounds.w < 0 ) ) {\r
+ if( !delayed ) {\r
+ delayed = 1;\r
+ PIE.OnScroll.observe( init );\r
+ }\r
+ } else {\r
+ initialized = 1;\r
+ delayed = initializing = 0;\r
+ PIE.OnScroll.unobserve( init );\r
+\r
+ // Create the style infos and renderers\r
+ if ( ieDocMode === 9 ) {\r
+ styleInfos = {\r
+ backgroundInfo: new PIE.BackgroundStyleInfo( el ),\r
+ borderImageInfo: new PIE.BorderImageStyleInfo( el ),\r
+ borderInfo: new PIE.BorderStyleInfo( el )\r
+ };\r
+ styleInfosArr = [\r
+ styleInfos.backgroundInfo,\r
+ styleInfos.borderImageInfo\r
+ ];\r
+ rootRenderer = new PIE.IE9RootRenderer( el, boundsInfo, styleInfos );\r
+ childRenderers = [\r
+ new PIE.IE9BackgroundRenderer( el, boundsInfo, styleInfos, rootRenderer ),\r
+ new PIE.IE9BorderImageRenderer( el, boundsInfo, styleInfos, rootRenderer )\r
+ ];\r
+ } else {\r
+\r
+ styleInfos = {\r
+ backgroundInfo: new PIE.BackgroundStyleInfo( el ),\r
+ borderInfo: new PIE.BorderStyleInfo( el ),\r
+ borderImageInfo: new PIE.BorderImageStyleInfo( el ),\r
+ borderRadiusInfo: new PIE.BorderRadiusStyleInfo( el ),\r
+ boxShadowInfo: new PIE.BoxShadowStyleInfo( el ),\r
+ visibilityInfo: new PIE.VisibilityStyleInfo( el )\r
+ };\r
+ styleInfosArr = [\r
+ styleInfos.backgroundInfo,\r
+ styleInfos.borderInfo,\r
+ styleInfos.borderImageInfo,\r
+ styleInfos.borderRadiusInfo,\r
+ styleInfos.boxShadowInfo,\r
+ styleInfos.visibilityInfo\r
+ ];\r
+ rootRenderer = new PIE.RootRenderer( el, boundsInfo, styleInfos );\r
+ childRenderers = [\r
+ new PIE.BoxShadowOutsetRenderer( el, boundsInfo, styleInfos, rootRenderer ),\r
+ new PIE.BackgroundRenderer( el, boundsInfo, styleInfos, rootRenderer ),\r
+ //new PIE.BoxShadowInsetRenderer( el, boundsInfo, styleInfos, rootRenderer ),\r
+ new PIE.BorderRenderer( el, boundsInfo, styleInfos, rootRenderer ),\r
+ new PIE.BorderImageRenderer( el, boundsInfo, styleInfos, rootRenderer )\r
+ ];\r
+ if( el.tagName === 'IMG' ) {\r
+ childRenderers.push( new PIE.ImgRenderer( el, boundsInfo, styleInfos, rootRenderer ) );\r
+ }\r
+ rootRenderer.childRenderers = childRenderers; // circular reference, can't pass in constructor; TODO is there a cleaner way?\r
+ }\r
+ renderers = [ rootRenderer ].concat( childRenderers );\r
+\r
+ // Add property change listeners to ancestors if requested\r
+ initAncestorEventListeners();\r
+\r
+ // Add to list of polled elements in IE8\r
+ if( poll ) {\r
+ PIE.Heartbeat.observe( update );\r
+ PIE.Heartbeat.run();\r
+ }\r
+\r
+ // Trigger rendering\r
+ update( 1 );\r
+ }\r
+\r
+ if( !eventsAttached ) {\r
+ eventsAttached = 1;\r
+ if( ieDocMode < 9 ) {\r
+ addListener( el, 'onmove', handleMoveOrResize );\r
+ }\r
+ addListener( el, 'onresize', handleMoveOrResize );\r
+ addListener( el, 'onpropertychange', propChanged );\r
+ if( trackHover ) {\r
+ addListener( el, 'onmouseenter', mouseEntered );\r
+ }\r
+ if( trackHover || trackActive ) {\r
+ addListener( el, 'onmouseleave', mouseLeft );\r
+ }\r
+ if( trackActive ) {\r
+ addListener( el, 'onmousedown', mousePressed );\r
+ }\r
+ if( el.tagName in PIE.focusableElements ) {\r
+ addListener( el, 'onfocus', focused );\r
+ addListener( el, 'onblur', blurred );\r
+ }\r
+ PIE.OnResize.observe( handleMoveOrResize );\r
+\r
+ PIE.OnUnload.observe( removeEventListeners );\r
+ }\r
+\r
+ boundsInfo.unlock();\r
+ }\r
+ }\r
+\r
+\r
+\r
+\r
+ /**\r
+ * Event handler for onmove and onresize events. Invokes update() only if the element's\r
+ * bounds have previously been calculated, to prevent multiple runs during page load when\r
+ * the element has no initial CSS3 properties.\r
+ */\r
+ function handleMoveOrResize() {\r
+ if( boundsInfo && boundsInfo.hasBeenQueried() ) {\r
+ update();\r
+ }\r
+ }\r
+\r
+\r
+ /**\r
+ * Update position and/or size as necessary. Both move and resize events call\r
+ * this rather than the updatePos/Size functions because sometimes, particularly\r
+ * during page load, one will fire but the other won't.\r
+ */\r
+ function update( force ) {\r
+ if( !destroyed ) {\r
+ if( initialized ) {\r
+ var i, len = renderers.length;\r
+\r
+ lockAll();\r
+ for( i = 0; i < len; i++ ) {\r
+ renderers[i].prepareUpdate();\r
+ }\r
+ if( force || boundsInfo.positionChanged() ) {\r
+ /* TODO just using getBoundingClientRect (used internally by BoundsInfo) for detecting\r
+ position changes may not always be accurate; it's possible that\r
+ an element will actually move relative to its positioning parent, but its position\r
+ relative to the viewport will stay the same. Need to come up with a better way to\r
+ track movement. The most accurate would be the same logic used in RootRenderer.updatePos()\r
+ but that is a more expensive operation since it does some DOM walking, and we want this\r
+ check to be as fast as possible. */\r
+ for( i = 0; i < len; i++ ) {\r
+ renderers[i].updatePos();\r
+ }\r
+ }\r
+ if( force || boundsInfo.sizeChanged() ) {\r
+ for( i = 0; i < len; i++ ) {\r
+ renderers[i].updateSize();\r
+ }\r
+ }\r
+ rootRenderer.finishUpdate();\r
+ unlockAll();\r
+ }\r
+ else if( !initializing ) {\r
+ init();\r
+ }\r
+ }\r
+ }\r
+\r
+ /**\r
+ * Handle property changes to trigger update when appropriate.\r
+ */\r
+ function propChanged() {\r
+ var i, len = renderers.length,\r
+ renderer,\r
+ e = event;\r
+\r
+ // Some elements like <table> fire onpropertychange events for old-school background properties\r
+ // ('background', 'bgColor') when runtimeStyle background properties are changed, which\r
+ // results in an infinite loop; therefore we filter out those property names. Also, 'display'\r
+ // is ignored because size calculations don't work correctly immediately when its onpropertychange\r
+ // event fires, and because it will trigger an onresize event anyway.\r
+ if( !destroyed && !( e && e.propertyName in ignorePropertyNames ) ) {\r
+ if( initialized ) {\r
+ lockAll();\r
+ for( i = 0; i < len; i++ ) {\r
+ renderers[i].prepareUpdate();\r
+ }\r
+ for( i = 0; i < len; i++ ) {\r
+ renderer = renderers[i];\r
+ // Make sure position is synced if the element hasn't already been rendered.\r
+ // TODO this feels sloppy - look into merging propChanged and update functions\r
+ if( !renderer.isPositioned ) {\r
+ renderer.updatePos();\r
+ }\r
+ if( renderer.needsUpdate() ) {\r
+ renderer.updateProps();\r
+ }\r
+ }\r
+ rootRenderer.finishUpdate();\r
+ unlockAll();\r
+ }\r
+ else if( !initializing ) {\r
+ init();\r
+ }\r
+ }\r
+ }\r
+\r
+\r
+ /**\r
+ * Handle mouseenter events. Adds a custom class to the element to allow IE6 to add\r
+ * hover styles to non-link elements, and to trigger a propertychange update.\r
+ */\r
+ function mouseEntered() {\r
+ //must delay this because the mouseenter event fires before the :hover styles are added.\r
+ delayAddClass( el, hoverClass );\r
+ }\r
+\r
+ /**\r
+ * Handle mouseleave events\r
+ */\r
+ function mouseLeft() {\r
+ //must delay this because the mouseleave event fires before the :hover styles are removed.\r
+ delayRemoveClass( el, hoverClass, activeClass );\r
+ }\r
+\r
+ /**\r
+ * Handle mousedown events. Adds a custom class to the element to allow IE6 to add\r
+ * active styles to non-link elements, and to trigger a propertychange update.\r
+ */\r
+ function mousePressed() {\r
+ //must delay this because the mousedown event fires before the :active styles are added.\r
+ delayAddClass( el, activeClass );\r
+\r
+ // listen for mouseups on the document; can't just be on the element because the user might\r
+ // have dragged out of the element while the mouse button was held down\r
+ PIE.OnMouseup.observe( mouseReleased );\r
+ }\r
+\r
+ /**\r
+ * Handle mouseup events\r
+ */\r
+ function mouseReleased() {\r
+ //must delay this because the mouseup event fires before the :active styles are removed.\r
+ delayRemoveClass( el, activeClass );\r
+\r
+ PIE.OnMouseup.unobserve( mouseReleased );\r
+ }\r
+\r
+ /**\r
+ * Handle focus events. Adds a custom class to the element to trigger a propertychange update.\r
+ */\r
+ function focused() {\r
+ //must delay this because the focus event fires before the :focus styles are added.\r
+ delayAddClass( el, focusClass );\r
+ }\r
+\r
+ /**\r
+ * Handle blur events\r
+ */\r
+ function blurred() {\r
+ //must delay this because the blur event fires before the :focus styles are removed.\r
+ delayRemoveClass( el, focusClass );\r
+ }\r
+\r
+\r
+ /**\r
+ * Handle property changes on ancestors of the element; see initAncestorEventListeners()\r
+ * which adds these listeners as requested with the -pie-watch-ancestors CSS property.\r
+ */\r
+ function ancestorPropChanged() {\r
+ var name = event.propertyName;\r
+ if( name === 'className' || name === 'id' ) {\r
+ propChanged();\r
+ }\r
+ }\r
+\r
+ function lockAll() {\r
+ boundsInfo.lock();\r
+ for( var i = styleInfosArr.length; i--; ) {\r
+ styleInfosArr[i].lock();\r
+ }\r
+ }\r
+\r
+ function unlockAll() {\r
+ for( var i = styleInfosArr.length; i--; ) {\r
+ styleInfosArr[i].unlock();\r
+ }\r
+ boundsInfo.unlock();\r
+ }\r
+\r
+\r
+ function addListener( targetEl, type, handler ) {\r
+ targetEl.attachEvent( type, handler );\r
+ eventListeners.push( [ targetEl, type, handler ] );\r
+ }\r
+\r
+ /**\r
+ * Remove all event listeners from the element and any monitored ancestors.\r
+ */\r
+ function removeEventListeners() {\r
+ if (eventsAttached) {\r
+ var i = eventListeners.length,\r
+ listener;\r
+\r
+ while( i-- ) {\r
+ listener = eventListeners[ i ];\r
+ listener[ 0 ].detachEvent( listener[ 1 ], listener[ 2 ] );\r
+ }\r
+\r
+ PIE.OnUnload.unobserve( removeEventListeners );\r
+ eventsAttached = 0;\r
+ eventListeners = [];\r
+ }\r
+ }\r
+\r
+\r
+ /**\r
+ * Clean everything up when the behavior is removed from the element, or the element\r
+ * is manually destroyed.\r
+ */\r
+ function destroy() {\r
+ if( !destroyed ) {\r
+ var i, len;\r
+\r
+ removeEventListeners();\r
+\r
+ destroyed = 1;\r
+\r
+ // destroy any active renderers\r
+ if( renderers ) {\r
+ for( i = 0, len = renderers.length; i < len; i++ ) {\r
+ renderers[i].finalized = 1;\r
+ renderers[i].destroy();\r
+ }\r
+ }\r
+\r
+ // Remove from list of polled elements in IE8\r
+ if( poll ) {\r
+ PIE.Heartbeat.unobserve( update );\r
+ }\r
+ // Stop onresize listening\r
+ PIE.OnResize.unobserve( update );\r
+\r
+ // Kill references\r
+ renderers = boundsInfo = styleInfos = styleInfosArr = el = null;\r
+ }\r
+ }\r
+\r
+\r
+ /**\r
+ * If requested via the custom -pie-watch-ancestors CSS property, add onpropertychange and\r
+ * other event listeners to ancestor(s) of the element so we can pick up style changes\r
+ * based on CSS rules using descendant selectors.\r
+ */\r
+ function initAncestorEventListeners() {\r
+ var watch = el.currentStyle.getAttribute( PIE.CSS_PREFIX + 'watch-ancestors' ),\r
+ i, a;\r
+ if( watch ) {\r
+ watch = parseInt( watch, 10 );\r
+ i = 0;\r
+ a = el.parentNode;\r
+ while( a && ( watch === 'NaN' || i++ < watch ) ) {\r
+ addListener( a, 'onpropertychange', ancestorPropChanged );\r
+ addListener( a, 'onmouseenter', mouseEntered );\r
+ addListener( a, 'onmouseleave', mouseLeft );\r
+ addListener( a, 'onmousedown', mousePressed );\r
+ if( a.tagName in PIE.focusableElements ) {\r
+ addListener( a, 'onfocus', focused );\r
+ addListener( a, 'onblur', blurred );\r
+ }\r
+ a = a.parentNode;\r
+ }\r
+ }\r
+ }\r
+\r
+\r
+ /**\r
+ * If the target element is a first child, add a pie_first-child class to it. This allows using\r
+ * the added class as a workaround for the fact that PIE's rendering element breaks the :first-child\r
+ * pseudo-class selector.\r
+ */\r
+ function initFirstChildPseudoClass() {\r
+ var tmpEl = el,\r
+ isFirst = 1;\r
+ while( tmpEl = tmpEl.previousSibling ) {\r
+ if( tmpEl.nodeType === 1 ) {\r
+ isFirst = 0;\r
+ break;\r
+ }\r
+ }\r
+ if( isFirst ) {\r
+ addClass( el, firstChildClass );\r
+ }\r
+ }\r
+\r
+\r
+ // These methods are all already bound to this instance so there's no need to wrap them\r
+ // in a closure to maintain the 'this' scope object when calling them.\r
+ this.init = init;\r
+ this.update = update;\r
+ this.destroy = destroy;\r
+ this.el = el;\r
+ }\r
+\r
+ Element.getInstance = function( el ) {\r
+ var id = PIE.Util.getUID( el );\r
+ return wrappers[ id ] || ( wrappers[ id ] = new Element( el ) );\r
+ };\r
+\r
+ Element.destroy = function( el ) {\r
+ var id = PIE.Util.getUID( el ),\r
+ wrapper = wrappers[ id ];\r
+ if( wrapper ) {\r
+ wrapper.destroy();\r
+ delete wrappers[ id ];\r
+ }\r
+ };\r
+\r
+ Element.destroyAll = function() {\r
+ var els = [], wrapper;\r
+ if( wrappers ) {\r
+ for( var w in wrappers ) {\r
+ if( wrappers.hasOwnProperty( w ) ) {\r
+ wrapper = wrappers[ w ];\r
+ els.push( wrapper.el );\r
+ wrapper.destroy();\r
+ }\r
+ }\r
+ wrappers = {};\r
+ }\r
+ return els;\r
+ };\r
+\r
+ return Element;\r
+})();\r
+\r
+/*\r
+ * This file exposes the public API for invoking PIE.\r
+ */\r
+\r
+\r
+/**\r
+ * @property supportsVML\r
+ * True if the current IE browser environment has a functioning VML engine. Should be true\r
+ * in most IEs, but in rare cases may be false. If false, PIE will exit immediately when\r
+ * attached to an element; this property may be used for debugging or by external scripts\r
+ * to perform some special action when VML support is absent.\r
+ * @type {boolean}\r
+ */\r
+PIE[ 'supportsVML' ] = PIE.supportsVML;\r
+\r
+\r
+/**\r
+ * Programatically attach PIE to a single element.\r
+ * @param {Element} el\r
+ */\r
+PIE[ 'attach' ] = function( el ) {\r
+ if (PIE.ieDocMode < 10 && PIE.supportsVML) {\r
+ PIE.Element.getInstance( el ).init();\r
+ }\r
+};\r
+\r
+\r
+/**\r
+ * Programatically detach PIE from a single element.\r
+ * @param {Element} el\r
+ */\r
+PIE[ 'detach' ] = function( el ) {\r
+ PIE.Element.destroy( el );\r
+};\r
+\r
+\r
+} // if( !PIE )\r
+})();
\ No newline at end of file
--- /dev/null
+/******************************\r
+ Mantra Theme\r
+ custom scripting\r
+ (c) Cryout Creations\r
+ www.cryoutcreations.eu\r
+*******************************/\r
+\r
+\r
+jQuery(document).ready(function() {\r
+\r
+// standard menu touch support for tablets\r
+ var isTouch = ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch; // check touch support\r
+ jQuery('#access .menu > ul > li a').click(function(e){\r
+ var $link_id = jQuery(this).attr('href');\r
+ if (jQuery(this).parent().data('clicked') == $link_id) { // second touch\r
+ jQuery(this).parent().data('clicked', null);\r
+ return true;\r
+ }\r
+ else { // first touch\r
+ if (isTouch && (jQuery(this).parent().children('.sub-menu').length >0)) e.preventDefault();\r
+ jQuery(this).parent().data('clicked', $link_id);\r
+ }\r
+ });\r
+\r
+// Back to top button animation\r
+jQuery(function() {\r
+ jQuery(window).scroll(function() {\r
+ var x=jQuery(this).scrollTop();\r
+ var ver = getInternetExplorerVersion();\r
+ // no fade animation (transparency) if IE8 or below\r
+ if ( ver > -1 && ver <= 8 ) {\r
+ if(x != 0) {\r
+ jQuery('#toTop').show();\r
+ } else {\r
+ jQuery('#toTop').hide();\r
+ }\r
+ }\r
+ // fade animation if not IE8 or below\r
+ else {\r
+ if(x != 0) {\r
+ jQuery('#toTop').fadeIn(3000);\r
+ } else {\r
+ jQuery('#toTop').fadeOut();\r
+ }\r
+ }\r
+ });\r
+ jQuery('#toTop').click(function() { jQuery('body,html').animate({scrollTop:0},800); });\r
+});\r
+\r
+\r
+// Menu animation\r
+jQuery("#access ul ul").css({display: "none"}); // Opera Fix\r
+jQuery("#access").removeClass("jssafe"); // JS failsafe\r
+jQuery("#access .menu ul li").hoverIntent({\r
+ over: function(){jQuery(this).children("ul").show(400);},\r
+ out: function(){ jQuery(this).children('ul').hide();},\r
+ timeout:400}\r
+);\r
+\r
+\r
+// Social Icons Animation\r
+jQuery(".socialicons").hover(\r
+ function(){ jQuery(this).animate({"top": "-3px" },{ queue: false, duration:125}); },\r
+ function(){ jQuery(this).animate({ "top": "0px" }, { queue: false, duration:125 });\r
+});\r
+\r
+\r
+/*! http://tinynav.viljamis.com v1.03 by @viljamis \r
+ mod 0.1.1 by cryout creations */\r
+(function ($, window, i) {\r
+ $.fn.tinyNav = function (options) {\r
+\r
+ // Default settings\r
+ var settings = $.extend({\r
+ 'active' : 'selected', // String: Set the "active" class\r
+ 'header' : '' // Show header instead of the active item\r
+ }, options);\r
+\r
+ return this.each(function () {\r
+\r
+ i++; // Used for namespacing\r
+\r
+ var $nav = $(this),\r
+ // Namespacing\r
+ namespace = 'tinynav',\r
+ namespace_i = namespace + i,\r
+ l_namespace_i = '.l_' + namespace_i,\r
+ $select = $('<select/>').addClass(namespace + ' ' + namespace_i);\r
+\r
+ if ($nav.is('ul,ol')) {\r
+\r
+ if (settings.header) {\r
+ $select.append( $('<option/>').text(settings.header) );\r
+ }\r
+\r
+ // Build options\r
+ var options = '';\r
+ var indent = 0;\r
+ var indented = [" "];\r
+ for ( var i = 0; i < 10; i++) { indented.push(indented[indented.length-1]+'- '); }\r
+ indented[0] = "";\r
+ $nav\r
+ .addClass('l_' + namespace_i)\r
+ .children('li')\r
+ .each(buildNavTree=function () {\r
+ var a = $(this).children('a').first();\r
+\r
+ options += '<option value="' + a.attr('href') + '">' + indented[indent] + a.text() + '</option>';\r
+ indent++;\r
+ $(this).children('ul,ol').children('li').each(buildNavTree);\r
+ indent--;\r
+ });\r
+\r
+ // Append options into a select\r
+ $select.append(options);\r
+\r
+ // Select the active item\r
+ if (!settings.header) {\r
+ $select\r
+ .find(':eq(' + $(l_namespace_i + ' li')\r
+ .index($(l_namespace_i + ' li.' + settings.active)) + ')')\r
+ .attr('selected', true);\r
+ }\r
+\r
+ // Change window location\r
+ $select.change(function () {\r
+ var loc = $(this).val(); loc = loc.replace(/[\s\t]/gi,'');\r
+ var menu = settings.header; menu = menu.replace(/[\s\t]/gi,'');\r
+ if ((loc!==menu)) { window.location.href = $(this).val(); } else return false;\r
+ });\r
+\r
+ // Inject select\r
+ $(l_namespace_i).after($select);\r
+\r
+ }\r
+\r
+ var current_url = location.protocol + '//' + location.host + location.pathname;\r
+ $('option[value="'+current_url+'"]').attr("selected","selected");\r
+\r
+ });\r
+\r
+ };\r
+})(jQuery, this, 0);\r
+// end tinynav\r
+\r
+\r
+// detect and apply custom class for safari\r
+if (navigator.userAgent.indexOf('Safari') != -1 && navigator.userAgent.indexOf('Chrome') == -1) {\r
+ jQuery('body').addClass('safari');\r
+}\r
+\r
+\r
+});\r
+// end document.ready\r
+\r
+\r
+// Columns equalizer, used if at least one sidebar has a bg color\r
+function equalizeHeights(){\r
+ var h1 = jQuery("#primary").height();\r
+ var h2 = jQuery("#secondary").height();\r
+ var h3 = jQuery("#content").height();\r
+ var max = Math.max(h1,h2,h3);\r
+ if (h1<max) { jQuery("#primary").height(max); };\r
+ if (h2<max) { jQuery("#secondary").height(max); };\r
+\r
+}\r
+\r
+/*!\r
+* FitVids 1.0\r
+*\r
+* Copyright 2011, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com\r
+* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/\r
+* Released under the WTFPL license - http://sam.zoy.org/wtfpl/\r
+*\r
+* Date: Thu Sept 01 18:00:00 2011 -0500\r
+*/\r
+\r
+(function( $ ){\r
+\r
+ $.fn.fitVids = function( options ) {\r
+ var settings = {\r
+ customSelector: null\r
+ }\r
+\r
+ var div = document.createElement('div'),\r
+ ref = document.getElementsByTagName('base')[0] || document.getElementsByTagName('script')[0];\r
+\r
+ div.className = 'fit-vids-style';\r
+ div.innerHTML = '­<style> .fluid-width-video-wrapper { width: 100%; position: relative; padding: 0; } .fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style>';\r
+\r
+ ref.parentNode.insertBefore(div,ref);\r
+\r
+ if ( options ) {\r
+ $.extend( settings, options );\r
+ }\r
+\r
+ return this.each(function(){\r
+ var selectors = [\r
+ "iframe[src*='player.vimeo.com']",\r
+ "iframe[src*='www.youtube.com']",\r
+ "iframe[src*='www.kickstarter.com']",\r
+ "object",\r
+ "embed"\r
+ ];\r
+\r
+ if (settings.customSelector) {\r
+ selectors.push(settings.customSelector);\r
+ }\r
+\r
+ var $allVideos = $(this).find(selectors.join(','));\r
+\r
+ $allVideos.each(function(){\r
+ var $this = $(this);\r
+ if (this.tagName.toLowerCase() == 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; }\r
+ var height = this.tagName.toLowerCase() == 'object' ? $this.attr('height') : $this.height(),\r
+ aspectRatio = height / $this.width();\r
+ if(!$this.attr('id')){\r
+ var videoID = 'fitvid' + Math.floor(Math.random()*999999);\r
+ $this.attr('id', videoID);\r
+ }\r
+ $this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+"%");\r
+ $this.removeAttr('height').removeAttr('width');\r
+ });\r
+ });\r
+\r
+ }\r
+})( jQuery );\r
+\r
+\r
+/*!\r
+ * hoverIntent r7 // 2013.03.11 // jQuery 1.9.1+\r
+ * http://cherne.net/brian/resources/jquery.hoverIntent.html\r
+ *\r
+ * You may use hoverIntent under the terms of the MIT license.\r
+ * Copyright 2007, 2013 Brian Cherne\r
+ */\r
+(function(e){e.fn.hoverIntent=function(t,n,r){var i={interval:100,sensitivity:7,timeout:0};if(typeof t==="object"){i=e.extend(i,t)}else if(e.isFunction(n)){i=e.extend(i,{over:t,out:n,selector:r})}else{i=e.extend(i,{over:t,out:t,selector:n})}var s,o,u,a;var f=function(e){s=e.pageX;o=e.pageY};var l=function(t,n){n.hoverIntent_t=clearTimeout(n.hoverIntent_t);if(Math.abs(u-s)+Math.abs(a-o)<i.sensitivity){e(n).off("mousemove.hoverIntent",f);n.hoverIntent_s=1;return i.over.apply(n,[t])}else{u=s;a=o;n.hoverIntent_t=setTimeout(function(){l(t,n)},i.interval)}};var c=function(e,t){t.hoverIntent_t=clearTimeout(t.hoverIntent_t);t.hoverIntent_s=0;return i.out.apply(t,[e])};var h=function(t){var n=jQuery.extend({},t);var r=this;if(r.hoverIntent_t){r.hoverIntent_t=clearTimeout(r.hoverIntent_t)}if(t.type=="mouseenter"){u=n.pageX;a=n.pageY;e(r).on("mousemove.hoverIntent",f);if(r.hoverIntent_s!=1){r.hoverIntent_t=setTimeout(function(){l(n,r)},i.interval)}}else{e(r).off("mousemove.hoverIntent",f);if(r.hoverIntent_s==1){r.hoverIntent_t=setTimeout(function(){c(n,r)},i.timeout)}}};return this.on({"mouseenter.hoverIntent":h,"mouseleave.hoverIntent":h},i.selector)}})(jQuery)\r
+\r
+\r
+// Returns the version of Internet Explorer or a -1\r
+// (indicating the use of another browser).\r
+function getInternetExplorerVersion()\r
+{\r
+ var rv = -1; // Return value assumes failure.\r
+ if (navigator.appName == 'Microsoft Internet Explorer')\r
+ {\r
+ var ua = navigator.userAgent;\r
+ var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");\r
+ if (re.exec(ua) != null)\r
+ rv = parseFloat( RegExp.$1 );\r
+ }\r
+ return rv;\r
+}\r
+\r
+\r
--- /dev/null
+/*\r
+ * jQuery UI CSS Framework 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Theming/API\r
+ */\r
+\r
+/* Layout helpers\r
+----------------------------------*/\r
+.ui-helper-hidden { display: none; }\r
+.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }\r
+.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }\r
+.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }\r
+.ui-helper-clearfix { display: inline-block; }\r
+/* required comment for clearfix to work in Opera \*/\r
+* html .ui-helper-clearfix { height:1%; }\r
+.ui-helper-clearfix { display:block; }\r
+/* end clearfix */\r
+.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }\r
+\r
+\r
+/* Interaction Cues\r
+----------------------------------*/\r
+.ui-state-disabled { cursor: default !important; }\r
+\r
+\r
+/* Icons\r
+----------------------------------*/\r
+\r
+/* states and images */\r
+.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }\r
+\r
+\r
+/* Misc visuals\r
+----------------------------------*/\r
+\r
+/* Overlays */\r
+.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }\r
+\r
+\r
+/*\r
+ * jQuery UI CSS Framework 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Theming/API\r
+ *\r
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS,%20Tahoma,%20Verdana,%20Arial,%20sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=03_highlight_soft.png&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=02_glass.png&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=08_diagonals_thick.png&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=08_diagonals_thick.png&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=01_flat.png&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px\r
+ */\r
+\r
+\r
+/* Component containers\r
+----------------------------------*/\r
+.ui-widget { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1.1em; }\r
+.ui-widget .ui-widget { font-size: 1em; }\r
+.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; font-size: 1em; }\r
+.ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; color: #333333; }\r
+.ui-widget-content a { color: #333333; }\r
+.ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }\r
+.ui-widget-header a { color: #ffffff; }\r
+\r
+/* Interaction states\r
+----------------------------------*/\r
+.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #1c94c4; }\r
+.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #1c94c4; text-decoration: none; }\r
+.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #fbcb09; background: #fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #c77405; }\r
+.ui-state-hover a, .ui-state-hover a:hover { color: #c77405; text-decoration: none; }\r
+.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #fbd850; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #eb8f00; }\r
+.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #eb8f00; text-decoration: none; }\r
+.ui-widget :active { outline: none; }\r
+\r
+/* Interaction Cues\r
+----------------------------------*/\r
+.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fed22f; background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x; color: #363636; }\r
+.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }\r
+.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat; color: #ffffff; }\r
+.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; }\r
+.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; }\r
+.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }\r
+.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }\r
+.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }\r
+\r
+/* Icons\r
+----------------------------------*/\r
+\r
+/* states and images */\r
+.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }\r
+.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }\r
+.ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }\r
+.ui-state-default .ui-icon { background-image: url(images/ui-icons_ef8c08_256x240.png); }\r
+.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }\r
+.ui-state-active .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }\r
+.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_228ef1_256x240.png); }\r
+.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffd27a_256x240.png); }\r
+\r
+/* positioning */\r
+.ui-icon-carat-1-n { background-position: 0 0; }\r
+.ui-icon-carat-1-ne { background-position: -16px 0; }\r
+.ui-icon-carat-1-e { background-position: -32px 0; }\r
+.ui-icon-carat-1-se { background-position: -48px 0; }\r
+.ui-icon-carat-1-s { background-position: -64px 0; }\r
+.ui-icon-carat-1-sw { background-position: -80px 0; }\r
+.ui-icon-carat-1-w { background-position: -96px 0; }\r
+.ui-icon-carat-1-nw { background-position: -112px 0; }\r
+.ui-icon-carat-2-n-s { background-position: -128px 0; }\r
+.ui-icon-carat-2-e-w { background-position: -144px 0; }\r
+.ui-icon-triangle-1-n { background-position: 0 -16px; }\r
+.ui-icon-triangle-1-ne { background-position: -16px -16px; }\r
+.ui-icon-triangle-1-e { background-position: -32px -16px; }\r
+.ui-icon-triangle-1-se { background-position: -48px -16px; }\r
+.ui-icon-triangle-1-s { background-position: -64px -16px; }\r
+.ui-icon-triangle-1-sw { background-position: -80px -16px; }\r
+.ui-icon-triangle-1-w { background-position: -96px -16px; }\r
+.ui-icon-triangle-1-nw { background-position: -112px -16px; }\r
+.ui-icon-triangle-2-n-s { background-position: -128px -16px; }\r
+.ui-icon-triangle-2-e-w { background-position: -144px -16px; }\r
+.ui-icon-arrow-1-n { background-position: 0 -32px; }\r
+.ui-icon-arrow-1-ne { background-position: -16px -32px; }\r
+.ui-icon-arrow-1-e { background-position: -32px -32px; }\r
+.ui-icon-arrow-1-se { background-position: -48px -32px; }\r
+.ui-icon-arrow-1-s { background-position: -64px -32px; }\r
+.ui-icon-arrow-1-sw { background-position: -80px -32px; }\r
+.ui-icon-arrow-1-w { background-position: -96px -32px; }\r
+.ui-icon-arrow-1-nw { background-position: -112px -32px; }\r
+.ui-icon-arrow-2-n-s { background-position: -128px -32px; }\r
+.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }\r
+.ui-icon-arrow-2-e-w { background-position: -160px -32px; }\r
+.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }\r
+.ui-icon-arrowstop-1-n { background-position: -192px -32px; }\r
+.ui-icon-arrowstop-1-e { background-position: -208px -32px; }\r
+.ui-icon-arrowstop-1-s { background-position: -224px -32px; }\r
+.ui-icon-arrowstop-1-w { background-position: -240px -32px; }\r
+.ui-icon-arrowthick-1-n { background-position: 0 -48px; }\r
+.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }\r
+.ui-icon-arrowthick-1-e { background-position: -32px -48px; }\r
+.ui-icon-arrowthick-1-se { background-position: -48px -48px; }\r
+.ui-icon-arrowthick-1-s { background-position: -64px -48px; }\r
+.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }\r
+.ui-icon-arrowthick-1-w { background-position: -96px -48px; }\r
+.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }\r
+.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }\r
+.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }\r
+.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }\r
+.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }\r
+.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }\r
+.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }\r
+.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }\r
+.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }\r
+.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }\r
+.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }\r
+.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }\r
+.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }\r
+.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }\r
+.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }\r
+.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }\r
+.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }\r
+.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }\r
+.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }\r
+.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }\r
+.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }\r
+.ui-icon-arrow-4 { background-position: 0 -80px; }\r
+.ui-icon-arrow-4-diag { background-position: -16px -80px; }\r
+.ui-icon-extlink { background-position: -32px -80px; }\r
+.ui-icon-newwin { background-position: -48px -80px; }\r
+.ui-icon-refresh { background-position: -64px -80px; }\r
+.ui-icon-shuffle { background-position: -80px -80px; }\r
+.ui-icon-transfer-e-w { background-position: -96px -80px; }\r
+.ui-icon-transferthick-e-w { background-position: -112px -80px; }\r
+.ui-icon-folder-collapsed { background-position: 0 -96px; }\r
+.ui-icon-folder-open { background-position: -16px -96px; }\r
+.ui-icon-document { background-position: -32px -96px; }\r
+.ui-icon-document-b { background-position: -48px -96px; }\r
+.ui-icon-note { background-position: -64px -96px; }\r
+.ui-icon-mail-closed { background-position: -80px -96px; }\r
+.ui-icon-mail-open { background-position: -96px -96px; }\r
+.ui-icon-suitcase { background-position: -112px -96px; }\r
+.ui-icon-comment { background-position: -128px -96px; }\r
+.ui-icon-person { background-position: -144px -96px; }\r
+.ui-icon-print { background-position: -160px -96px; }\r
+.ui-icon-trash { background-position: -176px -96px; }\r
+.ui-icon-locked { background-position: -192px -96px; }\r
+.ui-icon-unlocked { background-position: -208px -96px; }\r
+.ui-icon-bookmark { background-position: -224px -96px; }\r
+.ui-icon-tag { background-position: -240px -96px; }\r
+.ui-icon-home { background-position: 0 -112px; }\r
+.ui-icon-flag { background-position: -16px -112px; }\r
+.ui-icon-calendar { background-position: -32px -112px; }\r
+.ui-icon-cart { background-position: -48px -112px; }\r
+.ui-icon-pencil { background-position: -64px -112px; }\r
+.ui-icon-clock { background-position: -80px -112px; }\r
+.ui-icon-disk { background-position: -96px -112px; }\r
+.ui-icon-calculator { background-position: -112px -112px; }\r
+.ui-icon-zoomin { background-position: -128px -112px; }\r
+.ui-icon-zoomout { background-position: -144px -112px; }\r
+.ui-icon-search { background-position: -160px -112px; }\r
+.ui-icon-wrench { background-position: -176px -112px; }\r
+.ui-icon-gear { background-position: -192px -112px; }\r
+.ui-icon-heart { background-position: -208px -112px; }\r
+.ui-icon-star { background-position: -224px -112px; }\r
+.ui-icon-link { background-position: -240px -112px; }\r
+.ui-icon-cancel { background-position: 0 -128px; }\r
+.ui-icon-plus { background-position: -16px -128px; }\r
+.ui-icon-plusthick { background-position: -32px -128px; }\r
+.ui-icon-minus { background-position: -48px -128px; }\r
+.ui-icon-minusthick { background-position: -64px -128px; }\r
+.ui-icon-close { background-position: -80px -128px; }\r
+.ui-icon-closethick { background-position: -96px -128px; }\r
+.ui-icon-key { background-position: -112px -128px; }\r
+.ui-icon-lightbulb { background-position: -128px -128px; }\r
+.ui-icon-scissors { background-position: -144px -128px; }\r
+.ui-icon-clipboard { background-position: -160px -128px; }\r
+.ui-icon-copy { background-position: -176px -128px; }\r
+.ui-icon-contact { background-position: -192px -128px; }\r
+.ui-icon-image { background-position: -208px -128px; }\r
+.ui-icon-video { background-position: -224px -128px; }\r
+.ui-icon-script { background-position: -240px -128px; }\r
+.ui-icon-alert { background-position: 0 -144px; }\r
+.ui-icon-info { background-position: -16px -144px; }\r
+.ui-icon-notice { background-position: -32px -144px; }\r
+.ui-icon-help { background-position: -48px -144px; }\r
+.ui-icon-check { background-position: -64px -144px; }\r
+.ui-icon-bullet { background-position: -80px -144px; }\r
+.ui-icon-radio-off { background-position: -96px -144px; }\r
+.ui-icon-radio-on { background-position: -112px -144px; }\r
+.ui-icon-pin-w { background-position: -128px -144px; }\r
+.ui-icon-pin-s { background-position: -144px -144px; }\r
+.ui-icon-play { background-position: 0 -160px; }\r
+.ui-icon-pause { background-position: -16px -160px; }\r
+.ui-icon-seek-next { background-position: -32px -160px; }\r
+.ui-icon-seek-prev { background-position: -48px -160px; }\r
+.ui-icon-seek-end { background-position: -64px -160px; }\r
+.ui-icon-seek-start { background-position: -80px -160px; }\r
+/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\r
+.ui-icon-seek-first { background-position: -80px -160px; }\r
+.ui-icon-stop { background-position: -96px -160px; }\r
+.ui-icon-eject { background-position: -112px -160px; }\r
+.ui-icon-volume-off { background-position: -128px -160px; }\r
+.ui-icon-volume-on { background-position: -144px -160px; }\r
+.ui-icon-power { background-position: 0 -176px; }\r
+.ui-icon-signal-diag { background-position: -16px -176px; }\r
+.ui-icon-signal { background-position: -32px -176px; }\r
+.ui-icon-battery-0 { background-position: -48px -176px; }\r
+.ui-icon-battery-1 { background-position: -64px -176px; }\r
+.ui-icon-battery-2 { background-position: -80px -176px; }\r
+.ui-icon-battery-3 { background-position: -96px -176px; }\r
+.ui-icon-circle-plus { background-position: 0 -192px; }\r
+.ui-icon-circle-minus { background-position: -16px -192px; }\r
+.ui-icon-circle-close { background-position: -32px -192px; }\r
+.ui-icon-circle-triangle-e { background-position: -48px -192px; }\r
+.ui-icon-circle-triangle-s { background-position: -64px -192px; }\r
+.ui-icon-circle-triangle-w { background-position: -80px -192px; }\r
+.ui-icon-circle-triangle-n { background-position: -96px -192px; }\r
+.ui-icon-circle-arrow-e { background-position: -112px -192px; }\r
+.ui-icon-circle-arrow-s { background-position: -128px -192px; }\r
+.ui-icon-circle-arrow-w { background-position: -144px -192px; }\r
+.ui-icon-circle-arrow-n { background-position: -160px -192px; }\r
+.ui-icon-circle-zoomin { background-position: -176px -192px; }\r
+.ui-icon-circle-zoomout { background-position: -192px -192px; }\r
+.ui-icon-circle-check { background-position: -208px -192px; }\r
+.ui-icon-circlesmall-plus { background-position: 0 -208px; }\r
+.ui-icon-circlesmall-minus { background-position: -16px -208px; }\r
+.ui-icon-circlesmall-close { background-position: -32px -208px; }\r
+.ui-icon-squaresmall-plus { background-position: -48px -208px; }\r
+.ui-icon-squaresmall-minus { background-position: -64px -208px; }\r
+.ui-icon-squaresmall-close { background-position: -80px -208px; }\r
+.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }\r
+.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }\r
+.ui-icon-grip-solid-vertical { background-position: -32px -224px; }\r
+.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }\r
+.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }\r
+.ui-icon-grip-diagonal-se { background-position: -80px -224px; }\r
+\r
+\r
+/* Misc visuals\r
+----------------------------------*/\r
+\r
+/* Corner radius */\r
+.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }\r
+.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }\r
+.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }\r
+.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }\r
+\r
+/* Overlays */\r
+.ui-widget-overlay { background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); }\r
+.ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }/*\r
+ * jQuery UI Resizable 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Resizable#theming\r
+ */\r
+.ui-resizable { position: relative;}\r
+.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; }\r
+.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }\r
+.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }\r
+.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }\r
+.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }\r
+.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }\r
+.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }\r
+.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }\r
+.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }\r
+.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*\r
+ * jQuery UI Selectable 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Selectable#theming\r
+ */\r
+.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }\r
+/*\r
+ * jQuery UI Accordion 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Accordion#theming\r
+ */\r
+/* IE/Win - Fix animation bug - #4615 */\r
+.ui-accordion { width: 100%; }\r
+.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }\r
+.ui-accordion .ui-accordion-li-fix { display: inline; }\r
+.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }\r
+.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }\r
+.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }\r
+.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }\r
+.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }\r
+.ui-accordion .ui-accordion-content-active { display: block; }\r
+/*\r
+ * jQuery UI Autocomplete 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Autocomplete#theming\r
+ */\r
+.ui-autocomplete { position: absolute; cursor: default; } \r
+\r
+/* workarounds */\r
+* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */\r
+\r
+/*\r
+ * jQuery UI Menu 1.8.16\r
+ *\r
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Menu#theming\r
+ */\r
+.ui-menu {\r
+ list-style:none;\r
+ padding: 2px;\r
+ margin: 0;\r
+ display:block;\r
+ float: left;\r
+}\r
+.ui-menu .ui-menu {\r
+ margin-top: -3px;\r
+}\r
+.ui-menu .ui-menu-item {\r
+ margin:0;\r
+ padding: 0;\r
+ zoom: 1;\r
+ float: left;\r
+ clear: left;\r
+ width: 100%;\r
+}\r
+.ui-menu .ui-menu-item a {\r
+ text-decoration:none;\r
+ display:block;\r
+ padding:.2em .4em;\r
+ line-height:1.5;\r
+ zoom:1;\r
+}\r
+.ui-menu .ui-menu-item a.ui-state-hover,\r
+.ui-menu .ui-menu-item a.ui-state-active {\r
+ font-weight: normal;\r
+ margin: -1px;\r
+}\r
+/*\r
+ * jQuery UI Button 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Button#theming\r
+ */\r
+.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */\r
+.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */\r
+button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */\r
+.ui-button-icons-only { width: 3.4em; } \r
+button.ui-button-icons-only { width: 3.7em; } \r
+\r
+/*button text element */\r
+.ui-button .ui-button-text { display: block; line-height: 1.4; }\r
+.ui-button-text-only .ui-button-text { padding: .4em 1em; }\r
+.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }\r
+.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }\r
+.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }\r
+.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }\r
+/* no icon support for input elements, provide padding by default */\r
+input.ui-button { padding: .4em 1em; }\r
+\r
+/*button icon element(s) */\r
+.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }\r
+.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }\r
+.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }\r
+.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }\r
+.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }\r
+\r
+/*button sets*/\r
+.ui-buttonset { margin-right: 7px; }\r
+.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }\r
+\r
+/* workarounds */\r
+button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */\r
+/*\r
+ * jQuery UI Dialog 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Dialog#theming\r
+ */\r
+.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }\r
+.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }\r
+.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } \r
+.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }\r
+.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }\r
+.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }\r
+.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }\r
+.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }\r
+.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }\r
+.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }\r
+.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }\r
+.ui-draggable .ui-dialog-titlebar { cursor: move; }\r
+/*\r
+ * jQuery UI Slider 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Slider#theming\r
+ */\r
+.ui-slider { position: relative; text-align: left; }\r
+.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }\r
+.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }\r
+\r
+.ui-slider-horizontal { height: .8em; }\r
+.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }\r
+.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }\r
+.ui-slider-horizontal .ui-slider-range-min { left: 0; }\r
+.ui-slider-horizontal .ui-slider-range-max { right: 0; }\r
+\r
+.ui-slider-vertical { width: .8em; height: 100px; }\r
+.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }\r
+.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }\r
+.ui-slider-vertical .ui-slider-range-min { bottom: 0; }\r
+.ui-slider-vertical .ui-slider-range-max { top: 0; }/*\r
+ * jQuery UI Tabs 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Tabs#theming\r
+ */\r
+.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */\r
+.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }\r
+.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }\r
+.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }\r
+.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }\r
+.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }\r
+.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */\r
+.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }\r
+.ui-tabs .ui-tabs-hide { display: none !important; }\r
+/*\r
+ * jQuery UI Datepicker 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Datepicker#theming\r
+ */\r
+.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }\r
+.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }\r
+.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }\r
+.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }\r
+.ui-datepicker .ui-datepicker-prev { left:2px; }\r
+.ui-datepicker .ui-datepicker-next { right:2px; }\r
+.ui-datepicker .ui-datepicker-prev-hover { left:1px; }\r
+.ui-datepicker .ui-datepicker-next-hover { right:1px; }\r
+.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }\r
+.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }\r
+.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }\r
+.ui-datepicker select.ui-datepicker-month-year {width: 100%;}\r
+.ui-datepicker select.ui-datepicker-month, \r
+.ui-datepicker select.ui-datepicker-year { width: 49%;}\r
+.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }\r
+.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }\r
+.ui-datepicker td { border: 0; padding: 1px; }\r
+.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }\r
+.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }\r
+.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }\r
+.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }\r
+\r
+/* with multiple calendars */\r
+.ui-datepicker.ui-datepicker-multi { width:auto; }\r
+.ui-datepicker-multi .ui-datepicker-group { float:left; }\r
+.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }\r
+.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }\r
+.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }\r
+.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }\r
+.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }\r
+.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }\r
+.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }\r
+.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }\r
+\r
+/* RTL support */\r
+.ui-datepicker-rtl { direction: rtl; }\r
+.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }\r
+.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }\r
+.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }\r
+.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }\r
+.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }\r
+.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }\r
+.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }\r
+.ui-datepicker-rtl .ui-datepicker-group { float:right; }\r
+.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }\r
+.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }\r
+\r
+/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */\r
+.ui-datepicker-cover {\r
+ display: none; /*sorry for IE5*/\r
+ display/**/: block; /*sorry for IE5*/\r
+ position: absolute; /*must have*/\r
+ z-index: -1; /*must have*/\r
+ filter: mask(); /*must have*/\r
+ top: -4px; /*must have*/\r
+ left: -4px; /*must have*/\r
+ width: 200px; /*must have*/\r
+ height: 200px; /*must have*/\r
+}/*\r
+ * jQuery UI Progressbar 1.8.16\r
+ *\r
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\r
+ * Dual licensed under the MIT or GPL Version 2 licenses.\r
+ * http://jquery.org/license\r
+ *\r
+ * http://docs.jquery.com/UI/Progressbar#theming\r
+ */\r
+.ui-progressbar { height:2em; text-align: left; }\r
+.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
\ No newline at end of file
--- /dev/null
+/*\r
+ * jQuery Nivo Slider v3.2\r
+ * http://nivo.dev7studios.com\r
+ *\r
+ * Copyright 2012, Dev7studios\r
+ * Free to use and abuse under the MIT license.\r
+ * http://www.opensource.org/licenses/mit-license.php\r
+ */\r
+\r
+(function(e){var t=function(t,n){var r=e.extend({},e.fn.nivoSlider.defaults,n);var i={currentSlide:0,currentImage:"",totalSlides:0,running:false,paused:false,stop:false,controlNavEl:false};var s=e(t);s.data("nivo:vars",i).addClass("nivoSlider");var o=s.children();o.each(function(){var t=e(this);var n="";if(!t.is("img")){if(t.is("a")){t.addClass("nivo-imageLink");n=t}t=t.find("img:first")}var r=r===0?t.attr("width"):t.width(),s=s===0?t.attr("height"):t.height();if(n!==""){n.css("display","none")}t.css("display","none");i.totalSlides++});if(r.randomStart){r.startSlide=Math.floor(Math.random()*i.totalSlides)}if(r.startSlide>0){if(r.startSlide>=i.totalSlides){r.startSlide=i.totalSlides-1}i.currentSlide=r.startSlide}if(e(o[i.currentSlide]).is("img")){i.currentImage=e(o[i.currentSlide])}else{i.currentImage=e(o[i.currentSlide]).find("img:first")}if(e(o[i.currentSlide]).is("a")){e(o[i.currentSlide]).css("display","block")}var u=e("<img/>").addClass("nivo-main-image");u.attr("src",i.currentImage.attr("src")).show();s.append(u);e(window).resize(function(){s.children("img").width(s.width());u.attr("src",i.currentImage.attr("src"));u.stop().height("auto");e(".nivo-slice").remove();e(".nivo-box").remove()});s.append(e('<div class="nivo-caption"></div>'));var a=function(t){var n=e(".nivo-caption",s);if(i.currentImage.attr("title")!=""&&i.currentImage.attr("title")!=undefined){var r=i.currentImage.attr("title");if(r.substr(0,1)=="#")r=e(r).html();if(n.css("display")=="block"){setTimeout(function(){n.html(r)},t.animSpeed)}else{n.html(r);n.stop().fadeIn(t.animSpeed)}}else{n.stop().fadeOut(t.animSpeed)}};a(r);var f=0;if(!r.manualAdvance&&o.length>1){f=setInterval(function(){d(s,o,r,false)},r.pauseTime)}if(r.directionNav){s.append('<div class="nivo-directionNav"><a class="nivo-prevNav">'+r.prevText+'</a><a class="nivo-nextNav">'+r.nextText+"</a></div>");e(s).on("click","a.nivo-prevNav",function(){if(i.running){return false}clearInterval(f);f="";i.currentSlide-=2;d(s,o,r,"prev")});e(s).on("click","a.nivo-nextNav",function(){if(i.running){return false}clearInterval(f);f="";d(s,o,r,"next")})}if(r.controlNav){i.controlNavEl=e('<div class="nivo-controlNav"></div>');s.after(i.controlNavEl);for(var l=0;l<o.length;l++){if(r.controlNavThumbs){i.controlNavEl.addClass("nivo-thumbs-enabled");var c=o.eq(l);if(!c.is("img")){c=c.find("img:first")}if(c.attr("data-thumb"))i.controlNavEl.append('<a class="nivo-control" rel="'+l+'"><img src="'+c.attr("data-thumb")+'" alt="" /></a>')}else{i.controlNavEl.append('<a class="nivo-control" rel="'+l+'">'+(l+1)+"</a>")}}e("a:eq("+i.currentSlide+")",i.controlNavEl).addClass("active");e("a",i.controlNavEl).bind("click",function(){if(i.running)return false;if(e(this).hasClass("active"))return false;clearInterval(f);f="";u.attr("src",i.currentImage.attr("src"));i.currentSlide=e(this).attr("rel")-1;d(s,o,r,"control")})}if(r.pauseOnHover){s.hover(function(){i.paused=true;clearInterval(f);f=""},function(){i.paused=false;if(f===""&&!r.manualAdvance){f=setInterval(function(){d(s,o,r,false)},r.pauseTime)}})}s.bind("nivo:animFinished",function(){u.attr("src",i.currentImage.attr("src"));i.running=false;e(o).each(function(){if(e(this).is("a")){e(this).css("display","none")}});if(e(o[i.currentSlide]).is("a")){e(o[i.currentSlide]).css("display","block")}if(f===""&&!i.paused&&!r.manualAdvance){f=setInterval(function(){d(s,o,r,false)},r.pauseTime)}r.afterChange.call(this)});var h=function(t,n,r){if(e(r.currentImage).parent().is("a"))e(r.currentImage).parent().css("display","block");e('img[src="'+r.currentImage.attr("src")+'"]',t).not(".nivo-main-image,.nivo-control img").width(t.width()).css("visibility","hidden").show();var i=e('img[src="'+r.currentImage.attr("src")+'"]',t).not(".nivo-main-image,.nivo-control img").parent().is("a")?e('img[src="'+r.currentImage.attr("src")+'"]',t).not(".nivo-main-image,.nivo-control img").parent().height():e('img[src="'+r.currentImage.attr("src")+'"]',t).not(".nivo-main-image,.nivo-control img").height();for(var s=0;s<n.slices;s++){var o=Math.round(t.width()/n.slices);if(s===n.slices-1){t.append(e('<div class="nivo-slice" name="'+s+'"><img src="'+r.currentImage.attr("src")+'" style="position:absolute; width:'+t.width()+"px; height:auto; display:block !important; top:0; left:-"+(o+s*o-o)+'px;" /></div>').css({left:o*s+"px",width:t.width()-o*s+"px",height:i+"px",opacity:"0",overflow:"hidden"}))}else{t.append(e('<div class="nivo-slice" name="'+s+'"><img src="'+r.currentImage.attr("src")+'" style="position:absolute; width:'+t.width()+"px; height:auto; display:block !important; top:0; left:-"+(o+s*o-o)+'px;" /></div>').css({left:o*s+"px",width:o+"px",height:i+"px",opacity:"0",overflow:"hidden"}))}}e(".nivo-slice",t).height(i);u.stop().animate({height:e(r.currentImage).height()},n.animSpeed)};var p=function(t,n,r){if(e(r.currentImage).parent().is("a"))e(r.currentImage).parent().css("display","block");e('img[src="'+r.currentImage.attr("src")+'"]',t).not(".nivo-main-image,.nivo-control img").width(t.width()).css("visibility","hidden").show();var i=Math.round(t.width()/n.boxCols),s=Math.round(e('img[src="'+r.currentImage.attr("src")+'"]',t).not(".nivo-main-image,.nivo-control img").height()/n.boxRows);for(var o=0;o<n.boxRows;o++){for(var a=0;a<n.boxCols;a++){if(a===n.boxCols-1){t.append(e('<div class="nivo-box" name="'+a+'" rel="'+o+'"><img src="'+r.currentImage.attr("src")+'" style="position:absolute; width:'+t.width()+"px; height:auto; display:block; top:-"+s*o+"px; left:-"+i*a+'px;" /></div>').css({opacity:0,left:i*a+"px",top:s*o+"px",width:t.width()-i*a+"px"}));e('.nivo-box[name="'+a+'"]',t).height(e('.nivo-box[name="'+a+'"] img',t).height()+"px")}else{t.append(e('<div class="nivo-box" name="'+a+'" rel="'+o+'"><img src="'+r.currentImage.attr("src")+'" style="position:absolute; width:'+t.width()+"px; height:auto; display:block; top:-"+s*o+"px; left:-"+i*a+'px;" /></div>').css({opacity:0,left:i*a+"px",top:s*o+"px",width:i+"px"}));e('.nivo-box[name="'+a+'"]',t).height(e('.nivo-box[name="'+a+'"] img',t).height()+"px")}}}u.stop().animate({height:e(r.currentImage).height()},n.animSpeed)};var d=function(t,n,r,i){var s=t.data("nivo:vars");if(s&&s.currentSlide===s.totalSlides-1){r.lastSlide.call(this)}if((!s||s.stop)&&!i){return false}r.beforeChange.call(this);if(!i){u.attr("src",s.currentImage.attr("src"))}else{if(i==="prev"){u.attr("src",s.currentImage.attr("src"))}if(i==="next"){u.attr("src",s.currentImage.attr("src"))}}s.currentSlide++;if(s.currentSlide===s.totalSlides){s.currentSlide=0;r.slideshowEnd.call(this)}if(s.currentSlide<0){s.currentSlide=s.totalSlides-1}if(e(n[s.currentSlide]).is("img")){s.currentImage=e(n[s.currentSlide])}else{s.currentImage=e(n[s.currentSlide]).find("img:first")}if(r.controlNav){e("a",s.controlNavEl).removeClass("active");e("a:eq("+s.currentSlide+")",s.controlNavEl).addClass("active")}a(r);e(".nivo-slice",t).remove();e(".nivo-box",t).remove();var o=r.effect,f="";if(r.effect==="random"){f=new Array("sliceDownRight","sliceDownLeft","sliceUpRight","sliceUpLeft","sliceUpDown","sliceUpDownLeft","fold","fade","boxRandom","boxRain","boxRainReverse","boxRainGrow","boxRainGrowReverse");o=f[Math.floor(Math.random()*(f.length+1))];if(o===undefined){o="fade"}}if(r.effect.indexOf(",")!==-1){f=r.effect.split(",");o=f[Math.floor(Math.random()*f.length)];if(o===undefined){o="fade"}}if(s.currentImage.attr("data-transition")){o=s.currentImage.attr("data-transition")}s.running=true;var l=0,c=0,d="",m="",g="",y="";if(o==="sliceDown"||o==="sliceDownRight"||o==="sliceDownLeft"){h(t,r,s);l=0;c=0;d=e(".nivo-slice",t);if(o==="sliceDownLeft"){d=e(".nivo-slice",t)._reverse()}d.each(function(){var n=e(this);n.css({top:"0px"});if(c===r.slices-1){setTimeout(function(){n.animate({opacity:"1.0"},r.animSpeed,"",function(){t.trigger("nivo:animFinished")})},100+l)}else{setTimeout(function(){n.animate({opacity:"1.0"},r.animSpeed)},100+l)}l+=50;c++})}else if(o==="sliceUp"||o==="sliceUpRight"||o==="sliceUpLeft"){h(t,r,s);l=0;c=0;d=e(".nivo-slice",t);if(o==="sliceUpLeft"){d=e(".nivo-slice",t)._reverse()}d.each(function(){var n=e(this);n.css({bottom:"0px"});if(c===r.slices-1){setTimeout(function(){n.animate({opacity:"1.0"},r.animSpeed,"",function(){t.trigger("nivo:animFinished")})},100+l)}else{setTimeout(function(){n.animate({opacity:"1.0"},r.animSpeed)},100+l)}l+=50;c++})}else if(o==="sliceUpDown"||o==="sliceUpDownRight"||o==="sliceUpDownLeft"){h(t,r,s);l=0;c=0;var b=0;d=e(".nivo-slice",t);if(o==="sliceUpDownLeft"){d=e(".nivo-slice",t)._reverse()}d.each(function(){var n=e(this);if(c===0){n.css("top","0px");c++}else{n.css("bottom","0px");c=0}if(b===r.slices-1){setTimeout(function(){n.animate({opacity:"1.0"},r.animSpeed,"",function(){t.trigger("nivo:animFinished")})},100+l)}else{setTimeout(function(){n.animate({opacity:"1.0"},r.animSpeed)},100+l)}l+=50;b++})}else if(o==="fold"){h(t,r,s);l=0;c=0;e(".nivo-slice",t).each(function(){var n=e(this);var i=n.width();n.css({top:"0px",width:"0px"});if(c===r.slices-1){setTimeout(function(){n.animate({width:i,opacity:"1.0"},r.animSpeed,"",function(){t.trigger("nivo:animFinished")})},100+l)}else{setTimeout(function(){n.animate({width:i,opacity:"1.0"},r.animSpeed)},100+l)}l+=50;c++})}else if(o==="fade"){h(t,r,s);m=e(".nivo-slice:first",t);m.css({width:t.width()+"px"});m.animate({opacity:"1.0"},r.animSpeed*2,"",function(){t.trigger("nivo:animFinished")})}else if(o==="slideInRight"){h(t,r,s);m=e(".nivo-slice:first",t);m.css({width:"0px",opacity:"1"});m.animate({width:t.width()+"px"},r.animSpeed*2,"",function(){t.trigger("nivo:animFinished")})}else if(o==="slideInLeft"){h(t,r,s);m=e(".nivo-slice:first",t);m.css({width:"0px",opacity:"1",left:"",right:"0px"});m.animate({width:t.width()+"px"},r.animSpeed*2,"",function(){m.css({left:"0px",right:""});t.trigger("nivo:animFinished")})}else if(o==="boxRandom"){p(t,r,s);g=r.boxCols*r.boxRows;c=0;l=0;y=v(e(".nivo-box",t));y.each(function(){var n=e(this);if(c===g-1){setTimeout(function(){n.animate({opacity:"1"},r.animSpeed,"",function(){t.trigger("nivo:animFinished")})},100+l)}else{setTimeout(function(){n.animate({opacity:"1"},r.animSpeed)},100+l)}l+=20;c++})}else if(o==="boxRain"||o==="boxRainReverse"||o==="boxRainGrow"||o==="boxRainGrowReverse"){p(t,r,s);g=r.boxCols*r.boxRows;c=0;l=0;var w=0;var E=0;var S=[];S[w]=[];y=e(".nivo-box",t);if(o==="boxRainReverse"||o==="boxRainGrowReverse"){y=e(".nivo-box",t)._reverse()}y.each(function(){S[w][E]=e(this);E++;if(E===r.boxCols){w++;E=0;S[w]=[]}});for(var x=0;x<r.boxCols*2;x++){var T=x;for(var N=0;N<r.boxRows;N++){if(T>=0&&T<r.boxCols){(function(n,i,s,u,a){var f=e(S[n][i]);var l=f.width();var c=f.height();if(o==="boxRainGrow"||o==="boxRainGrowReverse"){f.width(0).height(0)}if(u===a-1){setTimeout(function(){f.animate({opacity:"1",width:l,height:c},r.animSpeed/1.3,"",function(){t.trigger("nivo:animFinished")})},100+s)}else{setTimeout(function(){f.animate({opacity:"1",width:l,height:c},r.animSpeed/1.3)},100+s)}})(N,T,l,c,g);c++}T--}l+=100}}};var v=function(e){for(var t,n,r=e.length;r;t=parseInt(Math.random()*r,10),n=e[--r],e[r]=e[t],e[t]=n);return e};var m=function(e){if(this.console&&typeof console.log!=="undefined"){console.log(e)}};this.stop=function(){if(!e(t).data("nivo:vars").stop){e(t).data("nivo:vars").stop=true;m("Stop Slider")}};this.start=function(){if(e(t).data("nivo:vars").stop){e(t).data("nivo:vars").stop=false;m("Start Slider")}};r.afterLoad.call(this);return this};e.fn.nivoSlider=function(n){return this.each(function(r,i){var s=e(this);if(s.data("nivoslider")){return s.data("nivoslider")}var o=new t(this,n);s.data("nivoslider",o)})};e.fn.nivoSlider.defaults={effect:"random",slices:15,boxCols:8,boxRows:4,animSpeed:500,pauseTime:3e3,startSlide:0,directionNav:true,controlNav:true,controlNavThumbs:false,pauseOnHover:true,manualAdvance:false,prevText:"Prev",nextText:"Next",randomStart:false,beforeChange:function(){},afterChange:function(){},slideshowEnd:function(){},lastSlide:function(){},afterLoad:function(){}};e.fn._reverse=[].reverse})(jQuery)
\ No newline at end of file
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra 2.1\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2013-11-15 12:18+0200\n"\r
+"PO-Revision-Date: 2013-11-15 12:18+0200\n"\r
+"Last-Translator: Kay <contact@htx.ro>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Generator: Poedit 1.5.5\n"\r
+"X-Poedit-KeywordsList: __;_e;_x\n"\r
+"X-Poedit-Basepath: ../\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr ""\r
+\r
+#: 404.php:19\r
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."\r
+msgstr ""\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr ""\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr ""\r
+\r
+#: archive.php:29\r
+msgid "F Y"\r
+msgstr ""\r
+\r
+#: archive.php:31\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr ""\r
+\r
+#: archive.php:31\r
+msgid "Y"\r
+msgstr ""\r
+\r
+#: archive.php:33\r
+msgid "Blog Archives"\r
+msgstr ""\r
+\r
+#: archive.php:59\r
+#: author.php:75\r
+#: category.php:51\r
+#: content-frontpage.php:26\r
+msgid "Nothing Found"\r
+msgstr ""\r
+\r
+#: archive.php:63\r
+#: author.php:79\r
+#: category.php:55\r
+#: content-frontpage.php:30\r
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."\r
+msgstr ""\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr ""\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr ""\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr ""\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr ""\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr ""\r
+\r
+#: attachment.php:60\r
+#: attachment.php:107\r
+#: content-aside.php:48\r
+#: content-chat.php:49\r
+#: content-gallery.php:75\r
+#: content-image.php:42\r
+#: content-link.php:49\r
+#: content-page.php:22\r
+#: content-quote.php:46\r
+#: content-status.php:48\r
+#: content.php:76\r
+msgid "Edit"\r
+msgstr ""\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr ""\r
+\r
+#: attachment.php:101\r
+#: content-aside.php:39\r
+#: content-chat.php:38\r
+#: content-gallery.php:65\r
+#: content-image.php:33\r
+#: content-link.php:38\r
+#: content-page.php:21\r
+#: content-quote.php:36\r
+#: content-status.php:39\r
+#: content.php:49\r
+#: content.php:65\r
+msgid "Pages:"\r
+msgstr ""\r
+\r
+#: author.php:29\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr ""\r
+\r
+#: author.php:50\r
+#, php-format\r
+msgid "About %s"\r
+msgstr ""\r
+\r
+#: category.php:20\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr ""\r
+\r
+#: comments.php:18\r
+msgid "This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+\r
+#: content-aside.php:20\r
+msgid "Aside"\r
+msgstr ""\r
+\r
+#: content-aside.php:38\r
+#: content-chat.php:37\r
+#: content-image.php:32\r
+#: content-link.php:37\r
+#: content-quote.php:35\r
+#: content-status.php:38\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr ""\r
+\r
+#: content-aside.php:46\r
+#: content-chat.php:45\r
+#: content-gallery.php:72\r
+#: content-image.php:39\r
+#: content-link.php:45\r
+#: content-quote.php:43\r
+#: content-status.php:46\r
+#: content.php:74\r
+msgid "Tagged"\r
+msgstr ""\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr ""\r
+\r
+#: content-gallery.php:23\r
+msgid "Gallery"\r
+msgstr ""\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr ""\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr ""\r
+\r
+#: content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr ""\r
+\r
+#: content-quote.php:18\r
+msgid "Quote"\r
+msgstr ""\r
+\r
+#: content-status.php:30\r
+msgid "Status"\r
+msgstr ""\r
+\r
+#: search.php:20\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr ""\r
+\r
+#: search.php:39\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr ""\r
+\r
+#: searchform.php:1\r
+msgid "Search"\r
+msgstr ""\r
+\r
+#: sidebar.php:26\r
+#: sidebar.php:92\r
+msgid "Sidebar 1"\r
+msgstr ""\r
+\r
+#: sidebar.php:28\r
+#: sidebar.php:94\r
+#, php-format\r
+msgid "You currently have no widgets set in the primary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."\r
+msgstr ""\r
+\r
+#: sidebar.php:29\r
+#: sidebar.php:61\r
+#: sidebar.php:95\r
+#: sidebar.php:128\r
+#, php-format\r
+msgid "To hide this sidebar, switch to a different Layout via the <a href=\"%s\">Theme Settings</a>."\r
+msgstr ""\r
+\r
+#: sidebar.php:58\r
+#: sidebar.php:125\r
+msgid "Sidebar 2"\r
+msgstr ""\r
+\r
+#: sidebar.php:60\r
+#: sidebar.php:127\r
+#, php-format\r
+msgid "You currently have no widgets set in the secondary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."\r
+msgstr ""\r
+\r
+#: single.php:46\r
+msgid "View all posts by "\r
+msgstr ""\r
+\r
+#: tag.php:21\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:62\r
+msgid "Before you can upload your import file, you will need to fix the following error:"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:72\r
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:155\r
+#: admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:156\r
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:168\r
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:177\r
+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."\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr ""\r
+\r
+#: admin/main.php:105\r
+msgid "Layout Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:106\r
+msgid "Header Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:107\r
+msgid "Presentation Page"\r
+msgstr ""\r
+\r
+#: admin/main.php:108\r
+msgid "Text Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:109\r
+msgid "Color Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:110\r
+msgid "Graphics Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:111\r
+msgid "Post Information Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:112\r
+msgid "Post Excerpt Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:113\r
+msgid "Featured Image Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:114\r
+msgid "Social Media Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:115\r
+msgid "Miscellaneous Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:118\r
+msgid "Main Layout"\r
+msgstr ""\r
+\r
+#: admin/main.php:119\r
+msgid "Content / Sidebar Width"\r
+msgstr ""\r
+\r
+#: admin/main.php:120\r
+msgid "Responsiveness"\r
+msgstr ""\r
+\r
+#: admin/main.php:123\r
+msgid "Enable Presentation Page"\r
+msgstr ""\r
+\r
+#: admin/main.php:124\r
+msgid "Show Posts on Presentation Page"\r
+msgstr ""\r
+\r
+#: admin/main.php:125\r
+msgid "Slider Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:126\r
+msgid "Slides"\r
+msgstr ""\r
+\r
+#: admin/main.php:127\r
+msgid "Presentation Page Columns"\r
+msgstr ""\r
+\r
+#: admin/main.php:128\r
+msgid "Extras"\r
+msgstr ""\r
+\r
+#: admin/main.php:131\r
+msgid "Header Height"\r
+msgstr ""\r
+\r
+#: admin/main.php:132\r
+msgid "Header Image"\r
+msgstr ""\r
+\r
+#: admin/main.php:133\r
+msgid "Site Header"\r
+msgstr ""\r
+\r
+#: admin/main.php:134\r
+msgid "Custom Logo Upload"\r
+msgstr ""\r
+\r
+#: admin/main.php:135\r
+msgid "Header Spacing"\r
+msgstr ""\r
+\r
+#: admin/main.php:136\r
+msgid "Rounded Menu Corners"\r
+msgstr ""\r
+\r
+#: admin/main.php:137\r
+msgid "FavIcon Upload"\r
+msgstr ""\r
+\r
+#: admin/main.php:139\r
+msgid "General Font"\r
+msgstr ""\r
+\r
+#: admin/main.php:140\r
+msgid "General Font Size"\r
+msgstr ""\r
+\r
+#: admin/main.php:141\r
+msgid "Post Title Font "\r
+msgstr ""\r
+\r
+#: admin/main.php:142\r
+msgid "Post Title Font Size"\r
+msgstr ""\r
+\r
+#: admin/main.php:143\r
+msgid "Sidebar Font"\r
+msgstr ""\r
+\r
+#: admin/main.php:144\r
+msgid "SideBar Font Size"\r
+msgstr ""\r
+\r
+#: admin/main.php:145\r
+msgid "Headings Font"\r
+msgstr ""\r
+\r
+#: admin/main.php:146\r
+msgid "Force Text Align"\r
+msgstr ""\r
+\r
+#: admin/main.php:147\r
+msgid "Paragraph spacing"\r
+msgstr ""\r
+\r
+#: admin/main.php:148\r
+msgid "Paragraph indent"\r
+msgstr ""\r
+\r
+#: admin/main.php:149\r
+msgid "Header indent"\r
+msgstr ""\r
+\r
+#: admin/main.php:150\r
+msgid "Line Height"\r
+msgstr ""\r
+\r
+#: admin/main.php:151\r
+msgid "Word spacing"\r
+msgstr ""\r
+\r
+#: admin/main.php:152\r
+msgid "Letter spacing"\r
+msgstr ""\r
+\r
+#: admin/main.php:153\r
+msgid "Text shadow"\r
+msgstr ""\r
+\r
+#: admin/main.php:155\r
+msgid "Background Image"\r
+msgstr ""\r
+\r
+#: admin/main.php:156\r
+msgid "Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:157\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:158\r
+msgid "Content Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:159\r
+msgid "Menu Items Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:160\r
+msgid "First Sidebar Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:161\r
+msgid "Second Sidebar Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:163\r
+msgid "Site Title Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:164\r
+msgid "Site Description Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:166\r
+msgid "Content Text Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:167\r
+msgid "Links Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:168\r
+msgid "Links Hover Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:169\r
+msgid "Post Title Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:170\r
+msgid "Post Title Hover Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:171\r
+msgid "Sidebar Header Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:172\r
+msgid "Sidebar Header Text Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:173\r
+msgid "Footer Widget Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:174\r
+msgid "Footer Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:175\r
+msgid "Footer Widget Header Text Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:176\r
+msgid "Footer Widget Link Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:177\r
+msgid "Footer Widget Hover Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:179\r
+msgid "Breadcrumbs"\r
+msgstr ""\r
+\r
+#: admin/main.php:180\r
+msgid "Pagination"\r
+msgstr ""\r
+\r
+#: admin/main.php:181\r
+msgid "Main Menu Alignment"\r
+msgstr ""\r
+\r
+#: admin/main.php:182\r
+msgid "Post Images Border"\r
+msgstr ""\r
+\r
+#: admin/main.php:183\r
+msgid "Caption Border"\r
+msgstr ""\r
+\r
+#: admin/main.php:184\r
+msgid "Caption Pin"\r
+msgstr ""\r
+\r
+#: admin/main.php:185\r
+msgid "Sidebar Menu Bullets"\r
+msgstr ""\r
+\r
+#: admin/main.php:186\r
+msgid "Meta Area Background"\r
+msgstr ""\r
+\r
+#: admin/main.php:187\r
+msgid "Post Separator"\r
+msgstr ""\r
+\r
+#: admin/main.php:188\r
+msgid "Content List Bullets"\r
+msgstr ""\r
+\r
+#: admin/main.php:189\r
+msgid "Page Titles"\r
+msgstr ""\r
+\r
+#: admin/main.php:190\r
+msgid "Category Page Titles"\r
+msgstr ""\r
+\r
+#: admin/main.php:191\r
+msgid "Hide Tables"\r
+msgstr ""\r
+\r
+#: admin/main.php:192\r
+msgid "Back to Top button"\r
+msgstr ""\r
+\r
+#: admin/main.php:193\r
+msgid "Text Under Comments"\r
+msgstr ""\r
+\r
+#: admin/main.php:194\r
+msgid "Comments are closed text"\r
+msgstr ""\r
+\r
+#: admin/main.php:195\r
+msgid "Comments off"\r
+msgstr ""\r
+\r
+#: admin/main.php:197\r
+msgid "Post Comments Link"\r
+msgstr ""\r
+\r
+#: admin/main.php:198\r
+msgid "Post Date"\r
+msgstr ""\r
+\r
+#: admin/main.php:199\r
+msgid "Post Time"\r
+msgstr ""\r
+\r
+#: admin/main.php:200\r
+#: admin/settings.php:2087\r
+msgid "Post Author"\r
+msgstr ""\r
+\r
+#: admin/main.php:201\r
+msgid "Post Category"\r
+msgstr ""\r
+\r
+#: admin/main.php:202\r
+msgid "Meta Bar"\r
+msgstr ""\r
+\r
+#: admin/main.php:203\r
+msgid "Post Tags"\r
+msgstr ""\r
+\r
+#: admin/main.php:204\r
+msgid "Post Permalink"\r
+msgstr ""\r
+\r
+#: admin/main.php:206\r
+msgid "Post Excerpts on Home Page"\r
+msgstr ""\r
+\r
+#: admin/main.php:207\r
+msgid "Affect Sticky Posts"\r
+msgstr ""\r
+\r
+#: admin/main.php:208\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr ""\r
+\r
+#: admin/main.php:209\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr ""\r
+\r
+#: admin/main.php:210\r
+msgid "Magazine Layout"\r
+msgstr ""\r
+\r
+#: admin/main.php:211\r
+msgid "Excerpt suffix"\r
+msgstr ""\r
+\r
+#: admin/main.php:212\r
+msgid "Continue reading link text "\r
+msgstr ""\r
+\r
+#: admin/main.php:213\r
+msgid "HTML tags in Excerpts"\r
+msgstr ""\r
+\r
+#: admin/main.php:215\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr ""\r
+\r
+#: admin/main.php:216\r
+msgid "Auto Select Images From Posts "\r
+msgstr ""\r
+\r
+#: admin/main.php:217\r
+msgid "Thumbnails Alignment "\r
+msgstr ""\r
+\r
+#: admin/main.php:218\r
+msgid "Thumbnails Size "\r
+msgstr ""\r
+\r
+#: admin/main.php:219\r
+msgid "Featured Images as HEADER Images "\r
+msgstr ""\r
+\r
+#: admin/main.php:221\r
+msgid "Link nr. 1"\r
+msgstr ""\r
+\r
+#: admin/main.php:222\r
+msgid "Link nr. 2"\r
+msgstr ""\r
+\r
+#: admin/main.php:223\r
+msgid "Link nr. 3"\r
+msgstr ""\r
+\r
+#: admin/main.php:224\r
+msgid "Link nr. 4"\r
+msgstr ""\r
+\r
+#: admin/main.php:225\r
+msgid "Link nr. 5"\r
+msgstr ""\r
+\r
+#: admin/main.php:226\r
+msgid "Socials display"\r
+msgstr ""\r
+\r
+#: admin/main.php:228\r
+msgid "SEO Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:229\r
+msgid "Custom Footer Text"\r
+msgstr ""\r
+\r
+#: admin/main.php:230\r
+msgid "Custom CSS"\r
+msgstr ""\r
+\r
+#: admin/main.php:231\r
+msgid "Custom JavaScript"\r
+msgstr ""\r
+\r
+#: admin/main.php:248\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr ""\r
+\r
+#: admin/main.php:268\r
+msgid "Mantra settings updated successfully."\r
+msgstr ""\r
+\r
+#: admin/main.php:280\r
+msgid "Save Changes"\r
+msgstr ""\r
+\r
+#: admin/main.php:281\r
+msgid "Reset to Defaults"\r
+msgstr ""\r
+\r
+#: admin/main.php:313\r
+msgid "Import/Export Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:319\r
+msgid "Export Theme options"\r
+msgstr ""\r
+\r
+#: admin/main.php:320\r
+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!"\r
+msgstr ""\r
+\r
+#: admin/main.php:325\r
+msgid "Import Theme options"\r
+msgstr ""\r
+\r
+#: admin/main.php:326\r
+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."\r
+msgstr ""\r
+\r
+#: admin/main.php:334\r
+msgid "Mantra Latest News"\r
+msgstr ""\r
+\r
+#: admin/main.php:345\r
+msgid "No news items."\r
+msgstr ""\r
+\r
+#: admin/main.php:349\r
+msgid "Posted on"\r
+msgstr ""\r
+\r
+#: admin/settings.php:66\r
+msgid "One column (no sidebars)"\r
+msgstr ""\r
+\r
+#: admin/settings.php:67\r
+msgid "Two columns, sidebar on the right"\r
+msgstr ""\r
+\r
+#: admin/settings.php:68\r
+msgid "Two columns, sidebar on the left"\r
+msgstr ""\r
+\r
+#: admin/settings.php:69\r
+msgid "Three columns, sidebars on the right"\r
+msgstr ""\r
+\r
+#: admin/settings.php:70\r
+msgid "Three columns, sidebars on the left"\r
+msgstr ""\r
+\r
+#: admin/settings.php:71\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr ""\r
+\r
+#: admin/settings.php:86\r
+msgid ""\r
+"Choose your layout. Possible options are: <br> No sidebar, a single sidebar on either left of right, two sidebars on either left or\n"\r
+"\t\tright and two sidebars on each side."\r
+msgstr ""\r
+\r
+#: admin/settings.php:95\r
+msgid "Absolute"\r
+msgstr ""\r
+\r
+#: admin/settings.php:95\r
+msgid "Relative *DEPRECATED"\r
+msgstr ""\r
+\r
+#: admin/settings.php:96\r
+msgid "Dimensions to use: "\r
+msgstr ""\r
+\r
+#: admin/settings.php:178\r
+#: admin/settings.php:198\r
+msgid "Content ="\r
+msgstr ""\r
+\r
+#: admin/settings.php:179\r
+#: admin/settings.php:199\r
+msgid "Sidebar(s) ="\r
+msgstr ""\r
+\r
+#: admin/settings.php:180\r
+#: admin/settings.php:200\r
+msgid "Total width ="\r
+msgstr ""\r
+\r
+#: admin/settings.php:189\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+\r
+#: admin/settings.php:209\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+\r
+#: admin/settings.php:223\r
+#: admin/settings.php:246\r
+#: admin/settings.php:262\r
+#: admin/settings.php:731\r
+#: admin/settings.php:1094\r
+#: admin/settings.php:1156\r
+#: admin/settings.php:1344\r
+#: admin/settings.php:1359\r
+#: admin/settings.php:1530\r
+#: admin/settings.php:1592\r
+#: admin/settings.php:1793\r
+#: admin/settings.php:1822\r
+#: admin/settings.php:1845\r
+#: admin/settings.php:1868\r
+#: admin/settings.php:1917\r
+#: admin/settings.php:2053\r
+msgid "Enable"\r
+msgstr ""\r
+\r
+#: admin/settings.php:223\r
+#: admin/settings.php:246\r
+#: admin/settings.php:262\r
+#: admin/settings.php:731\r
+#: admin/settings.php:1094\r
+#: admin/settings.php:1156\r
+#: admin/settings.php:1344\r
+#: admin/settings.php:1359\r
+#: admin/settings.php:1530\r
+#: admin/settings.php:1592\r
+#: admin/settings.php:1793\r
+#: admin/settings.php:1822\r
+#: admin/settings.php:1845\r
+#: admin/settings.php:1868\r
+#: admin/settings.php:1917\r
+#: admin/settings.php:2053\r
+msgid "Disable"\r
+msgstr ""\r
+\r
+#: admin/settings.php:232\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:254\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page. It has a slider and columns for presentation\n"\r
+"\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 » Reading </a> and make sure you have selected <strong>Front Page Displays</strong> as <Strong>Your Latest Posts</strong>."\r
+msgstr ""\r
+\r
+#: admin/settings.php:271\r
+msgid "posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:272\r
+msgid "Enable to display latest posts on the presentation page, below the columns. Sticky posts are always displayed and not counted."\r
+msgstr ""\r
+\r
+#: admin/settings.php:280\r
+msgid "Slider Dimensions:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:281\r
+msgid "width"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "height"\r
+msgstr ""\r
+\r
+#: admin/settings.php:283\r
+msgid "The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+\r
+#: admin/settings.php:285\r
+msgid "Animation:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "Random"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "Fold"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "Fade"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "SlideInRight"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "SlideInLeft"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "SliceDown"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "SliceDownLeft"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "SliceUp"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "SliceUpLeft"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "SliceUpDown"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "SliceUpDownLeft"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "BoxRandom"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "BoxRain"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "BoxRainReverse"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "BoxRainGrow"\r
+msgstr ""\r
+\r
+#: admin/settings.php:287\r
+msgid "BoxRainGrowReverse"\r
+msgstr ""\r
+\r
+#: admin/settings.php:295\r
+msgid "The transition effect your slider will have."\r
+msgstr ""\r
+\r
+#: admin/settings.php:297\r
+msgid "Border Settings:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:298\r
+msgid "Width"\r
+msgstr ""\r
+\r
+#: admin/settings.php:299\r
+msgid "Color"\r
+msgstr ""\r
+\r
+#: admin/settings.php:301\r
+msgid "The width and color of the slider's border."\r
+msgstr ""\r
+\r
+#: admin/settings.php:303\r
+msgid "Animation Time:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:304\r
+#: admin/settings.php:308\r
+msgid "milliseconds"\r
+msgstr ""\r
+\r
+#: admin/settings.php:305\r
+msgid "The time in which the transition animation will take place."\r
+msgstr ""\r
+\r
+#: admin/settings.php:307\r
+msgid "Pause Time:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:309\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr ""\r
+\r
+#: admin/settings.php:312\r
+msgid "Slider navigation:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:314\r
+msgid "Numbers"\r
+msgstr ""\r
+\r
+#: admin/settings.php:314\r
+msgid "Bullets"\r
+msgstr ""\r
+\r
+#: admin/settings.php:314\r
+#: admin/settings.php:1451\r
+msgid "None"\r
+msgstr ""\r
+\r
+#: admin/settings.php:322\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:324\r
+msgid "Slider arrows:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:326\r
+msgid "Always Visible"\r
+msgstr ""\r
+\r
+#: admin/settings.php:326\r
+msgid "Visible on Hover"\r
+msgstr ""\r
+\r
+#: admin/settings.php:326\r
+msgid "Hidden"\r
+msgstr ""\r
+\r
+#: admin/settings.php:334\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr ""\r
+\r
+#: admin/settings.php:375\r
+#: admin/settings.php:444\r
+msgid "Select Category"\r
+msgstr ""\r
+\r
+#: admin/settings.php:402\r
+msgid "Custom Slides"\r
+msgstr ""\r
+\r
+#: admin/settings.php:402\r
+msgid "Latest Posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:402\r
+msgid "Random Posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:402\r
+msgid "Sticky Posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:402\r
+msgid "Latest Posts from Category"\r
+msgstr ""\r
+\r
+#: admin/settings.php:402\r
+msgid "Random Posts from Category"\r
+msgstr ""\r
+\r
+#: admin/settings.php:402\r
+msgid "Specific Posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:403\r
+msgid "Select the content you want to load in your slides:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:411\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:416\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:420\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:424\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:429\r
+msgid "Random posts from the category you choose will be loaded into the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:433\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:437\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr ""\r
+\r
+#: admin/settings.php:442\r
+msgid "<br> Choose the cateogry: "\r
+msgstr ""\r
+\r
+#: admin/settings.php:459\r
+msgid "Number of posts to show:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:466\r
+msgid "Slide 1"\r
+msgstr ""\r
+\r
+#: admin/settings.php:470\r
+#: admin/settings.php:485\r
+#: admin/settings.php:500\r
+#: admin/settings.php:515\r
+#: admin/settings.php:530\r
+#: admin/settings.php:572\r
+#: admin/settings.php:587\r
+#: admin/settings.php:602\r
+#: admin/settings.php:617\r
+#: admin/settings.php:766\r
+#: admin/settings.php:789\r
+msgid "Select / Upload Image"\r
+msgstr ""\r
+\r
+#: admin/settings.php:471\r
+#: admin/settings.php:486\r
+#: admin/settings.php:501\r
+#: admin/settings.php:516\r
+#: admin/settings.php:531\r
+#: admin/settings.php:573\r
+#: admin/settings.php:588\r
+#: admin/settings.php:618\r
+msgid "Title"\r
+msgstr ""\r
+\r
+#: admin/settings.php:473\r
+#: admin/settings.php:488\r
+#: admin/settings.php:503\r
+#: admin/settings.php:518\r
+#: admin/settings.php:533\r
+#: admin/settings.php:575\r
+#: admin/settings.php:590\r
+#: admin/settings.php:605\r
+#: admin/settings.php:620\r
+msgid "Text"\r
+msgstr ""\r
+\r
+#: admin/settings.php:481\r
+msgid "Slide 2"\r
+msgstr ""\r
+\r
+#: admin/settings.php:496\r
+msgid "Slide 3"\r
+msgstr ""\r
+\r
+#: admin/settings.php:511\r
+msgid "Slide 4"\r
+msgstr ""\r
+\r
+#: admin/settings.php:526\r
+msgid "Slide 5"\r
+msgstr ""\r
+\r
+#: admin/settings.php:548\r
+msgid "Number of columns:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:558\r
+msgid "Image Height:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:561\r
+msgid "Read more text:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:564\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:568\r
+msgid "1st Column"\r
+msgstr ""\r
+\r
+#: admin/settings.php:583\r
+msgid "2nd Column"\r
+msgstr ""\r
+\r
+#: admin/settings.php:598\r
+msgid "3rd Column"\r
+msgstr ""\r
+\r
+#: admin/settings.php:613\r
+msgid "4th Column"\r
+msgstr ""\r
+\r
+#: admin/settings.php:635\r
+msgid "Extra Text"\r
+msgstr ""\r
+\r
+#: admin/settings.php:637\r
+msgid ""\r
+"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"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:640\r
+msgid "Top Title"\r
+msgstr ""\r
+\r
+#: admin/settings.php:641\r
+msgid "Second Title"\r
+msgstr ""\r
+\r
+#: admin/settings.php:644\r
+msgid "Title color"\r
+msgstr ""\r
+\r
+#: admin/settings.php:648\r
+msgid "Bottom Text 1"\r
+msgstr ""\r
+\r
+#: admin/settings.php:650\r
+msgid "Bottom Text 2"\r
+msgstr ""\r
+\r
+#: admin/settings.php:658\r
+msgid "Hide areas"\r
+msgstr ""\r
+\r
+#: admin/settings.php:660\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr ""\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the header area (image or background color)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:676\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:680\r
+msgid "Hide the footer widgets. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:684\r
+msgid "Hide the footer (copyright area)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:688\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr ""\r
+\r
+#: admin/settings.php:708\r
+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 = "\r
+msgstr ""\r
+\r
+#: admin/settings.php:715\r
+msgid "Define header image"\r
+msgstr ""\r
+\r
+#: admin/settings.php:716\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:739\r
+msgid "Enable or disable the round corners for the main menu items."\r
+msgstr ""\r
+\r
+#: admin/settings.php:747\r
+msgid "Site Title and Description"\r
+msgstr ""\r
+\r
+#: admin/settings.php:747\r
+msgid "Custom Logo"\r
+msgstr ""\r
+\r
+#: admin/settings.php:747\r
+msgid "Clickable header image"\r
+msgstr ""\r
+\r
+#: admin/settings.php:747\r
+msgid "Empty"\r
+msgstr ""\r
+\r
+#: admin/settings.php:755\r
+msgid "Choose what to display inside your header area."\r
+msgstr ""\r
+\r
+#: admin/settings.php:765\r
+msgid "Custom Logo upload. The logo will appear over the heder image if you have used one."\r
+msgstr ""\r
+\r
+#: admin/settings.php:774\r
+msgid "top"\r
+msgstr ""\r
+\r
+#: admin/settings.php:775\r
+msgid "left"\r
+msgstr ""\r
+\r
+#: admin/settings.php:778\r
+msgid "Select the top spacing for the header. Use it to better position your site title and description or custom logo inside the header. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:788\r
+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>"\r
+msgstr ""\r
+\r
+#: admin/settings.php:811\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:855\r
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "\r
+msgstr ""\r
+\r
+#: admin/settings.php:857\r
+#: admin/settings.php:907\r
+#: admin/settings.php:958\r
+#: admin/settings.php:1010\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:904\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:956\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1007\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1019\r
+#: admin/settings.php:1034\r
+#: admin/settings.php:1049\r
+#: admin/settings.php:1109\r
+#: admin/settings.php:1124\r
+#: admin/settings.php:1139\r
+msgid "Default"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1027\r
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1042\r
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1049\r
+#: admin/settings.php:1373\r
+#: admin/settings.php:1884\r
+msgid "Left"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1049\r
+#: admin/settings.php:1373\r
+#: admin/settings.php:1884\r
+msgid "Right"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1049\r
+msgid "Justify"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1049\r
+#: admin/settings.php:1373\r
+#: admin/settings.php:1884\r
+msgid "Center"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1057\r
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1071\r
+msgid "Choose the spacing between paragraphs."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1086\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1102\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1117\r
+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)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1132\r
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1147\r
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1164\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1172\r
+msgid "Define background image"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1181\r
+msgid "Background color (Default value is 444444)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1189\r
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1196\r
+msgid "Content background color (Default value is FFFFFF). Works best with really light colors."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1203\r
+msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1210\r
+msgid "First sidebar background color (Default is no color for a transparent sidebar)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1217\r
+msgid "Second sidebar background color (Default is no color for a transparent sidebar)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1225\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1233\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1241\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1249\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1257\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1265\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1273\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1281\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1289\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1297\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1306\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1314\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1322\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1330\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1352\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1367\r
+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. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1381\r
+msgid "Select the desired main menu items alignment. Center option is only valid for single line menus."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1388\r
+#: admin/settings.php:1451\r
+msgid "White"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1388\r
+msgid "Light"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1388\r
+msgid "Light Gray"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1388\r
+#: admin/settings.php:1451\r
+msgid "Gray"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1388\r
+msgid "Dark Gray"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1388\r
+msgid "Black"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1396\r
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1412\r
+msgid "The border around your inserted images. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1427\r
+msgid "The image on top of your captions. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1442\r
+msgid "The sidebar list bullets. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1459\r
+msgid "The background for your post-metas area (under your post tiltes). Gray by default."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1467\r
+#: admin/settings.php:1483\r
+#: admin/settings.php:1500\r
+#: admin/settings.php:1515\r
+#: admin/settings.php:1545\r
+#: admin/settings.php:1560\r
+#: admin/settings.php:1576\r
+#: admin/settings.php:1612\r
+#: admin/settings.php:1627\r
+#: admin/settings.php:1642\r
+#: admin/settings.php:1657\r
+#: admin/settings.php:1672\r
+#: admin/settings.php:1687\r
+#: admin/settings.php:1702\r
+#: admin/settings.php:1717\r
+msgid "Show"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1467\r
+#: admin/settings.php:1483\r
+#: admin/settings.php:1500\r
+#: admin/settings.php:1515\r
+#: admin/settings.php:1545\r
+#: admin/settings.php:1576\r
+#: admin/settings.php:1612\r
+#: admin/settings.php:1627\r
+#: admin/settings.php:1642\r
+#: admin/settings.php:1657\r
+#: admin/settings.php:1672\r
+#: admin/settings.php:1687\r
+#: admin/settings.php:1702\r
+#: admin/settings.php:1717\r
+msgid "Hide"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1475\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1491\r
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1508\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1523\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1538\r
+msgid "Hide table borders and background color."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1553\r
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1560\r
+msgid "Hide in posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1560\r
+msgid "Hide in pages"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1560\r
+msgid "Hide everywhere"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1568\r
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1584\r
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1600\r
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1620\r
+msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1635\r
+msgid "Hide or show the post date."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1650\r
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1665\r
+msgid "Hide or show the post author."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1680\r
+msgid "Hide the post category."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1695\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1710\r
+msgid "Hide the meta bar. All meta info in it will be hidden."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1725\r
+msgid "Hide the post tags."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1738\r
+#: admin/settings.php:1753\r
+#: admin/settings.php:1769\r
+msgid "Excerpt"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1738\r
+#: admin/settings.php:1753\r
+#: admin/settings.php:1769\r
+msgid "Full Post"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1746\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1761\r
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1777\r
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1785\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1801\r
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1808\r
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1815\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1830\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr ""\r
+\r
+#: admin/settings.php:1861\r
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1876\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1892\r
+msgid "Thumbnail alignment."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1909\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1925\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1941\r
+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> )"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1942\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1943\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1944\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1945\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:2020\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2033\r
+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 © ."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2041\r
+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 <style> tags are not needed."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2048\r
+msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software).<br> The <script> tags are not needed."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2061\r
+msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2062\r
+msgid "All title tags are handled automatically by Mantra."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2065\r
+msgid "Homepage Meta Description"\r
+msgstr ""\r
+\r
+#: admin/settings.php:2067\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2073\r
+msgid "Auto"\r
+msgstr ""\r
+\r
+#: admin/settings.php:2073\r
+msgid "Manual"\r
+msgstr ""\r
+\r
+#: admin/settings.php:2081\r
+msgid ""\r
+"<u>Auto</u> - Mantra will automatically add post expcerpts to 'page' and 'post'\tmeta descriptions.<br>\n"\r
+"\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"\r
+"\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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2090\r
+msgid "Do not use"\r
+msgstr ""\r
+\r
+#: admin/settings.php:2100\r
+msgid "If you want to show an author in the meta tags."\r
+msgstr ""\r
+\r
+#: includes/theme-comments.php:28\r
+msgid "says:"\r
+msgstr ""\r
+\r
+#: includes/theme-comments.php:34\r
+msgid "Your comment is awaiting moderation."\r
+msgstr ""\r
+\r
+#: includes/theme-comments.php:41\r
+msgid "at"\r
+msgstr ""\r
+\r
+#: includes/theme-comments.php:41\r
+#: includes/theme-comments.php:58\r
+msgid "(Edit)"\r
+msgstr ""\r
+\r
+#: includes/theme-comments.php:58\r
+msgid "Pingback: "\r
+msgstr ""\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "Leave a comment"\r
+msgstr ""\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>1</b> Comment"\r
+msgstr ""\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>%</b> Comments"\r
+msgstr ""\r
+\r
+#: includes/theme-comments.php:107\r
+msgid "Older Comments"\r
+msgstr ""\r
+\r
+#: includes/theme-comments.php:108\r
+msgid "Newer Comments"\r
+msgstr ""\r
+\r
+#: includes/theme-functions.php:58\r
+msgid "Menu"\r
+msgstr ""\r
+\r
+#: includes/theme-functions.php:269\r
+msgid "Home Page"\r
+msgstr ""\r
+\r
+#: includes/theme-functions.php:332\r
+msgid "Powered by"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:166\r
+msgid "By "\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:206\r
+msgid " Bookmark the "\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:206\r
+#: includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+msgid "Permalink to"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:206\r
+#: includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+msgid "permalink"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+msgid "Bookmark the "\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:232\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:233\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr ""\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:90\r
+msgid "Primary Navigation"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Top Navigation"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Footer Navigation"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:128\r
+msgid "mantra"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:187\r
+msgid "Skip to content"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:214\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:216\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:225\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:227\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:236\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:238\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:247\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:249\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:258\r
+msgid "First Footer Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:260\r
+msgid "First footer widget area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:269\r
+msgid "Second Footer Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:271\r
+msgid "Second footer widget area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:280\r
+msgid "Third Footer Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:282\r
+msgid "The third footer widget area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:291\r
+msgid "Fourth Footer Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:293\r
+msgid "The fourth footer widget area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:302\r
+#: includes/theme-setup.php:304\r
+msgid "Above content Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:313\r
+#: includes/theme-setup.php:315\r
+msgid "Below Content Widget Area"\r
+msgstr ""\r
+\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra v2.3.2\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2013-10-10 13:45+0200\n"\r
+"PO-Revision-Date: 2013-12-25 18:03:56+0000\n"\r
+"Last-Translator: Libor Schejbal <libor.schejbal@gmail.com>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n"\r
+"X-Generator: Poedit 1.5.4\n"\r
+"X-Poedit-Language: \n"\r
+"X-Poedit-Country: \n"\r
+"X-Poedit-SourceCharset: utf-8\n"\r
+"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"\r
+"X-Poedit-Basepath: ../\n"\r
+"X-Poedit-Bookmarks: \n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+"X-Textdomain-Support: yes"\r
+\r
+#: 404.php:17\r
+#@ mantra\r
+msgid "Not Found"\r
+msgstr "Nenalezeno"\r
+\r
+#: 404.php:19\r
+#@ mantra\r
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."\r
+msgstr "Omlouváme se, ale požadovaná stránka nebyla nalezena. Snad vám pomůže další hledání."\r
+\r
+#: archive.php:27\r
+#, php-format\r
+#@ mantra\r
+msgid "Daily Archives: %s"\r
+msgstr "Denní archivy: %s"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+#@ mantra\r
+msgid "Monthly Archives: %s"\r
+msgstr "Měsíční archivy: %s"\r
+\r
+#: archive.php:31\r
+#, php-format\r
+#@ mantra\r
+msgid "Yearly Archives: %s"\r
+msgstr "Roční archivy: %s"\r
+\r
+#: archive.php:33\r
+#@ mantra\r
+msgid "Blog Archives"\r
+msgstr "Archiv blogů"\r
+\r
+#: archive.php:59\r
+#: author.php:75\r
+#: category.php:51\r
+#: content-frontpage.php:26\r
+#: index.php:41\r
+#: search.php:41\r
+#: tag.php:52\r
+#: template-blog.php:36\r
+#@ mantra\r
+msgid "Nothing Found"\r
+msgstr "Nic nenalezeno"\r
+\r
+#: archive.php:63\r
+#: author.php:79\r
+#: category.php:55\r
+#: content-frontpage.php:30\r
+#: index.php:45\r
+#: tag.php:56\r
+#: template-blog.php:40\r
+#@ mantra\r
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."\r
+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."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+#@ mantra\r
+msgid "Return to %s"\r
+msgstr "Návrat do %s"\r
+\r
+#. translators: %s - title of parent post\r
+#: attachment.php:29\r
+#@ mantra\r
+msgid "By"\r
+msgstr "Autor"\r
+\r
+#: attachment.php:40\r
+#@ mantra\r
+msgid "Published"\r
+msgstr "Publikováno"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+#@ mantra\r
+msgid "Full size is %s pixels"\r
+msgstr "Plná velikost je %s pixelů"\r
+\r
+#: attachment.php:53\r
+#@ mantra\r
+msgid "Link to full-size image"\r
+msgstr "Odkaz na plnou velikost obrázku"\r
+\r
+#: attachment.php:60\r
+#: attachment.php:107\r
+#: content-aside.php:48\r
+#: content-chat.php:49\r
+#: content-gallery.php:75\r
+#: content-image.php:42\r
+#: content-link.php:49\r
+#: content-page.php:22\r
+#: content-quote.php:46\r
+#: content-status.php:48\r
+#: content.php:76\r
+#: single.php:55\r
+#: template-onecolumn.php:27\r
+#: template-page-with-intro.php:17\r
+#@ mantra\r
+msgid "Edit"\r
+msgstr "Editovat"\r
+\r
+#: attachment.php:100\r
+#@ mantra\r
+msgid "Continue reading"\r
+msgstr "Číst dále"\r
+\r
+#: attachment.php:101\r
+#: content-aside.php:39\r
+#: content-chat.php:38\r
+#: content-gallery.php:65\r
+#: content-image.php:33\r
+#: content-link.php:38\r
+#: content-page.php:21\r
+#: content-quote.php:36\r
+#: content-status.php:39\r
+#: content.php:49\r
+#: content.php:65\r
+#: single.php:33\r
+#: template-onecolumn.php:26\r
+#: template-page-with-intro.php:16\r
+#@ mantra\r
+msgid "Pages:"\r
+msgstr "Stránky:"\r
+\r
+#: author.php:29\r
+#, php-format\r
+#@ mantra\r
+msgid "Author Archives: %s"\r
+msgstr "Archiv autora: %s"\r
+\r
+#: author.php:50\r
+#: single.php:42\r
+#, php-format\r
+#@ mantra\r
+msgid "About %s"\r
+msgstr "O %s"\r
+\r
+#: category.php:20\r
+#, php-format\r
+#@ mantra\r
+msgid "Category Archives: %s"\r
+msgstr "Archiv rubriky: %s"\r
+\r
+#: comments.php:18\r
+#@ mantra\r
+msgid "This post is password protected. Enter the password to view any comments."\r
+msgstr "Tento příspěvek je chráněn heslem. Zadejte heslo pro jeho zobrazení."\r
+\r
+#: content-aside.php:20\r
+#@ mantra\r
+msgid "Aside"\r
+msgstr "Kromě"\r
+\r
+#: content-aside.php:38\r
+#: content-chat.php:37\r
+#: content-image.php:32\r
+#: content-link.php:37\r
+#: content-quote.php:35\r
+#: content-status.php:38\r
+#@ mantra\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Číst dále <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46\r
+#: content-chat.php:45\r
+#: content-gallery.php:72\r
+#: content-image.php:39\r
+#: content-link.php:45\r
+#: content-quote.php:43\r
+#: content-status.php:46\r
+#: content.php:74\r
+#: includes/theme-loop.php:206\r
+#@ mantra\r
+msgid "Tagged"\r
+msgstr "Štítky"\r
+\r
+#: content-chat.php:20\r
+#@ mantra\r
+msgid "Chat"\r
+msgstr "Chat"\r
+\r
+#: content-gallery.php:23\r
+#@ mantra\r
+msgid "Gallery"\r
+msgstr "Galerie"\r
+\r
+#: admin/settings.php:468\r
+#: admin/settings.php:483\r
+#: admin/settings.php:498\r
+#: admin/settings.php:513\r
+#: admin/settings.php:528\r
+#: admin/settings.php:570\r
+#: admin/settings.php:585\r
+#: admin/settings.php:600\r
+#: admin/settings.php:615\r
+#: content-image.php:19\r
+#@ mantra\r
+msgid "Image"\r
+msgstr "Obrázek"\r
+\r
+#: admin/settings.php:475\r
+#: admin/settings.php:490\r
+#: admin/settings.php:505\r
+#: admin/settings.php:520\r
+#: admin/settings.php:535\r
+#: admin/settings.php:577\r
+#: admin/settings.php:592\r
+#: admin/settings.php:607\r
+#: admin/settings.php:622\r
+#: content-link.php:20\r
+#@ mantra\r
+msgid "Link"\r
+msgstr "Odkaz"\r
+\r
+#: content-page.php:27\r
+#: includes/theme-comments.php:136\r
+#@ mantra\r
+msgid "Comments are closed."\r
+msgstr "Komentáře jsou uzavřeny"\r
+\r
+#: content-quote.php:18\r
+#@ mantra\r
+msgid "Quote"\r
+msgstr "Citát"\r
+\r
+#: content-status.php:30\r
+#@ mantra\r
+msgid "Status"\r
+msgstr "Stav"\r
+\r
+#: search.php:20\r
+#, php-format\r
+#@ mantra\r
+msgid "Search Results for: %s"\r
+msgstr "Výsledek hledání: %s"\r
+\r
+#: search.php:39\r
+#, php-format\r
+#@ mantra\r
+msgid "No search results for: %s"\r
+msgstr "Žádný výsledek vyhledávání pro: %s"\r
+\r
+#: searchform.php:1\r
+#@ mantra\r
+msgid "Search"\r
+msgstr "Hledat"\r
+\r
+#: sidebar.php:26\r
+#: sidebar.php:92\r
+#@ mantra\r
+msgid "Sidebar 1"\r
+msgstr "Sidebar 1"\r
+\r
+#: sidebar.php:28\r
+#: sidebar.php:94\r
+#, php-format\r
+#@ mantra\r
+msgid "You currently have no widgets set in the primary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."\r
+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>."\r
+\r
+#: sidebar.php:29\r
+#: sidebar.php:61\r
+#: sidebar.php:95\r
+#: sidebar.php:128\r
+#, php-format\r
+#@ mantra\r
+msgid "To hide this sidebar, switch to a different Layout via the <a href=\"%s\">Theme Settings</a>."\r
+msgstr "Chcete-li skrýt sidebar, přepněte do jiného rozložení ppomocí <a href=\"%s\"> Nastavení šablony </ a>."\r
+\r
+#: sidebar.php:58\r
+#: sidebar.php:125\r
+#@ mantra\r
+msgid "Sidebar 2"\r
+msgstr "Sidebar 2"\r
+\r
+#: sidebar.php:60\r
+#: sidebar.php:127\r
+#, php-format\r
+#@ mantra\r
+msgid "You currently have no widgets set in the secondary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."\r
+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>."\r
+\r
+#: single.php:46\r
+#@ mantra\r
+msgid "View all posts by "\r
+msgstr "Zobrazit všechny příspěvky od"\r
+\r
+#: tag.php:21\r
+#, php-format\r
+#@ mantra\r
+msgid "Tag Archives: %s"\r
+msgstr "Archiv štítků: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+#@ mantra\r
+msgid "Before you can upload your import file, you will need to fix the following error:"\r
+msgstr "Než budete moci nahrát importovaný soubor, musíte opravit následující chyby:"\r
+\r
+#: admin/admin-functions.php:70\r
+#@ mantra\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Import nastavení šablony Mantra"\r
+\r
+#: admin/admin-functions.php:72\r
+#@ mantra\r
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"\r
+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>"\r
+\r
+#: admin/admin-functions.php:74\r
+#@ mantra\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Vyberte soubor z počítače:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+#@ mantra\r
+msgid "Maximum size: %s"\r
+msgstr "Maximální velikost: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+#@ mantra\r
+msgid "And import!"\r
+msgstr "Importovat!"\r
+\r
+#: admin/admin-functions.php:148\r
+#@ mantra\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Import nastavení šablony Mantra"\r
+\r
+#: admin/admin-functions.php:151\r
+#@ mantra\r
+msgid "Great! The options have been imported!"\r
+msgstr "Skvělé! Nastavení bylo importováno!"\r
+\r
+#: admin/admin-functions.php:152\r
+#@ mantra\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Vraťte se na stránku nastavení šablony Mantra a zkontrolujte jej!"\r
+\r
+#: admin/admin-functions.php:155\r
+#: admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+#@ mantra\r
+msgid "Oops, there's a small problem."\r
+msgstr "Jejda, vyskytl se malý problém."\r
+\r
+#: admin/admin-functions.php:156\r
+#@ mantra\r
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."\r
+msgstr "Importovaný soubor neobsahuje platné nastavení šablony Mantra. Ujistěte se, že soubor byl exportován ze stránky Nastavení Mantra."\r
+\r
+#: admin/admin-functions.php:162\r
+#@ mantra\r
+msgid "The uploaded file could not be read."\r
+msgstr "Nahraný soubor nelze přečíst."\r
+\r
+#: admin/admin-functions.php:168\r
+#@ mantra\r
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."\r
+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."\r
+\r
+#: admin/admin-functions.php:177\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/admin-functions.php:183\r
+#@ mantra\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "CHYBA: Nemáte oprávnění k provedení této operace"\r
+\r
+#: admin/main.php:105\r
+#@ mantra\r
+msgid "Layout Settings"\r
+msgstr "Nastavení vzhledu"\r
+\r
+#: admin/main.php:106\r
+#@ mantra\r
+msgid "Header Settings"\r
+msgstr "Nastavení záhlaví"\r
+\r
+#: admin/main.php:107\r
+#@ mantra\r
+msgid "Presentation Page"\r
+msgstr "Stránka prezentace"\r
+\r
+#: admin/main.php:108\r
+#@ mantra\r
+msgid "Text Settings"\r
+msgstr "Nastavení textu"\r
+\r
+#: admin/main.php:109\r
+#@ mantra\r
+msgid "Color Settings"\r
+msgstr "Nastavení barev"\r
+\r
+#: admin/main.php:110\r
+#@ mantra\r
+msgid "Graphics Settings"\r
+msgstr "Nastavení grafiky"\r
+\r
+#: admin/main.php:111\r
+#@ mantra\r
+msgid "Post Information Settings"\r
+msgstr "Nastavení informací o článku"\r
+\r
+#: admin/main.php:112\r
+#@ mantra\r
+msgid "Post Excerpt Settings"\r
+msgstr "Nastavení úryvku článku"\r
+\r
+#: admin/main.php:113\r
+#@ mantra\r
+msgid "Featured Image Settings"\r
+msgstr "Nastavení obrázků"\r
+\r
+#: admin/main.php:114\r
+#@ mantra\r
+msgid "Social Media Settings"\r
+msgstr "Nastavení sociálních sítí"\r
+\r
+#: admin/main.php:115\r
+#@ mantra\r
+msgid "Miscellaneous Settings"\r
+msgstr "Obecná nastavení"\r
+\r
+#: admin/main.php:118\r
+#@ mantra\r
+msgid "Main Layout"\r
+msgstr "Hlavní nastavení"\r
+\r
+#: admin/main.php:119\r
+#@ mantra\r
+msgid "Content / Sidebar Width"\r
+msgstr "Šířka obsahu/nastavení"\r
+\r
+#: admin/main.php:120\r
+#@ mantra\r
+msgid "Responsiveness"\r
+msgstr "Schopnost reakce"\r
+\r
+#: admin/main.php:123\r
+#@ mantra\r
+msgid "Enable Presentation Page"\r
+msgstr "Zapnout stránku prezentace"\r
+\r
+#: admin/main.php:124\r
+#@ mantra\r
+msgid "Show Posts on Presentation Page"\r
+msgstr "Zobrazit příspěvky na stránce prezentace"\r
+\r
+#: admin/main.php:125\r
+#@ mantra\r
+msgid "Slider Settings"\r
+msgstr "Nastavení posuvníku"\r
+\r
+#: admin/main.php:126\r
+#@ mantra\r
+msgid "Slides"\r
+msgstr "Posuvník"\r
+\r
+#: admin/main.php:127\r
+#@ mantra\r
+msgid "Presentation Page Columns"\r
+msgstr "Sloupce stránky prezentace"\r
+\r
+#: admin/main.php:128\r
+#@ mantra\r
+msgid "Extras"\r
+msgstr "Doplňky"\r
+\r
+#: admin/main.php:131\r
+#@ mantra\r
+msgid "Header Height"\r
+msgstr "Výška záhlaví"\r
+\r
+#: admin/main.php:132\r
+#@ mantra\r
+msgid "Header Image"\r
+msgstr "Obrázek hlavičky"\r
+\r
+#: admin/main.php:133\r
+#@ mantra\r
+msgid "Site Header"\r
+msgstr "Záhlaví stránky"\r
+\r
+#: admin/main.php:134\r
+#@ mantra\r
+msgid "Custom Logo Upload"\r
+msgstr "Nahrát vlastní logo"\r
+\r
+#: admin/main.php:135\r
+#@ mantra\r
+msgid "Header Spacing"\r
+msgstr "Mezera v záhlaví"\r
+\r
+#: admin/main.php:136\r
+#@ mantra\r
+msgid "Rounded Menu Corners"\r
+msgstr "Zaoblení rohů menu"\r
+\r
+#: admin/main.php:137\r
+#@ mantra\r
+msgid "FavIcon Upload"\r
+msgstr "Nahrát faviconu"\r
+\r
+#: admin/main.php:139\r
+#@ mantra\r
+msgid "General Font"\r
+msgstr "Obecné písmo"\r
+\r
+#: admin/main.php:140\r
+#@ mantra\r
+msgid "General Font Size"\r
+msgstr "Velikost obecného písma"\r
+\r
+#: admin/main.php:141\r
+#@ mantra\r
+msgid "Post Title Font "\r
+msgstr "Písmo titulku příspěvku"\r
+\r
+#: admin/main.php:142\r
+#@ mantra\r
+msgid "Post Title Font Size"\r
+msgstr "Velikost písma titulku"\r
+\r
+#: admin/main.php:143\r
+#@ mantra\r
+msgid "Sidebar Font"\r
+msgstr "Písmo sidebaru"\r
+\r
+#: admin/main.php:144\r
+#@ mantra\r
+msgid "SideBar Font Size"\r
+msgstr "Velikost písma sidebaru"\r
+\r
+#: admin/main.php:145\r
+#@ mantra\r
+msgid "Headings Font"\r
+msgstr "Písmo záhlaví"\r
+\r
+#: admin/main.php:146\r
+#@ mantra\r
+msgid "Force Text Align"\r
+msgstr "Zarovnání textu"\r
+\r
+#: admin/main.php:147\r
+#@ mantra\r
+msgid "Paragraph spacing"\r
+msgstr "Mezera mezi odstavci"\r
+\r
+#: admin/main.php:148\r
+#@ mantra\r
+msgid "Paragraph indent"\r
+msgstr "Odrážka v odstravci"\r
+\r
+#: admin/main.php:149\r
+#@ mantra\r
+msgid "Header indent"\r
+msgstr "Odrážka v záhlaví"\r
+\r
+#: admin/main.php:150\r
+#@ mantra\r
+msgid "Line Height"\r
+msgstr "Výška řádku"\r
+\r
+#: admin/main.php:151\r
+#@ mantra\r
+msgid "Word spacing"\r
+msgstr "Mezera mezi slovy"\r
+\r
+#: admin/main.php:152\r
+#@ mantra\r
+msgid "Letter spacing"\r
+msgstr "Mezera mezi písmeny"\r
+\r
+#: admin/main.php:153\r
+#@ mantra\r
+msgid "Text shadow"\r
+msgstr "Stín textu"\r
+\r
+#: admin/main.php:155\r
+#@ mantra\r
+msgid "Background Image"\r
+msgstr "Obrázek pozadí"\r
+\r
+#: admin/main.php:156\r
+#@ mantra\r
+msgid "Background Color"\r
+msgstr "Barva pozadí"\r
+\r
+#: admin/main.php:157\r
+#@ mantra\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Barva pozadí záhlaví (banneru a menu)"\r
+\r
+#: admin/main.php:158\r
+#@ mantra\r
+msgid "Content Background Color"\r
+msgstr "Barva pozadí obsahu"\r
+\r
+#: admin/main.php:159\r
+#@ mantra\r
+msgid "Menu Items Background Color"\r
+msgstr "Barva pozadí položek menu"\r
+\r
+#: admin/main.php:160\r
+#@ mantra\r
+msgid "First Sidebar Background Color"\r
+msgstr "Barva pozadí prvního sidebaru"\r
+\r
+#: admin/main.php:161\r
+#@ mantra\r
+msgid "Second Sidebar Background Color"\r
+msgstr "Barva pozadí druhého sidebaru"\r
+\r
+#: admin/main.php:163\r
+#@ mantra\r
+msgid "Site Title Color"\r
+msgstr "Barva textu názvu stránky"\r
+\r
+#: admin/main.php:164\r
+#@ mantra\r
+msgid "Site Description Color"\r
+msgstr "Barva textu popisu stránky"\r
+\r
+#: admin/main.php:166\r
+#@ mantra\r
+msgid "Content Text Color"\r
+msgstr "Barva textu obsahu"\r
+\r
+#: admin/main.php:167\r
+#@ mantra\r
+msgid "Links Color"\r
+msgstr "Barva odkazu"\r
+\r
+#: admin/main.php:168\r
+#@ mantra\r
+msgid "Links Hover Color"\r
+msgstr "Barva zaměřeného odkazu"\r
+\r
+#: admin/main.php:169\r
+#@ mantra\r
+msgid "Post Title Color"\r
+msgstr "Barva titulku příspěvku"\r
+\r
+#: admin/main.php:170\r
+#@ mantra\r
+msgid "Post Title Hover Color"\r
+msgstr "Barva zaměřeného titulku příspěvku"\r
+\r
+#: admin/main.php:171\r
+#@ mantra\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Barva pozadí záhlaví sidebaru"\r
+\r
+#: admin/main.php:172\r
+#@ mantra\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Barva textu v záhlaví sidebaru"\r
+\r
+#: admin/main.php:173\r
+#@ mantra\r
+msgid "Footer Widget Background Color"\r
+msgstr "Barva pozadí widgetu v zápatí"\r
+\r
+#: admin/main.php:174\r
+#@ mantra\r
+msgid "Footer Background Color"\r
+msgstr "Barva pozadí zápatí"\r
+\r
+#: admin/main.php:175\r
+#@ mantra\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Barva textu widgetu v záhlaví"\r
+\r
+#: admin/main.php:176\r
+#@ mantra\r
+msgid "Footer Widget Link Color"\r
+msgstr "Barva odkazu ve widgetu v záhlaví"\r
+\r
+#: admin/main.php:177\r
+#@ mantra\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Barva zaměřeného widgetu v záhlaví"\r
+\r
+#: admin/main.php:179\r
+#@ mantra\r
+msgid "Breadcrumbs"\r
+msgstr "Drobečková navigace"\r
+\r
+#: admin/main.php:180\r
+#@ mantra\r
+msgid "Pagination"\r
+msgstr "Stránkování"\r
+\r
+#: admin/main.php:181\r
+#@ mantra\r
+msgid "Main Menu Alignment"\r
+msgstr "Zarovnání hlavního menu"\r
+\r
+#: admin/main.php:182\r
+#@ mantra\r
+msgid "Post Images Border"\r
+msgstr "Ohraničení obrázku v příspěvku"\r
+\r
+#: admin/main.php:183\r
+#@ mantra\r
+msgid "Caption Border"\r
+msgstr "Ohraničení popisku"\r
+\r
+#: admin/main.php:184\r
+#@ mantra\r
+msgid "Caption Pin"\r
+msgstr "Pin popisku"\r
+\r
+#: admin/main.php:185\r
+#@ mantra\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Odrážky menu v sidebaru"\r
+\r
+#: admin/main.php:186\r
+#@ mantra\r
+msgid "Meta Area Background"\r
+msgstr "Pozadí Meta"\r
+\r
+#: admin/main.php:187\r
+#@ mantra\r
+msgid "Post Separator"\r
+msgstr "Oddělovač příspěvků"\r
+\r
+#: admin/main.php:188\r
+#@ mantra\r
+msgid "Content List Bullets"\r
+msgstr "Odrážky seznamu"\r
+\r
+#: admin/main.php:189\r
+#@ mantra\r
+msgid "Page Titles"\r
+msgstr "Titulek stránky"\r
+\r
+#: admin/main.php:190\r
+#@ mantra\r
+msgid "Category Page Titles"\r
+msgstr "Titulek stránky Rubrika"\r
+\r
+#: admin/main.php:191\r
+#@ mantra\r
+msgid "Hide Tables"\r
+msgstr "Skrýt tabulky"\r
+\r
+#: admin/main.php:192\r
+#@ mantra\r
+msgid "Back to Top button"\r
+msgstr "Tlačítko Zpět na začátek"\r
+\r
+#: admin/main.php:193\r
+#@ mantra\r
+msgid "Text Under Comments"\r
+msgstr "Text komentáře"\r
+\r
+#: admin/main.php:194\r
+#@ mantra\r
+msgid "Comments are closed text"\r
+msgstr "Text uzavřených komentářů"\r
+\r
+#: admin/main.php:195\r
+#@ mantra\r
+msgid "Comments off"\r
+msgstr "Vypnutí komentářů"\r
+\r
+#: admin/main.php:197\r
+#@ mantra\r
+msgid "Post Comments Link"\r
+msgstr "Odkaz v komentáři u příspěvku"\r
+\r
+#: admin/main.php:198\r
+#@ mantra\r
+msgid "Post Date"\r
+msgstr "Datum příspěvku"\r
+\r
+#: admin/main.php:199\r
+#@ mantra\r
+msgid "Post Time"\r
+msgstr "Čas příspěvku"\r
+\r
+#: admin/main.php:200\r
+#: admin/settings.php:2087\r
+#@ mantra\r
+msgid "Post Author"\r
+msgstr "Autor příspěvku"\r
+\r
+#: admin/main.php:201\r
+#@ mantra\r
+msgid "Post Category"\r
+msgstr "Rubrika příspěvku"\r
+\r
+#: admin/main.php:202\r
+#@ mantra\r
+msgid "Meta Bar"\r
+msgstr "Panel Meta"\r
+\r
+#: admin/main.php:203\r
+#@ mantra\r
+msgid "Post Tags"\r
+msgstr "Štítek příspěvku"\r
+\r
+#: admin/main.php:204\r
+#@ mantra\r
+msgid "Post Permalink"\r
+msgstr "Trvalý odkaz na příspěvek"\r
+\r
+#: admin/main.php:206\r
+#@ mantra\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Úryvek příspěvku na domovské stránce"\r
+\r
+#: admin/main.php:207\r
+#@ mantra\r
+msgid "Affect Sticky Posts"\r
+msgstr "Ovlivnění důležitých příspěvků"\r
+\r
+#: admin/main.php:208\r
+#@ mantra\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Úryvky na stránce archivu a rubrik"\r
+\r
+#: admin/main.php:209\r
+#@ mantra\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Počet slov v úryvku příspěvku"\r
+\r
+#: admin/main.php:210\r
+#@ mantra\r
+msgid "Magazine Layout"\r
+msgstr "Rozvržení zásobníku"\r
+\r
+#: admin/main.php:211\r
+#@ mantra\r
+msgid "Excerpt suffix"\r
+msgstr "Přípona úryvku"\r
+\r
+#: admin/main.php:212\r
+#@ mantra\r
+msgid "Continue reading link text "\r
+msgstr "Text odkazu Číst dále"\r
+\r
+#: admin/main.php:213\r
+#@ mantra\r
+msgid "HTML tags in Excerpts"\r
+msgstr "HTML tagy v úryvku"\r
+\r
+#: admin/main.php:215\r
+#@ mantra\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Vybrané obrázky jako miniatury v příspěvku"\r
+\r
+#: admin/main.php:216\r
+#@ mantra\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Automatický výběr obrázků do příspěvku"\r
+\r
+#: admin/main.php:217\r
+#@ mantra\r
+msgid "Thumbnails Alignment "\r
+msgstr "Zarovnání miniatury"\r
+\r
+#: admin/main.php:218\r
+#@ mantra\r
+msgid "Thumbnails Size "\r
+msgstr "Velikost miniatury"\r
+\r
+#: admin/main.php:219\r
+#@ mantra\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Vybrané obrázky v záhlaví"\r
+\r
+#: admin/main.php:221\r
+#@ mantra\r
+msgid "Link nr. 1"\r
+msgstr "Odkaz č.1"\r
+\r
+#: admin/main.php:222\r
+#@ mantra\r
+msgid "Link nr. 2"\r
+msgstr "Odkaz č.2"\r
+\r
+#: admin/main.php:223\r
+#@ mantra\r
+msgid "Link nr. 3"\r
+msgstr "Odkaz č.3"\r
+\r
+#: admin/main.php:224\r
+#@ mantra\r
+msgid "Link nr. 4"\r
+msgstr "Odkaz č.4"\r
+\r
+#: admin/main.php:225\r
+#@ mantra\r
+msgid "Link nr. 5"\r
+msgstr "Odkaz č.5"\r
+\r
+#: admin/main.php:226\r
+#@ mantra\r
+msgid "Socials display"\r
+msgstr "Zobrazit soc. sítě"\r
+\r
+#: admin/main.php:228\r
+#@ mantra\r
+msgid "SEO Settings"\r
+msgstr "Nastavení SEO"\r
+\r
+#: admin/main.php:229\r
+#@ mantra\r
+msgid "Custom Footer Text"\r
+msgstr "Vlastní text zápatí"\r
+\r
+#: admin/main.php:230\r
+#@ mantra\r
+msgid "Custom CSS"\r
+msgstr "Vlastní CSS"\r
+\r
+#: admin/main.php:231\r
+#@ mantra\r
+msgid "Custom JavaScript"\r
+msgstr "Vlastní JavaScript"\r
+\r
+#: admin/main.php:248\r
+#@ mantra\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Je nám líto, ale nemáte dostatečná oprávnění pro přístup k této stránce."\r
+\r
+#: admin/main.php:268\r
+#@ mantra\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Aktualizace nastavení šablony Mantra byla dokončena"\r
+\r
+#: admin/main.php:283\r
+#@ mantra\r
+msgid "Save Changes"\r
+msgstr "Uložit změny"\r
+\r
+#: admin/main.php:284\r
+#@ mantra\r
+msgid "Reset to Defaults"\r
+msgstr "Obnovit výchozí nastavení"\r
+\r
+#: admin/main.php:316\r
+#@ mantra\r
+msgid "Import/Export Settings"\r
+msgstr "Import/Export nastavení"\r
+\r
+#: admin/main.php:322\r
+#@ mantra\r
+msgid "Export Theme options"\r
+msgstr "Export nastavení motivu"\r
+\r
+#: admin/main.php:323\r
+#@ mantra\r
+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!"\r
+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!"\r
+\r
+#: admin/main.php:328\r
+#@ mantra\r
+msgid "Import Theme options"\r
+msgstr "Import nastavení šablony Mantra"\r
+\r
+#: admin/main.php:329\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/main.php:337\r
+#@ mantra\r
+msgid "Mantra Latest News"\r
+msgstr "Poslední novinky v šabloně Mantra"\r
+\r
+#: admin/main.php:348\r
+#@ mantra\r
+msgid "No news items."\r
+msgstr "Žádné novinky"\r
+\r
+#: admin/main.php:352\r
+#@ mantra\r
+msgid "Posted on"\r
+msgstr "Publikováno dne"\r
+\r
+#: admin/settings.php:66\r
+#@ mantra\r
+msgid "One column (no sidebars)"\r
+msgstr "Jeden sloupec (žádné sidebary)"\r
+\r
+#: admin/settings.php:67\r
+#@ mantra\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Dva sloupce, sidebar vpravo"\r
+\r
+#: admin/settings.php:68\r
+#@ mantra\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Dva sloupce, sidebar vlevo"\r
+\r
+#: admin/settings.php:69\r
+#@ mantra\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Tři sloupce, sidebary vpravo"\r
+\r
+#: admin/settings.php:70\r
+#@ mantra\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Tři sloupce, sidebary vlevo"\r
+\r
+#: admin/settings.php:71\r
+#@ mantra\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Tři sloupce, sidebary po stranách"\r
+\r
+#: admin/settings.php:86\r
+#@ mantra\r
+msgid ""\r
+"Choose your layout. Possible options are: <br> No sidebar, a single sidebar on either left of right, two sidebars on either left or\n"\r
+"\t\tright and two sidebars on each side."\r
+msgstr ""\r
+"Vyberte rozložení. Možnosti jsou: <br> Žádný sidebar, jeden sidebar vlevo či vpravo, dva sidebary vlevo nebo\n"\r
+"\t\tv vpravo a dva sidebary po stranách."\r
+\r
+#: admin/settings.php:95\r
+#@ mantra\r
+msgid "Absolute"\r
+msgstr "Absolutní"\r
+\r
+#: admin/settings.php:95\r
+#@ mantra\r
+msgid "Relative *DEPRECATED"\r
+msgstr "Relativně *ZASTARALÉ"\r
+\r
+#: admin/settings.php:96\r
+#@ mantra\r
+msgid "Dimensions to use: "\r
+msgstr "Použité rozměry:"\r
+\r
+#: admin/settings.php:178\r
+#: admin/settings.php:198\r
+#@ mantra\r
+msgid "Content ="\r
+msgstr "Obsah ="\r
+\r
+#: admin/settings.php:179\r
+#: admin/settings.php:199\r
+#@ mantra\r
+msgid "Sidebar(s) ="\r
+msgstr "Sidebar(y) ="\r
+\r
+#: admin/settings.php:180\r
+#: admin/settings.php:200\r
+#@ mantra\r
+msgid "Total width ="\r
+msgstr "Celková šířka ="\r
+\r
+#: admin/settings.php:189\r
+#@ mantra\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+"Vyberte šířku pro <b>obsah</b> a <b>sidebar(y)</b>.\n"\r
+" \t\tšířka obsahu nesmí být menší než 500px, sidebaru ne méně než 220px a ne více než 800px..<br />\n"\r
+"\tPokud používáte 3 sloupce (s 2 sidebary), každý z nich má pak poloviční šířku."\r
+\r
+#: admin/settings.php:209\r
+#@ mantra\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+"Zvolte šířku <b>obsahu</b> a <b>postranního panelu(ů)</b>.\n"\r
+" \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"\r
+"\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"\r
+"\tPokud jste vybrali 3 sloupce (s 2 postranními panely), každý z nich má poloviční vybranou šířku."\r
+\r
+#: admin/settings.php:223\r
+#: admin/settings.php:246\r
+#: admin/settings.php:262\r
+#: admin/settings.php:731\r
+#: admin/settings.php:1094\r
+#: admin/settings.php:1156\r
+#: admin/settings.php:1344\r
+#: admin/settings.php:1359\r
+#: admin/settings.php:1530\r
+#: admin/settings.php:1592\r
+#: admin/settings.php:1793\r
+#: admin/settings.php:1822\r
+#: admin/settings.php:1845\r
+#: admin/settings.php:1868\r
+#: admin/settings.php:1917\r
+#: admin/settings.php:2053\r
+#@ mantra\r
+msgid "Enable"\r
+msgstr "Zapnout"\r
+\r
+#: admin/settings.php:223\r
+#: admin/settings.php:246\r
+#: admin/settings.php:262\r
+#: admin/settings.php:731\r
+#: admin/settings.php:1094\r
+#: admin/settings.php:1156\r
+#: admin/settings.php:1344\r
+#: admin/settings.php:1359\r
+#: admin/settings.php:1530\r
+#: admin/settings.php:1592\r
+#: admin/settings.php:1793\r
+#: admin/settings.php:1822\r
+#: admin/settings.php:1845\r
+#: admin/settings.php:1868\r
+#: admin/settings.php:1917\r
+#: admin/settings.php:2053\r
+#@ mantra\r
+msgid "Disable"\r
+msgstr "Vypnout"\r
+\r
+#: admin/settings.php:232\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:254\r
+#@ mantra\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page. It has a slider and columns for presentation\n"\r
+"\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 » Reading </a> and make sure you have selected <strong>Front Page Displays</strong> as <Strong>Your Latest Posts</strong>."\r
+msgstr ""\r
+"Povolí prezentaci na titulní straně. To bude vaše nová domovská stránka. Obsahuje posuvník a sloupce pro publikování prezentace\n"\r
+"\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í » Č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>."\r
+\r
+#: admin/settings.php:271\r
+#@ mantra\r
+msgid "posts"\r
+msgstr "příspěvky"\r
+\r
+#: admin/settings.php:272\r
+#@ mantra\r
+msgid "Enable to display latest posts on the presentation page, below the columns. Sticky posts are always displayed and not counted."\r
+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."\r
+\r
+#: admin/settings.php:280\r
+#@ mantra\r
+msgid "Slider Dimensions:"\r
+msgstr "Rozměry slideru"\r
+\r
+#: admin/settings.php:281\r
+#@ mantra\r
+msgid "width"\r
+msgstr "šířka"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "height"\r
+msgstr "výška"\r
+\r
+#: admin/settings.php:283\r
+#@ mantra\r
+msgid "The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr "Rozměry vašeho slideru. Ujistěte se, že vaše obrázkyky jsou ve stejné velikosti."\r
+\r
+#: admin/settings.php:285\r
+#@ mantra\r
+msgid "Animation:"\r
+msgstr "Animace"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "Random"\r
+msgstr "Náhodný"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "Fold"\r
+msgstr "Složit"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "Fade"\r
+msgstr "Slábnutí"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "SlideInRight"\r
+msgstr "Posuv vpravo"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "SlideInLeft"\r
+msgstr "Posuv vlevo"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "SliceDown"\r
+msgstr "Rozpad dolů"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "SliceDownLeft"\r
+msgstr "Rozpad vlevo dolů"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "SliceUp"\r
+msgstr "Rozpad nahoru"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "SliceUpLeft"\r
+msgstr "Rozpad nahoru vlevo"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "SliceUpDown"\r
+msgstr "Rozpad nahoru i dolů"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "SliceUpDownLeft"\r
+msgstr "Rozpad nahoru i dolů vlevo"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "BoxRandom"\r
+msgstr "Náhodné políčko"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "BoxRain"\r
+msgstr "Políčko rain"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "BoxRainReverse"\r
+msgstr "Políčko obrácený rain"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "BoxRainGrow"\r
+msgstr "Políčko vzrůstající rain"\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "BoxRainGrowReverse"\r
+msgstr "Políčko obrácený vzrůstající rain"\r
+\r
+#: admin/settings.php:295\r
+#@ mantra\r
+msgid "The transition effect your slider will have."\r
+msgstr "Efekt přechodu vašeho slideru"\r
+\r
+#: admin/settings.php:297\r
+#@ mantra\r
+msgid "Border Settings:"\r
+msgstr "Nastavení ohraničení"\r
+\r
+#: admin/settings.php:298\r
+#@ mantra\r
+msgid "Width"\r
+msgstr "Šířka"\r
+\r
+#: admin/settings.php:299\r
+#@ mantra\r
+msgid "Color"\r
+msgstr "Barva"\r
+\r
+#: admin/settings.php:301\r
+#@ mantra\r
+msgid "The width and color of the slider's border."\r
+msgstr "Šířka a barva ohraničení slideru."\r
+\r
+#: admin/settings.php:303\r
+#@ mantra\r
+msgid "Animation Time:"\r
+msgstr "Čas animace:"\r
+\r
+#: admin/settings.php:304\r
+#: admin/settings.php:308\r
+#@ mantra\r
+msgid "milliseconds"\r
+msgstr "milisekundy"\r
+\r
+#: admin/settings.php:305\r
+#@ mantra\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "Čas, za který proběhne přechod animace."\r
+\r
+#: admin/settings.php:307\r
+#@ mantra\r
+msgid "Pause Time:"\r
+msgstr "Čas pauzy:"\r
+\r
+#: admin/settings.php:309\r
+#@ mantra\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Čas, po který bude snímek viditelný."\r
+\r
+#: admin/settings.php:312\r
+#@ mantra\r
+msgid "Slider navigation:"\r
+msgstr "Navigace v slideru"\r
+\r
+#: admin/settings.php:314\r
+#@ mantra\r
+msgid "Numbers"\r
+msgstr "Počet"\r
+\r
+#: admin/settings.php:314\r
+#@ mantra\r
+msgid "Bullets"\r
+msgstr "Odrážky"\r
+\r
+#: admin/settings.php:314\r
+#: admin/settings.php:1451\r
+#@ mantra\r
+msgid "None"\r
+msgstr "Žádný"\r
+\r
+#: admin/settings.php:322\r
+#@ mantra\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Typ navigace ve slideru. Zobrazobrazí se pod ním"\r
+\r
+#: admin/settings.php:324\r
+#@ mantra\r
+msgid "Slider arrows:"\r
+msgstr "Šipky slideru"\r
+\r
+#: admin/settings.php:326\r
+#@ mantra\r
+msgid "Always Visible"\r
+msgstr "Vždy viditelné"\r
+\r
+#: admin/settings.php:326\r
+#@ mantra\r
+msgid "Visible on Hover"\r
+msgstr "Viditelné při zaměření"\r
+\r
+#: admin/settings.php:326\r
+#@ mantra\r
+msgid "Hidden"\r
+msgstr "Skrýt"\r
+\r
+#: admin/settings.php:334\r
+#@ mantra\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Levá a pravá šipka vašeho slideru"\r
+\r
+#: admin/settings.php:375\r
+#: admin/settings.php:444\r
+#@ mantra\r
+msgid "Select Category"\r
+msgstr "Vyberte rubriku"\r
+\r
+#: admin/settings.php:402\r
+#@ mantra\r
+msgid "Custom Slides"\r
+msgstr "Vlastní slider"\r
+\r
+#: admin/settings.php:402\r
+#@ mantra\r
+msgid "Latest Posts"\r
+msgstr "Poslední snímky"\r
+\r
+#: admin/settings.php:402\r
+#@ mantra\r
+msgid "Random Posts"\r
+msgstr "Náhodné snímky"\r
+\r
+#: admin/settings.php:402\r
+#@ mantra\r
+msgid "Sticky Posts"\r
+msgstr "Důležité snímky"\r
+\r
+#: admin/settings.php:402\r
+#@ mantra\r
+msgid "Latest Posts from Category"\r
+msgstr "Poslední snímky v rubrice"\r
+\r
+#: admin/settings.php:402\r
+#@ mantra\r
+msgid "Random Posts from Category"\r
+msgstr "Náhodné snímky v rubrice"\r
+\r
+#: admin/settings.php:402\r
+#@ mantra\r
+msgid "Specific Posts"\r
+msgstr "Vybrané snímky"\r
+\r
+#: admin/settings.php:411\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:416\r
+#@ mantra\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Nejnovější snímky budou načteny do slideru."\r
+\r
+#: admin/settings.php:420\r
+#@ mantra\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Náhodné snímky budou načteny do slideru."\r
+\r
+#: admin/settings.php:424\r
+#@ mantra\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "Poslední snímky z vybrané rubriky budou vloženy do slideru."\r
+\r
+#: admin/settings.php:429\r
+#@ mantra\r
+msgid "Random posts from the category you choose will be loaded into the slider."\r
+msgstr "Náhodné snímky z vybrané rubriky budou vloženy do slideru."\r
+\r
+#: admin/settings.php:433\r
+#@ mantra\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Pouze důležité snímky budou načteny do slideru."\r
+\r
+#: admin/settings.php:437\r
+#@ mantra\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr "Seznam ID snímků, které chcete zobrazit (oddělené čárkou):"\r
+\r
+#: admin/settings.php:442\r
+#@ mantra\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Zvolte rubriku:"\r
+\r
+#: admin/settings.php:459\r
+#@ mantra\r
+msgid "Number of posts to show:"\r
+msgstr "Číslo snímku pro zobrazení:"\r
+\r
+#: admin/settings.php:466\r
+#@ mantra\r
+msgid "Slide 1"\r
+msgstr "Snímek 1"\r
+\r
+#: admin/settings.php:470\r
+#: admin/settings.php:485\r
+#: admin/settings.php:500\r
+#: admin/settings.php:515\r
+#: admin/settings.php:530\r
+#: admin/settings.php:572\r
+#: admin/settings.php:587\r
+#: admin/settings.php:602\r
+#: admin/settings.php:617\r
+#: admin/settings.php:766\r
+#: admin/settings.php:789\r
+#@ mantra\r
+msgid "Select / Upload Image"\r
+msgstr "Vybrat/nahrát obrázek"\r
+\r
+#: admin/settings.php:471\r
+#: admin/settings.php:486\r
+#: admin/settings.php:501\r
+#: admin/settings.php:516\r
+#: admin/settings.php:531\r
+#: admin/settings.php:573\r
+#: admin/settings.php:588\r
+#: admin/settings.php:618\r
+#@ mantra\r
+msgid "Title"\r
+msgstr "Název"\r
+\r
+#: admin/settings.php:473\r
+#: admin/settings.php:488\r
+#: admin/settings.php:503\r
+#: admin/settings.php:518\r
+#: admin/settings.php:533\r
+#: admin/settings.php:575\r
+#: admin/settings.php:590\r
+#: admin/settings.php:605\r
+#: admin/settings.php:620\r
+#@ mantra\r
+msgid "Text"\r
+msgstr "Text"\r
+\r
+#: admin/settings.php:481\r
+#@ mantra\r
+msgid "Slide 2"\r
+msgstr "Snímek 2"\r
+\r
+#: admin/settings.php:496\r
+#@ mantra\r
+msgid "Slide 3"\r
+msgstr "Snímek 3"\r
+\r
+#: admin/settings.php:511\r
+#@ mantra\r
+msgid "Slide 4"\r
+msgstr "Snímek 4"\r
+\r
+#: admin/settings.php:526\r
+#@ mantra\r
+msgid "Slide 5"\r
+msgstr "Snímek 5"\r
+\r
+#: admin/settings.php:548\r
+#@ mantra\r
+msgid "Number of columns:"\r
+msgstr "Počet sloupců:"\r
+\r
+#: admin/settings.php:558\r
+#@ mantra\r
+msgid "Image Height:"\r
+msgstr "Výška obrázku:"\r
+\r
+#: admin/settings.php:561\r
+#@ mantra\r
+msgid "Read more text:"\r
+msgstr "Číst dále:"\r
+\r
+#: admin/settings.php:564\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:568\r
+#@ mantra\r
+msgid "1st Column"\r
+msgstr "1. sloupec"\r
+\r
+#: admin/settings.php:583\r
+#@ mantra\r
+msgid "2nd Column"\r
+msgstr "2. sloupec"\r
+\r
+#: admin/settings.php:598\r
+#@ mantra\r
+msgid "3rd Column"\r
+msgstr "3. sloupec"\r
+\r
+#: admin/settings.php:613\r
+#@ mantra\r
+msgid "4th Column"\r
+msgstr "4. sloupec"\r
+\r
+#: admin/settings.php:635\r
+#@ mantra\r
+msgid "Extra Text"\r
+msgstr "Vybraný text"\r
+\r
+#: admin/settings.php:637\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"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"\r
+"\t\t Vše je volitelné, pokud nechcete tato vstupní pole vyplňovat, nemusíte."\r
+\r
+#: admin/settings.php:640\r
+#@ mantra\r
+msgid "Top Title"\r
+msgstr "Horní titulek"\r
+\r
+#: admin/settings.php:641\r
+#@ mantra\r
+msgid "Second Title"\r
+msgstr "Druhý titulek"\r
+\r
+#: admin/settings.php:644\r
+#@ mantra\r
+msgid "Title color"\r
+msgstr "Barva titulku"\r
+\r
+#: admin/settings.php:648\r
+#@ mantra\r
+msgid "Bottom Text 1"\r
+msgstr "Spodní text 1"\r
+\r
+#: admin/settings.php:650\r
+#@ mantra\r
+msgid "Bottom Text 2"\r
+msgstr "Spodní text 2"\r
+\r
+#: admin/settings.php:658\r
+#@ mantra\r
+msgid "Hide areas"\r
+msgstr "Skrýt pole"\r
+\r
+#: admin/settings.php:660\r
+#@ mantra\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Vyberte pole pro skrytí na první stránce."\r
+\r
+#: admin/settings.php:672\r
+#@ mantra\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Skrýt oblast záhlaví (obrázek nebo barvu pozadí)."\r
+\r
+#: admin/settings.php:676\r
+#@ mantra\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Skrytí hlavní menu (horní navigační panel)."\r
+\r
+#: admin/settings.php:680\r
+#@ mantra\r
+msgid "Hide the footer widgets. "\r
+msgstr "Skrýt widgety v zápatí."\r
+\r
+#: admin/settings.php:684\r
+#@ mantra\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Skrýt zápatí (oblast copyrightu)."\r
+\r
+#: admin/settings.php:688\r
+#@ mantra\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Skrýt bílou barvu. Zůstane pouze barva pozadí."\r
+\r
+#: admin/settings.php:708\r
+#@ mantra\r
+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 = "\r
+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 ="\r
+\r
+#: admin/settings.php:715\r
+#@ default\r
+msgid "Define header image"\r
+msgstr "Vyberte obrázek záhlaví"\r
+\r
+#: admin/settings.php:716\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:739\r
+#@ mantra\r
+msgid "Enable or disable the round corners for the main menu items."\r
+msgstr "Povolte nebo zakažte zaoblené rohy pro hlavní položky menu."\r
+\r
+#: admin/settings.php:747\r
+#@ mantra\r
+msgid "Site Title and Description"\r
+msgstr "Název a popis stránky"\r
+\r
+#: admin/settings.php:747\r
+#@ mantra\r
+msgid "Custom Logo"\r
+msgstr "Vlastní logo"\r
+\r
+#: admin/settings.php:747\r
+#@ mantra\r
+msgid "Clickable header image"\r
+msgstr "Klikatelný obrázek záhlaví"\r
+\r
+#: admin/settings.php:747\r
+#@ mantra\r
+msgid "Empty"\r
+msgstr "Prázdný"\r
+\r
+#: admin/settings.php:755\r
+#@ mantra\r
+msgid "Choose what to display inside your header area."\r
+msgstr "Vyberte, co se má zobrazit uvnitř oblasti záhlaví."\r
+\r
+#: admin/settings.php:765\r
+#@ mantra\r
+msgid "Custom Logo upload. The logo will appear over the heder image if you have used one."\r
+msgstr "Vlastní logo nahráno. Logo se zobrazí v oblasti záhlaví, ale jen pokud jste použili jedno."\r
+\r
+#: admin/settings.php:774\r
+#@ mantra\r
+msgid "top"\r
+msgstr "Nahoře"\r
+\r
+#: admin/settings.php:775\r
+#@ mantra\r
+msgid "left"\r
+msgstr "vlevo"\r
+\r
+#: admin/settings.php:778\r
+#@ mantra\r
+msgid "Select the top spacing for the header. Use it to better position your site title and description or custom logo inside the header. "\r
+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í."\r
+\r
+#: admin/settings.php:788\r
+#@ mantra\r
+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>"\r
+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>"\r
+\r
+#: admin/settings.php:811\r
+#@ mantra\r
+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."\r
+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.."\r
+\r
+#: admin/settings.php:855\r
+#@ mantra\r
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "\r
+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)."\r
+\r
+#: admin/settings.php:857\r
+#: admin/settings.php:907\r
+#: admin/settings.php:958\r
+#: admin/settings.php:1010\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:904\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:956\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:1007\r
+#@ mantra\r
+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."\r
+msgstr "Zvolte typ písma, které chcete použít pro nadpisy (h1 - h6). Při volbě 'default' bude použito obecné písmo."\r
+\r
+#: admin/settings.php:1019\r
+#: admin/settings.php:1034\r
+#: admin/settings.php:1049\r
+#: admin/settings.php:1109\r
+#: admin/settings.php:1124\r
+#: admin/settings.php:1139\r
+#@ mantra\r
+msgid "Default"\r
+msgstr "Default"\r
+\r
+#: admin/settings.php:1027\r
+#@ mantra\r
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+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)."\r
+\r
+#: admin/settings.php:1042\r
+#@ mantra\r
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Velikost písma sidebaru. Volba 'default' znamená normální nastavení (hodnota velikosti bude taková, jaká je uvedená v CSS)."\r
+\r
+#: admin/settings.php:1049\r
+#: admin/settings.php:1373\r
+#: admin/settings.php:1884\r
+#@ mantra\r
+msgid "Left"\r
+msgstr "Vlevo"\r
+\r
+#: admin/settings.php:1049\r
+#: admin/settings.php:1373\r
+#: admin/settings.php:1884\r
+#@ mantra\r
+msgid "Right"\r
+msgstr "Vpravo"\r
+\r
+#: admin/settings.php:1049\r
+#@ mantra\r
+msgid "Justify"\r
+msgstr "Do bloku"\r
+\r
+#: admin/settings.php:1049\r
+#: admin/settings.php:1373\r
+#: admin/settings.php:1884\r
+#@ mantra\r
+msgid "Center"\r
+msgstr "Na střed"\r
+\r
+#: admin/settings.php:1057\r
+#@ mantra\r
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."\r
+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.)."\r
+\r
+#: admin/settings.php:1071\r
+#@ mantra\r
+msgid "Choose the spacing between paragraphs."\r
+msgstr "Vyberte mezeru mezi odstavci."\r
+\r
+#: admin/settings.php:1086\r
+#@ mantra\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Vyberte odsazení odstavců."\r
+\r
+#: admin/settings.php:1102\r
+#@ mantra\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "Vypnout defaultní název v záhlaví a odsazení (vlevo)."\r
+\r
+#: admin/settings.php:1117\r
+#@ mantra\r
+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)."\r
+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)."\r
+\r
+#: admin/settings.php:1132\r
+#@ mantra\r
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Mezera mezi <i>slovy</i>. Volba 'default' zobrazí normální nastavení (hodnota velikosti bude taková, jaká je uvedená v CSS)."\r
+\r
+#: admin/settings.php:1147\r
+#@ mantra\r
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Mezera mezi <i>písmeny</i>. Volba 'default' zobrazí normální nastavení (hodnota velikosti bude taková, jaká je uvedená v CSS)."\r
+\r
+#: admin/settings.php:1164\r
+#@ mantra\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "Vypnout výchozí stín u textu v záhlaví a v titulcích."\r
+\r
+#: admin/settings.php:1172\r
+#@ default\r
+msgid "Define background image"\r
+msgstr "Definovat obrázek na pozadí"\r
+\r
+#: admin/settings.php:1181\r
+#@ mantra\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Barva pozadí (výchozí hodnota je 444444)."\r
+\r
+#: admin/settings.php:1189\r
+#@ mantra\r
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."\r
+msgstr "Barva pozadí záhlaví (výchozí hodnota je 333333). Přepíše všechny texty, dosud bez barvy pozadí."\r
+\r
+#: admin/settings.php:1196\r
+#@ mantra\r
+msgid "Content background color (Default value is FFFFFF). Works best with really light colors."\r
+msgstr "Barva pozadí obsahu (výchozí hodnota je FFFFFF). Nejlépe vynikne se světlými barvami."\r
+\r
+#: admin/settings.php:1203\r
+#@ mantra\r
+msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."\r
+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ší."\r
+\r
+#: admin/settings.php:1210\r
+#@ mantra\r
+msgid "First sidebar background color (Default is no color for a transparent sidebar)."\r
+msgstr "Barva pozadí prvního sidebaru (výchozí hodnota je transparentní sidebar)."\r
+\r
+#: admin/settings.php:1217\r
+#@ mantra\r
+msgid "Second sidebar background color (Default is no color for a transparent sidebar)."\r
+msgstr "Barva pozadí druhého sidebaru (výchozí hodnota je transparentní sidebar)."\r
+\r
+#: admin/settings.php:1225\r
+#@ mantra\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "Barva pozadí prostoru pro widgety v zápatí. (výchozí hodnota je 171717)."\r
+\r
+#: admin/settings.php:1233\r
+#@ mantra\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Barva pozadí zápatí (výchozí hodnota je 222222)."\r
+\r
+#: admin/settings.php:1241\r
+#@ mantra\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Barva titulu vašeho blogu (Výchozí hodnota je 0D85CC)."\r
+\r
+#: admin/settings.php:1249\r
+#@ mantra\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Barva popisu vašeho blogu (výchozí hodnota je 222222)."\r
+\r
+#: admin/settings.php:1257\r
+#@ mantra\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Barva textu obsahu (výchozí hodnota je 333333)."\r
+\r
+#: admin/settings.php:1265\r
+#@ mantra\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Barvy odkazu (výchozí hodnota je 0D85CC)."\r
+\r
+#: admin/settings.php:1273\r
+#@ mantra\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "Barva zaměřeného odkazu (výchozí hodnota je 333333)."\r
+\r
+#: admin/settings.php:1281\r
+#@ mantra\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Barva textu názvu příspěvku (výchozí hodnota je 333333)."\r
+\r
+#: admin/settings.php:1289\r
+#@ mantra\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr "Barva textu zaměřeného názvu příspěvku (výchozí hodnota je 000000)."\r
+\r
+#: admin/settings.php:1297\r
+#@ mantra\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Brva pozadí záhlaví sidebaru (výchozí hodnota je 444444)"\r
+\r
+#: admin/settings.php:1306\r
+#@ mantra\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Barva textu v záhlaví sidebaru (výchozí hodnota je 2EA5FD)."\r
+\r
+#: admin/settings.php:1314\r
+#@ mantra\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Barva textu ve widgetu v zápatí (výchozí hodnota je 0D85CC)."\r
+\r
+#: admin/settings.php:1322\r
+#@ mantra\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Barva odkazu ve widgetu v zápatí (výchozí hodnota je 666666)."\r
+\r
+#: admin/settings.php:1330\r
+#@ mantra\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr "Barva zaměřeného odkazu ve widgetu v zápatí (výchozí hodnota je 888888)."\r
+\r
+#: admin/settings.php:1352\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:1367\r
+#@ mantra\r
+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. "\r
+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."\r
+\r
+#: admin/settings.php:1381\r
+#@ mantra\r
+msgid "Select the desired main menu items alignment. Center option is only valid for single line menus."\r
+msgstr "Vyberte zarovnání položek v hlavním menu. Volba Na střed je platná pouze pro jednotlivé odkazy v menu."\r
+\r
+#: admin/settings.php:1388\r
+#: admin/settings.php:1451\r
+#@ mantra\r
+msgid "White"\r
+msgstr "Býlá"\r
+\r
+#: admin/settings.php:1388\r
+#@ mantra\r
+msgid "Light"\r
+msgstr "Světlá"\r
+\r
+#: admin/settings.php:1388\r
+#@ mantra\r
+msgid "Light Gray"\r
+msgstr "Světle šedá"\r
+\r
+#: admin/settings.php:1388\r
+#: admin/settings.php:1451\r
+#@ mantra\r
+msgid "Gray"\r
+msgstr "Šedá"\r
+\r
+#: admin/settings.php:1388\r
+#@ mantra\r
+msgid "Dark Gray"\r
+msgstr "Tmavě šedá"\r
+\r
+#: admin/settings.php:1388\r
+#@ mantra\r
+msgid "Black"\r
+msgstr "Černá"\r
+\r
+#: admin/settings.php:1396\r
+#@ mantra\r
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."\r
+msgstr "Toto nastavení změní vzhled vašich titulků. Na obrázky, které nejsou vloženy do titulků to nemá vliv."\r
+\r
+#: admin/settings.php:1412\r
+#@ mantra\r
+msgid "The border around your inserted images. "\r
+msgstr "Ohraničení kolem vložených obrázků."\r
+\r
+#: admin/settings.php:1427\r
+#@ mantra\r
+msgid "The image on top of your captions. "\r
+msgstr "Obrázek v horní části popisků."\r
+\r
+#: admin/settings.php:1442\r
+#@ mantra\r
+msgid "The sidebar list bullets. "\r
+msgstr "Odrážky v seznamu v sidebaru."\r
+\r
+#: admin/settings.php:1459\r
+#@ mantra\r
+msgid "The background for your post-metas area (under your post tiltes). Gray by default."\r
+msgstr "Pozadí oblasti pro Meta u příspěvku. Ve výchozím nastavení je šedé."\r
+\r
+#: admin/settings.php:1467\r
+#: admin/settings.php:1483\r
+#: admin/settings.php:1500\r
+#: admin/settings.php:1515\r
+#: admin/settings.php:1545\r
+#: admin/settings.php:1560\r
+#: admin/settings.php:1576\r
+#: admin/settings.php:1612\r
+#: admin/settings.php:1627\r
+#: admin/settings.php:1642\r
+#: admin/settings.php:1657\r
+#: admin/settings.php:1672\r
+#: admin/settings.php:1687\r
+#: admin/settings.php:1702\r
+#: admin/settings.php:1717\r
+#@ mantra\r
+msgid "Show"\r
+msgstr "Zobrazit"\r
+\r
+#: admin/settings.php:1467\r
+#: admin/settings.php:1483\r
+#: admin/settings.php:1500\r
+#: admin/settings.php:1515\r
+#: admin/settings.php:1545\r
+#: admin/settings.php:1576\r
+#: admin/settings.php:1612\r
+#: admin/settings.php:1627\r
+#: admin/settings.php:1642\r
+#: admin/settings.php:1657\r
+#: admin/settings.php:1672\r
+#: admin/settings.php:1687\r
+#: admin/settings.php:1702\r
+#: admin/settings.php:1717\r
+#@ mantra\r
+msgid "Hide"\r
+msgstr "Skrýt"\r
+\r
+#: admin/settings.php:1475\r
+#@ mantra\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Skrýtnebo zobrazit horizontální zobrazení samostatných příspěvků."\r
+\r
+#: admin/settings.php:1491\r
+#@ mantra\r
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."\r
+msgstr "Skrýt nebo zobrazit odrážky u seznamů v obsahu (příspěvky, stránky, atd.)."\r
+\r
+#: admin/settings.php:1508\r
+#@ mantra\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "Skrýt nebo zobrazit názvy stránek na každé <i>vytvořené</i> stránce."\r
+\r
+#: admin/settings.php:1523\r
+#@ mantra\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Skrýt nebo zobrazit názvy stránek na stránce <i>Rubrika</i>."\r
+\r
+#: admin/settings.php:1538\r
+#@ mantra\r
+msgid "Hide table borders and background color."\r
+msgstr "Skrýt ohraničení tabulky a barvu pozadí."\r
+\r
+#: admin/settings.php:1553\r
+#@ mantra\r
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."\r
+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>)."\r
+\r
+#: admin/settings.php:1560\r
+#@ mantra\r
+msgid "Hide in posts"\r
+msgstr "Skrýt příspěvek"\r
+\r
+#: admin/settings.php:1560\r
+#@ mantra\r
+msgid "Hide in pages"\r
+msgstr "Skrýt stránku"\r
+\r
+#: admin/settings.php:1560\r
+#@ mantra\r
+msgid "Hide everywhere"\r
+msgstr "Skrýt vše"\r
+\r
+#: admin/settings.php:1568\r
+#@ mantra\r
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."\r
+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é."\r
+\r
+#: admin/settings.php:1584\r
+#@ mantra\r
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr "Skrýt text <b>Komentáře jsou uzavřeny</b> u příspěvků s komentáři pro zdravotně postižené."\r
+\r
+#: admin/settings.php:1600\r
+#@ mantra\r
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."\r
+msgstr "Zapnout tlačítko Zpět na začátek. Zobrazí se tlačítko po rolování stránky."\r
+\r
+#: admin/settings.php:1620\r
+#@ mantra\r
+msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."\r
+msgstr "Skrýt nebo zobrazit <strong>Komentovat</strong> nebo <strong>x Komentářů</ strong> vedle příspěvků nebo u úryvků příspěvků."\r
+\r
+#: admin/settings.php:1635\r
+#@ mantra\r
+msgid "Hide or show the post date."\r
+msgstr "Skrýt nebo zobrazit datum u příspěvku."\r
+\r
+#: admin/settings.php:1650\r
+#@ mantra\r
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."\r
+msgstr "Zobrazit Čas odeslání s datem příspěvku. Čas nebude zobrazen, pokud je skryto Datum příspěvku."\r
+\r
+#: admin/settings.php:1665\r
+#@ mantra\r
+msgid "Hide or show the post author."\r
+msgstr "Skrýt nebo zobrazit autora příspěvku."\r
+\r
+#: admin/settings.php:1680\r
+#@ mantra\r
+msgid "Hide the post category."\r
+msgstr "Skrýt nebo zobrazit rubriku příspěvku."\r
+\r
+#: admin/settings.php:1695\r
+#@ mantra\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "Skrýt trvalý odkaz 'Záložka'."\r
+\r
+#: admin/settings.php:1710\r
+#@ mantra\r
+msgid "Hide the meta bar. All meta info in it will be hidden."\r
+msgstr "Skrýt panel meta. Všechny meta infomace budou skryty."\r
+\r
+#: admin/settings.php:1725\r
+#@ mantra\r
+msgid "Hide the post tags."\r
+msgstr "Skrýt štítky u příspěvků"\r
+\r
+#: admin/settings.php:1738\r
+#: admin/settings.php:1753\r
+#: admin/settings.php:1769\r
+#@ mantra\r
+msgid "Excerpt"\r
+msgstr "Úryvek"\r
+\r
+#: admin/settings.php:1738\r
+#: admin/settings.php:1753\r
+#: admin/settings.php:1769\r
+#@ mantra\r
+msgid "Full Post"\r
+msgstr "Celý příspěvek"\r
+\r
+#: admin/settings.php:1746\r
+#@ mantra\r
+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."\r
+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í."\r
+\r
+#: admin/settings.php:1761\r
+#@ mantra\r
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "\r
+msgstr "Vyberte, zda mají být důležité příspěvky na vaší domovské stránce viditelné celé nebo jen v úryvcích."\r
+\r
+#: admin/settings.php:1777\r
+#@ mantra\r
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."\r
+msgstr "Úryvky z archivu, rubrik a vyhledávacích stránek. Stejné jako výše, týká se jen standardních příspěvků."\r
+\r
+#: admin/settings.php:1785\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"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"\r
+"\t\t\t\t\t\t\t,si čtenář může zobrazit celou stránku."\r
+\r
+#: admin/settings.php:1801\r
+#@ mantra\r
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."\r
+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."\r
+\r
+#: admin/settings.php:1808\r
+#@ mantra\r
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."\r
+msgstr "Nahradí tři tečky (\"[...])\", které jsou automaticky zobrazeny v úryvcích."\r
+\r
+#: admin/settings.php:1815\r
+#@ mantra\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "Upravený odkaz na 'Číst dále\" bude přidán k úryvku vašeho příspěvku."\r
+\r
+#: admin/settings.php:1861\r
+#@ mantra\r
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."\r
+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ášť."\r
+\r
+#: admin/settings.php:1876\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:1892\r
+#@ mantra\r
+msgid "Thumbnail alignment."\r
+msgstr "Zarovnání náhledu"\r
+\r
+#: admin/settings.php:1909\r
+#@ mantra\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:1925\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."\r
+msgstr ""\r
+"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"\r
+"\t\t\t\t\t\t\t pokud je větší nebo alespoň roven aktuální velikosti záhlaví."\r
+\r
+#: admin/settings.php:1941\r
+#@ mantra\r
+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> )"\r
+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>)"\r
+\r
+#: admin/settings.php:1942\r
+#@ mantra\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Vložte až 5 různých adres sociálních sítí."\r
+\r
+#: admin/settings.php:1943\r
+#@ mantra\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Vybrat si můžete celkem z 27 sociálních sítí."\r
+\r
+#: admin/settings.php:1944\r
+#@ mantra\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Můžete vynechat libovolný počet prázdných vstupních polí."\r
+\r
+#: admin/settings.php:1945\r
+#@ mantra\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Můžete si zvolit stejnou sociální síť, kolikrát chcete."\r
+\r
+#: admin/settings.php:2020\r
+#@ mantra\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "Vyberte <b>oblast</b> pro zobrazení ikon sociálních sítí."\r
+\r
+#: admin/settings.php:2033\r
+#@ mantra\r
+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 © ."\r
+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ř. ©."\r
+\r
+#: admin/settings.php:2041\r
+#@ mantra\r
+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 <style> tags are not needed."\r
+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> <Styly> tagů nejsou potřeba."\r
+\r
+#: admin/settings.php:2048\r
+#@ mantra\r
+msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software).<br> The <script> tags are not needed."\r
+msgstr "Zde vložte vlastní kód JavaScriptu. (Google Analytics a jakékoliv jiné formy analytického softwaru).<br> <Scripty> tagů nejsou potřeba."\r
+\r
+#: admin/settings.php:2061\r
+#@ mantra\r
+msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."\r
+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."\r
+\r
+#: admin/settings.php:2073\r
+#@ mantra\r
+msgid "Auto"\r
+msgstr "Auto"\r
+\r
+#: admin/settings.php:2073\r
+#@ mantra\r
+msgid "Manual"\r
+msgstr "Manuální"\r
+\r
+#: includes/theme-comments.php:28\r
+#@ mantra\r
+msgid "says:"\r
+msgstr "říká:"\r
+\r
+#: includes/theme-comments.php:34\r
+#@ mantra\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Váš komentář čeká na schválení."\r
+\r
+#. translators: 1: date, 2: time\r
+#: includes/theme-comments.php:41\r
+#@ mantra\r
+msgid "at"\r
+msgstr "na"\r
+\r
+#: includes/theme-comments.php:41\r
+#: includes/theme-comments.php:58\r
+#@ mantra\r
+msgid "(Edit)"\r
+msgstr "(Editovat)"\r
+\r
+#: includes/theme-comments.php:58\r
+#@ mantra\r
+msgid "Pingback: "\r
+msgstr "Pingback: "\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "Leave a comment"\r
+msgstr "Komentovat"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> komentář"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> komentáře"\r
+\r
+#: includes/theme-comments.php:107\r
+#@ mantra\r
+msgid "Older Comments"\r
+msgstr "Starší komentáře"\r
+\r
+#: includes/theme-comments.php:108\r
+#@ mantra\r
+msgid "Newer Comments"\r
+msgstr "Novější komentáře"\r
+\r
+#: includes/theme-functions.php:58\r
+#@ mantra\r
+msgid "Menu"\r
+msgstr "Menu"\r
+\r
+#: includes/theme-functions.php:269\r
+#@ mantra\r
+msgid "Home Page"\r
+msgstr "Domovská stránka"\r
+\r
+#: includes/theme-functions.php:342\r
+#@ mantra\r
+msgid "Powered by"\r
+msgstr "Vytvořil"\r
+\r
+#: includes/theme-loop.php:166\r
+#@ mantra\r
+msgid "By "\r
+msgstr "Autor"\r
+\r
+#: includes/theme-loop.php:206\r
+#@ mantra\r
+msgid " Bookmark the "\r
+msgstr "Záložka pro"\r
+\r
+#: includes/theme-loop.php:206\r
+#: includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+#@ mantra\r
+msgid "Permalink to"\r
+msgstr "Trvalý odkaz na"\r
+\r
+#: includes/theme-loop.php:206\r
+#: includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+#@ mantra\r
+msgid "permalink"\r
+msgstr "trvalý odkaz"\r
+\r
+#: includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+#@ mantra\r
+msgid "Bookmark the "\r
+msgstr "Záložka pro"\r
+\r
+#: includes/theme-loop.php:232\r
+#@ mantra\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Starší příspěvky"\r
+\r
+#: includes/theme-loop.php:233\r
+#@ mantra\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Novější příspěvky <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+#@ mantra\r
+msgid "Page %s"\r
+msgstr "Stránka %s"\r
+\r
+#: includes/theme-setup.php:91\r
+#@ mantra\r
+msgid "Primary Navigation"\r
+msgstr "Hlavní navigace"\r
+\r
+#: includes/theme-setup.php:92\r
+#@ mantra\r
+msgid "Top Navigation"\r
+msgstr "Vrchní navigace"\r
+\r
+#: includes/theme-setup.php:93\r
+#@ mantra\r
+msgid "Footer Navigation"\r
+msgstr "Navigace v zápatí"\r
+\r
+#: includes/theme-setup.php:129\r
+#@ mantra\r
+msgid "mantra"\r
+msgstr "Mantra"\r
+\r
+#: includes/theme-setup.php:188\r
+#@ mantra\r
+msgid "Skip to content"\r
+msgstr "Zpět na obsah"\r
+\r
+#: includes/theme-setup.php:215\r
+#@ mantra\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "První prostor pro widgety - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:217\r
+#@ mantra\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "První prostor pro widgety - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:226\r
+#@ mantra\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Druhý prostor pro widgety - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:228\r
+#@ mantra\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Druhý prostor pro widgety - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:237\r
+#@ mantra\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Třetí prostor pro widgety - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:239\r
+#@ mantra\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Třetí prostor pro widgety - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:248\r
+#@ mantra\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Čtvrtý prostor pro widgety - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:250\r
+#@ mantra\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Čtvrtý prostor pro widgety - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:259\r
+#@ mantra\r
+msgid "First Footer Widget Area"\r
+msgstr "První prostor pro widgety v zápatí"\r
+\r
+#: includes/theme-setup.php:261\r
+#@ mantra\r
+msgid "First footer widget area"\r
+msgstr "První prostor pro widgety v zápatí"\r
+\r
+#: includes/theme-setup.php:270\r
+#@ mantra\r
+msgid "Second Footer Widget Area"\r
+msgstr "Druhý prostor pro widgety v zápatí"\r
+\r
+#: includes/theme-setup.php:272\r
+#@ mantra\r
+msgid "Second footer widget area"\r
+msgstr "Druhý prostor pro widgety v zápatí"\r
+\r
+#: includes/theme-setup.php:281\r
+#@ mantra\r
+msgid "Third Footer Widget Area"\r
+msgstr "Třetí prostor pro widgety v zápatí"\r
+\r
+#: includes/theme-setup.php:283\r
+#@ mantra\r
+msgid "The third footer widget area"\r
+msgstr "Třetí prostor pro widgety v zápatí"\r
+\r
+#: includes/theme-setup.php:292\r
+#@ mantra\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Čtvrtý prostor pro widgety v zápatí"\r
+\r
+#: includes/theme-setup.php:294\r
+#@ mantra\r
+msgid "The fourth footer widget area"\r
+msgstr "Čtvrtý prostor pro widgety v zápatí"\r
+\r
+#: includes/theme-setup.php:303\r
+#: includes/theme-setup.php:305\r
+#@ mantra\r
+msgid "Above content Widget Area"\r
+msgstr "Horní část prostoru pro widgety"\r
+\r
+#: includes/theme-setup.php:314\r
+#: includes/theme-setup.php:316\r
+#@ mantra\r
+msgid "Below Content Widget Area"\r
+msgstr "Spodní část prostoru pro widgety"\r
+\r
+#: admin/settings.php:403\r
+#@ mantra\r
+msgid "Select the content you want to load in your slides:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:2062\r
+#@ mantra\r
+msgid "All title tags are handled automatically by Mantra."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2065\r
+#@ mantra\r
+msgid "Homepage Meta Description"\r
+msgstr ""\r
+\r
+#: admin/settings.php:2067\r
+#@ mantra\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2081\r
+#@ mantra\r
+msgid ""\r
+"<u>Auto</u> - Mantra will automatically add post expcerpts to 'page' and 'post'\tmeta descriptions.<br>\n"\r
+"\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"\r
+"\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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2090\r
+#@ mantra\r
+msgid "Do not use"\r
+msgstr ""\r
+\r
+#: admin/settings.php:2100\r
+#@ mantra\r
+msgid "If you want to show an author in the meta tags."\r
+msgstr ""\r
+\r
+#: archive.php:29\r
+#@ mantra\r
+msgctxt "monthly archives date format"\r
+msgid "F Y"\r
+msgstr ""\r
+\r
+#: archive.php:31\r
+#@ mantra\r
+msgctxt "yearly archives date format"\r
+msgid "Y"\r
+msgstr ""\r
+\r
+#: attachment.php:33\r
+#: includes/theme-loop.php:168\r
+#, php-format\r
+#@ mantra\r
+msgid "View all posts by %s"\r
+msgstr ""\r
+\r
+#: content-aside.php:16\r
+#: content-chat.php:16\r
+#: content-gallery.php:19\r
+#: content-gallery.php:56\r
+#: content-image.php:15\r
+#: content-link.php:16\r
+#: content-quote.php:14\r
+#: content-status.php:15\r
+#: content.php:20\r
+#, php-format\r
+#@ mantra\r
+msgid "Permalink to %s"\r
+msgstr ""\r
+\r
+#: content-gallery.php:55\r
+#, php-format\r
+#@ mantra\r
+msgid "This gallery contains <a %1$s>%2$s photo</a>."\r
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."\r
+msgstr[0] ""\r
+msgstr[1] ""\r
+msgstr[2] ""\r
+\r
+#: includes/theme-comments.php:94\r
+#, php-format\r
+#@ mantra\r
+msgid "One Response to %2$s"\r
+msgid_plural "%1$s Responses to %2$s"\r
+msgstr[0] ""\r
+msgstr[1] ""\r
+msgstr[2] ""\r
+\r
+#: includes/theme-functions.php:344\r
+#@ mantra\r
+msgid "Semantic Personal Publishing Platform"\r
+msgstr ""\r
+\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra-Pengelinks v\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: \n"\r
+"PO-Revision-Date: 2012-09-30 11:35:29+0000\n"\r
+"Last-Translator: admin <mail@pengelinks.dk>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"Plural-Forms: nplurals=2; plural=n != 1;\n"\r
+"X-Poedit-Language: Danish\n"\r
+"X-Poedit-Country: DENMARK\n"\r
+"X-Poedit-SourceCharset: utf-8\n"\r
+"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"\r
+"X-Poedit-Basepath: ../\n"\r
+"X-Poedit-Bookmarks: \n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+"X-Textdomain-Support: yes"\r
+\r
+#: 404.php:17\r
+#@ mantra\r
+msgid "Not Found"\r
+msgstr "Blev ikke fundet"\r
+\r
+#: 404.php:19\r
+#@ mantra\r
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."\r
+msgstr "Beklager, men siden du forsøger at hente blev ikke fundet. Måske en søgning vil hjælpe."\r
+\r
+#: admin/admin-functions.php:62\r
+#@ mantra\r
+msgid "Before you can upload your import file, you will need to fix the following error:"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:70\r
+#@ mantra\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Importér Mantra tema indstillinger"\r
+\r
+#: admin/admin-functions.php:72\r
+#@ mantra\r
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"\r
+msgstr "Hej! Dette er her du kan importere indstillingerne for Mantra.<i>Husk venligst, at dette stadig er en eksperimentel funktion.</i>"\r
+\r
+#: admin/admin-functions.php:74\r
+#@ mantra\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Vælg en fil fra computeren:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+#@ mantra\r
+msgid "Maximum size: %s"\r
+msgstr "Maksimale størrelse: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+#@ mantra\r
+msgid "And import!"\r
+msgstr "Og importér!"\r
+\r
+#: admin/admin-functions.php:148\r
+#@ mantra\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Importér Mantra tema indstillinger "\r
+\r
+#: admin/admin-functions.php:151\r
+#@ mantra\r
+msgid "Great! The options have been imported!"\r
+msgstr "Fremragende! Indstillingerne er blevet importeret!"\r
+\r
+#: admin/admin-functions.php:152\r
+#@ mantra\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Gå tilbage til siden for Mantra indstillinger og kontrollér dem!"\r
+\r
+#: admin/admin-functions.php:155\r
+#: admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+#@ mantra\r
+msgid "Oops, there's a small problem."\r
+msgstr "Ups, der er et lille problem."\r
+\r
+#: admin/admin-functions.php:156\r
+#@ mantra\r
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."\r
+msgstr "Den uploadede fil indeholder ikke gyldige Mantra indstillinger. Kontrollér venligst, at filen er eksporteret fra siden med Mantra indstillinger"\r
+\r
+#: admin/admin-functions.php:162\r
+#@ mantra\r
+msgid "The uploaded file could not be read."\r
+msgstr "Den uploadede fil kunne ikke læses"\r
+\r
+#: admin/admin-functions.php:168\r
+#@ mantra\r
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."\r
+msgstr "Den uploadede fil understøttes ikke. Kontrollér venligst, at filen var eksporteret fra Mantra siden og at det er en tekst fil."\r
+\r
+#: admin/admin-functions.php:177\r
+#@ mantra\r
+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."\r
+msgstr "Ups! filen er tom eller manglende. Denne fejl kan også skyldes, at upload er deaktiveret i din php.ini eller post_max_size er angivet til at være mindre end upload_max_filesize i php.ini"\r
+\r
+#: admin/admin-functions.php:183\r
+#@ mantra\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "FEJL: Du har ikke rettigheder til at udføre denne handling"\r
+\r
+#: admin/main.php:93\r
+#@ mantra\r
+msgid "Layout Settings"\r
+msgstr "Layout indstillinger"\r
+\r
+#: admin/main.php:94\r
+#@ mantra\r
+msgid "Presentation Page"\r
+msgstr "Præsentations side"\r
+\r
+#: admin/main.php:95\r
+#@ mantra\r
+msgid "Text Settings"\r
+msgstr "Tekst indstillinger"\r
+\r
+#: admin/main.php:96\r
+#@ mantra\r
+msgid "Color Settings"\r
+msgstr "Farve indstillinger"\r
+\r
+#: admin/main.php:97\r
+#@ mantra\r
+msgid "Graphics Settings"\r
+msgstr "Grafik indstillinger"\r
+\r
+#: admin/main.php:98\r
+#@ mantra\r
+msgid "Post Information Settings"\r
+msgstr "Indlægs information indstillinger"\r
+\r
+#: admin/main.php:99\r
+#@ mantra\r
+msgid "Post Excerpt Settings"\r
+msgstr "Indlægs uddrag indstillinger"\r
+\r
+#: admin/main.php:100\r
+#@ mantra\r
+msgid "Featured Image Settings"\r
+msgstr "Fremhævet billede indstillinger"\r
+\r
+#: admin/main.php:101\r
+#@ mantra\r
+msgid "Social Media Settings"\r
+msgstr "Sociale medier indstillinger"\r
+\r
+#: admin/main.php:102\r
+#@ mantra\r
+msgid "Miscellaneous Settings"\r
+msgstr "Diverse indstillinger"\r
+\r
+#: admin/main.php:104\r
+#@ mantra\r
+msgid "Main Layout"\r
+msgstr "Primært layout"\r
+\r
+#: admin/main.php:105\r
+#@ mantra\r
+msgid "Content / Sidebar Width"\r
+msgstr "Indhold / Sidebar bredde"\r
+\r
+#: admin/main.php:106\r
+#@ mantra\r
+msgid "Header Image Height"\r
+msgstr "Header billede højde"\r
+\r
+#: admin/main.php:108\r
+#@ mantra\r
+msgid "Enable Presentation Page"\r
+msgstr "Aktivér præsentations side"\r
+\r
+#: admin/main.php:109\r
+#@ mantra\r
+msgid "Slider Settings"\r
+msgstr "Slider indstillinger"\r
+\r
+#: admin/main.php:110\r
+#@ mantra\r
+msgid "Slides"\r
+msgstr "Slides"\r
+\r
+#: admin/main.php:111\r
+#@ mantra\r
+msgid "Presentation Page Columns"\r
+msgstr "Præsentations side kolonner"\r
+\r
+#: admin/main.php:112\r
+#@ mantra\r
+msgid "Extras"\r
+msgstr "Extras"\r
+\r
+#: admin/main.php:114\r
+#@ mantra\r
+msgid "General Font"\r
+msgstr "Primær font"\r
+\r
+#: admin/main.php:115\r
+#@ mantra\r
+msgid "General Font Size"\r
+msgstr "Primær font størrelse"\r
+\r
+#: admin/main.php:116\r
+#@ mantra\r
+msgid "Post Title Font "\r
+msgstr "Indlægs titel font"\r
+\r
+#: admin/main.php:117\r
+#@ mantra\r
+msgid "Post Title Font Size"\r
+msgstr "Indlægs titel font størrelse"\r
+\r
+#: admin/main.php:118\r
+#@ mantra\r
+msgid "Sidebar Font"\r
+msgstr "Sidebar font"\r
+\r
+#: admin/main.php:119\r
+#@ mantra\r
+msgid "SideBar Font Size"\r
+msgstr "Sidebar font størrelse"\r
+\r
+#: admin/main.php:120\r
+#@ mantra\r
+msgid "Sub-Headers Font"\r
+msgstr "Under overskrift font"\r
+\r
+#: admin/main.php:121\r
+#@ mantra\r
+msgid "Force Text Align"\r
+msgstr "Gennemtving font tilpasning"\r
+\r
+#: admin/main.php:122\r
+#@ mantra\r
+msgid "Paragraph indent"\r
+msgstr "Afsnitsindrykning"\r
+\r
+#: admin/main.php:123\r
+#@ mantra\r
+msgid "Header indent"\r
+msgstr "Headerindrykning"\r
+\r
+#: admin/main.php:124\r
+#@ mantra\r
+msgid "Line Height"\r
+msgstr "Linie højde"\r
+\r
+#: admin/main.php:125\r
+#@ mantra\r
+msgid "Word spacing"\r
+msgstr "Ord afstand"\r
+\r
+#: admin/main.php:126\r
+#@ mantra\r
+msgid "Letter spacing"\r
+msgstr "Bogstav afstand"\r
+\r
+#: admin/main.php:127\r
+#@ mantra\r
+msgid "Text shadow"\r
+msgstr "Tekst skygge"\r
+\r
+#: admin/main.php:129\r
+#@ mantra\r
+msgid "Background Color"\r
+msgstr "Baggrundsfarve"\r
+\r
+#: admin/main.php:130\r
+#@ mantra\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Header (Banner og menu) baggrundsfarve"\r
+\r
+#: admin/main.php:131\r
+#@ mantra\r
+msgid "Content Background Color"\r
+msgstr "Indholds baggrundsfarve"\r
+\r
+#: admin/main.php:132\r
+#@ mantra\r
+msgid "Menu Background Color"\r
+msgstr "Menu baggrundsfarve"\r
+\r
+#: admin/main.php:133\r
+#@ mantra\r
+msgid "First Sidebar Background Color"\r
+msgstr "Første sidebar baggrundsfarve"\r
+\r
+#: admin/main.php:134\r
+#@ mantra\r
+msgid "Second Sidebar Background Color"\r
+msgstr "Anden sidebar baggrundsfarve"\r
+\r
+#: admin/main.php:136\r
+#@ mantra\r
+msgid "Site Title Color"\r
+msgstr "Sidetitel farve"\r
+\r
+#: admin/main.php:137\r
+#@ mantra\r
+msgid "Site Description Color"\r
+msgstr "Sidebeskrivelse farve"\r
+\r
+#: admin/main.php:139\r
+#@ mantra\r
+msgid "Content Text Color"\r
+msgstr "Indholdstekst farve"\r
+\r
+#: admin/main.php:140\r
+#@ mantra\r
+msgid "Links Color"\r
+msgstr "Links farve"\r
+\r
+#: admin/main.php:141\r
+#@ mantra\r
+msgid "Links Hover Color"\r
+msgstr "Links hover farve"\r
+\r
+#: admin/main.php:142\r
+#@ mantra\r
+msgid "Post Title Color"\r
+msgstr "Indlægs titel farve"\r
+\r
+#: admin/main.php:143\r
+#@ mantra\r
+msgid "Post Title Hover Color"\r
+msgstr "Indlægs titel hover farve"\r
+\r
+#: admin/main.php:144\r
+#@ mantra\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Sidebar overskrift baggrundsfarve"\r
+\r
+#: admin/main.php:145\r
+#@ mantra\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Sidebar overskrift tekstfarve"\r
+\r
+#: admin/main.php:146\r
+#@ mantra\r
+msgid "Footer Widget Background Color"\r
+msgstr "Footer widget baggrundsfarve"\r
+\r
+#: admin/main.php:147\r
+#@ mantra\r
+msgid "Footer Background Color"\r
+msgstr "Footer baggrundsfarve"\r
+\r
+#: admin/main.php:148\r
+#@ mantra\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Footer widget overskifts tekstfarve"\r
+\r
+#: admin/main.php:149\r
+#@ mantra\r
+msgid "Footer Widget Link Color"\r
+msgstr "Footer widget link farve"\r
+\r
+#: admin/main.php:150\r
+#@ mantra\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Footer widget hover farve"\r
+\r
+#: admin/main.php:152\r
+#@ mantra\r
+msgid "Caption Border"\r
+msgstr "Billedtekst kant"\r
+\r
+#: admin/main.php:153\r
+#@ mantra\r
+msgid "Post Images Border"\r
+msgstr "Indlægsbilleder kant"\r
+\r
+#: admin/main.php:154\r
+#@ mantra\r
+msgid "Caption Pin"\r
+msgstr "Billedetekst pin"\r
+\r
+#: admin/main.php:155\r
+#@ mantra\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Sidebar menu bullets"\r
+\r
+#: admin/main.php:156\r
+#@ mantra\r
+msgid "Meta Area Background"\r
+msgstr "Meta område baggrund"\r
+\r
+#: admin/main.php:157\r
+#@ mantra\r
+msgid "Post Separator"\r
+msgstr "Indlægs seperator"\r
+\r
+#: admin/main.php:158\r
+#@ mantra\r
+msgid "Content List Bullets"\r
+msgstr "Indholdsliste bullets"\r
+\r
+#: admin/main.php:159\r
+#@ mantra\r
+msgid "Title and Description"\r
+msgstr "Titel og beskrivelse"\r
+\r
+#: admin/main.php:160\r
+#@ mantra\r
+msgid "Page Titles"\r
+msgstr "Sidetitler"\r
+\r
+#: admin/main.php:161\r
+#@ mantra\r
+msgid "Category Page Titles"\r
+msgstr "Kategori sidetitler"\r
+\r
+#: admin/main.php:162\r
+#@ mantra\r
+msgid "Hide Tables"\r
+msgstr "Skjul tabeller"\r
+\r
+#: admin/main.php:163\r
+#@ mantra\r
+msgid "Back to Top button"\r
+msgstr "Tilbage til top knap"\r
+\r
+#: admin/main.php:164\r
+#@ mantra\r
+msgid "Text Under Comments"\r
+msgstr "Tekst under kommentarer"\r
+\r
+#: admin/main.php:165\r
+#@ mantra\r
+msgid "Comments are closed text"\r
+msgstr "Lukket for kommentarer tekst"\r
+\r
+#: admin/main.php:166\r
+#@ mantra\r
+msgid "Comments off"\r
+msgstr "Lukket for kommentarer"\r
+\r
+#: admin/main.php:167\r
+#@ mantra\r
+msgid "Insert footer copyright"\r
+msgstr "Indsæt footer copyright tekst"\r
+\r
+#: admin/main.php:169\r
+#@ mantra\r
+msgid "Post Comments Link"\r
+msgstr "Indlægskommentarer link"\r
+\r
+#: admin/main.php:170\r
+#@ mantra\r
+msgid "Post Date"\r
+msgstr "Indlægsdato"\r
+\r
+#: admin/main.php:171\r
+#@ mantra\r
+msgid "Post Time"\r
+msgstr "Indlægstidspunkt"\r
+\r
+#: admin/main.php:172\r
+#@ mantra\r
+msgid "Post Author"\r
+msgstr "Forfatter"\r
+\r
+#: admin/main.php:173\r
+#@ mantra\r
+msgid "Post Category"\r
+msgstr "Indlægskategori"\r
+\r
+#: admin/main.php:174\r
+#@ mantra\r
+msgid "Post Tags"\r
+msgstr "Indlægs tags"\r
+\r
+#: admin/main.php:175\r
+#@ mantra\r
+msgid "Post Permalink"\r
+msgstr "Link til indlæg"\r
+\r
+#: admin/main.php:176\r
+#@ mantra\r
+msgid "All Post Metas"\r
+msgstr "Meta for alle indlæg"\r
+\r
+#: admin/main.php:178\r
+#@ mantra\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Indlægsuddrag på forside"\r
+\r
+#: admin/main.php:179\r
+#@ mantra\r
+msgid "Affect Sticky Posts"\r
+msgstr "Påvirker sticky indlæg"\r
+\r
+#: admin/main.php:180\r
+#@ mantra\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Indlægsuddrag på arkiv- og kategori sider"\r
+\r
+#: admin/main.php:181\r
+#@ mantra\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Antal ord i indlægsuddrag"\r
+\r
+#: admin/main.php:182\r
+#@ mantra\r
+msgid "Magazine Layout"\r
+msgstr "Magasin layout"\r
+\r
+#: admin/main.php:183\r
+#@ mantra\r
+msgid "Excerpt suffix"\r
+msgstr "Uddrag suffiks"\r
+\r
+#: admin/main.php:184\r
+#@ mantra\r
+msgid "Continue reading link text "\r
+msgstr "Læs mere link tekst"\r
+\r
+#: admin/main.php:185\r
+#@ mantra\r
+msgid "HTML tags in Excerpts"\r
+msgstr "HTML tags i uddrag"\r
+\r
+#: admin/main.php:187\r
+#@ mantra\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Fremhævede billeder som indlæg Thumbnails"\r
+\r
+#: admin/main.php:188\r
+#@ mantra\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Autovælg billeder fra indlæg"\r
+\r
+#: admin/main.php:189\r
+#@ mantra\r
+msgid "Thumbnails Alignment "\r
+msgstr "Thumbnail justering"\r
+\r
+#: admin/main.php:190\r
+#@ mantra\r
+msgid "Thumbnails Size "\r
+msgstr "Thumbnail størrelse"\r
+\r
+#: admin/main.php:191\r
+#@ mantra\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Fremhævet billede som Header billede"\r
+\r
+#: admin/main.php:193\r
+#@ mantra\r
+msgid "Link nr. 1"\r
+msgstr "Link nr. 1"\r
+\r
+#: admin/main.php:194\r
+#@ mantra\r
+msgid "Link nr. 2"\r
+msgstr "Link nr. 2"\r
+\r
+#: admin/main.php:195\r
+#@ mantra\r
+msgid "Link nr. 3"\r
+msgstr "Link nr. 3"\r
+\r
+#: admin/main.php:196\r
+#@ mantra\r
+msgid "Link nr. 4"\r
+msgstr "Link nr. 4"\r
+\r
+#: admin/main.php:197\r
+#@ mantra\r
+msgid "Link nr. 5"\r
+msgstr "Link nr. 5"\r
+\r
+#: admin/main.php:198\r
+#@ mantra\r
+msgid "Socials display"\r
+msgstr "Sociale medier visning"\r
+\r
+#: admin/main.php:200\r
+#@ mantra\r
+msgid "Make Site Header a Link"\r
+msgstr "Lav header til link"\r
+\r
+#: admin/main.php:201\r
+#@ mantra\r
+msgid "Breadcrumbs"\r
+msgstr "Breadcrumbs"\r
+\r
+#: admin/main.php:202\r
+#@ mantra\r
+msgid "Pagination"\r
+msgstr "Sideinddeling"\r
+\r
+#: admin/main.php:203\r
+#@ mantra\r
+msgid "Mobile view"\r
+msgstr "Mobilvisning"\r
+\r
+#: admin/main.php:204\r
+#@ mantra\r
+msgid "FavIcon"\r
+msgstr "FavIcon"\r
+\r
+#: admin/main.php:205\r
+#@ mantra\r
+msgid "Custom CSS"\r
+msgstr "brugerdefineret CSS"\r
+\r
+#: admin/main.php:206\r
+#@ mantra\r
+msgid "Custom JavaScript"\r
+msgstr "Brugerdefineret Javescript"\r
+\r
+#: admin/main.php:207\r
+#@ mantra\r
+msgid "SEO Settings"\r
+msgstr "SEO indstillinger"\r
+\r
+#: admin/main.php:224\r
+#@ mantra\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Beklager, men du har ikke rettigheder til at tilg[ denne side"\r
+\r
+#: admin/main.php:234\r
+#@ mantra\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Mantra indstillinger opdateret med success"\r
+\r
+#: admin/main.php:245\r
+#@ mantra\r
+msgid "Reset to Defaults"\r
+msgstr "Nulstil til standard"\r
+\r
+#: admin/main.php:246\r
+#@ mantra\r
+msgid "Save Changes"\r
+msgstr "Gem ændringer"\r
+\r
+#: admin/main.php:260\r
+#@ mantra\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we spend night after night improving the Mantra Theme. We fix a lot of bugs (that we previously created); we add more and more customization options while also trying to keep things as simple as possible; then... we might play a game or two but rest assured that we return to read and (in most cases) reply to your late night emails and comments, take notes and draw dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they keep so fresh after all that hard labor for that darned theme? </i> Well folks, it's simple. We drink coffee. Industrial quantities of hot boiling coffee. We love it! So if you want to help with the further development of the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we spend night after night improving the Mantra Theme. We fix a lot of bugs (that we previously created); we add more and more customization options while also trying to keep things as simple as possible; then... we might play a game or two but rest assured that we return to read and (in most cases) reply to your late night emails and comments, take notes and draw dashboards of things to implement in future versions.</p>\n"\r
+"\\\t\\\t\\\t<p>So you might ask yourselves: <i>How do they do it? How can they keep so fresh after all that hard labor for that darned theme? </i> Well folks, it's simple. We drink coffee. Industrial quantities of hot boiling coffee. We love it! So if you want to help with the further development of the Mantra Theme...</p> "\r
+\r
+#: admin/main.php:275\r
+#@ mantra\r
+msgid "Import/Export Settings"\r
+msgstr "Import&eksport indstillinger"\r
+\r
+#: admin/main.php:281\r
+#@ mantra\r
+msgid "Export Theme options"\r
+msgstr "Eksportér tema indstillinger"\r
+\r
+#: admin/main.php:282\r
+#@ mantra\r
+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!"\r
+msgstr "Så nemt er det: et museklik væk - Muligheden for at eksportere dine Mantra indstillinger og gemme dem på din computer. Føler du dig sikrere nu.... Det burde du :) "\r
+\r
+#: admin/main.php:287\r
+#@ mantra\r
+msgid "Import Theme options"\r
+msgstr "Importér Theme indstillinger"\r
+\r
+#: admin/main.php:288\r
+#@ mantra\r
+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."\r
+msgstr "Uden importmuligheden ville eksporten blot være en øvelse. Hav den eksporterede fil klar og så ses vi efter et klik på musen :)"\r
+\r
+#: admin/main.php:295\r
+#@ mantra\r
+msgid "Mantra Latest News"\r
+msgstr "Seneste nyheder fra Mantra"\r
+\r
+#: admin/main.php:306\r
+#@ mantra\r
+msgid "No news items."\r
+msgstr "Ingen nyheder"\r
+\r
+#: admin/main.php:320\r
+#@ mantra\r
+msgid "Mantra Help"\r
+msgstr "Mantra hjælp"\r
+\r
+#: admin/main.php:323\r
+#@ mantra\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"\\\t\\\t\\\t<ul>\n"\r
+"\\\t\\\t\\\t\\\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\\\t\\\t\\\t\\\t<li>- Want to know what changes are made to the theme with each new version?</li>\n"\r
+"\\\t\\\t\\\t\\\t<li>- Found a bug or maybe something doesn't work exactly as expected?</li>\n"\r
+"\\\t\\\t\\\t\\\t<li>- Got an idea on how to improve the Mantra Theme to better suit your needs?</li>\n"\r
+"\\\t\\\t\\\t\\\t<li>- Want a setting implemented?</li>\n"\r
+"\\\t\\\t\\\t\\\t<li>- Do you have or would you like to make a translation of the Mantra Theme?</li>\n"\r
+"\\\t\\\t\\\t</ul>\n"\r
+"\\\t\\\t\\\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\\\t"\r
+\r
+#: admin/main.php:334\r
+#@ mantra\r
+msgid "Mantra Support Page"\r
+msgstr "Mantra support side"\r
+\r
+#: admin/settings.php:61\r
+#@ mantra\r
+msgid "One column (no sidebars)"\r
+msgstr "En kolonne (Ingen sidebar)"\r
+\r
+#: admin/settings.php:62\r
+#@ mantra\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "To kolonner, sidebar til højre"\r
+\r
+#: admin/settings.php:63\r
+#@ mantra\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "To kolonner, sidebar til venstre"\r
+\r
+#: admin/settings.php:64\r
+#@ mantra\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Tre kolonner, sidebars til højre"\r
+\r
+#: admin/settings.php:65\r
+#@ mantra\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Tre kolonner, sidebars til venstre"\r
+\r
+#: admin/settings.php:66\r
+#@ mantra\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Tre kolonner, en sidebar på hver side"\r
+\r
+#: admin/settings.php:81\r
+#@ mantra\r
+msgid "Choose your layout "\r
+msgstr "Vælg layout"\r
+\r
+#: admin/settings.php:89\r
+#@ mantra\r
+msgid "Absolute"\r
+msgstr "Absolut"\r
+\r
+#: admin/settings.php:89\r
+#@ mantra\r
+msgid "Relative"\r
+msgstr "Relativt"\r
+\r
+#: admin/settings.php:90\r
+#@ mantra\r
+msgid "Dimensions to use: "\r
+msgstr "Benyt følgende dimensioner"\r
+\r
+#: admin/settings.php:189\r
+#: admin/settings.php:209\r
+#@ mantra\r
+msgid "Content ="\r
+msgstr "Indhold ="\r
+\r
+#: admin/settings.php:190\r
+#: admin/settings.php:210\r
+#@ mantra\r
+msgid "Sidebar(s) ="\r
+msgstr "Sidebar(s) ="\r
+\r
+#: admin/settings.php:191\r
+#: admin/settings.php:211\r
+#@ mantra\r
+msgid "Total width ="\r
+msgstr "Total bredde ="\r
+\r
+#: admin/settings.php:200\r
+#@ mantra\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+"Vælg bredden af dit <b>indhold</b> og <b>sidebar(s)</b>. \n"\r
+" \\\t\\\tInholdet kan ikke være mindre end 500px bred, sidebar bredden er mindst 220px og ikke mere end 800px.<br />\n"\r
+"\\\tHvis du har valgt 3 kolonner (2 sidebars) vil hver sidebar have den halve bredde af det valgte."\r
+\r
+#: admin/settings.php:220\r
+#@ mantra\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+"Vælg bredden af dit <b>idnhold</b> og <b>sidebar(s)</b>. \n"\r
+" \\\t\\\tDette er relative dimensioner - relativt i forhold til brugerens browser. Den totale bredde er en procentdel af browserens bredde.<br />\n"\r
+"\\\t Indholdet kan ikke være mindre end 40% af den samlede bredde, sidebar området er mindst 20% og ikke mere end 50%.<br />\n"\r
+"\\\tHvis du har valgt 3 kolonner (med 2 sidebars) vil hver sidebar have den halve bredde af det valgte."\r
+\r
+#: admin/settings.php:244\r
+#@ mantra\r
+msgid "Select the header's height. After saving the settings go and upload your new header image. The header's width will be = "\r
+msgstr "Vælg headerens højde. Efter at have gemt indstillingerne, upload dit nye header billede. Headerens bredde vil være = "\r
+\r
+#: admin/settings.php:257\r
+#: admin/settings.php:969\r
+#: admin/settings.php:1031\r
+#: admin/settings.php:1367\r
+#: admin/settings.php:1429\r
+#: admin/settings.php:1637\r
+#: admin/settings.php:1666\r
+#: admin/settings.php:1689\r
+#: admin/settings.php:1712\r
+#: admin/settings.php:1761\r
+#: admin/settings.php:1890\r
+#: admin/settings.php:1905\r
+#: admin/settings.php:1920\r
+#: admin/settings.php:1935\r
+#: admin/settings.php:1977\r
+#@ mantra\r
+msgid "Enable"\r
+msgstr "Aktiver"\r
+\r
+#: admin/settings.php:257\r
+#: admin/settings.php:969\r
+#: admin/settings.php:1031\r
+#: admin/settings.php:1367\r
+#: admin/settings.php:1429\r
+#: admin/settings.php:1637\r
+#: admin/settings.php:1666\r
+#: admin/settings.php:1689\r
+#: admin/settings.php:1712\r
+#: admin/settings.php:1761\r
+#: admin/settings.php:1890\r
+#: admin/settings.php:1905\r
+#: admin/settings.php:1920\r
+#: admin/settings.php:1935\r
+#: admin/settings.php:1977\r
+#@ mantra\r
+msgid "Disable"\r
+msgstr "Deaktivér"\r
+\r
+#: admin/settings.php:265\r
+#@ mantra\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page and it will replace whatever page you have selected as homepage. It has a slider and columns for presentation\n"\r
+"\t\ttext and images."\r
+msgstr ""\r
+"Aktivér præsentations forside. Dette vil blive din nye forside og vil erstatte dit nuværende valg. Præsentations siden har en slider og kolonner for præsentation\n"\r
+"\\\t\\\ttekst og billeder."\r
+\r
+#: admin/settings.php:275\r
+#@ mantra\r
+msgid "Slider Dimensions:"\r
+msgstr "Slider dimensioner:"\r
+\r
+#: admin/settings.php:276\r
+#@ mantra\r
+msgid "width"\r
+msgstr "bredde"\r
+\r
+#: admin/settings.php:277\r
+#@ mantra\r
+msgid "height"\r
+msgstr "højde"\r
+\r
+#: admin/settings.php:278\r
+#@ mantra\r
+msgid "The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr "Dimensionerne af slider. Vær sikker på, at dine billeder har samme dimensioner. "\r
+\r
+#: admin/settings.php:280\r
+#@ mantra\r
+msgid "Animation:"\r
+msgstr "Animation:"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "Random"\r
+msgstr "Tilfældig"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "Fold"\r
+msgstr "Fold"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "Fade"\r
+msgstr "Fade"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "SlideInRight"\r
+msgstr "Slide ind fra højre"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "SlideInLeft"\r
+msgstr "Slide ind fra venstre"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "SliceDown"\r
+msgstr "Slice ned"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "SliceDownLeft"\r
+msgstr "Slice ned fra venstre"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "SliceUp"\r
+msgstr "Slice op"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "SliceUpLeft"\r
+msgstr "Slice op fra venstre"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "SliceUpDown"\r
+msgstr "Slice ned og op"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "SliceUpDownLeft"\r
+msgstr "Slice ned og op fra venstre"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "BoxRandom"\r
+msgstr "Tilfældig boks"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "BoxRain"\r
+msgstr "Regn effekt"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "BoxRainReverse"\r
+msgstr "Omvendt regn effekt"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "BoxRainGrow"\r
+msgstr "Voksende regn effekt"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "BoxRainGrowReverse"\r
+msgstr "Omvendt voksende regn effekt"\r
+\r
+#: admin/settings.php:290\r
+#@ mantra\r
+msgid "The transition effect your slider will have."\r
+msgstr "Overgangseffekten på din slider."\r
+\r
+#: admin/settings.php:292\r
+#@ mantra\r
+msgid "Border Settings:"\r
+msgstr "Kant indstillinger:"\r
+\r
+#: admin/settings.php:293\r
+#@ mantra\r
+msgid "Width"\r
+msgstr "Bredde"\r
+\r
+#: admin/settings.php:294\r
+#@ mantra\r
+msgid "Color"\r
+msgstr "Farve"\r
+\r
+#: admin/settings.php:296\r
+#@ mantra\r
+msgid "The width and color of the slider's border."\r
+msgstr "Bredde og farve på sliderens kant."\r
+\r
+#: admin/settings.php:298\r
+#@ mantra\r
+msgid "Animation Time:"\r
+msgstr "Animationstid:"\r
+\r
+#: admin/settings.php:299\r
+#: admin/settings.php:303\r
+#@ mantra\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "millisekunder (1000ms = 1 sekund) "\r
+\r
+#: admin/settings.php:300\r
+#@ mantra\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "Den tid overgangseffekten vil tage."\r
+\r
+#: admin/settings.php:302\r
+#@ mantra\r
+msgid "Pause Time:"\r
+msgstr "Pausetid:"\r
+\r
+#: admin/settings.php:304\r
+#@ mantra\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Den tid din slide vil være stille og synlig."\r
+\r
+#: admin/settings.php:307\r
+#@ mantra\r
+msgid "Slider navigation:"\r
+msgstr "Slider navigation:"\r
+\r
+#: admin/settings.php:309\r
+#@ mantra\r
+msgid "Numbers"\r
+msgstr "Tal"\r
+\r
+#: admin/settings.php:309\r
+#@ mantra\r
+msgid "Bullets"\r
+msgstr "Bullets"\r
+\r
+#: admin/settings.php:309\r
+#: admin/settings.php:1273\r
+#@ mantra\r
+msgid "None"\r
+msgstr "Ingen"\r
+\r
+#: admin/settings.php:317\r
+#@ mantra\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Din slider navigationstype. Bliver vist under slideren."\r
+\r
+#: admin/settings.php:319\r
+#@ mantra\r
+msgid "Slider arrows:"\r
+msgstr "Slider pile:"\r
+\r
+#: admin/settings.php:321\r
+#@ mantra\r
+msgid "Always Visible"\r
+msgstr "Altid synlig"\r
+\r
+#: admin/settings.php:321\r
+#@ mantra\r
+msgid "Visible on Hover"\r
+msgstr "Synlig når musen holdes over"\r
+\r
+#: admin/settings.php:321\r
+#@ mantra\r
+msgid "Hidden"\r
+msgstr "Gemt"\r
+\r
+#: admin/settings.php:329\r
+#@ mantra\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Venstre og højre pilene på din slider"\r
+\r
+#: admin/settings.php:370\r
+#: admin/settings.php:438\r
+#@ mantra\r
+msgid "Select Category"\r
+msgstr "Vælg kategori"\r
+\r
+#: admin/settings.php:397\r
+#@ mantra\r
+msgid "Custom Slides"\r
+msgstr "Tilpassede slides"\r
+\r
+#: admin/settings.php:397\r
+#@ mantra\r
+msgid "Latest Posts"\r
+msgstr "Seneste indlæg"\r
+\r
+#: admin/settings.php:397\r
+#@ mantra\r
+msgid "Random Posts"\r
+msgstr "Tilfældige indlæg"\r
+\r
+#: admin/settings.php:397\r
+#@ mantra\r
+msgid "Sticky Posts"\r
+msgstr "Sticky indlæg"\r
+\r
+#: admin/settings.php:397\r
+#@ mantra\r
+msgid "Latest Posts from Category"\r
+msgstr "Seneste indlæg fra kategori"\r
+\r
+#: admin/settings.php:397\r
+#@ mantra\r
+msgid "Random Posts from Category"\r
+msgstr "Tilfældige indlæg fra kategori"\r
+\r
+#: admin/settings.php:397\r
+#@ mantra\r
+msgid "Specific Posts"\r
+msgstr "Bestemte indlæg"\r
+\r
+#: admin/settings.php:410\r
+#@ mantra\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Seneste indlæg vil blive indlæst i slideren."\r
+\r
+#: admin/settings.php:414\r
+#@ mantra\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Tilfældige indlæge vil blive indlæst i slideren."\r
+\r
+#: admin/settings.php:418\r
+#@ mantra\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "Seneste indlæg fra kategorien vil blive indlæst i slideren."\r
+\r
+#: admin/settings.php:423\r
+#@ mantra\r
+msgid "Random posts from the category you choose will be loaded into the slider."\r
+msgstr "Tilfældige indlæg fra den valgte kategori vil blive indlæst i slideren."\r
+\r
+#: admin/settings.php:427\r
+#@ mantra\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Kun sticky indlæg vil blive indlæst i slideren."\r
+\r
+#: admin/settings.php:431\r
+#@ mantra\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr "Indtast ID på de indlæg du ønsker at vise (adskil med komma):"\r
+\r
+#: admin/settings.php:436\r
+#@ mantra\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Vælg kategorien: "\r
+\r
+#: admin/settings.php:453\r
+#@ mantra\r
+msgid "Number of posts to show:"\r
+msgstr "Antal indlæg der skal vises:"\r
+\r
+#: admin/settings.php:460\r
+#@ mantra\r
+msgid "Slide 1"\r
+msgstr "Slide 1"\r
+\r
+#: admin/settings.php:462\r
+#: admin/settings.php:477\r
+#: admin/settings.php:492\r
+#: admin/settings.php:507\r
+#: admin/settings.php:522\r
+#: admin/settings.php:565\r
+#: admin/settings.php:580\r
+#: admin/settings.php:595\r
+#: admin/settings.php:610\r
+#: content-image.php:19\r
+#@ mantra\r
+msgid "Image"\r
+msgstr "Billede"\r
+\r
+#: admin/settings.php:464\r
+#: admin/settings.php:479\r
+#: admin/settings.php:494\r
+#: admin/settings.php:509\r
+#: admin/settings.php:524\r
+#: admin/settings.php:567\r
+#: admin/settings.php:582\r
+#: admin/settings.php:597\r
+#: admin/settings.php:612\r
+#@ mantra\r
+msgid "Upload or select image from gallery"\r
+msgstr "Upload eller vælg billede fra galleriet"\r
+\r
+#: admin/settings.php:465\r
+#: admin/settings.php:480\r
+#: admin/settings.php:495\r
+#: admin/settings.php:510\r
+#: admin/settings.php:525\r
+#: admin/settings.php:568\r
+#: admin/settings.php:583\r
+#: admin/settings.php:613\r
+#@ mantra\r
+msgid "Title"\r
+msgstr "Titel"\r
+\r
+#: admin/settings.php:467\r
+#: admin/settings.php:482\r
+#: admin/settings.php:497\r
+#: admin/settings.php:512\r
+#: admin/settings.php:527\r
+#: admin/settings.php:570\r
+#: admin/settings.php:585\r
+#: admin/settings.php:600\r
+#: admin/settings.php:615\r
+#@ mantra\r
+msgid "Text"\r
+msgstr "Tekst"\r
+\r
+#: admin/settings.php:469\r
+#: admin/settings.php:484\r
+#: admin/settings.php:499\r
+#: admin/settings.php:514\r
+#: admin/settings.php:529\r
+#: admin/settings.php:572\r
+#: admin/settings.php:587\r
+#: admin/settings.php:602\r
+#: admin/settings.php:617\r
+#: content-link.php:20\r
+#@ mantra\r
+msgid "Link"\r
+msgstr "Link"\r
+\r
+#: admin/settings.php:475\r
+#@ mantra\r
+msgid "Slide 2"\r
+msgstr "Slide 2"\r
+\r
+#: admin/settings.php:490\r
+#@ mantra\r
+msgid "Slide 3"\r
+msgstr "Slide 3"\r
+\r
+#: admin/settings.php:505\r
+#@ mantra\r
+msgid "Slide 4"\r
+msgstr "Slide 4"\r
+\r
+#: admin/settings.php:520\r
+#@ mantra\r
+msgid "Slide 5"\r
+msgstr "Slide 5"\r
+\r
+#: admin/settings.php:533\r
+#@ mantra\r
+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."\r
+msgstr "Dine slides' indhold. Kun billede er påkrævet, alle andre felter er valgfri. Kun slides med billede valgt vil være aktive og synlige i live slideren."\r
+\r
+#: admin/settings.php:543\r
+#@ mantra\r
+msgid "Number of columns:"\r
+msgstr "Antal kolonner:"\r
+\r
+#: admin/settings.php:553\r
+#@ mantra\r
+msgid "Image Height:"\r
+msgstr "Højde på billede:"\r
+\r
+#: admin/settings.php:556\r
+#@ mantra\r
+msgid "Read more text:"\r
+msgstr "Læs mere tekst:"\r
+\r
+#: admin/settings.php:559\r
+#@ mantra\r
+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."\r
+msgstr "Link teksten som kan ses i bunden af alle kolonner. Du kan slette teksten, hvis du ikke ønsker den."\r
+\r
+#: admin/settings.php:563\r
+#@ mantra\r
+msgid "1st Column"\r
+msgstr "1. kolonne"\r
+\r
+#: admin/settings.php:578\r
+#@ mantra\r
+msgid "2nd Column"\r
+msgstr "2. kolonne"\r
+\r
+#: admin/settings.php:593\r
+#@ mantra\r
+msgid "3rd Column"\r
+msgstr "3. kolonne"\r
+\r
+#: admin/settings.php:608\r
+#@ mantra\r
+msgid "4th Column"\r
+msgstr "4. kolonne"\r
+\r
+#: admin/settings.php:630\r
+#@ mantra\r
+msgid "Extra Text"\r
+msgstr "Ekstra tekst"\r
+\r
+#: admin/settings.php:630\r
+#@ mantra\r
+msgid "Top Title"\r
+msgstr "Top titel"\r
+\r
+#: admin/settings.php:632\r
+#@ mantra\r
+msgid "Second Title"\r
+msgstr "Anden titel"\r
+\r
+#: admin/settings.php:635\r
+#@ mantra\r
+msgid "Title color"\r
+msgstr "Titelfarve"\r
+\r
+#: admin/settings.php:638\r
+#@ mantra\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "Farven på titlen (Standard er 333333)."\r
+\r
+#: admin/settings.php:640\r
+#@ mantra\r
+msgid "Bottom Text 1"\r
+msgstr "Bundtekst 1"\r
+\r
+#: admin/settings.php:642\r
+#@ mantra\r
+msgid "Bottom Text 2"\r
+msgstr "Bundtekst 2"\r
+\r
+#: admin/settings.php:645\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Mere tekst til din forside. Toptitlen er over slideren. Anden titel vises mellem slideren og kolonnerne og 2 rækker mere under kolonnerne.\n"\r
+"\\\t\\\t Alle felter er valgfri."\r
+\r
+#: admin/settings.php:651\r
+#@ mantra\r
+msgid "Hide areas"\r
+msgstr "Skjul områder"\r
+\r
+#: admin/settings.php:664\r
+#@ mantra\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Skjul header området (Billede eller baggrundsfarve)."\r
+\r
+#: admin/settings.php:668\r
+#@ mantra\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Skjul hovedmenuen (top navigationen)."\r
+\r
+#: admin/settings.php:672\r
+#@ mantra\r
+msgid "Hide the footer widgets. "\r
+msgstr "Skjul footer widgets."\r
+\r
+#: admin/settings.php:676\r
+#@ mantra\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Skjul footeren (copyright området)."\r
+\r
+#: admin/settings.php:680\r
+#@ mantra\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Skjul den hvide farve. Kun baggrundsfarven vises."\r
+\r
+#: admin/settings.php:684\r
+#@ mantra\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Vælg hvilke områder der skal skjules på forsiden."\r
+\r
+#: admin/settings.php:703\r
+#@ mantra\r
+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."\r
+msgstr "Vælg fontstørrelsen du vil bruge på din hjemmeside. Sider, indlæg og kommentarer vil blive påvirket. Knapper, header og menuer vil bevare udseendet."\r
+\r
+#: admin/settings.php:747\r
+#@ mantra\r
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "\r
+msgstr "Vælg hvilken font du vil benytte på din hjemmeside. Alt indholdstekst vil blive påvirket (også menuknapper)."\r
+\r
+#: admin/settings.php:748\r
+#: admin/settings.php:797\r
+#: admin/settings.php:848\r
+#: admin/settings.php:899\r
+#@ mantra\r
+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."\r
+msgstr "Eller indsæt din Google font nedenfor. Indsæt kun <strong>navnet</strong> på din font.<br /> Eksempelvis: Marko One. Gå til <a href='http://www.google.com/webfonts' > google fonts </a> for noget inspiration."\r
+\r
+#: admin/settings.php:795\r
+#@ mantra\r
+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."\r
+msgstr "Vælg den font du vil bruge til dine titler. Det vil påvirke titler på indlæg og sidetitler. Vælg standard og standard fonten der er valgt vil blive brugt."\r
+\r
+#: admin/settings.php:846\r
+#@ mantra\r
+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."\r
+msgstr "V;lg den font du vil benytte i din(e) sidebar(s). Tekst i sidebars vil blive påvirket, inkluderet alle widgets. Efterlad standard og din valgte standard font vil blive brugt."\r
+\r
+#: admin/settings.php:897\r
+#@ mantra\r
+msgid "Select the font family you want your subheaders to have (h2 - h6 tags will be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr "Vælg den font du vil have dine underoverskrifter til at bruge (h2 - h6 tags vil blive påvirket). Efterlad som standard og den valgte standard font vil blive benyttet."\r
+\r
+#: admin/settings.php:909\r
+#: admin/settings.php:924\r
+#: admin/settings.php:939\r
+#: admin/settings.php:984\r
+#: admin/settings.php:999\r
+#: admin/settings.php:1014\r
+#@ mantra\r
+msgid "Default"\r
+msgstr "Standard"\r
+\r
+#: admin/settings.php:917\r
+#@ mantra\r
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Fontstørrelse for indlægsoverskrifter. Efterlad standard for normal indstilling (Størrelsen vil være som indstillet i CSS)."\r
+\r
+#: admin/settings.php:932\r
+#@ mantra\r
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Fontstørrelse for Sidebar. Efterlad standard for normal indstilling (Størrelsen vil være som indstillet i CSS)."\r
+\r
+#: admin/settings.php:939\r
+#: admin/settings.php:1728\r
+#@ mantra\r
+msgid "Left"\r
+msgstr "Venstre"\r
+\r
+#: admin/settings.php:939\r
+#: admin/settings.php:1728\r
+#@ mantra\r
+msgid "Right"\r
+msgstr "Højre"\r
+\r
+#: admin/settings.php:939\r
+#@ mantra\r
+msgid "Justify"\r
+msgstr ""\r
+\r
+#: admin/settings.php:939\r
+#: admin/settings.php:1728\r
+#@ mantra\r
+msgid "Center"\r
+msgstr "Centrér"\r
+\r
+#: admin/settings.php:947\r
+#@ mantra\r
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr "Denne indstilling overskriver tekstjustering i indlæg og på sider. Efterlad standard for normal indstilling (Justeringen vil benytte indstillingen der er valgt i indlæg, kommentarer osv.)."\r
+\r
+#: admin/settings.php:961\r
+#@ mantra\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Vælg indrykning for dine afsnit"\r
+\r
+#: admin/settings.php:977\r
+#@ mantra\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "Deaktivér standard headeren og titel indrykning (venstre margen)."\r
+\r
+#: admin/settings.php:992\r
+#@ mantra\r
+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)."\r
+msgstr "Tekstlinie højde. Højden mellem 2 rækker tekst. Efterlad standard for normal indstilling (højden vil være som indstillet i CSS)."\r
+\r
+#: admin/settings.php:1007\r
+#@ mantra\r
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Afstanden mellem <i>ord</i>. Efterlad standard for normal indstilling (afstanden vil være som indstillet i CSS)."\r
+\r
+#: admin/settings.php:1022\r
+#@ mantra\r
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Afstanden mellem <i>bogstaver</i>. Efterlad standard for normal indstilling (afstanden vil være som indstillet i CSS)."\r
+\r
+#: admin/settings.php:1039\r
+#@ mantra\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "Deaktivér standard tekst skygge på headers og titler."\r
+\r
+#: admin/settings.php:1051\r
+#@ mantra\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Baggrundsfarve (standard 444444)"\r
+\r
+#: admin/settings.php:1059\r
+#@ mantra\r
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."\r
+msgstr "Header baggrundsfarve (standard 333333). Du kan slette teksten for at vælge \\\"ingen baggrundsfarve\\\""\r
+\r
+#: admin/settings.php:1066\r
+#@ mantra\r
+msgid "Content background color (Default value is FFFFFF). Works best with really light colors."\r
+msgstr "Indhold baggrundsfarve (standard FFFFFF). Virker bedst med meget lyse farver."\r
+\r
+#: admin/settings.php:1073\r
+#@ mantra\r
+msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."\r
+msgstr "Hovedmenu baggrundsfarve (standard FAFAFA). Bør være samme farve som baggrundsfarven for indhold eller en farve lige så lys."\r
+\r
+#: admin/settings.php:1080\r
+#: admin/settings.php:1087\r
+#@ mantra\r
+msgid "First sidebar background color (Default value is FFFFFF)."\r
+msgstr "1. sidebar baggrundsfarve standard (FFFFFF)."\r
+\r
+#: admin/settings.php:1095\r
+#@ mantra\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "Footer widget område baggrundsfarve (standard 171717)."\r
+\r
+#: admin/settings.php:1103\r
+#@ mantra\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Footer baggrundsfarve (standard 222222)."\r
+\r
+#: admin/settings.php:1111\r
+#@ mantra\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Din hjemmesides titelfarve (standard 0D85CC)"\r
+\r
+#: admin/settings.php:1119\r
+#@ mantra\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Farve for hjemmesidebeskrivelse (standard 222222)."\r
+\r
+#: admin/settings.php:1127\r
+#@ mantra\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Indholdstekst farve (standard 333333)."\r
+\r
+#: admin/settings.php:1135\r
+#@ mantra\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Linksfarve (standard 0D85CC)"\r
+\r
+#: admin/settings.php:1143\r
+#@ mantra\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "Linksfarve ved mouse over (standard 333333)"\r
+\r
+#: admin/settings.php:1151\r
+#@ mantra\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Indlægsoverskrift tekstfarve (standard 333333)."\r
+\r
+#: admin/settings.php:1159\r
+#@ mantra\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr "Indlægsoverskrift tekstfarve ved mouse over (standard 000000)."\r
+\r
+#: admin/settings.php:1167\r
+#@ mantra\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Sidebar header baggrundsfarve (standard 444444)."\r
+\r
+#: admin/settings.php:1176\r
+#@ mantra\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Sidebar Overskrift tekstfarve (standard 2EA5FD)"\r
+\r
+#: admin/settings.php:1184\r
+#@ mantra\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Footer widget tekstfarve (standard 0D85CC)."\r
+\r
+#: admin/settings.php:1192\r
+#@ mantra\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Footer widget linkfarve (standard 666666)."\r
+\r
+#: admin/settings.php:1200\r
+#@ mantra\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr "Footer widget linkfarve ved mouse over (standard 888888)."\r
+\r
+#: admin/settings.php:1212\r
+#: admin/settings.php:1273\r
+#@ mantra\r
+msgid "White"\r
+msgstr "Hvid"\r
+\r
+#: admin/settings.php:1212\r
+#@ mantra\r
+msgid "Light"\r
+msgstr "Lys"\r
+\r
+#: admin/settings.php:1212\r
+#@ mantra\r
+msgid "Light Gray"\r
+msgstr "Lys grå"\r
+\r
+#: admin/settings.php:1212\r
+#: admin/settings.php:1273\r
+#@ mantra\r
+msgid "Gray"\r
+msgstr "Grå"\r
+\r
+#: admin/settings.php:1212\r
+#@ mantra\r
+msgid "Dark Gray"\r
+msgstr "Mørk grå"\r
+\r
+#: admin/settings.php:1212\r
+#@ mantra\r
+msgid "Black"\r
+msgstr "Sort"\r
+\r
+#: admin/settings.php:1220\r
+#@ mantra\r
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."\r
+msgstr "Denne indstilling ændrer udseendet på dine billedtekster. Billeder der ikke er indsat med billedtekster vil ikke blive påvirket."\r
+\r
+#: admin/settings.php:1236\r
+#@ mantra\r
+msgid "The border around your inserted images. "\r
+msgstr "Rammen om dine indsatte billeder."\r
+\r
+#: admin/settings.php:1251\r
+#@ mantra\r
+msgid "The image on top of your captions. "\r
+msgstr "Billedet over dine billedtekster."\r
+\r
+#: admin/settings.php:1266\r
+#@ mantra\r
+msgid "The sidebar list bullets. "\r
+msgstr "Sidebar liste bullets."\r
+\r
+#: admin/settings.php:1281\r
+#@ mantra\r
+msgid "The background for your post-metas area (under your post tiltes). Gray by default.<"\r
+msgstr "Baggrunden ved dine indlæg metas område (under indlægstitlerne). Grå som standard.<"\r
+\r
+#: admin/settings.php:1289\r
+#: admin/settings.php:1305\r
+#: admin/settings.php:1322\r
+#: admin/settings.php:1337\r
+#: admin/settings.php:1352\r
+#: admin/settings.php:1382\r
+#: admin/settings.php:1397\r
+#: admin/settings.php:1413\r
+#: admin/settings.php:1456\r
+#: admin/settings.php:1471\r
+#: admin/settings.php:1486\r
+#: admin/settings.php:1501\r
+#: admin/settings.php:1516\r
+#: admin/settings.php:1531\r
+#: admin/settings.php:1546\r
+#: admin/settings.php:1561\r
+#@ mantra\r
+msgid "Show"\r
+msgstr "Vis"\r
+\r
+#: admin/settings.php:1289\r
+#: admin/settings.php:1305\r
+#: admin/settings.php:1322\r
+#: admin/settings.php:1337\r
+#: admin/settings.php:1352\r
+#: admin/settings.php:1382\r
+#: admin/settings.php:1413\r
+#: admin/settings.php:1456\r
+#: admin/settings.php:1471\r
+#: admin/settings.php:1486\r
+#: admin/settings.php:1501\r
+#: admin/settings.php:1516\r
+#: admin/settings.php:1531\r
+#: admin/settings.php:1546\r
+#: admin/settings.php:1561\r
+#@ mantra\r
+msgid "Hide"\r
+msgstr "Skjul"\r
+\r
+#: admin/settings.php:1297\r
+#@ mantra\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Skjul eller vis vandret linie for at adskille indlæg."\r
+\r
+#: admin/settings.php:1313\r
+#@ mantra\r
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."\r
+msgstr "Vis eller skjul bullets ved lister der er en del af indholdet (indlæg, sider o.s.v.)."\r
+\r
+#: admin/settings.php:1330\r
+#@ mantra\r
+msgid "Hide or show your blog's Title and Description in the header (recommended if you have a custom header image with text)."\r
+msgstr "Skjul eller vis Din hjemmesidetitel og beskrivelse i header."\r
+\r
+#: admin/settings.php:1345\r
+#@ mantra\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "Vis eller skjul Sidetitler på alle <i>oprettede</i> sider."\r
+\r
+#: admin/settings.php:1360\r
+#@ mantra\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Vis eller skjul sidetitler på <i>kategori</i> sider."\r
+\r
+#: admin/settings.php:1375\r
+#@ mantra\r
+msgid "Hide table borders and background color."\r
+msgstr "Skjul tabelkanter og baggrundsfarve."\r
+\r
+#: admin/settings.php:1390\r
+#@ mantra\r
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."\r
+msgstr "Skjul forklaringsteksten under kommentarboksen. (Den der starter med <i>Du må benytte disse HTML......</i>."\r
+\r
+#: admin/settings.php:1397\r
+#@ mantra\r
+msgid "Hide in posts"\r
+msgstr "Skjul i indlæg"\r
+\r
+#: admin/settings.php:1397\r
+#@ mantra\r
+msgid "Hide in pages"\r
+msgstr "Skjul på sider"\r
+\r
+#: admin/settings.php:1397\r
+#@ mantra\r
+msgid "Hide everywhere"\r
+msgstr "Skjul overalt"\r
+\r
+#: admin/settings.php:1405\r
+#@ mantra\r
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."\r
+msgstr "Skjul <b>Lukket for kommentarer</b> teksten der vises på sider eller ved indlæg hvor kommentarer er deaktivéret."\r
+\r
+#: admin/settings.php:1421\r
+#@ mantra\r
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr "Skjul <b>Lukket for kommentarer</b> teksten ved indlæg hvor kommentarer er deaktivéret."\r
+\r
+#: admin/settings.php:1437\r
+#@ mantra\r
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."\r
+msgstr "Aktivér Tilbage til top knappen. Knappen vises efter der er scrollet ned på siden."\r
+\r
+#: admin/settings.php:1444\r
+#@ mantra\r
+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 © ."\r
+msgstr "Indsæt brugerdefineret tekst eller HTML til brug i din footer. <br /> Du kan bruge HTML til at indsætte links, billeder og specialkarakterer som eksempelvis ©."\r
+\r
+#: admin/settings.php:1464\r
+#@ mantra\r
+msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."\r
+msgstr "Skjul eller vis <strong>Kommentér</strong> elle <strong>kommentarer</strong> ved indlæg eller uddrag."\r
+\r
+#: admin/settings.php:1479\r
+#@ mantra\r
+msgid "Hide or show the post date."\r
+msgstr "Skjul eller vis dato for indlæg."\r
+\r
+#: admin/settings.php:1494\r
+#@ mantra\r
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."\r
+msgstr "Vis tidspunktet sammen med datoen. Tidspunktet vil ikke være synligt, hvis indlægsdatoen er skjult."\r
+\r
+#: admin/settings.php:1509\r
+#@ mantra\r
+msgid "Hide or show the post author."\r
+msgstr "Skjul eller vis forfatter til indlæg."\r
+\r
+#: admin/settings.php:1524\r
+#@ mantra\r
+msgid "Hide the post category."\r
+msgstr "Skjul indlægskategori."\r
+\r
+#: admin/settings.php:1539\r
+#@ mantra\r
+msgid "Hide the post tags."\r
+msgstr "Skjul indlægs tags."\r
+\r
+#: admin/settings.php:1554\r
+#@ mantra\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "Skjul 'Føj permalink til favoritter'."\r
+\r
+#: admin/settings.php:1569\r
+#@ mantra\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr "Skjul alle indlæg metas. Alt meta information og meta områder vil være skjult."\r
+\r
+#: admin/settings.php:1582\r
+#: admin/settings.php:1597\r
+#: admin/settings.php:1613\r
+#@ mantra\r
+msgid "Excerpt"\r
+msgstr "Uddrag"\r
+\r
+#: admin/settings.php:1582\r
+#: admin/settings.php:1597\r
+#: admin/settings.php:1613\r
+#@ mantra\r
+msgid "Full Post"\r
+msgstr "Komplet indlæg"\r
+\r
+#: admin/settings.php:1590\r
+#@ mantra\r
+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."\r
+msgstr "Uddrag på forsiden. Kun standard indlægssider vil blive påvirket. Alle andre sideformater (aside, billede, chat o.s.v.) benytter deres egne indstillinger."\r
+\r
+#: admin/settings.php:1605\r
+#@ mantra\r
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "\r
+msgstr "Vælg om du ønsker sticky indlæg på din forside kan ses i fuld længde eller blot uddrag. "\r
+\r
+#: admin/settings.php:1621\r
+#@ mantra\r
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."\r
+msgstr "Uddrag på arkiv, kategori og søge sider. Samme som ovenfor, kun standard indlæg vil blive berørt."\r
+\r
+#: admin/settings.php:1629\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr "Antallet af ord der bruges i uddrag. Når dette antal er nået vil indlægget blive afbrudt med et <i>Læs mere</i> link som \\\t\\\t\\\t\\\t\\\t\\\t\\\tvil tage læseren til det fulde indlæg."\r
+\r
+#: admin/settings.php:1645\r
+#@ mantra\r
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."\r
+msgstr "Aktivér Magazine Layout. Dette layout gælder sider med indlæg og viser 2 indlæg pr. række."\r
+\r
+#: admin/settings.php:1652\r
+#@ mantra\r
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."\r
+msgstr "Erstatter de tre prikker ('[...])', der automatisk føjes til uddrag."\r
+\r
+#: admin/settings.php:1659\r
+#@ mantra\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "Redigér hyperlinket 'Læs mere' der tilføjes til dine uddrag."\r
+\r
+#: admin/settings.php:1705\r
+#@ mantra\r
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."\r
+msgstr "Vis fremhævede billeder som thumbnails ved indlæg. Billederne skal vælges for hvert indlæg i indstillingerne for fremhævede billeder."\r
+\r
+#: admin/settings.php:1720\r
+#@ mantra\r
+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."\r
+msgstr "Vis det første billede du indsætter i dine indlæg som thumbnail. Hvis du vælger denne indstilling vil det 1. billede du indsætter i dit indlæg blive benyttet, selvom du vælger fremhvævet billede i dine indlæg."\r
+\r
+#: admin/settings.php:1736\r
+#@ mantra\r
+msgid "Thumbnail alignment."\r
+msgstr "Thumbnail justering."\r
+\r
+#: admin/settings.php:1753\r
+#@ mantra\r
+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."\r
+msgstr "Størrelsen på thumbnails (i pixel). Som standard vil billederne blive skaleret ned med format forhold bevaret. Du kan vælge at beskære billederne, hvis du ønsker den eksakte størrelse."\r
+\r
+#: admin/settings.php:1769\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."\r
+msgstr ""\r
+"Vis fremhævede billeder som headers. Headeren vil blive erstattet med et fremhævet billede, hvis du har valgt det som fremhævet billede i dit indlæg \n"\r
+"\\\t\\\t\\\t\\\t\\\t\\\t\\\tog hvis det er større eller mindst samme størrelse, som den eksisterende header."\r
+\r
+#: admin/settings.php:1790\r
+#@ mantra\r
+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> )"\r
+msgstr "Vælg dit ønskede sociale netværk fra venstre dropdown menu og indsæt din adresse i feltet til højre. (ex: <i>http://www.facebook.com/ditnavn</i> )"\r
+\r
+#: admin/settings.php:1804\r
+#@ mantra\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Du kan indsætte op til 5 forskellige sociale medier og adresser"\r
+\r
+#: admin/settings.php:1818\r
+#@ mantra\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Der er i alt 27 sociale netværk at vælge fra."\r
+\r
+#: admin/settings.php:1832\r
+#@ mantra\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Du kan efterlade alle felter tomme."\r
+\r
+#: admin/settings.php:1846\r
+#@ mantra\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Du kan vælge det samme sociale medier et valgfrit antal gange."\r
+\r
+#: admin/settings.php:1877\r
+#@ mantra\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "Vælg de <b>områder</b> hvor du vil vise de sociale ikoner."\r
+\r
+#: admin/settings.php:1898\r
+#@ mantra\r
+msgid "Make the site header into a clickable link that links to your index page."\r
+msgstr "Lav din header til et link der linker til din forside."\r
+\r
+#: admin/settings.php:1913\r
+#@ mantra\r
+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."\r
+msgstr "Vis breadcrumbs i toppen af indholdsområdet. Breadcrumbs er en form for navigation der viser hvor på hjemmesiden du befinder dig."\r
+\r
+#: admin/settings.php:1928\r
+#@ mantra\r
+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. "\r
+msgstr "Vis nummereret sideinddeling. Hvis der er mere end én side vil <b>Ældre indlæg</b> og <b>Nyere indlæg</b> have nummereret inddeling."\r
+\r
+#: admin/settings.php:1943\r
+#@ mantra\r
+msgid "Enable the mobile view and make Mantra responsive. The layout and look of your blog will change depending on what device and what resolution it is viewed in. "\r
+msgstr "Aktivér mobile view og Mantra vil skifte udseende alt efter, hvilken enhed og skærmopløsning der besøger din hjemmeside. "\r
+\r
+#: admin/settings.php:1953\r
+#@ mantra\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "Upload eller vælg favikon fra billedegalleriet"\r
+\r
+#: admin/settings.php:1957\r
+#@ mantra\r
+msgid "Limitations: It has to be an image. It should be max 64x64 pixels in dimensions. Recommended file extensions .ico and .png . "\r
+msgstr "Begrænsninger: Det skal være et billede. Det må maks være 64x64 pixel. Anbefalede filtyper er .ico og .png."\r
+\r
+#: admin/settings.php:1965\r
+#@ mantra\r
+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."\r
+msgstr "Indsæt din brugerdefinerede CSS her. Enhver CSS indstilling der indtastes her vil overskrive Mantra (selv de brugerdefinerede indstillinger angivet på siden Indstillinger for Mantra).<br>Din brugerdefinerede CSS bevares, når du opdaterer tema."\r
+\r
+#: admin/settings.php:1972\r
+#@ mantra\r
+msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software)."\r
+msgstr "Indsæt brugerdefineret javascript kode her. (Google Analytics eller anden form for sporingskode)."\r
+\r
+#: admin/settings.php:1985\r
+#@ mantra\r
+msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."\r
+msgstr "Aktivér Mantra's Søgemaskineoptimering (SEO). Dette er som standard aktiveret og bør kun deaktiveres, hvis du bruger et SEO-plugin."\r
+\r
+#: admin/settings.php:1997\r
+#@ mantra\r
+msgid "Auto"\r
+msgstr "Auto"\r
+\r
+#: admin/settings.php:1997\r
+#@ mantra\r
+msgid "Manual"\r
+msgstr "Manuel"\r
+\r
+#: archive.php:25\r
+#, php-format\r
+#@ mantra\r
+msgid "Daily Archives: %s"\r
+msgstr "Daglige arkiver: %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+#@ mantra\r
+msgid "Monthly Archives: %s"\r
+msgstr "Månedlige arkiver: %s"\r
+\r
+#: archive.php:27\r
+#@ mantra\r
+msgctxt "monthly archives date format"\r
+msgid "F Y"\r
+msgstr "F Y"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+#@ mantra\r
+msgid "Yearly Archives: %s"\r
+msgstr "Årlige arkiver: %s"\r
+\r
+#: archive.php:29\r
+#@ mantra\r
+msgctxt "yearly archives date format"\r
+msgid "Y"\r
+msgstr "Y"\r
+\r
+#: archive.php:31\r
+#@ mantra\r
+msgid "Blog Archives"\r
+msgstr "Blog arkiver"\r
+\r
+#: archive.php:57\r
+#: author.php:74\r
+#: category.php:50\r
+#: index.php:40\r
+#: search.php:40\r
+#: tag.php:51\r
+#: template-blog.php:36\r
+#@ mantra\r
+msgid "Nothing Found"\r
+msgstr "Intet fundet"\r
+\r
+#: archive.php:61\r
+#: author.php:78\r
+#: category.php:54\r
+#: index.php:44\r
+#: tag.php:55\r
+#: template-blog.php:40\r
+#@ mantra\r
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."\r
+msgstr "Beklager, men der blev ikke fundet noget i arkivet. Måske en søgning vil hjælpe."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+#@ mantra\r
+msgid "Return to %s"\r
+msgstr "Tilbage til %s"\r
+\r
+#. translators: %s - title of parent post\r
+#: attachment.php:29\r
+#@ mantra\r
+msgid "By"\r
+msgstr "af"\r
+\r
+#: attachment.php:33\r
+#: includes/theme-loop.php:146\r
+#, php-format\r
+#@ mantra\r
+msgid "View all posts by %s"\r
+msgstr "Se alle indlæg af %s"\r
+\r
+#: attachment.php:40\r
+#@ mantra\r
+msgid "Published"\r
+msgstr "Udgivet"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+#@ mantra\r
+msgid "Full size is %s pixels"\r
+msgstr "Fuld størrelse er %s pixel"\r
+\r
+#: attachment.php:53\r
+#@ mantra\r
+msgid "Link to full-size image"\r
+msgstr "Link til billedet i fuld størrelse"\r
+\r
+#: attachment.php:60\r
+#: attachment.php:107\r
+#: content-aside.php:48\r
+#: content-chat.php:49\r
+#: content-gallery.php:65\r
+#: content-image.php:42\r
+#: content-link.php:49\r
+#: content-page.php:22\r
+#: content.php:77\r
+#: content-quote.php:46\r
+#: content-status.php:48\r
+#: single.php:53\r
+#: template-onecolumn.php:27\r
+#@ mantra\r
+msgid "Edit"\r
+msgstr "Redigér"\r
+\r
+#: attachment.php:100\r
+#@ mantra\r
+msgid "Continue reading"\r
+msgstr "Læs mere"\r
+\r
+#: attachment.php:101\r
+#: content-aside.php:39\r
+#: content-chat.php:38\r
+#: content-gallery.php:55\r
+#: content-image.php:33\r
+#: content-link.php:38\r
+#: content-page.php:21\r
+#: content.php:49\r
+#: content.php:66\r
+#: content-quote.php:36\r
+#: content-status.php:39\r
+#: single.php:31\r
+#: template-onecolumn.php:26\r
+#@ mantra\r
+msgid "Pages:"\r
+msgstr "Sider:"\r
+\r
+#: author.php:28\r
+#, php-format\r
+#@ mantra\r
+msgid "Author Archives: %s"\r
+msgstr "Forfatter arkiver: %s"\r
+\r
+#: author.php:49\r
+#: single.php:40\r
+#, php-format\r
+#@ mantra\r
+msgid "About %s"\r
+msgstr "Om %s"\r
+\r
+#: category.php:19\r
+#, php-format\r
+#@ mantra\r
+msgid "Category Archives: %s"\r
+msgstr "Kategori arkiver: %s"\r
+\r
+#: comments.php:18\r
+#@ mantra\r
+msgid "This post is password protected. Enter the password to view any comments."\r
+msgstr "Dette indlæg er beskyttet af kodeord. Indtast kodeordet for at se kommentarer."\r
+\r
+#: content-aside.php:16\r
+#: content-chat.php:16\r
+#: content-gallery.php:16\r
+#: content-gallery.php:49\r
+#: content-image.php:15\r
+#: content-link.php:16\r
+#: content.php:20\r
+#: content-quote.php:14\r
+#: content-status.php:15\r
+#, php-format\r
+#@ mantra\r
+msgid "Permalink to %s"\r
+msgstr "Permalink til %s"\r
+\r
+#: content-aside.php:20\r
+#@ mantra\r
+msgid "Aside"\r
+msgstr "Aside"\r
+\r
+#: content-aside.php:38\r
+#: content-chat.php:37\r
+#: content-gallery.php:33\r
+#: content-image.php:32\r
+#: content-link.php:37\r
+#: content-quote.php:35\r
+#: content-status.php:38\r
+#@ mantra\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Læs mere <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46\r
+#: content-chat.php:45\r
+#: content-gallery.php:62\r
+#: content-image.php:39\r
+#: content-link.php:45\r
+#: content.php:75\r
+#: content-quote.php:43\r
+#: content-status.php:46\r
+#: includes/theme-loop.php:172\r
+#@ mantra\r
+msgid "Tagged"\r
+msgstr "Tagget"\r
+\r
+#: content-chat.php:20\r
+#@ mantra\r
+msgid "Chat"\r
+msgstr "Chat"\r
+\r
+#: content-gallery.php:20\r
+#@ mantra\r
+msgid "Gallery"\r
+msgstr "Galleri"\r
+\r
+#: content-gallery.php:48\r
+#, php-format\r
+#@ mantra\r
+msgid "This gallery contains <a %1$s>%2$s photo</a>."\r
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."\r
+msgstr[0] "Dette galleri indeholder <a %1$s>%2$s billede</a>."\r
+msgstr[1] "Dette galleri indeholder <a %1$s>%2$s billeder</a>."\r
+\r
+#: content-page.php:27\r
+#: includes/theme-comments.php:136\r
+#@ mantra\r
+msgid "Comments are closed."\r
+msgstr "Lukket for kommentarer."\r
+\r
+#: content-quote.php:18\r
+#@ mantra\r
+msgid "Quote"\r
+msgstr "Citér"\r
+\r
+#: content-status.php:30\r
+#@ mantra\r
+msgid "Status"\r
+msgstr "Status"\r
+\r
+#: includes/theme-comments.php:28\r
+#@ mantra\r
+msgid "says:"\r
+msgstr "siger:"\r
+\r
+#: includes/theme-comments.php:34\r
+#@ mantra\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Din kommentar afventer godkendelse."\r
+\r
+#. translators: 1: date, 2: time\r
+#: includes/theme-comments.php:41\r
+#@ mantra\r
+msgid "at"\r
+msgstr "d."\r
+\r
+#: includes/theme-comments.php:41\r
+#: includes/theme-comments.php:58\r
+#@ mantra\r
+msgid "(Edit)"\r
+msgstr "(Redigér)"\r
+\r
+#: includes/theme-comments.php:58\r
+#@ mantra\r
+msgid "Pingback: "\r
+msgstr "Pingback:"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "Leave a comment"\r
+msgstr "Kommentér"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Kommentar"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Kommentarer"\r
+\r
+#: includes/theme-comments.php:94\r
+#, php-format\r
+#@ mantra\r
+msgid "One Response to %2$s"\r
+msgid_plural "%1$s Responses to %2$s"\r
+msgstr[0] "En kommentar til %2$ s"\r
+msgstr[1] "%1$s Kommentarer til %2$s"\r
+\r
+#: includes/theme-comments.php:107\r
+#@ mantra\r
+msgid "Older Comments"\r
+msgstr "Ældre kommentarer"\r
+\r
+#: includes/theme-comments.php:108\r
+#@ mantra\r
+msgid "Newer Comments"\r
+msgstr "Nyere kommentarer"\r
+\r
+#: includes/theme-functions.php:233\r
+#@ mantra\r
+msgid "Home Page"\r
+msgstr "Forside"\r
+\r
+#: includes/theme-functions.php:301\r
+#@ mantra\r
+msgid "Semantic Personal Publishing Platform"\r
+msgstr "Semantic Personal Publishing Platform"\r
+\r
+#: includes/theme-loop.php:144\r
+#@ mantra\r
+msgid "By "\r
+msgstr "af"\r
+\r
+#: includes/theme-loop.php:172\r
+#@ mantra\r
+msgid " Bookmark the "\r
+msgstr "Bogmærk"\r
+\r
+#: includes/theme-loop.php:172\r
+#: includes/theme-loop.php:174\r
+#: includes/theme-loop.php:176\r
+#@ mantra\r
+msgid "Permalink to"\r
+msgstr "Permalink til"\r
+\r
+#: includes/theme-loop.php:172\r
+#: includes/theme-loop.php:174\r
+#: includes/theme-loop.php:176\r
+#@ mantra\r
+msgid "permalink"\r
+msgstr "permalink"\r
+\r
+#: includes/theme-loop.php:174\r
+#: includes/theme-loop.php:176\r
+#@ mantra\r
+msgid "Bookmark the "\r
+msgstr "Bogmærk"\r
+\r
+#: includes/theme-loop.php:198\r
+#@ mantra\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Ældre indlæg"\r
+\r
+#: includes/theme-loop.php:199\r
+#@ mantra\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Nyere indlæg <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+#@ mantra\r
+msgid "Page %s"\r
+msgstr "Side %s"\r
+\r
+#: includes/theme-setup.php:90\r
+#@ mantra\r
+msgid "Primary Navigation"\r
+msgstr "Hovedmenu"\r
+\r
+#: includes/theme-setup.php:91\r
+#@ mantra\r
+msgid "Top Navigation"\r
+msgstr "Top menu"\r
+\r
+#: includes/theme-setup.php:92\r
+#@ mantra\r
+msgid "Footer Navigation"\r
+msgstr "Footer menu"\r
+\r
+#: includes/theme-setup.php:136\r
+#@ mantra\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:197\r
+#@ mantra\r
+msgid "Skip to content"\r
+msgstr "Hop til indhold"\r
+\r
+#: includes/theme-setup.php:224\r
+#@ mantra\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Primary Widget Area - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:226\r
+#@ mantra\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Primary widget area - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:235\r
+#@ mantra\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Secondary Widget Area - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:237\r
+#@ mantra\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Secondary widget area - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:246\r
+#@ mantra\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Third Widget Area - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:248\r
+#@ mantra\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Third widget area - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:257\r
+#@ mantra\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Fourth Widget Area - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:259\r
+#@ mantra\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Fourth widget area - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:268\r
+#@ mantra\r
+msgid "First Footer Widget Area"\r
+msgstr "First Footer Widget Area"\r
+\r
+#: includes/theme-setup.php:270\r
+#@ mantra\r
+msgid "First footer widget area"\r
+msgstr "First footer widget area"\r
+\r
+#: includes/theme-setup.php:279\r
+#@ mantra\r
+msgid "Second Footer Widget Area"\r
+msgstr "Second Footer Widget Area"\r
+\r
+#: includes/theme-setup.php:281\r
+#@ mantra\r
+msgid "Second footer widget area"\r
+msgstr "Second footer widget area"\r
+\r
+#: includes/theme-setup.php:290\r
+#@ mantra\r
+msgid "Third Footer Widget Area"\r
+msgstr "Third Footer Widget Area"\r
+\r
+#: includes/theme-setup.php:292\r
+#@ mantra\r
+msgid "The third footer widget area"\r
+msgstr "The third footer widget area"\r
+\r
+#: includes/theme-setup.php:301\r
+#@ mantra\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Fourth Footer Widget Area"\r
+\r
+#: includes/theme-setup.php:303\r
+#@ mantra\r
+msgid "The fourth footer widget area"\r
+msgstr "The fourth footer widget area"\r
+\r
+#: search.php:19\r
+#, php-format\r
+#@ mantra\r
+msgid "Search Results for: %s"\r
+msgstr "Søgeresultater for: %s"\r
+\r
+#: search.php:38\r
+#, php-format\r
+#@ mantra\r
+msgid "No search results for: %s"\r
+msgstr "Ingen søgeresultater for: %s"\r
+\r
+#: single.php:44\r
+#@ mantra\r
+msgid "View all posts by "\r
+msgstr "Se alle indlæg af "\r
+\r
+#: tag.php:20\r
+#, php-format\r
+#@ mantra\r
+msgid "Tag Archives: %s"\r
+msgstr "Tag arkiver: %s"\r
+\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra v2.0.1\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-09-08 18:32+0200\n"\r
+"PO-Revision-Date: 2013-04-06 22:03:55+0000\n"\r
+"Last-Translator: Franz Sauerstein <info@franzsauerstein.de>\n"\r
+"Language-Team: Exciting Webdesign <info@franzsauerstein.de>\n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"Plural-Forms: nplurals=2; plural=n != 1;\n"\r
+"X-Poedit-Language: \n"\r
+"X-Poedit-Country: \n"\r
+"X-Poedit-SourceCharset: utf-8\n"\r
+"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"\r
+"X-Poedit-Basepath: C:/Users/medicated/Desktop/mantra\n"\r
+"X-Poedit-Bookmarks: \n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+"X-Textdomain-Support: yes"\r
+\r
+#: 404.php:17\r
+#@ mantra\r
+msgid "Not Found"\r
+msgstr "Nicht gefunden"\r
+\r
+#: 404.php:19\r
+#@ mantra\r
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."\r
+msgstr "Entschuldige, aber die angeforderte Seite konnte nicht gefunden werden. Vielleicht hilft eine Suche."\r
+\r
+#: archive.php:26\r
+#, php-format\r
+#@ mantra\r
+msgid "Daily Archives: %s"\r
+msgstr "Tagesarchiv: %s"\r
+\r
+#: archive.php:28\r
+#, php-format\r
+#@ mantra\r
+msgid "Monthly Archives: %s"\r
+msgstr "Monatsarchiv: %s"\r
+\r
+#: archive.php:30\r
+#, php-format\r
+#@ mantra\r
+msgid "Yearly Archives: %s"\r
+msgstr "Jahresarchiv: %s"\r
+\r
+#: archive.php:32\r
+#@ mantra\r
+msgid "Blog Archives"\r
+msgstr "Blogarchiv"\r
+\r
+#: archive.php:58\r
+#: author.php:75\r
+#: category.php:51\r
+#: index.php:41\r
+#: search.php:41\r
+#: tag.php:52\r
+#: template-blog.php:36\r
+#@ mantra\r
+msgid "Nothing Found"\r
+msgstr "Nichts gefunden"\r
+\r
+#: archive.php:62\r
+#: author.php:79\r
+#: category.php:55\r
+#: index.php:45\r
+#: tag.php:56\r
+#: template-blog.php:40\r
+#@ mantra\r
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."\r
+msgstr "Entschuldige, aber für das nachgefragte Archiv konnten keine Ergebnisse gefunden werden. Vielleicht hilft das Suchen einen verwandten Beitrag zu finden."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+#@ mantra\r
+msgid "Return to %s"\r
+msgstr "Gehe zurück zu %s"\r
+\r
+#. translators: %s - title of parent post\r
+#: attachment.php:29\r
+#@ mantra\r
+msgid "By"\r
+msgstr "von"\r
+\r
+#: attachment.php:40\r
+#@ mantra\r
+msgid "Published"\r
+msgstr "Veröffentlicht"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+#@ mantra\r
+msgid "Full size is %s pixels"\r
+msgstr "Die volle Größe beträgt %s Pixel"\r
+\r
+#: attachment.php:53\r
+#@ mantra\r
+msgid "Link to full-size image"\r
+msgstr "Link zum Vollbild"\r
+\r
+#: attachment.php:60\r
+#: attachment.php:107\r
+#: content-aside.php:48\r
+#: content-chat.php:49\r
+#: content-gallery.php:65\r
+#: content-image.php:42\r
+#: content-link.php:49\r
+#: content-page.php:22\r
+#: content-quote.php:46\r
+#: content-status.php:48\r
+#: content.php:76\r
+#: single.php:54\r
+#: template-onecolumn.php:27\r
+#@ mantra\r
+msgid "Edit"\r
+msgstr "Editieren"\r
+\r
+#: attachment.php:100\r
+#@ mantra\r
+msgid "Continue reading"\r
+msgstr "Mehr lesen"\r
+\r
+#: attachment.php:101\r
+#: content-aside.php:39\r
+#: content-chat.php:38\r
+#: content-gallery.php:55\r
+#: content-image.php:33\r
+#: content-link.php:38\r
+#: content-page.php:21\r
+#: content-quote.php:36\r
+#: content-status.php:39\r
+#: content.php:49\r
+#: content.php:65\r
+#: single.php:32\r
+#: template-onecolumn.php:26\r
+#@ mantra\r
+msgid "Pages:"\r
+msgstr "Seiten:"\r
+\r
+#: author.php:29\r
+#, php-format\r
+#@ mantra\r
+msgid "Author Archives: %s"\r
+msgstr "Autorenarchive: %s"\r
+\r
+#: author.php:50\r
+#: single.php:41\r
+#, php-format\r
+#@ mantra\r
+msgid "About %s"\r
+msgstr "Über %s"\r
+\r
+#: category.php:20\r
+#, php-format\r
+#@ mantra\r
+msgid "Category Archives: %s"\r
+msgstr "Kategorienarchive: %s"\r
+\r
+#: comments.php:18\r
+#@ mantra\r
+msgid "This post is password protected. Enter the password to view any comments."\r
+msgstr "Dieser Beitrag ist passwortgeschützt. Gib das Passwort ein um Kommentare zu sehen."\r
+\r
+#: includes/theme-comments.php:107\r
+#@ mantra\r
+msgid "Older Comments"\r
+msgstr "Ältere Kommentare"\r
+\r
+#: includes/theme-comments.php:108\r
+#@ mantra\r
+msgid "Newer Comments"\r
+msgstr "Neuere Kommentare"\r
+\r
+#: content-page.php:27\r
+#: includes/theme-comments.php:136\r
+#@ mantra\r
+msgid "Comments are closed."\r
+msgstr "Die Kommentare sind geschlossen."\r
+\r
+#: content-aside.php:20\r
+#@ mantra\r
+msgid "Aside"\r
+msgstr "zur Seite"\r
+\r
+#: content-aside.php:38\r
+#: content-chat.php:37\r
+#: content-gallery.php:33\r
+#: content-image.php:32\r
+#: content-link.php:37\r
+#: content-quote.php:35\r
+#: content-status.php:38\r
+#@ mantra\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Mehr lesen <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46\r
+#: content-chat.php:45\r
+#: content-gallery.php:62\r
+#: content-image.php:39\r
+#: content-link.php:45\r
+#: content-quote.php:43\r
+#: content-status.php:46\r
+#: content.php:74\r
+#: includes/theme-loop.php:185\r
+#@ mantra\r
+msgid "Tagged"\r
+msgstr "Markiert mit"\r
+\r
+#: content-chat.php:20\r
+#@ mantra\r
+msgid "Chat"\r
+msgstr "Chat"\r
+\r
+#: content-gallery.php:20\r
+#@ mantra\r
+msgid "Gallery"\r
+msgstr "Gallerie"\r
+\r
+#: admin/settings.php:470\r
+#: admin/settings.php:485\r
+#: admin/settings.php:500\r
+#: admin/settings.php:515\r
+#: admin/settings.php:530\r
+#: admin/settings.php:572\r
+#: admin/settings.php:587\r
+#: admin/settings.php:602\r
+#: admin/settings.php:617\r
+#: content-image.php:19\r
+#@ mantra\r
+msgid "Image"\r
+msgstr "Bild"\r
+\r
+#: admin/settings.php:477\r
+#: admin/settings.php:492\r
+#: admin/settings.php:507\r
+#: admin/settings.php:522\r
+#: admin/settings.php:537\r
+#: admin/settings.php:579\r
+#: admin/settings.php:594\r
+#: admin/settings.php:609\r
+#: admin/settings.php:624\r
+#: content-link.php:20\r
+#@ mantra\r
+msgid "Link"\r
+msgstr "Link"\r
+\r
+#: content-quote.php:18\r
+#@ mantra\r
+msgid "Quote"\r
+msgstr "Zitat"\r
+\r
+#: content-status.php:30\r
+#@ mantra\r
+msgid "Status"\r
+msgstr "Status"\r
+\r
+#: search.php:20\r
+#, php-format\r
+#@ mantra\r
+msgid "Search Results for: %s"\r
+msgstr "Suchergebnisse für: %s"\r
+\r
+#: search.php:39\r
+#, php-format\r
+#@ mantra\r
+msgid "No search results for: %s"\r
+msgstr "Keine Suchergebnisse für: %s"\r
+\r
+#: single.php:45\r
+#@ mantra\r
+msgid "View all posts by "\r
+msgstr "Siehe alle Beiträge von"\r
+\r
+#: tag.php:21\r
+#, php-format\r
+#@ mantra\r
+msgid "Tag Archives: %s"\r
+msgstr "Tagarchive: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+#@ mantra\r
+msgid "Before you can upload your import file, you will need to fix the following error:"\r
+msgstr "Bevor du deine Import-Datei hochladen kannst, must du den folgenden Fehler beheben:"\r
+\r
+#: admin/admin-functions.php:70\r
+#@ mantra\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Importiere Mantra Theme Optionen"\r
+\r
+#: admin/admin-functions.php:72\r
+#@ mantra\r
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"\r
+msgstr "Hi! Hier importierst du deine Mantra Optionen. <i> Bitte denke daran, dass dieses Feature noch experimentell ist. </i>"\r
+\r
+#: admin/admin-functions.php:74\r
+#@ mantra\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Wähle einfach eine Datei von deinem Computer aus:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+#@ mantra\r
+msgid "Maximum size: %s"\r
+msgstr "Maximale Größe: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+#@ mantra\r
+msgid "And import!"\r
+msgstr "Und importiere!"\r
+\r
+#: admin/admin-functions.php:148\r
+#@ mantra\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Importiere Mantra Theme Optionen"\r
+\r
+#: admin/admin-functions.php:151\r
+#@ mantra\r
+msgid "Great! The options have been imported!"\r
+msgstr "Super! Die Optionen wurden importiert!"\r
+\r
+#: admin/admin-functions.php:152\r
+#@ mantra\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Gehe zurück zu der Mantra Optionen Seite und sieh sie dir an!"\r
+\r
+#: admin/admin-functions.php:155\r
+#: admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+#@ mantra\r
+msgid "Oops, there's a small problem."\r
+msgstr "Hupps, da ist ein kleines Problem."\r
+\r
+#: admin/admin-functions.php:156\r
+#@ mantra\r
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."\r
+msgstr "Die hochgeladene Datei beinhaltet keine gültigen Mantra Optionen. Stelle sicher, dass die Datei richtig von der Mantra Optionen Seite exportiert wurde."\r
+\r
+#: admin/admin-functions.php:162\r
+#@ mantra\r
+msgid "The uploaded file could not be read."\r
+msgstr "Die hochgeladene Datei konnte nicht gelesen werden."\r
+\r
+#: admin/admin-functions.php:168\r
+#@ mantra\r
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."\r
+msgstr "Die hochgeladene Datei wird nicht unterstützt. Stelle sicher, dass die Datei von der Mantra-Seite exportiert wurde und das es eine Textdatei ist."\r
+\r
+#: admin/admin-functions.php:177\r
+#@ mantra\r
+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."\r
+msgstr "Hupps! Die Datei war leer oder es gab keine Datei. Dieser Fehler könnte dadurch ausgelöst worden sein, dass Uploads in der php.ini deaktiviert wurden oder das die post_max_size kleiner definierd wurde als die upload_max_filesize in der php.ini"\r
+\r
+#: admin/admin-functions.php:183\r
+#@ mantra\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "FEHLER: Du bist authorisiert diese Aktion auszuführen"\r
+\r
+#: admin/main.php:95\r
+#@ mantra\r
+msgid "Layout Settings"\r
+msgstr "Layout Einstellungen"\r
+\r
+#: admin/main.php:97\r
+#@ mantra\r
+msgid "Presentation Page"\r
+msgstr "Präsentationsseite"\r
+\r
+#: admin/main.php:98\r
+#@ mantra\r
+msgid "Text Settings"\r
+msgstr "Texteinstellungen"\r
+\r
+#: admin/main.php:99\r
+#@ mantra\r
+msgid "Color Settings"\r
+msgstr "Farbeinstellungen"\r
+\r
+#: admin/main.php:100\r
+#@ mantra\r
+msgid "Graphics Settings"\r
+msgstr "Grafikeinstellungen"\r
+\r
+#: admin/main.php:101\r
+#@ mantra\r
+msgid "Post Information Settings"\r
+msgstr "Einstellungen der Beitragsinfos"\r
+\r
+#: admin/main.php:102\r
+#@ mantra\r
+msgid "Post Excerpt Settings"\r
+msgstr "Einstellungen der Beitragsauszüge"\r
+\r
+#: admin/main.php:103\r
+#@ mantra\r
+msgid "Featured Image Settings"\r
+msgstr "Artikelbild"\r
+\r
+#: admin/main.php:104\r
+#@ mantra\r
+msgid "Social Media Settings"\r
+msgstr "Social Media Einstellungen"\r
+\r
+#: admin/main.php:105\r
+#@ mantra\r
+msgid "Miscellaneous Settings"\r
+msgstr "Verschiedene Einstellungen"\r
+\r
+#: admin/main.php:107\r
+#@ mantra\r
+msgid "Main Layout"\r
+msgstr "Hauptlayout"\r
+\r
+#: admin/main.php:108\r
+#@ mantra\r
+msgid "Content / Sidebar Width"\r
+msgstr "Inhalt/Sidebar Breite"\r
+\r
+#: admin/main.php:111\r
+#@ mantra\r
+msgid "Enable Presentation Page"\r
+msgstr "Aktiviere die Präsentationsseite"\r
+\r
+#: admin/main.php:112\r
+#@ mantra\r
+msgid "Slider Settings"\r
+msgstr "Slidereinstellungen"\r
+\r
+#: admin/main.php:113\r
+#@ mantra\r
+msgid "Slides"\r
+msgstr "Slides"\r
+\r
+#: admin/main.php:114\r
+#@ mantra\r
+msgid "Presentation Page Columns"\r
+msgstr "Spalten der Präsentationsseite"\r
+\r
+#: admin/main.php:115\r
+#@ mantra\r
+msgid "Extras"\r
+msgstr "Extras"\r
+\r
+#: admin/main.php:124\r
+#@ mantra\r
+msgid "General Font"\r
+msgstr "Allgemeine Schriftart"\r
+\r
+#: admin/main.php:125\r
+#@ mantra\r
+msgid "General Font Size"\r
+msgstr "Größe der allgemeinen Schriftart"\r
+\r
+#: admin/main.php:126\r
+#@ mantra\r
+msgid "Post Title Font "\r
+msgstr "Schriftart der Beitragsüberschrift"\r
+\r
+#: admin/main.php:127\r
+#@ mantra\r
+msgid "Post Title Font Size"\r
+msgstr "Größe der Beitragsüberschrift"\r
+\r
+#: admin/main.php:128\r
+#@ mantra\r
+msgid "Sidebar Font"\r
+msgstr "Schriftart der Sidebar"\r
+\r
+#: admin/main.php:129\r
+#@ mantra\r
+msgid "SideBar Font Size"\r
+msgstr "Schriftartgröße der Sidebar"\r
+\r
+#: admin/main.php:130\r
+#@ mantra\r
+msgid "Sub-Headers Font"\r
+msgstr "Schriftart der Untertitel"\r
+\r
+#: admin/main.php:131\r
+#@ mantra\r
+msgid "Force Text Align"\r
+msgstr "Erzwinge Textausrichtung"\r
+\r
+#: admin/main.php:132\r
+#@ mantra\r
+msgid "Paragraph indent"\r
+msgstr "Paragraph einrücken"\r
+\r
+#: admin/main.php:133\r
+#@ mantra\r
+msgid "Header indent"\r
+msgstr "Titel einrücken"\r
+\r
+#: admin/main.php:134\r
+#@ mantra\r
+msgid "Line Height"\r
+msgstr "Linienhöhe"\r
+\r
+#: admin/main.php:135\r
+#@ mantra\r
+msgid "Word spacing"\r
+msgstr "Wortabstand"\r
+\r
+#: admin/main.php:136\r
+#@ mantra\r
+msgid "Letter spacing"\r
+msgstr "Buchstabenabstand"\r
+\r
+#: admin/main.php:137\r
+#@ mantra\r
+msgid "Text shadow"\r
+msgstr "Textschatten"\r
+\r
+#: admin/main.php:139\r
+#@ mantra\r
+msgid "Background Color"\r
+msgstr "Hintergrundfarbe"\r
+\r
+#: admin/main.php:140\r
+#@ mantra\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Kopfzeile (Banner und Menü) Hintergrundfarbe"\r
+\r
+#: admin/main.php:141\r
+#@ mantra\r
+msgid "Content Background Color"\r
+msgstr "Hintergrundfarbe Inhalt"\r
+\r
+#: admin/main.php:146\r
+#@ mantra\r
+msgid "Site Title Color"\r
+msgstr "Farbe Seitentitel"\r
+\r
+#: admin/main.php:147\r
+#@ mantra\r
+msgid "Site Description Color"\r
+msgstr "Farbe Seitenbeschreibung"\r
+\r
+#: admin/main.php:149\r
+#@ mantra\r
+msgid "Content Text Color"\r
+msgstr "Farbe Inhalt"\r
+\r
+#: admin/main.php:150\r
+#@ mantra\r
+msgid "Links Color"\r
+msgstr "Farbe Links"\r
+\r
+#: admin/main.php:151\r
+#@ mantra\r
+msgid "Links Hover Color"\r
+msgstr "Linkfarbe bei Mauszeigerberühung"\r
+\r
+#: admin/main.php:152\r
+#@ mantra\r
+msgid "Post Title Color"\r
+msgstr "Farbe Beitragstitel"\r
+\r
+#: admin/main.php:153\r
+#@ mantra\r
+msgid "Post Title Hover Color"\r
+msgstr "Farbe Beitragstitel bei Mauszeigerberühung"\r
+\r
+#: admin/main.php:154\r
+#@ mantra\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Hintergrundfarbe der Kopfzeile der Sidebar"\r
+\r
+#: admin/main.php:155\r
+#@ mantra\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Textfarbe der Kopfzeile der Sidebar"\r
+\r
+#: admin/main.php:156\r
+#@ mantra\r
+msgid "Footer Widget Background Color"\r
+msgstr "Footer Widget Hintergrundfarbe"\r
+\r
+#: admin/main.php:157\r
+#@ mantra\r
+msgid "Footer Background Color"\r
+msgstr "Footer Hintergrundfarbe"\r
+\r
+#: admin/main.php:158\r
+#@ mantra\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Textfarbe der Kopfzeile des Footer Widget "\r
+\r
+#: admin/main.php:159\r
+#@ mantra\r
+msgid "Footer Widget Link Color"\r
+msgstr "Linkfarbe des Footerwidget"\r
+\r
+#: admin/main.php:160\r
+#@ mantra\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Farbe des Footer Widget bei Mauszeigerberühung"\r
+\r
+#: admin/main.php:165\r
+#@ mantra\r
+msgid "Caption Border"\r
+msgstr "Rahmen der Bildunterschrift"\r
+\r
+#: admin/main.php:164\r
+#@ mantra\r
+msgid "Post Images Border"\r
+msgstr "Rahmen der Beitragsbilder"\r
+\r
+#: admin/main.php:166\r
+#@ mantra\r
+msgid "Caption Pin"\r
+msgstr "Bildunterschriftspin"\r
+\r
+#: admin/main.php:167\r
+#@ mantra\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Sidebar Menü Aufzählungszeichen"\r
+\r
+#: admin/main.php:168\r
+#@ mantra\r
+msgid "Meta Area Background"\r
+msgstr "Meta Bereich Hintergrund"\r
+\r
+#: admin/main.php:169\r
+#@ mantra\r
+msgid "Post Separator"\r
+msgstr "Beitragstrenner"\r
+\r
+#: admin/main.php:170\r
+#@ mantra\r
+msgid "Content List Bullets"\r
+msgstr "Aufzählungszeichen Inhaltsübersicht"\r
+\r
+#: admin/main.php:171\r
+#@ mantra\r
+msgid "Page Titles"\r
+msgstr "Seitentitel"\r
+\r
+#: admin/main.php:172\r
+#@ mantra\r
+msgid "Category Page Titles"\r
+msgstr "Titel der Kategorieseiten"\r
+\r
+#: admin/main.php:173\r
+#@ mantra\r
+msgid "Hide Tables"\r
+msgstr "Verstecke Tabellen"\r
+\r
+#: admin/main.php:174\r
+#@ mantra\r
+msgid "Back to Top button"\r
+msgstr "Züruck zum Anfang Schaltfläche"\r
+\r
+#: admin/main.php:175\r
+#@ mantra\r
+msgid "Text Under Comments"\r
+msgstr "Text unter Kommentaren"\r
+\r
+#: admin/main.php:176\r
+#@ mantra\r
+msgid "Comments are closed text"\r
+msgstr "Text, falls Kommentare geschlossen sind"\r
+\r
+#: admin/main.php:177\r
+#@ mantra\r
+msgid "Comments off"\r
+msgstr "Kommentare aus"\r
+\r
+#: admin/main.php:179\r
+#@ mantra\r
+msgid "Post Comments Link"\r
+msgstr "Link zu den Beitragskommentaren"\r
+\r
+#: admin/main.php:180\r
+#@ mantra\r
+msgid "Post Date"\r
+msgstr "Erscheinungstermin"\r
+\r
+#: admin/main.php:181\r
+#@ mantra\r
+msgid "Post Time"\r
+msgstr "Erscheinungszeit"\r
+\r
+#: admin/main.php:182\r
+#@ mantra\r
+msgid "Post Author"\r
+msgstr "Beitragsverfasser"\r
+\r
+#: admin/main.php:183\r
+#@ mantra\r
+msgid "Post Category"\r
+msgstr "Beitragskategorie"\r
+\r
+#: admin/main.php:184\r
+#@ mantra\r
+msgid "Post Tags"\r
+msgstr "Post Tags"\r
+\r
+#: admin/main.php:185\r
+#@ mantra\r
+msgid "Post Permalink"\r
+msgstr "Post Permalink"\r
+\r
+#: admin/main.php:186\r
+#@ mantra\r
+msgid "All Post Metas"\r
+msgstr "Alle Metas des Posts"\r
+\r
+#: admin/main.php:188\r
+#@ mantra\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Beitragsauszug auf der Homepage"\r
+\r
+#: admin/main.php:189\r
+#@ mantra\r
+msgid "Affect Sticky Posts"\r
+msgstr "Beinflusse den Sticky Post"\r
+\r
+#: admin/main.php:190\r
+#@ mantra\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Beitragsauszüge in Archiven und Kategorieseiten"\r
+\r
+#: admin/main.php:191\r
+#@ mantra\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Anzahl der Wörter für Beitragsauszüge"\r
+\r
+#: admin/main.php:192\r
+#@ mantra\r
+msgid "Magazine Layout"\r
+msgstr "Magazinlayout"\r
+\r
+#: admin/main.php:193\r
+#@ mantra\r
+msgid "Excerpt suffix"\r
+msgstr "Auszugsanhängsel"\r
+\r
+#: admin/main.php:194\r
+#@ mantra\r
+msgid "Continue reading link text "\r
+msgstr "Weiterlesen Linktext"\r
+\r
+#: admin/main.php:195\r
+#@ mantra\r
+msgid "HTML tags in Excerpts"\r
+msgstr "HTML Tags in Auszügen"\r
+\r
+#: admin/main.php:197\r
+#@ mantra\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Artikelbild als Beitragsthumbnails"\r
+\r
+#: admin/main.php:198\r
+#@ mantra\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Selektiere Bilder aus Beiträgen automatisch"\r
+\r
+#: admin/main.php:199\r
+#@ mantra\r
+msgid "Thumbnails Alignment "\r
+msgstr "Bildausrichtung"\r
+\r
+#: admin/main.php:200\r
+#@ mantra\r
+msgid "Thumbnails Size "\r
+msgstr "Thumbnailgröße"\r
+\r
+#: admin/main.php:201\r
+#@ mantra\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Artikelbilder als Kopfzeilenbilder"\r
+\r
+#: admin/main.php:203\r
+#@ mantra\r
+msgid "Link nr. 1"\r
+msgstr "Link Nr. 1"\r
+\r
+#: admin/main.php:204\r
+#@ mantra\r
+msgid "Link nr. 2"\r
+msgstr "Link Nr. 2"\r
+\r
+#: admin/main.php:205\r
+#@ mantra\r
+msgid "Link nr. 3"\r
+msgstr "Link Nr. 3"\r
+\r
+#: admin/main.php:206\r
+#@ mantra\r
+msgid "Link nr. 4"\r
+msgstr "Link Nr. 4"\r
+\r
+#: admin/main.php:207\r
+#@ mantra\r
+msgid "Link nr. 5"\r
+msgstr "Link Nr. 5"\r
+\r
+#: admin/main.php:208\r
+#@ mantra\r
+msgid "Socials display"\r
+msgstr "Soziale Icons anzeigen"\r
+\r
+#: admin/main.php:162\r
+#@ mantra\r
+msgid "Breadcrumbs"\r
+msgstr "Breadcrumbs"\r
+\r
+#: admin/main.php:163\r
+#@ mantra\r
+msgid "Pagination"\r
+msgstr "Pagination"\r
+\r
+#: admin/main.php:109\r
+#@ mantra\r
+msgid "Mobile view"\r
+msgstr "Mobile Ansicht"\r
+\r
+#: admin/main.php:212\r
+#@ mantra\r
+msgid "Custom CSS"\r
+msgstr "Benutzerdefinierter CSS"\r
+\r
+#: admin/main.php:213\r
+#@ mantra\r
+msgid "Custom JavaScript"\r
+msgstr "Benutzerdefiniertes JavaSkript"\r
+\r
+#: admin/main.php:210\r
+#@ mantra\r
+msgid "SEO Settings"\r
+msgstr "Suchmaschinenoptimierungseinstellungen"\r
+\r
+#: admin/main.php:230\r
+#@ mantra\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Entschuldige, aber dir fehlen die nötigen Rechte um diese Seite zu betreten."\r
+\r
+#: admin/main.php:249\r
+#@ mantra\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Mantraeinstellungen wurden erfolgreich aktualisiert."\r
+\r
+#: admin/main.php:262\r
+#@ mantra\r
+msgid "Reset to Defaults"\r
+msgstr "Stelle die Standarteinstellungen wieder her."\r
+\r
+#: admin/main.php:261\r
+#@ mantra\r
+msgid "Save Changes"\r
+msgstr "Sichere Änderungen"\r
+\r
+#: admin/main.php:276\r
+#@ mantra\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we spend night after night improving the Mantra Theme. We fix a lot of bugs (that we previously created); we add more and more customization options while also trying to keep things as simple as possible; then... we might play a game or two but rest assured that we return to read and (in most cases) reply to your late night emails and comments, take notes and draw dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they keep so fresh after all that hard labor for that darned theme? </i> Well folks, it's simple. We drink coffee. Industrial quantities of hot boiling coffee. We love it! So if you want to help with the further development of the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Hier bei Cryout Creations (den Entwicklern des einzig wahren Mantra Themes) verbringen wir Nacht für Nacht damit, das Mantra Theme weiter zu verbessern. Wir beheben Fehler (die wir daov erstellt haben); wir fügen immer mehr Anpassungsoptionen ein und versuchen trotzdem die Dinge so einfach wie möglich zu halten; Dann… spielen wir vielleicht ein Spiel oder zwei, aber sei versichert, dass wir auch deine späten Nachrichten lesen und (meistens) darauf antworten, uns Notizen machen und Skizzen erstellen von Dingen, die in späteren Versionen eingebaut werden. </p>\n"\r
+"\t\t\t<p>Vielleicht fragst du dich selbst: <i>Wie machen die das? Wie bleiben Sie so frisch und cool nach all der harten Arbeit an diesem Theme?</i> Tja, Leute, es ist ganz einfach. Wir trinken Kaffee. Industrielle Mengen von kochend heißen Kaffee. Wir lieben Kaffee! Also, falls du uns helfen willst bei der weiteren Entwicklung des Mantra Theme… </p> "\r
+\r
+#: admin/main.php:291\r
+#@ mantra\r
+msgid "Import/Export Settings"\r
+msgstr "Importierungs/Exportierungseinstellungen"\r
+\r
+#: admin/main.php:297\r
+#@ mantra\r
+msgid "Export Theme options"\r
+msgstr "Exportiere die Themeeinstellungen"\r
+\r
+#: admin/main.php:298\r
+#@ mantra\r
+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!"\r
+msgstr "Es ist so einfach: einen Mausklick entfernt - die Möglichkeit deine Mantraeinstellungen zu exportieren und auf dem Computer zu speichern. Fühlst du dich sicherer? Solltest du!"\r
+\r
+#: admin/main.php:303\r
+#@ mantra\r
+msgid "Import Theme options"\r
+msgstr "Importiere Themeeinstellungen"\r
+\r
+#: admin/main.php:304\r
+#@ mantra\r
+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."\r
+msgstr "Ohne den Import, wäre der Export sinnlos. Stelle sicher, dass du die exportierte Datei griffbereit hast. Wir sehen uns nach dem Mausklick!"\r
+\r
+#: admin/main.php:312\r
+#@ mantra\r
+msgid "Mantra Latest News"\r
+msgstr "Neueste Mantraneuigkeiten"\r
+\r
+#: admin/main.php:323\r
+#@ mantra\r
+msgid "No news items."\r
+msgstr "Keine News."\r
+\r
+#: admin/settings.php:66\r
+#@ mantra\r
+msgid "One column (no sidebars)"\r
+msgstr "Eine Spalte (keine Marginalspalte)"\r
+\r
+#: admin/settings.php:67\r
+#@ mantra\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Zwei Spalten, Marginalspalte rechts"\r
+\r
+#: admin/settings.php:68\r
+#@ mantra\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Zwei Spalten, Marginalspalte links"\r
+\r
+#: admin/settings.php:69\r
+#@ mantra\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Drei Spalten, Marginalspalte rechts"\r
+\r
+#: admin/settings.php:70\r
+#@ mantra\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Drei Spalten, Marginalspalte links"\r
+\r
+#: admin/settings.php:71\r
+#@ mantra\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Drei Spalten, Marginalspalte auf jeder Seite"\r
+\r
+#: admin/settings.php:95\r
+#@ mantra\r
+msgid "Absolute"\r
+msgstr "Absolut"\r
+\r
+#: admin/settings.php:95\r
+#@ mantra\r
+msgid "Relative"\r
+msgstr "Relativ"\r
+\r
+#: admin/settings.php:96\r
+#@ mantra\r
+msgid "Dimensions to use: "\r
+msgstr "Zu benutzende Abmessungen:"\r
+\r
+#: admin/settings.php:194\r
+#: admin/settings.php:214\r
+#@ mantra\r
+msgid "Content ="\r
+msgstr "Inhalt ="\r
+\r
+#: admin/settings.php:195\r
+#: admin/settings.php:215\r
+#@ mantra\r
+msgid "Sidebar(s) ="\r
+msgstr "Marginalspalte(n) ="\r
+\r
+#: admin/settings.php:196\r
+#: admin/settings.php:216\r
+#@ mantra\r
+msgid "Total width ="\r
+msgstr "Totale Breite ="\r
+\r
+#: admin/settings.php:205\r
+#@ mantra\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+"Wähle die Breite deines <b>Inhalts</b> und der <b>Marginalspalte(n)</b>. \n"\r
+" \t\tWährend der Inhalt nicht schmäler als 500px sein darf, muss die Marginalspalte mindestens 220px und nicht breiter als 800bx sein.<br />\n"\r
+"\tFalls du drei Spalten (mit zwei Marginalspalten) benutzt, wird jede Spalte die Hälfte des gewählten Wertes breit sein."\r
+\r
+#: admin/settings.php:225\r
+#@ mantra\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+"Wähle die Breite deines <b>Inhalts</b> und der <b>Marginalspalte(n)</b>. \n"\r
+" \t\tDies sind relative Angaben - relativ zum Broswer des Benutzers. Die totale Breite ist ein Anteil der Breite des Benutzerbrowsers.<br />\n"\r
+" \t\tWährend der Inhalt nicht weniger als 40% weit sein kann, muss die Marginalspalte mindestens 20% breit und nicht weiter als 50% sein.<br />\n"\r
+"\tFalls du drei Spalten (mit zwei Marginalspalten) benutzt, wird jede Spalte die Hälfte des gewählten Wertes breit sein."\r
+\r
+#: admin/settings.php:239\r
+#: admin/settings.php:264\r
+#: admin/settings.php:724\r
+#: admin/settings.php:1071\r
+#: admin/settings.php:1133\r
+#: admin/settings.php:1316\r
+#: admin/settings.php:1331\r
+#: admin/settings.php:1488\r
+#: admin/settings.php:1550\r
+#: admin/settings.php:1751\r
+#: admin/settings.php:1780\r
+#: admin/settings.php:1803\r
+#: admin/settings.php:1826\r
+#: admin/settings.php:1875\r
+#: admin/settings.php:2024\r
+#@ mantra\r
+msgid "Enable"\r
+msgstr "Aktiviere"\r
+\r
+#: admin/settings.php:239\r
+#: admin/settings.php:264\r
+#: admin/settings.php:724\r
+#: admin/settings.php:1071\r
+#: admin/settings.php:1133\r
+#: admin/settings.php:1316\r
+#: admin/settings.php:1331\r
+#: admin/settings.php:1488\r
+#: admin/settings.php:1550\r
+#: admin/settings.php:1751\r
+#: admin/settings.php:1780\r
+#: admin/settings.php:1803\r
+#: admin/settings.php:1826\r
+#: admin/settings.php:1875\r
+#: admin/settings.php:2024\r
+#@ mantra\r
+msgid "Disable"\r
+msgstr "Deaktiviere"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "Slider Dimensions:"\r
+msgstr "Sliderdimensionen"\r
+\r
+#: admin/settings.php:283\r
+#@ mantra\r
+msgid "width"\r
+msgstr "Breite"\r
+\r
+#: admin/settings.php:284\r
+#@ mantra\r
+msgid "height"\r
+msgstr "Höhe"\r
+\r
+#: admin/settings.php:285\r
+#@ mantra\r
+msgid "The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr "Die Dimensionen deines Sliders. Stelle sicher, dass deine Bidler gleich groß sind."\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "Animation:"\r
+msgstr "Animation:"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "Random"\r
+msgstr "Zufall"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "Fold"\r
+msgstr "Falten"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "Fade"\r
+msgstr "Einblenden"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SlideInRight"\r
+msgstr "EinfliegenVonRechts"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SlideInLeft"\r
+msgstr "EinfliegenVonLinks"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceDown"\r
+msgstr "NachUntenSchneiden"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceDownLeft"\r
+msgstr "NachLinksSchneiden"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceUp"\r
+msgstr "NachObenSchneiden"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceUpLeft"\r
+msgstr "NachLinksSchneiden"\r
+\r
+# well?\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceUpDown"\r
+msgstr "SchneideObenUnten"\r
+\r
+# well?\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceUpDownLeft"\r
+msgstr "SchneideObenRunterLinks"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "BoxRandom"\r
+msgstr "BoxZufall"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "BoxRain"\r
+msgstr "BoxRegen"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "BoxRainReverse"\r
+msgstr "BoxUmgekehrterRegen"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "BoxRainGrow"\r
+msgstr "BoxRegenWachsend"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "BoxRainGrowReverse"\r
+msgstr "BoxRegenWachsendUmgekehrt"\r
+\r
+#: admin/settings.php:297\r
+#@ mantra\r
+msgid "The transition effect your slider will have."\r
+msgstr "Den Übergangseffekt den dein Slider haben wird."\r
+\r
+#: admin/settings.php:299\r
+#@ mantra\r
+msgid "Border Settings:"\r
+msgstr "Begrenzungseinstellungen:"\r
+\r
+#: admin/settings.php:300\r
+#@ mantra\r
+msgid "Width"\r
+msgstr "Breite"\r
+\r
+#: admin/settings.php:301\r
+#@ mantra\r
+msgid "Color"\r
+msgstr "Farbe"\r
+\r
+#: admin/settings.php:303\r
+#@ mantra\r
+msgid "The width and color of the slider's border."\r
+msgstr "Die Breite und die Farbe der Begrenzung des Sliders."\r
+\r
+#: admin/settings.php:305\r
+#@ mantra\r
+msgid "Animation Time:"\r
+msgstr "Animationszeit"\r
+\r
+#: admin/settings.php:307\r
+#@ mantra\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "Die Dauer der Übergangsanimation."\r
+\r
+#: admin/settings.php:309\r
+#@ mantra\r
+msgid "Pause Time:"\r
+msgstr "Pausenzeit:"\r
+\r
+#: admin/settings.php:311\r
+#@ mantra\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Die Zeit während der jede Slide still steht und sichtbar ist."\r
+\r
+#: admin/settings.php:314\r
+#@ mantra\r
+msgid "Slider navigation:"\r
+msgstr "Slidernavigation:"\r
+\r
+#: admin/settings.php:316\r
+#@ mantra\r
+msgid "Numbers"\r
+msgstr "Nummern"\r
+\r
+#: admin/settings.php:316\r
+#@ mantra\r
+msgid "Bullets"\r
+msgstr "Aufzählungszeichen"\r
+\r
+#: admin/settings.php:316\r
+#: admin/settings.php:1409\r
+#@ mantra\r
+msgid "None"\r
+msgstr "Keine"\r
+\r
+#: admin/settings.php:324\r
+#@ mantra\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Der Navigationstyp deines Sliders, Gezeigt unterm Slider."\r
+\r
+#: admin/settings.php:326\r
+#@ mantra\r
+msgid "Slider arrows:"\r
+msgstr "Sliderpfeile:"\r
+\r
+#: admin/settings.php:328\r
+#@ mantra\r
+msgid "Always Visible"\r
+msgstr "Immer sichtbar"\r
+\r
+#: admin/settings.php:328\r
+#@ mantra\r
+msgid "Visible on Hover"\r
+msgstr "Bei Mauszeigerberührung sichtbar"\r
+\r
+#: admin/settings.php:328\r
+#@ mantra\r
+msgid "Hidden"\r
+msgstr "Versteckt"\r
+\r
+#: admin/settings.php:336\r
+#@ mantra\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Der linke und rechte Pfeil deines Sliders."\r
+\r
+#: admin/settings.php:377\r
+#: admin/settings.php:446\r
+#@ mantra\r
+msgid "Select Category"\r
+msgstr "Wähle Kategorie"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Custom Slides"\r
+msgstr "Benutzerdefinierte Slides"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Latest Posts"\r
+msgstr "Neueste Beiträge"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Random Posts"\r
+msgstr "Zufällige Beiträge"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Sticky Posts"\r
+msgstr "Sticky Posts"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Latest Posts from Category"\r
+msgstr "Neueste Posts der Kategorie"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Random Posts from Category"\r
+msgstr "Zufällige Posts der Kategorie"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Specific Posts"\r
+msgstr "Bestimmter Beitrag"\r
+\r
+#: admin/settings.php:418\r
+#@ mantra\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Neuester Beitrag wird in den Slider geladen."\r
+\r
+#: admin/settings.php:422\r
+#@ mantra\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Zufälliger Beitrag wird in den Slider geladen."\r
+\r
+#: admin/settings.php:426\r
+#@ mantra\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "Neuester Beitrag einer gewählten Kategorie wird in den Slider geladen."\r
+\r
+#: admin/settings.php:431\r
+#@ mantra\r
+msgid "Random posts from the category you choose will be loaded into the slider."\r
+msgstr "Zufälliger Post einer gewählten Kategorie wird in den Slider geladen."\r
+\r
+#: admin/settings.php:435\r
+#@ mantra\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Nur Sticky Posts werden in den Slider geladen."\r
+\r
+#: admin/settings.php:439\r
+#@ mantra\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr "Liste die Beitrag-Identifikationsnummern (IDs) auf, die angezeigt werden sollen (getrennt durch ein Komma):"\r
+\r
+#: admin/settings.php:444\r
+#@ mantra\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Wähle die Kategorie:"\r
+\r
+#: admin/settings.php:461\r
+#@ mantra\r
+msgid "Number of posts to show:"\r
+msgstr "Anzahl der zu zeigenden Beiträge:"\r
+\r
+#: admin/settings.php:468\r
+#@ mantra\r
+msgid "Slide 1"\r
+msgstr "Slide 1"\r
+\r
+#: admin/settings.php:473\r
+#: admin/settings.php:488\r
+#: admin/settings.php:503\r
+#: admin/settings.php:518\r
+#: admin/settings.php:533\r
+#: admin/settings.php:575\r
+#: admin/settings.php:590\r
+#: admin/settings.php:620\r
+#@ mantra\r
+msgid "Title"\r
+msgstr "Überschrift"\r
+\r
+#: admin/settings.php:475\r
+#: admin/settings.php:490\r
+#: admin/settings.php:505\r
+#: admin/settings.php:520\r
+#: admin/settings.php:535\r
+#: admin/settings.php:577\r
+#: admin/settings.php:592\r
+#: admin/settings.php:607\r
+#: admin/settings.php:622\r
+#@ mantra\r
+msgid "Text"\r
+msgstr "Text"\r
+\r
+#: admin/settings.php:483\r
+#@ mantra\r
+msgid "Slide 2"\r
+msgstr "Slide 2"\r
+\r
+#: admin/settings.php:498\r
+#@ mantra\r
+msgid "Slide 3"\r
+msgstr "Slide 3"\r
+\r
+#: admin/settings.php:513\r
+#@ mantra\r
+msgid "Slide 4"\r
+msgstr "Slide 4"\r
+\r
+#: admin/settings.php:528\r
+#@ mantra\r
+msgid "Slide 5"\r
+msgstr "Slide 5"\r
+\r
+#: admin/settings.php:413\r
+#@ mantra\r
+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."\r
+msgstr "Der Inhalt deiner Slide. Nur das Bild wird benütigt, alle anderen Felder sind optional. Nur die Slides mit einem ausgewählten Bild werden aktiv und sichtbar im Slider."\r
+\r
+#: admin/settings.php:550\r
+#@ mantra\r
+msgid "Number of columns:"\r
+msgstr "Anzahl der Spalten:"\r
+\r
+#: admin/settings.php:560\r
+#@ mantra\r
+msgid "Image Height:"\r
+msgstr "Bildhöhe:"\r
+\r
+#: admin/settings.php:563\r
+#@ mantra\r
+msgid "Read more text:"\r
+msgstr "Weiterlesen Text:"\r
+\r
+#: admin/settings.php:566\r
+#@ mantra\r
+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."\r
+msgstr "Der verlinkte Text erscheint am Ende aller Spalten. Du kannst allen Text hier drin löschen, wenn du ihn nicht willst."\r
+\r
+#: admin/settings.php:570\r
+#@ mantra\r
+msgid "1st Column"\r
+msgstr "Erste Spalte"\r
+\r
+#: admin/settings.php:585\r
+#@ mantra\r
+msgid "2nd Column"\r
+msgstr "Zweite Spalte"\r
+\r
+#: admin/settings.php:600\r
+#@ mantra\r
+msgid "3rd Column"\r
+msgstr "Dritte Spalte"\r
+\r
+#: admin/settings.php:615\r
+#@ mantra\r
+msgid "4th Column"\r
+msgstr "Vierte Spalte"\r
+\r
+#: admin/settings.php:637\r
+#@ mantra\r
+msgid "Extra Text"\r
+msgstr "Extratext"\r
+\r
+#: admin/settings.php:642\r
+#@ mantra\r
+msgid "Top Title"\r
+msgstr "Überschrift Oben"\r
+\r
+#: admin/settings.php:643\r
+#@ mantra\r
+msgid "Second Title"\r
+msgstr "Zweite Überschrift"\r
+\r
+#: admin/settings.php:646\r
+#@ mantra\r
+msgid "Title color"\r
+msgstr "Farbe der Überschrift"\r
+\r
+#: admin/settings.php:650\r
+#@ mantra\r
+msgid "Bottom Text 1"\r
+msgstr "Text unten 1"\r
+\r
+#: admin/settings.php:652\r
+#@ mantra\r
+msgid "Bottom Text 2"\r
+msgstr "Text unten 2"\r
+\r
+#: admin/settings.php:639\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Mehr Text für deine Startseite. Die obere Überschrift ist über dem Slider, der zweite Titel zwischen dem Slider und den Reihen und zwei mehr Zeilen Text gibnt es unter den Reihen.\n"\r
+"\t\t Die Felder sind alle optional, also lasse sie leer, falls diese nicht benötigt werden."\r
+\r
+#: admin/settings.php:660\r
+#@ mantra\r
+msgid "Hide areas"\r
+msgstr "Verstecke Bereiche"\r
+\r
+#: admin/settings.php:674\r
+#@ mantra\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Verstecke den Kopfzeilenbereich (Bild oder Hintergrundfarbe)"\r
+\r
+#: admin/settings.php:678\r
+#@ mantra\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Verstecke das Hauptmenü"\r
+\r
+#: admin/settings.php:682\r
+#@ mantra\r
+msgid "Hide the footer widgets. "\r
+msgstr "Verstecke die Footer Widgets"\r
+\r
+#: admin/settings.php:686\r
+#@ mantra\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Verstecke den Footer (Copyrightbereich)"\r
+\r
+#: admin/settings.php:690\r
+#@ mantra\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Verstecke die weiße Farbe. Nur die Hintergrundfarbe bleibt."\r
+\r
+#: admin/settings.php:662\r
+#@ mantra\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Wähle die zu versteckenden Bereiche auf der ersten Seite."\r
+\r
+#: admin/settings.php:803\r
+#@ mantra\r
+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."\r
+msgstr "Wähle die Größe der Schriftart die du in deinem Blog benutzt. Seiten, Beiträge und Kommentare werden beinflusst. Knöpfe, Kopfzeilen und Marginalmenüs bleiben gleich."\r
+\r
+#: admin/settings.php:847\r
+#@ mantra\r
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "\r
+msgstr "Wähle die Schriftartenfamilie die du in deinem Blog benutzen willst. Der gesamte Inhaltstext wird beinflusst (auch Menüknöpfe)."\r
+\r
+#: admin/settings.php:849\r
+#: admin/settings.php:899\r
+#: admin/settings.php:950\r
+#: admin/settings.php:1002\r
+#@ mantra\r
+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."\r
+msgstr "Oder füge deine Google Schriftart ein. Bitte füge nur den <strong>Namen</strong> der Schriftart ein. Beispiel: Marko One. Geh zu a href='http://www.google.com/webfonts' > google fonts </a> für ein bisschen Inspiration."\r
+\r
+#: admin/settings.php:896\r
+#@ mantra\r
+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."\r
+msgstr "Wähle die Schriftartfamilie, die du für Überschriften benutzen willst. Diese wird Beitragsüberschriften und Seitentitel beinflussen. Lasse 'Default' (Standart) eingestellt und die von dir gewählte allgemeine Schriftart wird benutzt."\r
+\r
+#: admin/settings.php:948\r
+#@ mantra\r
+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."\r
+msgstr "Wähle die Schriftartfamilie, die du für Marginalspalten benutzen willst. Diese wird Text und Widgets in den Marginalspalten beinflussen. Lasse 'Default' (Standart) eingestellt und die von dir gewählte allgemeine Schriftart wird benutzt."\r
+\r
+#: admin/settings.php:999\r
+#@ mantra\r
+msgid "Select the font family you want your subheaders to have (h2 - h6 tags will be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr "Wähle die Schriftartfamilie, die du für Unterüberschriften (h2-h6 Tags werden beinflusst) benutzen willst. Lasse 'Default' (Standart) eingestellt und die von dir gewählte allgemeine Schriftart wird benutzt."\r
+\r
+#: admin/settings.php:1011\r
+#: admin/settings.php:1026\r
+#: admin/settings.php:1041\r
+#: admin/settings.php:1086\r
+#: admin/settings.php:1101\r
+#: admin/settings.php:1116\r
+#@ mantra\r
+msgid "Default"\r
+msgstr "Standart"\r
+\r
+#: admin/settings.php:1019\r
+#@ mantra\r
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Größe der Schriftart in der Beitragsüberschrift. Lasse 'Default' (Standart) eingestellt für normale Einstellungen. (Größenangaben werden im CSS gesetzt.)"\r
+\r
+#: admin/settings.php:1034\r
+#@ mantra\r
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Größe der Schriftart in der Marginalspalte. Lasse 'Default' (Standart) eingestellt für normale Einstellungen. (Größenangaben werden im CSS gesetzt.)"\r
+\r
+#: admin/settings.php:1041\r
+#: admin/settings.php:1842\r
+#@ mantra\r
+msgid "Left"\r
+msgstr "Links"\r
+\r
+#: admin/settings.php:1041\r
+#: admin/settings.php:1842\r
+#@ mantra\r
+msgid "Right"\r
+msgstr "Rechts"\r
+\r
+#: admin/settings.php:1041\r
+#@ mantra\r
+msgid "Justify"\r
+msgstr "Begründe"\r
+\r
+#: admin/settings.php:1041\r
+#: admin/settings.php:1842\r
+#@ mantra\r
+msgid "Center"\r
+msgstr "Mitte"\r
+\r
+#: admin/settings.php:1049\r
+#@ mantra\r
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr "Dies überschreibt die Textausrichtung in Beiträgen und auf Seiten. Lass 'Standart' für normale Einstellungen. (Ausrichtungen bleiben wie in den Beiträgen und Kommentaren deklariert.)"\r
+\r
+#: admin/settings.php:1063\r
+#@ mantra\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Wähle die Einrückung für deine Absätze."\r
+\r
+#: admin/settings.php:1079\r
+#@ mantra\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "Deaktiviere die Standartkopfzeile und die Einrückung des Titels (linker Rand)."\r
+\r
+#: admin/settings.php:1094\r
+#@ mantra\r
+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)."\r
+msgstr "Zeilenabstand des Textes, der Abstand zwischen zwei Zeilen von Text. Lasse 'Default' (Standart) eingestellt für normale Einstellungen. (Größenangaben werden im CSS gesetzt.)"\r
+\r
+#: admin/settings.php:1109\r
+#@ mantra\r
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Der Abstand zwischen <i>Worten</i>. Lasse 'Default' (Standart) eingestellt für normale Einstellungen. (Größenangaben werden im CSS gesetzt.)"\r
+\r
+#: admin/settings.php:1124\r
+#@ mantra\r
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Der Abstand zwischen <i>Buchstaben</i>. Lasse 'Default' (Standart) eingestellt für normale Einstellungen. (Größenangaben werden im CSS gesetzt.)"\r
+\r
+#: admin/settings.php:1141\r
+#@ mantra\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "Deaktiviere den Standarttextschatten in der Kopfzeile und bei Überschriften."\r
+\r
+#: admin/settings.php:1153\r
+#@ mantra\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Hintergrundfarbe (Standartwert ist 444444)."\r
+\r
+#: admin/settings.php:1161\r
+#@ mantra\r
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."\r
+msgstr "Hintergrundfarbe der Kopfzeile. (Standartwert ist 333333.) Du kannst den eingegeben Text löschen, um keine Farbe darzustellen."\r
+\r
+#: admin/settings.php:1175\r
+#@ mantra\r
+msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."\r
+msgstr "Hintergrundfarbe des Hauptmenüs. (Standart ist FAFAFA.) Sollte die selbe Farbe haben wie die Hintergrundfarbe des Inhalts oder ähnlich hell sein."\r
+\r
+#: admin/settings.php:1197\r
+#@ mantra\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "Hintergrundfarbe Fußzeilen Widgetbereich (Standart ist 171717)."\r
+\r
+#: admin/settings.php:1205\r
+#@ mantra\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Hintergrundfarbe Fußzeile (Standart ist 222222)."\r
+\r
+#: admin/settings.php:1213\r
+#@ mantra\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Die Titelfarbe deines Blogs (Standart ist 0D85CC)."\r
+\r
+#: admin/settings.php:1221\r
+#@ mantra\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Die Farbe der Beschreibung deines Blogs. (Standart ist 222222)."\r
+\r
+#: admin/settings.php:1229\r
+#@ mantra\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Textfarbe Inhalt (Standart ist 333333)."\r
+\r
+#: admin/settings.php:1237\r
+#@ mantra\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Linkfarben (Standart ist 0D85CC)."\r
+\r
+#: admin/settings.php:1245\r
+#@ mantra\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "Linkfarben bei Mausberühung (Standart ist 333333)."\r
+\r
+#: admin/settings.php:1253\r
+#@ mantra\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Farbe des Beitragstitel (Standart ist 333333)."\r
+\r
+#: admin/settings.php:1261\r
+#@ mantra\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr "Farbe des Beitragstitel bei Mausberührung (Standart ist 000000)."\r
+\r
+#: admin/settings.php:1269\r
+#@ mantra\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Hintergrundfarbe der Überschrift in der Marginalspalte (Standart ist 444444)."\r
+\r
+#: admin/settings.php:1278\r
+#@ mantra\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Farbe der Überschrift in der Marginalspalte (Standart ist 2EA5FD)."\r
+\r
+#: admin/settings.php:1286\r
+#@ mantra\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Textfarbe der Fußzeilenwidgets (Standartwert ist 0D85CC)."\r
+\r
+#: admin/settings.php:1294\r
+#@ mantra\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Linkfarbe der Fußzeilenwidgets (Standart ist 666666)."\r
+\r
+#: admin/settings.php:1302\r
+#@ mantra\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr "Linkfarbe der Fußzeilenwidgets bei Mausberührung (Standart ist 888888)."\r
+\r
+#: admin/settings.php:1346\r
+#: admin/settings.php:1409\r
+#@ mantra\r
+msgid "White"\r
+msgstr "Weiß"\r
+\r
+#: admin/settings.php:1346\r
+#@ mantra\r
+msgid "Light"\r
+msgstr "Hell"\r
+\r
+#: admin/settings.php:1346\r
+#@ mantra\r
+msgid "Light Gray"\r
+msgstr "Leichtes Grau"\r
+\r
+#: admin/settings.php:1346\r
+#: admin/settings.php:1409\r
+#@ mantra\r
+msgid "Gray"\r
+msgstr "Grau"\r
+\r
+#: admin/settings.php:1346\r
+#@ mantra\r
+msgid "Dark Gray"\r
+msgstr "Dunkles Grau"\r
+\r
+#: admin/settings.php:1346\r
+#@ mantra\r
+msgid "Black"\r
+msgstr "Schwarz"\r
+\r
+#: admin/settings.php:1354\r
+#@ mantra\r
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."\r
+msgstr "Diese Einstellungen ändern das Aussehen deiner Bildunterschriften. Bilder, die nicht durch Bildunterschriften eingefügt sind werden nicht beinflusst."\r
+\r
+#: admin/settings.php:1370\r
+#@ mantra\r
+msgid "The border around your inserted images. "\r
+msgstr "Der Rahmen um deine eingefügten Bilder."\r
+\r
+#: admin/settings.php:1385\r
+#@ mantra\r
+msgid "The image on top of your captions. "\r
+msgstr "Das Bild oben auf deinen Bildunterschriften."\r
+\r
+#: admin/settings.php:1400\r
+#@ mantra\r
+msgid "The sidebar list bullets. "\r
+msgstr "Die Aufzählungszeichen der Marginalspalte."\r
+\r
+#: admin/settings.php:1425\r
+#: admin/settings.php:1441\r
+#: admin/settings.php:1458\r
+#: admin/settings.php:1473\r
+#: admin/settings.php:1503\r
+#: admin/settings.php:1518\r
+#: admin/settings.php:1534\r
+#: admin/settings.php:1570\r
+#: admin/settings.php:1585\r
+#: admin/settings.php:1600\r
+#: admin/settings.php:1615\r
+#: admin/settings.php:1630\r
+#: admin/settings.php:1645\r
+#: admin/settings.php:1660\r
+#: admin/settings.php:1675\r
+#@ mantra\r
+msgid "Show"\r
+msgstr "Zeige"\r
+\r
+#: admin/settings.php:1425\r
+#: admin/settings.php:1441\r
+#: admin/settings.php:1458\r
+#: admin/settings.php:1473\r
+#: admin/settings.php:1503\r
+#: admin/settings.php:1534\r
+#: admin/settings.php:1570\r
+#: admin/settings.php:1585\r
+#: admin/settings.php:1600\r
+#: admin/settings.php:1615\r
+#: admin/settings.php:1630\r
+#: admin/settings.php:1645\r
+#: admin/settings.php:1660\r
+#: admin/settings.php:1675\r
+#@ mantra\r
+msgid "Hide"\r
+msgstr "Verstecke"\r
+\r
+#: admin/settings.php:1433\r
+#@ mantra\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Verstecke oder zeige eine horizontale Linie um Beiträge zu trennen."\r
+\r
+#: admin/settings.php:1449\r
+#@ mantra\r
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."\r
+msgstr "Verstecke oder zeige Aufzählungszeichen neben Listen, die in deinem Inhaltsbereich sind (Beiträge, Seiten usw.)"\r
+\r
+#: admin/settings.php:1466\r
+#@ mantra\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "Verstecke oder zeige Seitentitel auf jedglichen <i>erstellten</i> Seiten."\r
+\r
+#: admin/settings.php:1481\r
+#@ mantra\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Verstecke oder zeige Seitentitel auf <i>Kategorieseiten</i>."\r
+\r
+#: admin/settings.php:1496\r
+#@ mantra\r
+msgid "Hide table borders and background color."\r
+msgstr "Verstecke Tabellenrahmen und Hintergrundfarben."\r
+\r
+#: admin/settings.php:1511\r
+#@ mantra\r
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."\r
+msgstr "Verstecke den erklärenden Text unter dem Kommentarfeld. (Fängt mit <i>Du kannst diese HTML Tags und Attribute benutzen: ...</i>"\r
+\r
+#: admin/settings.php:1518\r
+#@ mantra\r
+msgid "Hide in posts"\r
+msgstr "Verstecke in Beiträgen"\r
+\r
+#: admin/settings.php:1518\r
+#@ mantra\r
+msgid "Hide in pages"\r
+msgstr "Verstecke auf Seiten"\r
+\r
+#: admin/settings.php:1518\r
+#@ mantra\r
+msgid "Hide everywhere"\r
+msgstr "Verstecke überall"\r
+\r
+#: admin/settings.php:1526\r
+#@ mantra\r
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."\r
+msgstr "Verstecke den <b>Kommentare sind geschlossen</b> Text, der normalerweise bei Seiten und Beiträgen mit abgeschalteten Kommentaren auftaucht."\r
+\r
+#: admin/settings.php:1542\r
+#@ mantra\r
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr "Verstecke den <b>Kommentare aus</b>-Text neben Beiträgen, deren Kommentare deaktiviert sind."\r
+\r
+#: admin/settings.php:1558\r
+#@ mantra\r
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."\r
+msgstr "Aktiviere den \"Zurück nach Oben\" Knopf. Der Knopf taucht auf, nachdem man die Seite nach unten gescrollt hat."\r
+\r
+# like & copy?\r
+#: admin/settings.php:2004\r
+#@ mantra\r
+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 © ."\r
+msgstr "Füge eigenen Text oder HTML code hier in deine Fußzeile ein. <br /> Du kannst HTML benutzten um Links, Bilder und spezielle Zeichen einzufügen."\r
+\r
+#: admin/settings.php:1578\r
+#@ mantra\r
+msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."\r
+msgstr "Verstecke oder zeige <strong>Hinterlasse einen Kommentar</strong> oder <strong>x Kommentare</strong> neben Beiträgen oder Auszügen."\r
+\r
+#: admin/settings.php:1593\r
+#@ mantra\r
+msgid "Hide or show the post date."\r
+msgstr "Verstecke oder zeige das Veröffentlichungsdatum."\r
+\r
+#: admin/settings.php:1608\r
+#@ mantra\r
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."\r
+msgstr "Zeige die Uhrzeit und das Datum des Beitrags. Die Zeit wird nicht angezeigt, wenn das Beitragsdatum versteckt ist."\r
+\r
+#: admin/settings.php:1623\r
+#@ mantra\r
+msgid "Hide or show the post author."\r
+msgstr "Verstecke oder zeige den Author des Beitrags."\r
+\r
+#: admin/settings.php:1638\r
+#@ mantra\r
+msgid "Hide the post category."\r
+msgstr "Verstecke die Beitragskategorie."\r
+\r
+#: admin/settings.php:1653\r
+#@ mantra\r
+msgid "Hide the post tags."\r
+msgstr "Verstecke die Beitragstags."\r
+\r
+#: admin/settings.php:1668\r
+#@ mantra\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "Verstecke 'Füge deinen Lesezeichen diesen Permalink hinzu'"\r
+\r
+#: admin/settings.php:1683\r
+#@ mantra\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr "Verstecke alle Beitragsmetas. Alle Metainfos und Metabereiche werden versteckt."\r
+\r
+#: admin/settings.php:1696\r
+#: admin/settings.php:1711\r
+#: admin/settings.php:1727\r
+#@ mantra\r
+msgid "Excerpt"\r
+msgstr "Auszug"\r
+\r
+#: admin/settings.php:1696\r
+#: admin/settings.php:1711\r
+#: admin/settings.php:1727\r
+#@ mantra\r
+msgid "Full Post"\r
+msgstr "Ganzer Beitrag"\r
+\r
+#: admin/settings.php:1704\r
+#@ mantra\r
+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."\r
+msgstr "Auszug auf der Hauptseite. Nur Standartbeiträge werden beinflusst. Alle anderen Beitragsformate (Bild, Chat, Zitate, Kurzmitteilung etc.) haben ihre spezifische Formatierung."\r
+\r
+#: admin/settings.php:1719\r
+#@ mantra\r
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "\r
+msgstr "Wähle, ob der Sticky Post auf deiner Homepage vollständig oder nur dessen Auszüge zu sehen sind."\r
+\r
+#: admin/settings.php:1735\r
+#@ mantra\r
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."\r
+msgstr "Auszüge in Archiven, Kategorien und Suchseiten. Genau wie oben werden nur Standardposts beinflusst."\r
+\r
+#: admin/settings.php:1743\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"Die Anzahl der Wörter die ein Auszug haeben wird. Wenn diese Nummer erreicht ist wird der Beitrag unterbruchen durch einen<i>Weiterlesen</i> Link, welcher\n"\r
+"\t\t\t\t\t\t\tden Leser zum gesamten Post bringen wird."\r
+\r
+#: admin/settings.php:1759\r
+#@ mantra\r
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."\r
+msgstr "Aktiviere das Magazinlayout. Dieses Layout wirkt auf Seiten mit Beiträgen und zeig zwei Beiträge pro Reihe."\r
+\r
+#: admin/settings.php:1766\r
+#@ mantra\r
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."\r
+msgstr "Ersetzt die drei Punkte ('[…])' welceh automatisch an Auszüge gehangen werden."\r
+\r
+#: admin/settings.php:1773\r
+#@ mantra\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "Editiere den 'Weiterlesen' Link, welcher deinen Beitragsauszügen hinzugefügt wird."\r
+\r
+#: admin/settings.php:1819\r
+#@ mantra\r
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."\r
+msgstr "Zeige "\r
+\r
+#: admin/settings.php:1834\r
+#@ mantra\r
+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."\r
+msgstr "Zeige das erste Bild, welches du in den Beitrag eingefügt hast, als Thumbnail. Wenn du diese Option verwendest, wird das erste Bild im Artikel benutzt, auch wenn du ein Artikelbild festgelegt hast."\r
+\r
+#: admin/settings.php:1850\r
+#@ mantra\r
+msgid "Thumbnail alignment."\r
+msgstr "Thumbnailausrichtung"\r
+\r
+#: admin/settings.php:1867\r
+#@ mantra\r
+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."\r
+msgstr "Die Größe die deine Thumbnails haben sollen (in Pixeln). Standartmäßig werden Bilder im gleichen Format herunterskaliert. Schneide Bilder zu, wenn du gleiche Größen haben willst."\r
+\r
+#: admin/settings.php:1883\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."\r
+msgstr ""\r
+"Zeige Artikelbilder in der Kopfzeile. Die Kopfzeile wird durch ein Artikelbild ersetzt, falls du es im Beitrag eingestellt hast und\n"\r
+"\t\t\t\t\t\t\tand falls es größer ist oder wenigstens genauso groß wie die gewählte Kopfzeilengröße."\r
+\r
+#: admin/settings.php:1904\r
+#@ mantra\r
+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> )"\r
+msgstr "Wähle die gewünschten sozialen Netzwerke vom linken Dropdownmenü und füge die entsprechenden Adressen in das Eingabefeld rechts ein. (Zum Beispiel: <i>http://www.facebook.com/deinname</i> )"\r
+\r
+#: admin/settings.php:1918\r
+#@ mantra\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Du kannst bis zu fünf verschiedene soziale Netzwerke und Adressen angeben."\r
+\r
+#: admin/settings.php:1932\r
+#@ mantra\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Du kannst aus 27 sozialen Netzwerken auswählen."\r
+\r
+#: admin/settings.php:1946\r
+#@ mantra\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Du kannst so viele Eingabefelder freilassen wie du magst."\r
+\r
+#: admin/settings.php:1960\r
+#@ mantra\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Du kannst das selbe Icon so oft benutzen wie du willst."\r
+\r
+#: admin/settings.php:1991\r
+#@ mantra\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "Wähle den <b>Bereich</b> in dem die Icons angezeigt werden."\r
+\r
+#: admin/settings.php:1324\r
+#@ mantra\r
+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."\r
+msgstr "Zeige Breadcrumbs (Navigationshilfe) über deiner Inhaltsseite an. Breadcrumbs helfen Besuchern deiner Seite, sich zurechtzufinden."\r
+\r
+#: admin/settings.php:1339\r
+#@ mantra\r
+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. "\r
+msgstr "Zeige nummerierte Seitennavigation. Falls es mehr als eine Seite gibt, wird am Ende der Seite anstatt von <b>Ältere Posts </b> und <b>Neuere Posts>eine numerierte Navigation gezeigt."\r
+\r
+#: admin/settings.php:780\r
+#@ mantra\r
+msgid "Limitations: It has to be an image. It should be max 64x64 pixels in dimensions. Recommended file extensions .ico and .png . "\r
+msgstr "Einschränkungen: Es muss ein Bild sein. Es sollte maximal 64x64 Pixel groß sein. Empfohlen wird die Dateiendung .ico und .png ."\r
+\r
+#: admin/settings.php:2032\r
+#@ mantra\r
+msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."\r
+msgstr "Aktiviere Mantra's Suchmaschinenoptimierung. Diese ist standartmaäßig angeschaltet und sollte nur deaktiviert werden, wenn du ein eigenes SEO Plugin benutzt."\r
+\r
+#: admin/settings.php:2044\r
+#@ mantra\r
+msgid "Auto"\r
+msgstr "Automatisch"\r
+\r
+#: admin/settings.php:2044\r
+#@ mantra\r
+msgid "Manual"\r
+msgstr "Manuell"\r
+\r
+#: includes/theme-functions.php:275\r
+#@ mantra\r
+msgid "Home Page"\r
+msgstr "Startseite"\r
+\r
+# context is missing, should be right\r
+#: includes/theme-comments.php:28\r
+#@ mantra\r
+msgid "says:"\r
+msgstr "sagt:"\r
+\r
+#: includes/theme-comments.php:34\r
+#@ mantra\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Dein Kommentar erwartet Freischaltung."\r
+\r
+# context missing\r
+#. translators: 1: date, 2: time\r
+#: includes/theme-comments.php:41\r
+#@ mantra\r
+msgid "at"\r
+msgstr "bei"\r
+\r
+#: includes/theme-comments.php:41\r
+#: includes/theme-comments.php:58\r
+#@ mantra\r
+msgid "(Edit)"\r
+msgstr "(Bearbeite)"\r
+\r
+#: includes/theme-comments.php:58\r
+#@ mantra\r
+msgid "Pingback: "\r
+msgstr "Pingback:"\r
+\r
+#: includes/theme-loop.php:145\r
+#@ mantra\r
+msgid "By "\r
+msgstr "von"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "Leave a comment"\r
+msgstr "Hinterlasse einen Kommentar"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Kommentar"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Kommentare"\r
+\r
+#: includes/theme-loop.php:185\r
+#@ mantra\r
+msgid " Bookmark the "\r
+msgstr "Speichere in deinen Favoriten diesen"\r
+\r
+#: includes/theme-loop.php:185\r
+#: includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+#@ mantra\r
+msgid "Permalink to"\r
+msgstr "Permalink zu"\r
+\r
+#: includes/theme-loop.php:185\r
+#: includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+#@ mantra\r
+msgid "permalink"\r
+msgstr "Permalink"\r
+\r
+#: includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+#@ mantra\r
+msgid "Bookmark the "\r
+msgstr "Speichere in deinen Favoriten diesen"\r
+\r
+#: includes/theme-loop.php:211\r
+#@ mantra\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Ältere Beiträge"\r
+\r
+#: includes/theme-loop.php:212\r
+#@ mantra\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Neuere Beiträge <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+#@ mantra\r
+msgid "Page %s"\r
+msgstr "Seite %s"\r
+\r
+#: includes/theme-setup.php:90\r
+#@ mantra\r
+msgid "Primary Navigation"\r
+msgstr "Primäre Navigation"\r
+\r
+#: includes/theme-setup.php:91\r
+#@ mantra\r
+msgid "Top Navigation"\r
+msgstr "Oberste Navigation"\r
+\r
+#: includes/theme-setup.php:92\r
+#@ mantra\r
+msgid "Footer Navigation"\r
+msgstr "Fußzeilennavigation"\r
+\r
+#: includes/theme-setup.php:139\r
+#@ mantra\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:200\r
+#@ mantra\r
+msgid "Skip to content"\r
+msgstr "Weiter zum Inhalt"\r
+\r
+#: includes/theme-setup.php:227\r
+#@ mantra\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Primärer Widgetbereich - Marginalspalte 1"\r
+\r
+#: includes/theme-setup.php:229\r
+#@ mantra\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Primärer Widgetbereich - Marginalspalte 1"\r
+\r
+#: includes/theme-setup.php:238\r
+#@ mantra\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Sekundärer Widgetbereich - Marginalspalte 1"\r
+\r
+#: includes/theme-setup.php:240\r
+#@ mantra\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Sekundärer Widgetbereich - Marginalspalte 1"\r
+\r
+#: includes/theme-setup.php:249\r
+#@ mantra\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Tertiärer Widgetbereich - Marginalspalte 2"\r
+\r
+#: includes/theme-setup.php:251\r
+#@ mantra\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Tertiärer Widgetbereich - Marginalspalte 2"\r
+\r
+#: includes/theme-setup.php:260\r
+#@ mantra\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Quartitärer Widgetbereich - Marginalspalte 2"\r
+\r
+#: includes/theme-setup.php:262\r
+#@ mantra\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Quartitärer Widgetbereich - Marginalspalte 2"\r
+\r
+#: includes/theme-setup.php:271\r
+#@ mantra\r
+msgid "First Footer Widget Area"\r
+msgstr "Erster Fußzeilen Widgetbereich"\r
+\r
+#: includes/theme-setup.php:273\r
+#@ mantra\r
+msgid "First footer widget area"\r
+msgstr "Erster Fußzeilen Widgetbereich"\r
+\r
+#: includes/theme-setup.php:282\r
+#@ mantra\r
+msgid "Second Footer Widget Area"\r
+msgstr "Zweiter Fußzeilen Widgetbereich"\r
+\r
+#: includes/theme-setup.php:284\r
+#@ mantra\r
+msgid "Second footer widget area"\r
+msgstr "Zweiter Fußzeilen Widgetbereich"\r
+\r
+#: includes/theme-setup.php:293\r
+#@ mantra\r
+msgid "Third Footer Widget Area"\r
+msgstr "Dritter Fußzeilen Widgetbereich"\r
+\r
+#: includes/theme-setup.php:295\r
+#@ mantra\r
+msgid "The third footer widget area"\r
+msgstr "Der dritte Fußzeilen Widgetbereich"\r
+\r
+#: includes/theme-setup.php:304\r
+#@ mantra\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Vierter Fußzeilen Widgetbereich"\r
+\r
+#: includes/theme-setup.php:306\r
+#@ mantra\r
+msgid "The fourth footer widget area"\r
+msgstr "Der vierte Fußzeilen Widgetbereich"\r
+\r
+#: admin/main.php:96\r
+#@ mantra\r
+msgid "Header Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:117\r
+#@ mantra\r
+msgid "Header Height"\r
+msgstr ""\r
+\r
+#: admin/main.php:118\r
+#@ mantra\r
+msgid "Site Header"\r
+msgstr ""\r
+\r
+#: admin/main.php:119\r
+#@ mantra\r
+msgid "Custom Logo Upload"\r
+msgstr ""\r
+\r
+#: admin/main.php:120\r
+#@ mantra\r
+msgid "Header Top Spacing"\r
+msgstr ""\r
+\r
+#: admin/main.php:121\r
+#@ mantra\r
+msgid "Rounded Menu Corners"\r
+msgstr ""\r
+\r
+#: admin/main.php:122\r
+#@ mantra\r
+msgid "FavIcon Upload"\r
+msgstr ""\r
+\r
+#: admin/main.php:142\r
+#@ mantra\r
+msgid "Menu Items Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:143\r
+#@ mantra\r
+msgid "First Sidebar Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:144\r
+#@ mantra\r
+msgid "Second Sidebar Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:211\r
+#@ mantra\r
+msgid "Custom Footer Text"\r
+msgstr ""\r
+\r
+#: admin/settings.php:86\r
+#@ mantra\r
+msgid ""\r
+"Choose your layout. Possible options are: <br> No sidebar, a single sidebar on either left of right, two sidebars on either left or \n"\r
+"\t\tright and two sidebars on each side."\r
+msgstr ""\r
+\r
+#: admin/settings.php:250\r
+#@ mantra\r
+msgid "Enable the mobile view and make Mantra responsive. The layout and look of your blog will change depending on what device and what resolution it is viewed in."\r
+msgstr ""\r
+\r
+#: admin/settings.php:272\r
+#@ mantra\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page. It has a slider and columns for presentation\n"\r
+"\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 » Reading </a> and make sure you have selected <strong>Front Page Displays</strong> as <Strong>Your Latest Posts</strong>."\r
+msgstr ""\r
+\r
+#: admin/settings.php:306\r
+#: admin/settings.php:310\r
+#@ mantra\r
+msgid "milliseconds"\r
+msgstr ""\r
+\r
+#: admin/settings.php:472\r
+#: admin/settings.php:487\r
+#: admin/settings.php:502\r
+#: admin/settings.php:517\r
+#: admin/settings.php:532\r
+#: admin/settings.php:574\r
+#: admin/settings.php:589\r
+#: admin/settings.php:604\r
+#: admin/settings.php:619\r
+#: admin/settings.php:759\r
+#: admin/settings.php:781\r
+#@ mantra\r
+msgid "Select / Upload Image"\r
+msgstr ""\r
+\r
+#: admin/settings.php:714\r
+#@ mantra\r
+msgid "Center the header image horizontally"\r
+msgstr ""\r
+\r
+#: admin/settings.php:717\r
+#@ mantra\r
+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 = "\r
+msgstr ""\r
+\r
+#: admin/settings.php:732\r
+#@ mantra\r
+msgid "Enable or disable the round corners for the main menu items."\r
+msgstr ""\r
+\r
+#: admin/settings.php:740\r
+#@ mantra\r
+msgid "Site Title and Description"\r
+msgstr ""\r
+\r
+#: admin/settings.php:740\r
+#@ mantra\r
+msgid "Custom Logo"\r
+msgstr ""\r
+\r
+#: admin/settings.php:740\r
+#@ mantra\r
+msgid "Clickable header image"\r
+msgstr ""\r
+\r
+#: admin/settings.php:740\r
+#@ mantra\r
+msgid "Empty"\r
+msgstr ""\r
+\r
+#: admin/settings.php:748\r
+#@ mantra\r
+msgid "Choose what to display inside your header area."\r
+msgstr ""\r
+\r
+#: admin/settings.php:758\r
+#@ mantra\r
+msgid "Custom Logo upload. The logo will appear over the heder image if you have used one."\r
+msgstr ""\r
+\r
+#: admin/settings.php:770\r
+#@ mantra\r
+msgid "Select the top spacing for the header. Use it to better position your site title and description or custom logo inside the header. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1168\r
+#@ mantra\r
+msgid "Content background color (Default value is FFFFFF). Works best with really light colors."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1182\r
+#@ mantra\r
+msgid "First sidebar background color (Default is no color for a transparent sidebar)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1189\r
+#@ mantra\r
+msgid "Second sidebar background color (Default is no color for a transparent sidebar)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1417\r
+#@ mantra\r
+msgid "The background for your post-metas area (under your post tiltes). Gray by default."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2012\r
+#@ mantra\r
+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 <style> tags are not needed."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2019\r
+#@ mantra\r
+msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software).<br> The <script> tags are not needed."\r
+msgstr ""\r
+\r
+#: archive.php:28\r
+#@ mantra\r
+msgctxt "monthly archives date format"\r
+msgid "F Y"\r
+msgstr ""\r
+\r
+#: archive.php:30\r
+#@ mantra\r
+msgctxt "yearly archives date format"\r
+msgid "Y"\r
+msgstr ""\r
+\r
+#: attachment.php:33\r
+#: includes/theme-loop.php:147\r
+#, php-format\r
+#@ mantra\r
+msgid "View all posts by %s"\r
+msgstr ""\r
+\r
+#: content-aside.php:16\r
+#: content-chat.php:16\r
+#: content-gallery.php:16\r
+#: content-gallery.php:49\r
+#: content-image.php:15\r
+#: content-link.php:16\r
+#: content-quote.php:14\r
+#: content-status.php:15\r
+#: content.php:20\r
+#, php-format\r
+#@ mantra\r
+msgid "Permalink to %s"\r
+msgstr ""\r
+\r
+#: content-gallery.php:48\r
+#, php-format\r
+#@ mantra\r
+msgid "This gallery contains <a %1$s>%2$s photo</a>."\r
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."\r
+msgstr[0] ""\r
+msgstr[1] ""\r
+\r
+#: includes/theme-comments.php:94\r
+#, php-format\r
+#@ mantra\r
+msgid "One Response to %2$s"\r
+msgid_plural "%1$s Responses to %2$s"\r
+msgstr[0] ""\r
+msgstr[1] ""\r
+\r
+#: includes/theme-functions.php:339\r
+#@ mantra\r
+msgid "Powered by"\r
+msgstr ""\r
+\r
+#: includes/theme-functions.php:341\r
+#@ mantra\r
+msgid "Semantic Personal Publishing Platform"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:315\r
+#: includes/theme-setup.php:317\r
+#@ mantra\r
+msgid "Above content Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:326\r
+#: includes/theme-setup.php:328\r
+#@ mantra\r
+msgid "Below Content Widget Area"\r
+msgstr ""\r
+\r
+#: searchform.php:1\r
+#@ mantra\r
+msgid "Search"\r
+msgstr "Suchen"\r
+\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: mantra 197\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-09-08 18:32+0200\n"\r
+"PO-Revision-Date: 2013-01-02 21:26+0200\n"\r
+"Last-Translator: \n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"\r
+"X-Poedit-Basepath: C:\\Users\\medicated\\Desktop\\mantra\n"\r
+"X-Generator: Poedit 1.5.4\n"\r
+"Language: el\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "Δεν βρέθηκε"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr ""\r
+"Λυπούμαστε, η σελίδα που ζητήσατε δεν ήταν δυνατό να βρεθεί. Ίσως η "\r
+"αναζήτηση θα μπορούσε να σας φανεί χρήσιμη."\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Ημερήσια Αρχεία: %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Μηνιαία Αρχεία: %s"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Ετήσια Αρχεία: %s"\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "Αρχεία Ιστολογίου"\r
+\r
+#: archive.php:57 author.php:74 category.php:50\r
+msgid "Nothing Found"\r
+msgstr "Δεν βρέθηκαν αποτελέσματα"\r
+\r
+#: archive.php:61 author.php:78 category.php:54\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr ""\r
+"Λυπούμαστε, δεν βρέθηκαν αποτελέσματα για το αρχείο που ζήτησατε. Ίσως η "\r
+"αναζήτηση σάς βοηθήσει να βρείτε κάποια συναφή δημοσίευση."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Επιστροφή στο %s"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "Από"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "Δημοσιευμένο"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "Το πλήρες μέγεθος είναι %s εικονοστοιχεία"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "Σύνδεσμος προς τη πλήρη εικόνα"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:48 content-gallery.php:64 content-image.php:41\r
+#: content-link.php:48 content-page.php:22 content-quote.php:46\r
+#: content-status.php:49 content.php:80\r
+msgid "Edit"\r
+msgstr "Επεξεργασία"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "Περισσότερα"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:37\r
+#: content-gallery.php:54 content-image.php:32 content-link.php:37\r
+#: content-page.php:21 content-quote.php:36 content-status.php:40\r
+#: content.php:52 content.php:69\r
+msgid "Pages:"\r
+msgstr "Σελίδες:"\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Αρχεία Συντάκτη: %s"\r
+\r
+#: author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "Πληροφορίες συντάκτη %s"\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Αρχεία Κατηγορίας: %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+"Αυτή η δημοσίευση είναι προστατευμένη. Εισάγετε τον κωδικό για να δείτε τα "\r
+"σχόλια."\r
+\r
+#: comments.php:41 comments.php:60\r
+msgid "Older Comments"\r
+msgstr "Παλαιότερα σχόλια"\r
+\r
+#: comments.php:42 comments.php:61\r
+msgid "Newer Comments"\r
+msgstr "Νεώτερα σχόλια"\r
+\r
+#: comments.php:72 content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr "Τα σχόλια έχουν κλείσει."\r
+\r
+#: content-aside.php:21\r
+msgid "Aside"\r
+msgstr "Παραπλεύρως"\r
+\r
+#: content-aside.php:38 content-chat.php:36 content-gallery.php:32\r
+#: content-image.php:31 content-link.php:36 content-quote.php:35\r
+#: content-status.php:39\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Περισσότερα <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:44 content-gallery.php:61\r
+#: content-image.php:38 content-link.php:44 content-quote.php:43\r
+#: content-status.php:47 content.php:78\r
+msgid "Tagged"\r
+msgstr "Ετικέτες"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "Συνομιλία"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "Έκθεση"\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr "Εικόνα"\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr "Σύνδεσμος"\r
+\r
+#: content-quote.php:19\r
+msgid "Quote"\r
+msgstr "Παράθεση"\r
+\r
+#: content-status.php:31\r
+msgid "Status"\r
+msgstr "Κατάσταση"\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Αποτελέσματα αναζήτησης για: %s"\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "Δεν βρέθηκαν αποτελέσματα για: %s"\r
+\r
+#: sidebar.php:35 sidebar.php:92\r
+msgid "Archives"\r
+msgstr "Αρχεία"\r
+\r
+#: sidebar.php:42 sidebar.php:99\r
+msgid "Meta"\r
+msgstr "Μεταδεδομένα"\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr "Προβολή όλων των δημοσιεύσεων από "\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Αρχεία Ετικέτας: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr ""\r
+"Προτού μπορέσετε να μεταφορτώσετε το αρχείο εισαγωγής, πρέπει να διορθώσετε "\r
+"το ακόλουθο σφάλμα:"\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Εισαγωγή Ρυθμίσεων Θέματος Mantra"\r
+\r
+#: admin/admin-functions.php:72\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"Εδώ μπορείτε να εισαγάγετε τις Ρυθμίσεις του Mantra. <i> Παρακαλούμε "\r
+"σημειώστε πως πρόκειται για πειραματικό χαρακτηριστικό.</i>"\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Επιλέξτε ένα αρχείο από τον υπολογιστή σας:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "Μέγιστο μέγεθος: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "Και εισαγωγή!"\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Εισαγωγή Ρυθμίσεων Θέματος Mantra"\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "Υπέροχα! Οι ρυθμίσεις έχουν εισαχθεί!"\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Επιστρέψτε στη σελίδα ρυθμίσεων του Mantra και μελετήστε τις!"\r
+\r
+#: admin/admin-functions.php:155 admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "Ωχ! παρουσιάστηκε ένα μικρό πρόβλημα."\r
+\r
+#: admin/admin-functions.php:156\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"Το μεταφορτωμένο αρχείο δεν περιλαμβάνει έγκυρες ρυθμίσεις για το Mantra. "\r
+"Βεβαιωθείτε πως το αρχείο έχει εξαχθεί από τη σελίδα Ρυθμίσεων του Mantra"\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "Το μεταφορτωμένο αρχείο δεν ήταν δυνατό να αναγνωσθεί."\r
+\r
+#: admin/admin-functions.php:168\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"Δεν υποστηρίζεται ο τύπος του μεταφορτωμένου αρχείου. Βεβαιωθείτε πως το "\r
+"αρχείο έχει εξαχθεί από τη σελίδα του Mantra και πως είναι αρχείο κειμένου."\r
+\r
+#: admin/admin-functions.php:177\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"Ωχ! Το αρχείο είναι κενό ή δεν υπήρχε αρχείο. Αυτό το σφάλμα μπορεί ακόμη να "\r
+"προκαλείται από την απενεργοποίηση των μεταφορτώσεων στο 'php.ini' ή από τον "\r
+"προσδιορισμό χαμηλότερης τιμής στο 'post_max_size' από εκείνη του "\r
+"'upload_max_filesize' στο 'php.ini'"\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "ΣΦΑΛΜΑ: Δεν έχετε την αρμοδιότητα να εκτελέσετε τέτοιου είδους εργασία"\r
+\r
+#: admin/main.php:93\r
+msgid "Layout Settings"\r
+msgstr "Ρυθμίσεις Διάταξης"\r
+\r
+#: admin/main.php:94\r
+msgid "Presentation Page"\r
+msgstr "Σελίδα Παρουσίασης"\r
+\r
+#: admin/main.php:95\r
+msgid "Text Settings"\r
+msgstr "Ρυθμίσεις Κειμένου"\r
+\r
+#: admin/main.php:96\r
+msgid "Color Settings"\r
+msgstr "Ρυθμίσεις Χρώματος"\r
+\r
+#: admin/main.php:97\r
+msgid "Graphics Settings"\r
+msgstr "Ρυθμίσεις Γραφικών"\r
+\r
+#: admin/main.php:98\r
+msgid "Post Information Settings"\r
+msgstr "Ρυθμίσεις Πληροφοριών Δημοσίευσης"\r
+\r
+#: admin/main.php:99\r
+msgid "Post Excerpt Settings"\r
+msgstr "Ρυθμίσεις Αποσπάσματος Δημοσίευσης"\r
+\r
+#: admin/main.php:100\r
+msgid "Featured Image Settings"\r
+msgstr "Ρυθμίσεις Επιλεγμένης Εικόνας"\r
+\r
+#: admin/main.php:101\r
+msgid "Social Media Settings"\r
+msgstr "Ρυθμίσεις Κοινωνικής Δικτύωσης"\r
+\r
+#: admin/main.php:102\r
+msgid "Miscellaneous Settings"\r
+msgstr "Διάφορες Ρυθμίσεις"\r
+\r
+#: admin/main.php:104\r
+msgid "Main Layout"\r
+msgstr "Κύρια Διάταξη"\r
+\r
+#: admin/main.php:105\r
+msgid "Content / Sidebar Width"\r
+msgstr "Πλάτος Περιεχομένου / Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:106\r
+msgid "Header Image Height"\r
+msgstr "Ύψος Εικόνας Κεφαλίδας"\r
+\r
+#: admin/main.php:108\r
+msgid "Enable Presentation Page"\r
+msgstr "Ενεργοποίηση Σελίδας Παρουσίασης"\r
+\r
+#: admin/main.php:109\r
+msgid "Slider Settings"\r
+msgstr "Ρυθμίσεις Slider"\r
+\r
+#: admin/main.php:110\r
+msgid "Slides"\r
+msgstr "Slides"\r
+\r
+#: admin/main.php:111\r
+msgid "Presentation Page Columns"\r
+msgstr "Στήλες Σελίδας Παρουσίασης"\r
+\r
+#: admin/main.php:112\r
+msgid "Extras"\r
+msgstr "Πρόσθετα"\r
+\r
+#: admin/main.php:114\r
+msgid "General Font"\r
+msgstr "Γενική Γραμματοσειρά"\r
+\r
+#: admin/main.php:115\r
+msgid "General Font Size"\r
+msgstr "Μέγεθος Γενικής Γραμματοσειράς"\r
+\r
+#: admin/main.php:116\r
+msgid "Post Title Font "\r
+msgstr "Γραμματοσειρά Τίτλου Δημοσίευσης"\r
+\r
+#: admin/main.php:117\r
+msgid "Post Title Font Size"\r
+msgstr "Μέγεθος Γραμματοσειράς Τίτλου Δημοσίευσης"\r
+\r
+#: admin/main.php:118\r
+msgid "Sidebar Font"\r
+msgstr "Γραμματοσειρά Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:119\r
+msgid "SideBar Font Size"\r
+msgstr "Μέγεθος Γραμματοσειράς Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:120\r
+msgid "Sub-Headers Font"\r
+msgstr "Γραμματοσειρά Υπο-Κεφαλίδας"\r
+\r
+#: admin/main.php:121\r
+msgid "Force Text Align"\r
+msgstr "Επιβολή Στοίχισης Κειμένου"\r
+\r
+#: admin/main.php:122\r
+msgid "Paragraph indent"\r
+msgstr "Εσοχή παραγράφου"\r
+\r
+#: admin/main.php:123\r
+msgid "Header indent"\r
+msgstr "Εσοχή κεφαλίδας"\r
+\r
+#: admin/main.php:124\r
+msgid "Line Height"\r
+msgstr "Ύψος Γραμμής"\r
+\r
+#: admin/main.php:125\r
+msgid "Word spacing"\r
+msgstr "Απόσταση λέξεων"\r
+\r
+#: admin/main.php:126\r
+msgid "Letter spacing"\r
+msgstr "Απόσταση χαρακτήρων"\r
+\r
+#: admin/main.php:127\r
+msgid "Text shadow"\r
+msgstr "Σκίαση κειμένου"\r
+\r
+#: admin/main.php:129\r
+msgid "Background Color"\r
+msgstr "Χρώμα Υποβάθρου"\r
+\r
+#: admin/main.php:130\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Χρώμα Υποβάθρου Κεφαλίδας (Μενού και Πανό)"\r
+\r
+#: admin/main.php:131\r
+msgid "Content Background Color"\r
+msgstr "Χρώμα Υποβάθρου Περιεχομεένου"\r
+\r
+#: admin/main.php:132\r
+msgid "Menu background color"\r
+msgstr "Χρώμα υποβάθρου μενού"\r
+\r
+#: admin/main.php:134\r
+msgid "Site Title Color"\r
+msgstr "Χρώμα Τίτλου Ιστοτόπου"\r
+\r
+#: admin/main.php:135\r
+msgid "Site Description Color"\r
+msgstr "Χρώμα Περιγραφής Ιστοτόπου"\r
+\r
+#: admin/main.php:137\r
+msgid "Content Text Color"\r
+msgstr "Χρώμα Κειμένου Περιεχομένου"\r
+\r
+#: admin/main.php:138\r
+msgid "Links Color"\r
+msgstr "Χρώμα Συνδέσμων"\r
+\r
+#: admin/main.php:139\r
+msgid "Links Hover Color"\r
+msgstr "Χρώμα Συνδέσμων κατά την Υπέρπτηση του Δείκτη"\r
+\r
+#: admin/main.php:140\r
+msgid "Post Title Color"\r
+msgstr "Χρώμα Τίτλου Δημοσίευσης"\r
+\r
+#: admin/main.php:141\r
+msgid "Post Title Hover Color"\r
+msgstr "Χρώμα Τίτλου Δημοσίευσης κατά την Υπέρπτηση του Δείκτη"\r
+\r
+#: admin/main.php:142\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Χρώμα Υποβάθρου Κεφαλίδας Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:143\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Χρώμα Κειμένου Κεφαλίδας Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:144\r
+msgid "Footer Widget Background Color"\r
+msgstr "Χρώμα Υποβάθρου Μονάδων Υποσέλιδου."\r
+\r
+#: admin/main.php:145\r
+msgid "Footer Background Color"\r
+msgstr "Χρώμα Υποβάθρου Υποσέλιδου"\r
+\r
+#: admin/main.php:146\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Χρώμα Κειμένου Κεφαλίδας Μονάδων Υποσέλιδου"\r
+\r
+#: admin/main.php:147\r
+msgid "Footer Widget Link Color"\r
+msgstr "Χρώμα Συνδέσμου Μονάδων Υποσέλιδου"\r
+\r
+#: admin/main.php:148\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Χρώμα Μονάδων Υποσέλιδου κατά την Υπέρπτηση του Δείκτη"\r
+\r
+#: admin/main.php:150\r
+msgid "Caption Border"\r
+msgstr "Περίγραμμα Λεζάντας"\r
+\r
+#: admin/main.php:151\r
+msgid "Post Images Border"\r
+msgstr "Περίγραμμα Εικόνων Δημοσίευσης"\r
+\r
+#: admin/main.php:152\r
+msgid "Caption Pin"\r
+msgstr "Καρφίτσα Περιγράμματος"\r
+\r
+#: admin/main.php:153\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Κουκκίδες Μενού Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:154\r
+msgid "Meta Area Background"\r
+msgstr "Υπόβαθρο Περιοχής Μεταδεδομένων"\r
+\r
+#: admin/main.php:155\r
+msgid "Post Separator"\r
+msgstr "Διαχωριστικό Δημοσιεύσεων"\r
+\r
+#: admin/main.php:156\r
+msgid "Content List Bullets"\r
+msgstr "Κουκκίδες Λίστας Περιεχομένου"\r
+\r
+#: admin/main.php:157\r
+msgid "Title and Description"\r
+msgstr "Τίτλος και Περιγραφή"\r
+\r
+#: admin/main.php:158\r
+msgid "Page Titles"\r
+msgstr "Τίτλοι Σελίδων"\r
+\r
+#: admin/main.php:159\r
+msgid "Category Page Titles"\r
+msgstr "Τίτλοι Σελίδων Κατηγοριών"\r
+\r
+#: admin/main.php:160\r
+msgid "Hide Tables"\r
+msgstr "Απόκρυψη Πινάκων"\r
+\r
+#: admin/main.php:161\r
+msgid "Back to Top button"\r
+msgstr "Κουμπί Επιστροφής στην Κορυφή"\r
+\r
+#: admin/main.php:162\r
+msgid "Text Under Comments"\r
+msgstr "Κείμενο Κάτωθεν Σχολίων"\r
+\r
+#: admin/main.php:163\r
+msgid "Comments are closed text"\r
+msgstr "Κείμενο κλεισίματος σχολίων"\r
+\r
+#: admin/main.php:164\r
+msgid "Comments off"\r
+msgstr "Ανενεργός σχολιασμός"\r
+\r
+#: admin/main.php:165\r
+msgid "Insert footer copyright"\r
+msgstr "Εισάγετε τα στοχεία πνευματικών δικαιωμάτων για το υποσέλιδο"\r
+\r
+#: admin/main.php:167\r
+msgid "Post Comments Link"\r
+msgstr "Σύνδεσμος Σχολίων Δημοσίευσης"\r
+\r
+#: admin/main.php:168\r
+msgid "Post Date"\r
+msgstr "Ημερομηνία Δημοσίευσης"\r
+\r
+#: admin/main.php:169\r
+msgid "Post Time"\r
+msgstr "Ώρα Δημοσίευσης"\r
+\r
+#: admin/main.php:170\r
+msgid "Post Author"\r
+msgstr "Συντάκτης Δημοσίευσης"\r
+\r
+#: admin/main.php:171\r
+msgid "Post Category"\r
+msgstr "Κατηγορία Δημοσίευσης"\r
+\r
+#: admin/main.php:172\r
+msgid "Post Tags"\r
+msgstr "Ετικέτες Δημοσίευσης"\r
+\r
+#: admin/main.php:173\r
+msgid "Post Permalink"\r
+msgstr "Μόνιμος Σύνδεσμος Δημοσίευσης"\r
+\r
+#: admin/main.php:174\r
+msgid "All Post Metas"\r
+msgstr "Σύνολο Μεταδεδομένων Δημοσίευσης"\r
+\r
+#: admin/main.php:176\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Αποσπάσματα Δημοσίευσης στην Αρχική Σελίδα"\r
+\r
+#: admin/main.php:177\r
+msgid "Affect Sticky Posts"\r
+msgstr "Κεντρικές Δημοσιεύσεις"\r
+\r
+#: admin/main.php:178\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Αποσπάσματα Δημοσίευσης στις Σελίδες Αρχείων και Κατηγοριών"\r
+\r
+#: admin/main.php:179\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Αριθμός Λέξεων Αποσπάσματος Δημοσιεύσεων"\r
+\r
+#: admin/main.php:180\r
+msgid "Magazine Layout"\r
+msgstr "Διάταξη Περιοδικού"\r
+\r
+#: admin/main.php:181\r
+msgid "Excerpt suffix"\r
+msgstr "Πρόθεμα Αποσπάσματος"\r
+\r
+#: admin/main.php:182\r
+msgid "Continue reading link text "\r
+msgstr "Κείμενο συνδέσμου 'διαβάστε περισσότερα'"\r
+\r
+#: admin/main.php:183\r
+msgid "HTML tags in Excerpts"\r
+msgstr "Ετικέτες HTML στα Αποσπάσματα"\r
+\r
+#: admin/main.php:185\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Επιλεγμένες Εικόνες ως Μικρογραφίες ΔΗΜΟΣΙΕΥΣΗΣ"\r
+\r
+#: admin/main.php:186\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Αυτόματη Επιλογή Εικόνων Δημοσιεύσεων"\r
+\r
+#: admin/main.php:187\r
+msgid "Thumbnails Alignment "\r
+msgstr "Στοίχιση Μικρογραφιών"\r
+\r
+#: admin/main.php:188\r
+msgid "Thumbnails Size "\r
+msgstr "Μέγεθος Μικρογραφιών"\r
+\r
+#: admin/main.php:189\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Επιλεγμένες Εικόνες ως Εικόνες ΚΕΦΑΛΙΔΑΣ"\r
+\r
+#: admin/main.php:191\r
+msgid "Link nr. 1"\r
+msgstr "Σύνδεσμος αρ. 1"\r
+\r
+#: admin/main.php:192\r
+msgid "Link nr. 2"\r
+msgstr "Σύνδεσμος αρ. 2"\r
+\r
+#: admin/main.php:193\r
+msgid "Link nr. 3"\r
+msgstr "Σύνδεσμος αρ. 3"\r
+\r
+#: admin/main.php:194\r
+msgid "Link nr. 4"\r
+msgstr "Σύνδεσμος αρ. 4"\r
+\r
+#: admin/main.php:195\r
+msgid "Link nr. 5"\r
+msgstr "Σύνδεσμος αρ. 5"\r
+\r
+#: admin/main.php:196\r
+msgid "Socials display"\r
+msgstr "Εμφάνιση κοινωνικών δικτύων"\r
+\r
+#: admin/main.php:198\r
+msgid "Make Site Header a Link"\r
+msgstr "Κεφαλίδα Ιστοτόπου ως Σύνδεσμος"\r
+\r
+#: admin/main.php:199\r
+msgid "Breadcrumbs"\r
+msgstr "Διαδρομή"\r
+\r
+#: admin/main.php:200\r
+msgid "Pagination"\r
+msgstr "Σελιδοποίηση"\r
+\r
+#: admin/main.php:201\r
+msgid "Mobile view"\r
+msgstr "Προβολή Φορητών Συσκευών"\r
+\r
+#: admin/main.php:202\r
+msgid "FavIcon"\r
+msgstr "Favicon"\r
+\r
+#: admin/main.php:203\r
+msgid "Custom CSS"\r
+msgstr "Προσαρμοσμένος κώδικας CSS"\r
+\r
+#: admin/main.php:204\r
+msgid "Custom JavaScript"\r
+msgstr "Προσαρμοσμένος κώδικας Javascript"\r
+\r
+#: admin/main.php:205\r
+msgid "SEO Settings"\r
+msgstr "Ρυθμίσεις SEO"\r
+\r
+#: admin/main.php:222\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Συγγνώμη, δεν έχει επαρκή δικαιώματα πρόσβασης σ' αυτή τη σελίδα."\r
+\r
+#: admin/main.php:232\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Οι ρυθμίσεις του Mantra ενημέρωθηκαν επιτυχώς."\r
+\r
+#: admin/main.php:243\r
+msgid "Reset to Defaults"\r
+msgstr "Επαναφορά Προεπιλογών"\r
+\r
+#: admin/main.php:244\r
+msgid "Save Changes"\r
+msgstr "Αποθήκευση Αλλαγών"\r
+\r
+#: admin/main.php:258\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+"keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+"folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+"coffee. We love it! So if you want to help with the further development of "\r
+"the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Εδώ στην Cryout Creations (την εταιρεία ανάπτυξης του Θέματος Mantra), "\r
+"αφιερώνουμε πολλές νύχτες, μία μετά την άλλη, στην βελτίωση του θέματος "\r
+"Mantra. Διορθώνουμε αρκετές δυσλειτουργίες (που δημιουργήσαμε νωρίτερα), "\r
+"προσθέτουμε ολοένα και περισσότερες ρυθμίσεις προσαρμογής, προσπαθώντας "\r
+"ταυτόχρονα να τις διατηρούμε όσο πιο απλές γίνεται. Έπειτα... μπορεί να "\r
+"παίξουμε και λίγο αλλά να είστε σίγουροι ότι επιστρέφουμε για να διαβάσουμε "\r
+"και (στις περισσότερες περιπτώσεις) να απαντήσουμε στα μεταμεσονύχτα email "\r
+"και σχόλιά σας, να κρατήσουμε σημειώσεις και να δημιουργήσουμε σχέδια για "\r
+"πράγματα που θέλουμε να υλοποιήσουμε σε μελλοντικές εκδόσεις.</p>\n"\r
+"\t\t\t<p>Οπότε θα αναρωτιέστε: <i>Πώς τα καταφέρνουν; Πώς μπορούν να μένουν "\r
+"τόσο φρέσκιοι μετά από τόση δουλειά πάνω σ' αυτό το αναθεματισμένο θέμα; </"\r
+"i> Λοιπόν, είναι απλό. Πίνουμε πολύ καφέ. Βιομηχανικές ποσότητες ζεστού, "\r
+"βραστού καφέ. Μας αρέσει πολύ! Οπότε αν θέλετε να βοηθήστε την συνεχή "\r
+"ανάπτυξη του θέματος Mantra...</p> "\r
+\r
+#: admin/main.php:273\r
+msgid "Import/Export Settings"\r
+msgstr "Εισαγωγή/Εξαγωγή Ρυθμίσεων"\r
+\r
+#: admin/main.php:279\r
+msgid "Export Theme options"\r
+msgstr "Εξαγωγή Ρυθμίσεων Θέματος"\r
+\r
+#: admin/main.php:280\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"Τόσο εύκολο είναι: ένα 'κλικ' του ποντικιού μακρυά - η δυνατότητα να εξάγετε "\r
+"τις Ρυθμίσεις του Mantra και να τις αποθηκεύετε στον υπολογιστή σας. Νιώθετε "\r
+"πιο ασφαλείς; Θα έπρεπε!"\r
+\r
+#: admin/main.php:285\r
+msgid "Import Theme options"\r
+msgstr "Εισαγωγή Ρυθμίσεων Θέματος"\r
+\r
+#: admin/main.php:286\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+"Ελλείψει της λειτουργίας εισαγωγής η εξαγωγή θα ήταν μάταιη. Βεβαιωθείτε πως "\r
+"έχετε έτοιμο το εξαχθέν αρχείο και θα σας δούμε μετά το επόμενο κλικ."\r
+\r
+#: admin/main.php:293\r
+msgid "Mantra Latest News"\r
+msgstr "Τελευταία Νέα για το Mantra"\r
+\r
+#: admin/main.php:304\r
+msgid "No news items."\r
+msgstr "Δεν υπάρχουν νέα."\r
+\r
+#: admin/main.php:318\r
+msgid "Mantra Help"\r
+msgstr "Βοήθεια Mantra"\r
+\r
+#: admin/main.php:321\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "\r
+"version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+"expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "\r
+"your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+"Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Χρειάζεστε βοήθεια με το Mantra ή το Wordpress;</li>\n"\r
+"\t\t\t\t<li>- Θέλετε να γνωρίζετε τί αλλαγές γίνονται στο θέμα σε κάθε νέα "\r
+"έκδοση;</li>\n"\r
+"\t\t\t\t<li>- Έχετε εντοπίσει μια δυσλειτουργία ή μήπως κάτι δεν λειτουργεί "\r
+"όπως ακριβώς θα έπρεπε;</li>\n"\r
+"\t\t\t\t<li>- Έχετε μια ιδέα για τη βελτίωση του θέματος Mantra ώστε να "\r
+"ικανοποιεί περισσότερο τις ανάγκες σας;</li>\n"\r
+"\t\t\t\t<li>- Θέλετε να προστεθεί μια ρύθμιση;</li>\n"\r
+"\t\t\t\t<li>- Θέλετε να υποβάλετε μια μετάφραση για το θέμα Mantra;</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Τότε επισκεφθείτε μας στη σελίδα υποστηρίξης του Mantra.</p>\n"\r
+"\t"\r
+\r
+#: admin/main.php:332\r
+msgid "Mantra Support Page"\r
+msgstr "Σελίδα Υποστήριξης του Mantra"\r
+\r
+#: admin/settings.php:61\r
+msgid "One column (no sidebars)"\r
+msgstr "Μία στήλη (χωρίς πλευρικές στήλες)"\r
+\r
+#: admin/settings.php:62\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Δύο στήλες, η πλευρική στήλη στα δεξιά."\r
+\r
+#: admin/settings.php:63\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Δύο στήλες, η πλευρική στήλη στα αριστερά"\r
+\r
+#: admin/settings.php:64\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Τρεις στήλες, οι πλευρικές στήλες στα δεξιά"\r
+\r
+#: admin/settings.php:65\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Τρεις στήλες, οι πλευρικές στήλες στα αριστερά"\r
+\r
+#: admin/settings.php:66\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Τρεις στήλες, μία πλευρική στήλη σε κάθε πλευρά"\r
+\r
+#: admin/settings.php:81\r
+msgid "Choose your layout "\r
+msgstr "Επιλέξτε διάταξη"\r
+\r
+#: admin/settings.php:89\r
+msgid "Absolute"\r
+msgstr "Απόλυτες"\r
+\r
+#: admin/settings.php:89\r
+msgid "Relative"\r
+msgstr "Σχετικές"\r
+\r
+#: admin/settings.php:90\r
+msgid "Dimensions to use: "\r
+msgstr "Διαστάσεις:"\r
+\r
+#: admin/settings.php:189 admin/settings.php:209\r
+msgid "Content ="\r
+msgstr "Περιεχόμενο ="\r
+\r
+#: admin/settings.php:190 admin/settings.php:210\r
+msgid "Sidebar(s) ="\r
+msgstr "Πλευρική(-ές) Στήλη(-ες) ="\r
+\r
+#: admin/settings.php:191 admin/settings.php:211\r
+msgid "Total width ="\r
+msgstr "Συνολικό πλάτος ="\r
+\r
+#: admin/settings.php:200\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Επιλέξτε το πλάτος του <b>περιεχομένου</b> και της(των) <b>πλευρικής(-ών) "\r
+"στήλης(-ών)</b>. \n"\r
+" \t\tΗ περιοχή του περιεχομένου δεν μπορεί να έχει πλάτος μικρότερο των "\r
+"500px και η περιοχή της πλευρικής στήλης πρέπει να έχει πλάτος τουλάχιστον "\r
+"220px και όχι μεγαλύτερο από 800px.<br />\n"\r
+"\tΑν επιλέξετε 3 στήλες (με δύο πλευρικές στήλες) το πλάτος της κάθεμιάς θα "\r
+"είναι το ήμισυ του επιλεγμένου πλάτους."\r
+\r
+#: admin/settings.php:220\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Επιλέξτε το πλάτος του <b>περιεχομένου</b> και της(των) <b>πλευρικής(-ών) "\r
+"στήλης(-ών)</b>. \n"\r
+" \t\tΠρόκειται για σχετικές διαστάσεις - σχετικές προς τον φυλλομετρητή του "\r
+"χρήστη. Το συνολικό πλάτος είναι ένα ποσοστό του πλάτος του φυλλομετρητή."\r
+"<br />\n"\r
+"\t Αν και το περιεχόμενο δεν μπορεί να έχει πλάτος μικρότερο του 40%, η "\r
+"πλευρική στήλη έχει μέγεθος τουλάχιστον 20% και όχι πάνω από 50%.<br />\n"\r
+"\tΑν επιλέξτε 3 στήλες (με δύο πλευρικές στήλες) καθεμιά θα έχει το ήμισυ "\r
+"του επιλεγμένου πλάτους."\r
+\r
+#: admin/settings.php:244\r
+msgid ""\r
+"Select the header's height. After saving the settings go and upload your new "\r
+"header image. The header's width will be = "\r
+msgstr ""\r
+"Επιλέξτε το ύψος της κεφαλίδας. Αφού αποθηκεύσετε τις ρυθμίσεις πηγαίντε και "\r
+"μεταφορτώστε τη νέα σας εικόνα κεφαλίδας. Το πλάτος της κεφαλίδας θα είναι ="\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1353 admin/settings.php:1415 admin/settings.php:1623\r
+#: admin/settings.php:1652 admin/settings.php:1675 admin/settings.php:1698\r
+#: admin/settings.php:1747 admin/settings.php:1876 admin/settings.php:1891\r
+#: admin/settings.php:1906 admin/settings.php:1921 admin/settings.php:1963\r
+msgid "Enable"\r
+msgstr "Ενεργοποίηση"\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1353 admin/settings.php:1415 admin/settings.php:1623\r
+#: admin/settings.php:1652 admin/settings.php:1675 admin/settings.php:1698\r
+#: admin/settings.php:1747 admin/settings.php:1876 admin/settings.php:1891\r
+#: admin/settings.php:1906 admin/settings.php:1921 admin/settings.php:1963\r
+msgid "Disable"\r
+msgstr "Απενεργοποίηση"\r
+\r
+#: admin/settings.php:265\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page and "\r
+"it will replace whatever page you have selected as homepage. It has a slider "\r
+"and columns for presentation\n"\r
+"\t\ttext and images."\r
+msgstr ""\r
+"Ενεργοποίηση της σελίδας παρουσίασης. Αυτή θα γίνει η νέα σας αρχική σελίδα "\r
+"και θα αντικαταστήσει οποιαδήποτε σελίδα έχει επιλέξει ως αρχική σελίδα. "\r
+"Περιλαμβάνει έναν slider και στήλες για τη παρουσίαση \n"\r
+"\t\tκειμένου και εικόνων."\r
+\r
+#: admin/settings.php:275\r
+msgid "Slider Dimensions:"\r
+msgstr "Διαστάσεις Slider:"\r
+\r
+#: admin/settings.php:276\r
+msgid "width"\r
+msgstr "πλάτος"\r
+\r
+#: admin/settings.php:277\r
+msgid "height"\r
+msgstr "ύψος"\r
+\r
+#: admin/settings.php:278\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+"Οι διαστάσεις του slider. Βεβαιωθείτε πως οι εικόνες σας είναι του ίδιου "\r
+"μεγέθους."\r
+\r
+#: admin/settings.php:280\r
+msgid "Animation:"\r
+msgstr "Γραφική Απεικόνιση"\r
+\r
+#: admin/settings.php:282\r
+msgid "Random"\r
+msgstr "Τυχαία"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fold"\r
+msgstr "Fold"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fade"\r
+msgstr "Fade"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInRight"\r
+msgstr "SlideInRight"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInLeft"\r
+msgstr "SlideInLeft"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDown"\r
+msgstr "SliceDown"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDownLeft"\r
+msgstr "SliceDownLeft"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUp"\r
+msgstr "SliceUp"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpLeft"\r
+msgstr "SliceUpLeft"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDown"\r
+msgstr "SliceUpDown"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDownLeft"\r
+msgstr "SliceUpDownLeft"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRandom"\r
+msgstr "BoxRandom"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRain"\r
+msgstr "BoxRain"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainReverse"\r
+msgstr "BoxRainReverse"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrow"\r
+msgstr "BoxRainGrow"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrowReverse"\r
+msgstr "BoxRainGrowReverse"\r
+\r
+#: admin/settings.php:290\r
+msgid "The transition effect your slider will have."\r
+msgstr "Το εφέ μετάβασης που θα χρησιμοποιεί ο slider"\r
+\r
+#: admin/settings.php:292\r
+msgid "Border Settings:"\r
+msgstr "Ρυθμίσεις Περιγράμματος:"\r
+\r
+#: admin/settings.php:293\r
+msgid "Width"\r
+msgstr "Πλάτος"\r
+\r
+#: admin/settings.php:294\r
+msgid "Color"\r
+msgstr "Χρώμα"\r
+\r
+#: admin/settings.php:296\r
+msgid "The width and color of the slider's border."\r
+msgstr "Το πλάτος και το χρώμα του περιγράμματος του slider."\r
+\r
+#: admin/settings.php:298\r
+msgid "Animation Time:"\r
+msgstr "Χρόνος γραφικής απεικόνισης:"\r
+\r
+#: admin/settings.php:299 admin/settings.php:303\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "milliseconds (1000ms = 1 δευτερόλεπτο) "\r
+\r
+#: admin/settings.php:300\r
+msgid "The time in which the transition animation will take place."\r
+msgstr ""\r
+"Ο χρόνος εντός του οποίου πραγματοποιείται η μετάβαση της γραφικής "\r
+"απεικόνισης."\r
+\r
+#: admin/settings.php:302\r
+msgid "Pause Time:"\r
+msgstr "Χρόνος Παύσης"\r
+\r
+#: admin/settings.php:304\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Ο χρόνος που ένα slide παραμένει ακίνητο και ορατό."\r
+\r
+#: admin/settings.php:307\r
+msgid "Slider navigation:"\r
+msgstr "Πλοήγηση Slider:"\r
+\r
+#: admin/settings.php:309\r
+msgid "Numbers"\r
+msgstr "Αριθμοί"\r
+\r
+#: admin/settings.php:309\r
+msgid "Bullets"\r
+msgstr "Κουκκίδες"\r
+\r
+#: admin/settings.php:309 admin/settings.php:1259\r
+msgid "None"\r
+msgstr "Καμμία"\r
+\r
+#: admin/settings.php:317\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Ο τύπος πλοήγησης του slider. Εμφανίζεται κάτωθεν του slider."\r
+\r
+#: admin/settings.php:319\r
+msgid "Slider arrows:"\r
+msgstr "Βέλη Slider:"\r
+\r
+#: admin/settings.php:321\r
+msgid "Always Visible"\r
+msgstr "Πάντοτε Ορατό"\r
+\r
+#: admin/settings.php:321\r
+msgid "Visible on Hover"\r
+msgstr "Ορατά κατά την Υπέρπτηση του Δείκτη"\r
+\r
+#: admin/settings.php:321\r
+msgid "Hidden"\r
+msgstr "Κρυμμένα"\r
+\r
+#: admin/settings.php:329\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Τα Αριστερά και Δεξιά Βέλη του Slider"\r
+\r
+#: admin/settings.php:370 admin/settings.php:438\r
+msgid "Select Category"\r
+msgstr "Επιλέξτε Κατηγορία"\r
+\r
+#: admin/settings.php:397\r
+msgid "Custom Slides"\r
+msgstr "Προσαρμοσμένα Slides"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts"\r
+msgstr "Τελευταίες Δημοσιεύσεις"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts"\r
+msgstr "Τυχαίες Δημοσιεύσεις"\r
+\r
+#: admin/settings.php:397\r
+msgid "Sticky Posts"\r
+msgstr "Κεντρικές Δημοσιεύσεις"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts from Category"\r
+msgstr "Τελευταίες Δημοσιεύσεις Κατηγορίας"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts from Category"\r
+msgstr "Τυχαίες Δημοσιεύσεις Κατηγορίας"\r
+\r
+#: admin/settings.php:397\r
+msgid "Specific Posts"\r
+msgstr "Επιλεγμένες Δημοσιεύσεις"\r
+\r
+#: admin/settings.php:410\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Στον slider θα φορτώνονται οι τελευταίες δημοσιεύσεις."\r
+\r
+#: admin/settings.php:414\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Στον slider θα φορτώνονται τυχαίες δημοσιεύσεις."\r
+\r
+#: admin/settings.php:418\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr ""\r
+"Στον slider θα φορτώνονται οι τελευταίες δημοσιεύσεις από τις κατηγορίες που "\r
+"θα επιλέξετε."\r
+\r
+#: admin/settings.php:423\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr ""\r
+"Στον slider θα φορτώνονται τυχαίες δημοσιεύσεις από τη κατηγορία που θα "\r
+"επιλέξετε."\r
+\r
+#: admin/settings.php:427\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Μόνο Κεντρικές Δημοσιεύσεις θα φορτώνονται στον slider."\r
+\r
+#: admin/settings.php:431\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr ""\r
+"Εισάγετε τα αναγνωριστικά/ID των δημοσιεύσεων που θέλετε να προβάλετε "\r
+"(χωρισμένα με κόμμα):"\r
+\r
+#: admin/settings.php:436\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Επιλέξτε κατηγορία: "\r
+\r
+#: admin/settings.php:453\r
+msgid "Number of posts to show:"\r
+msgstr "Αριθμός δημοσιεύσεων προς εμφάνιση:"\r
+\r
+#: admin/settings.php:460\r
+msgid "Slide 1"\r
+msgstr "Slide 1"\r
+\r
+#: admin/settings.php:464 admin/settings.php:479 admin/settings.php:494\r
+#: admin/settings.php:509 admin/settings.php:524 admin/settings.php:567\r
+#: admin/settings.php:582 admin/settings.php:597 admin/settings.php:612\r
+msgid "Upload or select image from gallery"\r
+msgstr "Μεταφορτώστε ή επιλέξτε μια εικόνα από τη συλλογή"\r
+\r
+#: admin/settings.php:465 admin/settings.php:480 admin/settings.php:495\r
+#: admin/settings.php:510 admin/settings.php:525 admin/settings.php:568\r
+#: admin/settings.php:583 admin/settings.php:613\r
+msgid "Title"\r
+msgstr "Τίτλος"\r
+\r
+#: admin/settings.php:467 admin/settings.php:482 admin/settings.php:497\r
+#: admin/settings.php:512 admin/settings.php:527 admin/settings.php:570\r
+#: admin/settings.php:585 admin/settings.php:600 admin/settings.php:615\r
+msgid "Text"\r
+msgstr "Κείμενο"\r
+\r
+#: admin/settings.php:475\r
+msgid "Slide 2"\r
+msgstr "Slide 2"\r
+\r
+#: admin/settings.php:490\r
+msgid "Slide 3"\r
+msgstr "Slide 3"\r
+\r
+#: admin/settings.php:505\r
+msgid "Slide 4"\r
+msgstr "Slide 4"\r
+\r
+#: admin/settings.php:520\r
+msgid "Slide 5"\r
+msgstr "Slide 5"\r
+\r
+#: admin/settings.php:533\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"Το περιεχόμενο των slide σας. Μόνο η εικόνα είναι απαιτούμενη, όλα τα άλλα "\r
+"πεδία είναι προαιρετικά. Μόνο τα slide που περιλαμβάνουν μια εικόνα θα "\r
+"επιλεγούν και θα καταστούν ενεργά και ορατά στον slider."\r
+\r
+#: admin/settings.php:543\r
+msgid "Number of columns:"\r
+msgstr "Αριθμός στηλών:"\r
+\r
+#: admin/settings.php:553\r
+msgid "Image Height:"\r
+msgstr "Ύψος Εικόνας"\r
+\r
+#: admin/settings.php:556\r
+msgid "Read more text:"\r
+msgstr "Κείμενο 'Διαβάστε περισσότερα':"\r
+\r
+#: admin/settings.php:559\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr ""\r
+"Το κείμενο που εμφανίζεται ως σύνδεσμος κάτω από όλες τις στήλες. Μπορείτε "\r
+"να διαγράψετε το κείμενο αν δεν το χρειάζεστε."\r
+\r
+#: admin/settings.php:563\r
+msgid "1st Column"\r
+msgstr "1η Στήλη"\r
+\r
+#: admin/settings.php:578\r
+msgid "2nd Column"\r
+msgstr "2η Στήλη"\r
+\r
+#: admin/settings.php:593\r
+msgid "3rd Column"\r
+msgstr "3η Στήλη"\r
+\r
+#: admin/settings.php:608\r
+msgid "4th Column"\r
+msgstr "4η Στήλη"\r
+\r
+#: admin/settings.php:630\r
+msgid "Extra Text"\r
+msgstr "Πρόσθετο Κείμενο"\r
+\r
+#: admin/settings.php:630\r
+msgid "Top Title"\r
+msgstr "Κύριος Τίτλος"\r
+\r
+#: admin/settings.php:632\r
+msgid "Second Title"\r
+msgstr "Δευτερεύων Τίτλος"\r
+\r
+#: admin/settings.php:635\r
+msgid "Title color"\r
+msgstr "Χρώμα τίτλου"\r
+\r
+#: admin/settings.php:638\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "Χρώμα Τίτλων (Προεπιλεγμένη τιμή: 333333)"\r
+\r
+#: admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr "Συνοδευτικό Κείμενο 1"\r
+\r
+#: admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr "Συνοδευτικό Κείμενο 2"\r
+\r
+#: admin/settings.php:645\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Επιπλέον κείμενο για την αρχική σας σελίδα. Ο πρώτος τίτλος τοποθετείται "\r
+"πάνω από τον slider, ο δεύτερος τίτλος μεταξύ του slider και των στηλών και "\r
+"διατίθενται δύο ακόμη σειρές κειμένου κάτω από τις στήλες.\n"\r
+"\t\t Όλα τα πεδία είναι προαιρετικά, οπότε μπορείτε να τα αφήστε κενά αν δεν "\r
+"τα χρειάζεστε."\r
+\r
+#: admin/settings.php:651\r
+msgid "Hide areas"\r
+msgstr "Απόκρυψη περιοχών"\r
+\r
+#: admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Απόκρυψη της κεφαλίδας (εικόνας ή χρώματος υποβάθρου)"\r
+\r
+#: admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Απόκρυψη του κύριου μενού (των κύριων καρτελών πλοήγησης)"\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr "Απόκρυψη μονάδων υποσέλιδου."\r
+\r
+#: admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Απόκρυψη υποσέλιδου (περιοχή δήλωσης πνευματικών δικαιωμάτων)"\r
+\r
+#: admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Απόκρυψη του άσπρου χρώματος. Θα παραμείνει μόνο το χρώμα υποβάθρου."\r
+\r
+#: admin/settings.php:684\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Επιλέξτε τις περιοχές που θέλετε να κρύψετε στην πρώτη σελίδα."\r
+\r
+#: admin/settings.php:703\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"Επιλέξτε μέγεθος γραμματοσειράς για το ιστολόγιό σας. Επηρεάζει τις Σελίδες, "\r
+"τις Δημοσιεύσεις και τα Σχόλια. Τα Κουμπιά, οι Κεφαλίδες και τα Πλευρικά "\r
+"μενού θα παραμείνουν ως έχουν."\r
+\r
+#: admin/settings.php:747\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"Επιλέξτε την οικογένεια γραμματοσειράς που θέλετε να χρησιμοποιήσετε στο "\r
+"ιστολογιό σας. Θα επηρεάσει όλο το κείμενο που βρίσκεται εντός του "\r
+"περιεχομένου (συμπεριλαμβανομένων και των κουμπιών του μενού)."\r
+\r
+#: admin/settings.php:748 admin/settings.php:797 admin/settings.php:848\r
+#: admin/settings.php:899\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"Εναλλακτικά εισάγετε τη Γραμματοσειρά Google που επιθυμείτε παρακάτω. "\r
+"Παρακαλούμε εισάγετε μόνο το <strong>όνομα</strong> της γραμματοσειράς.<br /"\r
+"> Πχ: Marko One. Επισκεφθείτε τις <a href='http://www.google.com/webfonts' > "\r
+"γραμματοσειρές google </a> για λίγη έμπνευση."\r
+\r
+#: admin/settings.php:795\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"Επιλέξτε την οικογένεια γραμματοσειράς που θέλετε να χρησιμοποιήσετε για "\r
+"τους τίτλους. Θα επηρεάσει τους τίτλους δημοσιεύσεων και σελίδων. Επιλέξτε "\r
+"'Προεπιλογή\" και θα χρησιμοποιηθεί η γενική γραμματοσειρά που έχετε ορίσει."\r
+\r
+#: admin/settings.php:846\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"Επιλέξτε την οικογένεια γραμματοσειράς που θέλετε να χρησιμοποιούν οι "\r
+"πλευρικές στήλες. Θα επηρεαστεί το κείμενο στις πλευρικές στήλες, "\r
+"συμπεριλαμβανομένων και των μονάδων. Επιλέξτε 'Προεπιλογή' για να "\r
+"χρησιμοποιηθεί η γενική γραμματοσειρά που έχετε ορίσει."\r
+\r
+#: admin/settings.php:897\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"Επιλέξτε την οικογένεια γραμματοσειράς που θέλετε να χρησιμοποιούν οι υπο-"\r
+"κεφαλίδες (ετικέτες h2-h6). Επιλέξτε 'Προεπιλογή' για να χρησιμοποιηθεί η "\r
+"γενική γραμματοσειρά που έχετε ορίσει."\r
+\r
+#: admin/settings.php:909 admin/settings.php:924 admin/settings.php:939\r
+#: admin/settings.php:984 admin/settings.php:999 admin/settings.php:1014\r
+msgid "Default"\r
+msgstr "Προεπιλογή"\r
+\r
+#: admin/settings.php:917\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"Μέγεθος Γραμματοσειράς Κεφαλίδας Δημοσίευσης. Επιλέξτε 'Προεπιλογή' για τις "\r
+"κανονικές ρυθμίσεις (η τιμή του μεγέθους θα οριστεί βάσει του κώδικα CSS)"\r
+\r
+#: admin/settings.php:932\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"Μέγεθος Γραμματοσειράς Πλευρικής Στήλης. Επιλέξτε 'Προεπιλογή' για τις "\r
+"κανονικές ρυθμίσεις (η τιμή του μεγέθους θα οριστεί βάσει του κώδικα CSS)"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Left"\r
+msgstr "Αριστερά"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Right"\r
+msgstr "Δεξιά"\r
+\r
+#: admin/settings.php:939\r
+msgid "Justify"\r
+msgstr "Πλήρης"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Center"\r
+msgstr "Κέντρο"\r
+\r
+#: admin/settings.php:947\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"Αυτή η ρύθμιση υπερβαίνει την στοίχιση κειμένου των δημοσιεύσεων και των "\r
+"σελίδων. Επιλέξτε 'Προεπιλογή' για τις κανονικές ρυθμίσεις (η ρύθμιση θα "\r
+"παραμείνει ως έχει στις δημοσιεύσεις, τα σχόλια κοκ)."\r
+\r
+#: admin/settings.php:961\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Ορίστε το μέγεθος της εσοχής των παραγράφων."\r
+\r
+#: admin/settings.php:977\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr ""\r
+"Απενεργοποίηση της προεπιλεγμένης εσοχής κεφαλίδας και τίτλου (αριστερό "\r
+"περιθώριο)."\r
+\r
+#: admin/settings.php:992\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"Ύψος γραμμής κειμένου. Η απόσταση μεταξύ δύο γραμμών κειμένου. Επιλέξτε "\r
+"'Προεπιλογή' για τις κανονικές ρυθμίσεις (η τιμή του μεγέθους θα οριστεί "\r
+"βάσει του κώδικα CSS)."\r
+\r
+#: admin/settings.php:1007\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Η απόσταση/το διάστημα μεταξύ <i>λέξεων</i>. Επιλέξτε 'Προεπιλογή' για τις "\r
+"κανονικές ρυθμίσεις (η τιμή του μεγέθους θα οριστεί βάσει του κώδικα CSS)."\r
+\r
+#: admin/settings.php:1022\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Η απόσταση/το διάστημα μεταξύ <i>χαρακτήρων/γραμμάτων</i>. Επιλέξτε "\r
+"'Προεπιλογή' για τις κανονικές ρυθμίσεις (η τιμή του μεγέθους θα οριστεί "\r
+"βάσει του κώδικα CSS)."\r
+\r
+#: admin/settings.php:1039\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr ""\r
+"Απενεργοποίηση της προεπιλεγμένης σκίασης κειμένου στις κεφαλίδες και τους "\r
+"τίτλους. "\r
+\r
+#: admin/settings.php:1051\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Χρώμα υποβάθρου (Προεπιλεγμένη τιμή: 444444)."\r
+\r
+#: admin/settings.php:1059\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr ""\r
+"Χρώμα υποβάθρου κεφαλίδας (Προεπιλεγμένη τιμή: 333333) Μπορείτε να "\r
+"διαγράψετε το περιεχόμενο για να μην έχετε χρώμα υποβάθρου."\r
+\r
+#: admin/settings.php:1066\r
+msgid ""\r
+"Content background color (Default value is FAFAFA). Works best with really "\r
+"light colors."\r
+msgstr ""\r
+"Χρώμα υποβάθρου περιεχομένου (Προεπιλεγμένη τιμή: FAFAFA). Προτιμήστε "\r
+"φωτεινά χρώματα."\r
+\r
+#: admin/settings.php:1073\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"Χρώμα υποβάθρου του κύριου μενού (Προεπιλεγμένη τιμή: FAFAFA). Θα πρέπει να "\r
+"είναι το ίδιο χρώμα με το υπόβαθρο περιεχομένου ή κάποιο εξίσου φωτεινό."\r
+\r
+#: admin/settings.php:1081\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr ""\r
+"Χρώμα υποβάθρου υποσέλιδου-περιοχής μονάδων (Προεπιλεγμένη τιμή: 171717)."\r
+\r
+#: admin/settings.php:1089\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Χρώμα υποβάθρου υποσέλιδου (Προεπιλεγμένη τιμή: 222222)."\r
+\r
+#: admin/settings.php:1097\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Το χρώμα του τίτλου του ιστολογίου σας (Προεπιλεγμένη τιμή: 0D85CC)."\r
+\r
+#: admin/settings.php:1105\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr ""\r
+"Το χρώμα της περιγραφής του ιστολογίου σας (Προεπιλεγμένη τιμή: 222222)."\r
+\r
+#: admin/settings.php:1113\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Χρώμα Κειμένου Περιεχομένου (Προεπιλεγμένη τιμή: 333333)."\r
+\r
+#: admin/settings.php:1121\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Χρώμα συνδέσμων (Προεπιλεγμένη τιμή: 0D85CC)."\r
+\r
+#: admin/settings.php:1129\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr ""\r
+"Χρώμα Συνδέσμων κατά την Υπέρπτηση του Δείκτη (Προεπιλεγμένη τιμή: 333333)."\r
+\r
+#: admin/settings.php:1137\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Χρώμα Κειμένου Κεφαλίδας Δημοσίευσης (Προεπιλεγμένη τιμή: 333333)"\r
+\r
+#: admin/settings.php:1145\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+"Χρώμα Κειμένου Κεφαλίδας Δημοσίευσης κατά την Υπέρπτηση του Δείκτη "\r
+"(Προεπιλεγμένη τιμή: 000000)."\r
+\r
+#: admin/settings.php:1153\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr ""\r
+"Χρώμα Υποβάθρου Κεφαλίδας Πλευρικής Στήλης (Προεπιλεγμένη τιμή: 444444)."\r
+\r
+#: admin/settings.php:1162\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr ""\r
+"Χρώμα Κειμένου Κεφαλίδας Πλευρικής Στήλης (Προεπιλεγμένη τιμή: 2EA5FD)."\r
+\r
+#: admin/settings.php:1170\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Χρώμα Κειμένου Μονάδων Υποσέλιδου (Προεπιλεγμένη τιμή: 0D85CC)"\r
+\r
+#: admin/settings.php:1178\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Χρώμα Συνδέσμου Μονάδων Υποσέλιδου (Προεπιλεγμένη τιμή: 666666)."\r
+\r
+#: admin/settings.php:1186\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+"Χρώμα Συνδέσμου Μονάδων Υποσέλιδου κατά την Υπέρπτηση του Δείκτη "\r
+"(Προεπιλεγμένη τιμή: 888888)."\r
+\r
+#: admin/settings.php:1198 admin/settings.php:1259\r
+msgid "White"\r
+msgstr "Άσπρο"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Light"\r
+msgstr "Φωτεινό"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Light Gray"\r
+msgstr "Φωτεινό Γκρι"\r
+\r
+#: admin/settings.php:1198 admin/settings.php:1259\r
+msgid "Gray"\r
+msgstr "Γκρίζο"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Dark Gray"\r
+msgstr "Σκοτεινό Γκρι"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Black"\r
+msgstr "Μαύρο"\r
+\r
+#: admin/settings.php:1206\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"Αυτή η ρύθμιση αλλάζει την όψη των λεζαντών. Οι εικόνες που δεν εισάγονται "\r
+"με λεζάντες δεν θα επηρεαστούν."\r
+\r
+#: admin/settings.php:1222\r
+msgid "The border around your inserted images. "\r
+msgstr "Το περίγραμμα γύρω από τις εισαχθείσες εικόνες."\r
+\r
+#: admin/settings.php:1237\r
+msgid "The image on top of your captions. "\r
+msgstr "Η εικόνα πάνω από τις λεζάντες σας."\r
+\r
+#: admin/settings.php:1252\r
+msgid "The sidebar list bullets. "\r
+msgstr "Οι κουκκίδες λίστας της πλευρικής στήλης."\r
+\r
+#: admin/settings.php:1267\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default.<"\r
+msgstr ""\r
+"Το υπόβαθρο της περιοχής μεταδεδομένων (κάτωθεν των δημοσιεύσεων). Γκρίζο εκ "\r
+"προεπιλογής."\r
+\r
+#: admin/settings.php:1275 admin/settings.php:1291 admin/settings.php:1308\r
+#: admin/settings.php:1323 admin/settings.php:1338 admin/settings.php:1368\r
+#: admin/settings.php:1383 admin/settings.php:1399 admin/settings.php:1442\r
+#: admin/settings.php:1457 admin/settings.php:1472 admin/settings.php:1487\r
+#: admin/settings.php:1502 admin/settings.php:1517 admin/settings.php:1532\r
+#: admin/settings.php:1547\r
+msgid "Show"\r
+msgstr "Εμφάνιση"\r
+\r
+#: admin/settings.php:1275 admin/settings.php:1291 admin/settings.php:1308\r
+#: admin/settings.php:1323 admin/settings.php:1338 admin/settings.php:1368\r
+#: admin/settings.php:1399 admin/settings.php:1442 admin/settings.php:1457\r
+#: admin/settings.php:1472 admin/settings.php:1487 admin/settings.php:1502\r
+#: admin/settings.php:1517 admin/settings.php:1532 admin/settings.php:1547\r
+msgid "Hide"\r
+msgstr "Απόκρυψη"\r
+\r
+#: admin/settings.php:1283\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη ενός οριζόντιου χάρακα για το διαχωρισμό των "\r
+"δημοσιεύσεων."\r
+\r
+#: admin/settings.php:1299\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη των κουκκίδων δίπλα στις λίστες που έχετε εντός της "\r
+"περιοχής περιεχομένου (σελίδες, δημοσιεύσεις κοκ)."\r
+\r
+#: admin/settings.php:1316\r
+msgid ""\r
+"Hide or show your blog's Title and Description in the header (recommended if "\r
+"you have a custom header image with text)."\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη του Τίτλου και της Περιγραφής του ιστολογίου σας στην "\r
+"κεφαλίδα (προτείνεται η απόκρυψη αν έχετε μια προσαρμοσμένη εικόνα με "\r
+"κείμενο)."\r
+\r
+#: admin/settings.php:1331\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη των τίτλων Σελίδων σε όλες τις <i>δημιουργηθείσες</i> "\r
+"σελίδες."\r
+\r
+#: admin/settings.php:1346\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη των τίτλων των σελίδων στις Σελίδες <i> Κατηγοριών</i>."\r
+\r
+#: admin/settings.php:1361\r
+msgid "Hide table borders and background color."\r
+msgstr "Απόκρυψη περιγράμματος πίνακα και χρώματος υποβάθρου."\r
+\r
+#: admin/settings.php:1376\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"Απόκρυψη του επεξηγηματικού κειμένου κάτωθεν του πεδίου των σχολίων. Αρχίζει "\r
+"με: <i>Μπορείτε να χρησιμοποιήσετε τις ακόλουθες HTML ετικέτες και "\r
+"ιδιότητες:...</i>."\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide in posts"\r
+msgstr "Απόκρυψη στις δημοσιεύσεις"\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide in pages"\r
+msgstr "Απόκρυψη στις σελίδες"\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide everywhere"\r
+msgstr "Απόκρυψη παντού"\r
+\r
+#: admin/settings.php:1391\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"Απόκρυψη του κειμένου <b>Τα σχόλια έχουν κλείσει</b> που εμφανίζεται εκ "\r
+"προεπιλογής στις σελίδες ή στις δημοσιεύσεις όπου τα σχόλια έχουν "\r
+"απενεργοποιηθεί."\r
+\r
+#: admin/settings.php:1407\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+"Απόκρυψη του κειμένου <b>Ανενεργός σχολιασμός</b> που εμφανίζεται σε "\r
+"δημοσιεύσεις με απενεργοποιημένα τα σχόλια."\r
+\r
+#: admin/settings.php:1423\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"Ενεργοποίηση του κουμπιού 'Επιστροφής στην Κορυφή'. Το κουμπί εμφανίζεται "\r
+"κατά την κατακύλιση της σελίδας."\r
+\r
+#: admin/settings.php:1430\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"Εισάγετε προσαρμοσμένο κείμενο ή κώδικα HTML που θα εμφανίζεται στο τέλος "\r
+"του υποσελίδου σας. <br /> Μπορείτε να χρησιμοποιήστε HTML για να εισάγετε "\r
+"συνδέσμους, εικόνες και ειδικούς χαρακτήρες όπως © ."\r
+\r
+#: admin/settings.php:1450\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη του κειμένου <strong>Αφήστε ένα σχόλιο</strong> ή "\r
+"<strong>x Σχόλια</strong> δίπλα στις δημοσιεύσεις ή στα αποσπάσματα "\r
+"δημοσιεύσεων."\r
+\r
+#: admin/settings.php:1465\r
+msgid "Hide or show the post date."\r
+msgstr "Απόκρυψη ή εμφάνιση της ημερομηνίας δημοσίευσης"\r
+\r
+#: admin/settings.php:1480\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"Εμφάνιση της ώρας δημοσίευσης μαζί με την ημερομηνία. Η ώρα δεν θα "\r
+"εμφανίζεται αν η Ημερομηνία Δημοσίευσης είναι κρυμμένη."\r
+\r
+#: admin/settings.php:1495\r
+msgid "Hide or show the post author."\r
+msgstr "Απόκρυψη ή εμφάνιση του συντάκτη της δημοσίευσης."\r
+\r
+#: admin/settings.php:1510\r
+msgid "Hide the post category."\r
+msgstr "Απόκρυψη κατηγορίας δημοσίευσης"\r
+\r
+#: admin/settings.php:1525\r
+msgid "Hide the post tags."\r
+msgstr "Απόκρυψη ετικετών δημοσίευσης"\r
+\r
+#: admin/settings.php:1540\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr ""\r
+"Απόκρυψη του κειμένου 'Προσθέστε στους σελιδοδείκτες το μόνιμο σύνδεσμο'."\r
+\r
+#: admin/settings.php:1555\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+"Απόκρυψη όλων των μεταδεδομένων των δημοσιεύσεων. Ολες οι πληροφορίες και "\r
+"περιοχές μεταδεδομένων θα αποκρύπτονται."\r
+\r
+#: admin/settings.php:1568 admin/settings.php:1583 admin/settings.php:1599\r
+msgid "Excerpt"\r
+msgstr "Απόσπασμα"\r
+\r
+#: admin/settings.php:1568 admin/settings.php:1583 admin/settings.php:1599\r
+msgid "Full Post"\r
+msgstr "Πλήρης δημοσίευση"\r
+\r
+#: admin/settings.php:1576\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"Αποσπάσματα στην αρχική σελίδα. Θα επηρεαστούν μόνο οι κανονικές "\r
+"δημοσιεύσεις. Όλοι οι υπόλοιποι τύποι δημοσίευσης (παραπλεύρως, εικόνα, "\r
+"συνομιλία, παράθεση κτλ) έχουν ειδική διαμόρφωση."\r
+\r
+#: admin/settings.php:1591\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"Επιλέξτε αν θέλετε να προβάλλεται το πλήρες περιεχόμενο των Κεντρικών "\r
+"Δημοσιεύσεών σας στην αρχική σελίδα ή μόνο τα αποσπάσματα."\r
+\r
+#: admin/settings.php:1607\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"Εμφάνιση αποσπασμάτων στις σελίδες αρχείων, κατηγοριών και αναζήτησης. Όπως "\r
+"παραπάνω, θα επηρεάζονται μόνο οι κανονικές δημοσιεύσεις."\r
+\r
+#: admin/settings.php:1615\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"Ο αριθμός των λέξεων που θα περιλαμβάνονται στο απόσπασμα. Όταν "\r
+"συμπληρώνεται αυτός ο αριθμός, το κείμενο της δημοσίευσης θα διακόπτεται από "\r
+"έναν σύνδεσμο <i>Διαβάστε περισσότερα</i> που\n"\r
+"\t\t\t\t\t\t\tθα οδηγεί τον αναγνώστη στη σελίδα της πλήρους δημοσίευσης."\r
+\r
+#: admin/settings.php:1631\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"Ενεργοποίηση της Διάταξης Περιοδικού. Αυτή η διάταξη εφαρμόζεται σε σελίδες "\r
+"που περιλαμβάνουν δημοσιεύσεις και εμφανίζει δύο δημοσιεύσεις ανά σειρά."\r
+\r
+#: admin/settings.php:1638\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr ""\r
+"Αντικαθιστά τις τρεις τελείες ('[...])' που επισυνάπτονται αυτόματα στα "\r
+"αποσπάσματα."\r
+\r
+#: admin/settings.php:1645\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr ""\r
+"Επεξεργαστείτε τον σύνδεσμο 'Διαβάστε περισσότερα' που προστίθεται στα "\r
+"αποσπάσματα των δημοσιεύσεών σας."\r
+\r
+#: admin/settings.php:1660\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr ""\r
+"Εκ προεπιλογής το Wordpress αφαιρεί όλες τις ετικέτες HTML από τα "\r
+"αποσπάσματα ("\r
+\r
+#: admin/settings.php:1691\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"Εμφάνιση των επιλεγμένων εικόνων ως μικρογραφιών στις δημοσιεύσεις. Οι "\r
+"εικόνες πρέπει να έχουν οριστεί για κάθε δημοσίευση στη περιοχή Επιλεγμένης "\r
+"Εικόνας."\r
+\r
+#: admin/settings.php:1706\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"Εμφάνιση της πρώτης εικόνας μιας δημοσίευσης ως μικρογραφία. Αν "\r
+"ενεργοποιήσετε αυτή την επιλογή, θα χρησιμοποιείται η πρώτη εικόνα της "\r
+"δημοσίευσής σας ακόμη κι αν έχετε ορίσει μια Επιλεγμένη Εικόνα για τη "\r
+"δημοσίευση."\r
+\r
+#: admin/settings.php:1722\r
+msgid "Thumbnail alignment."\r
+msgstr "Στοίχιση μικρογραφίας"\r
+\r
+#: admin/settings.php:1739\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"Το μέγεθος που θέλετε να έχουν οι μικρογραφίες (σε εικονοστοιχεία-pixels). "\r
+"Εκ προεπιλογής οι εικόνες θα αναπροσαρμοστούν με σταθερή αναλογία "\r
+"διαστάσεων. Ορίστε να περικόπτονται οι εικόνες αν θέλετε ένα ακριβές μέγεθος."\r
+\r
+#: admin/settings.php:1755\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"Εμφάνιση των Επιλεγμένων Εικόνων στις κεφαλίδες. Η κεφαλίδα θα "\r
+"αντικατασταθεί από μια επιλεγμένη εικόνα, την οποία έχετε ορίσει ως "\r
+"Επιλεγμένη στη δημοσίευσή σας\n"\r
+"\t\t\t\t\t\t\tκαι είναι μεγαλύτερη ή τουλάχιστον ίση με το τρέχον μέγεθος "\r
+"κεφαλίδας."\r
+\r
+#: admin/settings.php:1776\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"Επιλέξτε το Κοινωνικό Δίκτυο που επιθυμείτε από το μενού και εισάγετε τις "\r
+"αντίστοιχες διευθύνσεις στο πεδίο εισαγωγής (πχ: <i>http://www.facebook.com/"\r
+"yourname</i> )"\r
+\r
+#: admin/settings.php:1790\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Μπορείτε να εισάγετε μέχρι 5 κοινωνικά δίκτυα και διευθύνσεις."\r
+\r
+#: admin/settings.php:1804\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Υπάρχουν συνολικά 27 κοινωνικά δίκτυα για να διαλέξετε."\r
+\r
+#: admin/settings.php:1818\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Μπορείτε να αφήσετε όσα πεδία εισαγωγής θέλετε κενά."\r
+\r
+#: admin/settings.php:1832\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Μπορείτε να επιλέξετε τα ίδια κοινωνικά δίκτυα πάνω από μία φορά."\r
+\r
+#: admin/settings.php:1863\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr ""\r
+"Επιλέξτε τις <b>περιοχές</b> όπου θέλετε να εμφανίζονται τα εικονίδια "\r
+"κοινωνικής δικτύωσης."\r
+\r
+#: admin/settings.php:1884\r
+msgid ""\r
+"Make the site header into a clickable link that links to your index page."\r
+msgstr ""\r
+"Μετατρέψτε τη κελίδα του ιστοτόπου σε σύνδεσμο προς την σελίδα ευρετηρίου "\r
+"(index)."\r
+\r
+#: admin/settings.php:1899\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"Εμφάνιση της διαδρομής στη κορυφή της περιοχής περιεχομένου. Η διαδρομή "\r
+"είναι μια μορφή πλογήσης που δείχνει τα ίχνη της τοποθεσίας σας εντός του "\r
+"ιστοτόπου."\r
+\r
+#: admin/settings.php:1914\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"Εμφάνιση αριθμημένης σελιδοποίησης. Όπου υπάρχει πάνω από μια σελίδα, αντί "\r
+"των συνδέσμων <b>Παλαιότερες δημοσιεύσεις</b> και <b>Νεώτερες δημοσιεύσεις</"\r
+"b>, θα εμφανίζεται αριθμημένη σελιδοποίηση."\r
+\r
+#: admin/settings.php:1929\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in. "\r
+msgstr ""\r
+"Ενεργοποιήστε τη προβολή φορητών συσκευών και κάντε το Mantra ευέλικτο. Η "\r
+"διάταξη και η όψη του ιστολογίου σας θα αλλάζει ανάλογα με τη συσκευή και "\r
+"την ανάλυση στην οποία προβάλλεται."\r
+\r
+#: admin/settings.php:1939\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "Μεταφορτώστε ή επιλέξτε ένα favicon από τη συλλογή"\r
+\r
+#: admin/settings.php:1943\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+"Περιορισμοί: Πρέπει να είναι εικόνα. Πρέπει να έχει μέγιστες διαστάσεις "\r
+"64x64 εικονοστοιχεία. Προτεινόμενες επεκτάσεις: .ico και .png"\r
+\r
+#: admin/settings.php:1951\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br /> Your custom CSS will be preserved when updating the "\r
+"theme."\r
+msgstr ""\r
+"Εισάγετε τον προσαρμοσμένο κώδικα CSS εδώ. Κάθε CSS δήλωση που προστίθεται "\r
+"εδώ θα υπερβαίνει τις προεπιλεγμένες του Mantra (ακόμη και τις "\r
+"προσαρμοσμένες ρυθμίσεις που ορίζονται εδώ, στη Σελίδα Ρυθμίσεων του "\r
+"Mantra). <br /> Ο προσαρμοσμένος σας κώδικας CSS θα διατηρείται κατά την "\r
+"αναβάθμιση του θέματος."\r
+\r
+#: admin/settings.php:1958\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software)."\r
+msgstr ""\r
+"Εισάγετε τον προσαρμοσμένο κώδικα Javascript εδώ (Google Analytics και άλλα "\r
+"είδη λογισμικού ανάλυσης)."\r
+\r
+#: admin/settings.php:1971\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Ενεργοποίηση της λειτουργίας SEO του Mantra. Είναι ενεργοποιημένη εκ "\r
+"προεπιλογής και θα πρέπει να απενεργοποιείται μόνο αν χρησιμοποιείτε κάποιο "\r
+"πρόσθετο SEO. "\r
+\r
+#: admin/settings.php:1983\r
+msgid "Auto"\r
+msgstr "Αυτόματα"\r
+\r
+#: admin/settings.php:1983\r
+msgid "Manual"\r
+msgstr "Επιλεκτικά"\r
+\r
+#: includes/theme-functions.php:213\r
+msgid "Home Page"\r
+msgstr "Αρχική Σελίδα"\r
+\r
+#: includes/theme-loop.php:146\r
+msgid "says:"\r
+msgstr "λέει:"\r
+\r
+#: includes/theme-loop.php:152\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Αναμένεται ο έλεγχος του συντονιστή για τη δημοσίευση του σχολίου σας."\r
+\r
+#: includes/theme-loop.php:159\r
+msgid "at"\r
+msgstr "στο"\r
+\r
+#: includes/theme-loop.php:159 includes/theme-loop.php:176\r
+msgid "(Edit)"\r
+msgstr "(Επεξεργασία)"\r
+\r
+#: includes/theme-loop.php:176\r
+msgid "Pingback: "\r
+msgstr "Pingback: "\r
+\r
+#: includes/theme-loop.php:213\r
+msgid "By "\r
+msgstr "Από"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "Leave a comment"\r
+msgstr "Αφήστε ένα σχόλιο"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Σχόλιο"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Σχόλια"\r
+\r
+#: includes/theme-loop.php:247\r
+msgid " Bookmark the "\r
+msgstr "Προσθέστε στους σελιδοδείκτες το"\r
+\r
+#: includes/theme-loop.php:247 includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "Permalink to"\r
+msgstr "Μόνιμος σύνδεσμος στο"\r
+\r
+#: includes/theme-loop.php:247 includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "permalink"\r
+msgstr "μόνιμο σύνδεσμο"\r
+\r
+#: includes/theme-loop.php:249 includes/theme-loop.php:251\r
+msgid "Bookmark the "\r
+msgstr "Προσθέστε στους σελιδοδείκτες το"\r
+\r
+#: includes/theme-loop.php:273\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Παλαιότερες δημοσιεύσεις"\r
+\r
+#: includes/theme-loop.php:274\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Νεώτερες δημοσιεύσεις <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Σελίδα %s"\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Primary Navigation"\r
+msgstr "Κύρια Πλοήγηση"\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Top Navigation"\r
+msgstr "Πλοήγηση Κορυφής"\r
+\r
+#: includes/theme-setup.php:93\r
+msgid "Footer Navigation"\r
+msgstr "Πλοήγηση Υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:137\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:198\r
+msgid "Skip to content"\r
+msgstr "Μετάβαση στο περιεχόμενο"\r
+\r
+#: includes/theme-setup.php:224\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Πρωτεύουσα Περιοχή Μονάδων - Πλευρική Στήλη 1"\r
+\r
+#: includes/theme-setup.php:226\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Πρωτεύουσα περιοχή μονάδων - πλευρική στήλη 1"\r
+\r
+#: includes/theme-setup.php:235\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Δευτερεύουσα Περιοχή Μονάδων - Πλευρική Στήλη 1"\r
+\r
+#: includes/theme-setup.php:237\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Δευτερεύουσα περιοχή μονάδων - πλευρική στήλη 1"\r
+\r
+#: includes/theme-setup.php:246\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Τριτεύουσα Περιοχή Μονάδων - Πλευρική Στήλη 2"\r
+\r
+#: includes/theme-setup.php:248\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Τριτεύουσα περιοχή μονάδων - πλευρική στήλη 2"\r
+\r
+#: includes/theme-setup.php:257\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Τεταρτεύουσα Περιοχή Μονάδων - Πλευρική Στήλη 2"\r
+\r
+#: includes/theme-setup.php:259\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Τεταρτεύουσα περιοχή μονάδων - πλευρική στήλη 2"\r
+\r
+#: includes/theme-setup.php:268\r
+msgid "First Footer Widget Area"\r
+msgstr "Πρωτεύουσα Περιοχή Μονάδων Υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:270\r
+msgid "First footer widget area"\r
+msgstr "Πρωτεύουσα περιοχή μονάδων υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:279\r
+msgid "Second Footer Widget Area"\r
+msgstr "Δευτερεύουσα Περιοχή Μονάδων Υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:281\r
+msgid "Second footer widget area"\r
+msgstr "Δευτερεύουσα περιοχή μονάδων υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:290\r
+msgid "Third Footer Widget Area"\r
+msgstr "Τριτεύουσα Περιοχή Μονάδων Υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:292\r
+msgid "The third footer widget area"\r
+msgstr "Τριτεύουσα περιοχή μονάδων υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:301\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Τεταρτεύουσα περιοχή Μονάδων Υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:303\r
+msgid "The fourth footer widget area"\r
+msgstr "Τεταρτεύουσα περιοχή μονάδων υποσέλδου"\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: mantra 197\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-09-08 18:32+0200\n"\r
+"PO-Revision-Date: 2013-01-02 21:26+0200\n"\r
+"Last-Translator: \n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"\r
+"X-Poedit-Basepath: C:\\Users\\medicated\\Desktop\\mantra\n"\r
+"X-Generator: Poedit 1.5.4\n"\r
+"Language: el\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "Δεν βρέθηκε"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr ""\r
+"Λυπούμαστε, η σελίδα που ζητήσατε δεν ήταν δυνατό να βρεθεί. Ίσως η "\r
+"αναζήτηση θα μπορούσε να σας φανεί χρήσιμη."\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Ημερήσια Αρχεία: %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Μηνιαία Αρχεία: %s"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Ετήσια Αρχεία: %s"\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "Αρχεία Ιστολογίου"\r
+\r
+#: archive.php:57 author.php:74 category.php:50\r
+msgid "Nothing Found"\r
+msgstr "Δεν βρέθηκαν αποτελέσματα"\r
+\r
+#: archive.php:61 author.php:78 category.php:54\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr ""\r
+"Λυπούμαστε, δεν βρέθηκαν αποτελέσματα για το αρχείο που ζήτησατε. Ίσως η "\r
+"αναζήτηση σάς βοηθήσει να βρείτε κάποια συναφή δημοσίευση."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Επιστροφή στο %s"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "Από"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "Δημοσιευμένο"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "Το πλήρες μέγεθος είναι %s εικονοστοιχεία"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "Σύνδεσμος προς τη πλήρη εικόνα"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:48 content-gallery.php:64 content-image.php:41\r
+#: content-link.php:48 content-page.php:22 content-quote.php:46\r
+#: content-status.php:49 content.php:80\r
+msgid "Edit"\r
+msgstr "Επεξεργασία"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "Περισσότερα"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:37\r
+#: content-gallery.php:54 content-image.php:32 content-link.php:37\r
+#: content-page.php:21 content-quote.php:36 content-status.php:40\r
+#: content.php:52 content.php:69\r
+msgid "Pages:"\r
+msgstr "Σελίδες:"\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Αρχεία Συντάκτη: %s"\r
+\r
+#: author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "Πληροφορίες συντάκτη %s"\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Αρχεία Κατηγορίας: %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+"Αυτή η δημοσίευση είναι προστατευμένη. Εισάγετε τον κωδικό για να δείτε τα "\r
+"σχόλια."\r
+\r
+#: comments.php:41 comments.php:60\r
+msgid "Older Comments"\r
+msgstr "Παλαιότερα σχόλια"\r
+\r
+#: comments.php:42 comments.php:61\r
+msgid "Newer Comments"\r
+msgstr "Νεώτερα σχόλια"\r
+\r
+#: comments.php:72 content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr "Τα σχόλια έχουν κλείσει."\r
+\r
+#: content-aside.php:21\r
+msgid "Aside"\r
+msgstr "Παραπλεύρως"\r
+\r
+#: content-aside.php:38 content-chat.php:36 content-gallery.php:32\r
+#: content-image.php:31 content-link.php:36 content-quote.php:35\r
+#: content-status.php:39\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Περισσότερα <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:44 content-gallery.php:61\r
+#: content-image.php:38 content-link.php:44 content-quote.php:43\r
+#: content-status.php:47 content.php:78\r
+msgid "Tagged"\r
+msgstr "Ετικέτες"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "Συνομιλία"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "Έκθεση"\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr "Εικόνα"\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr "Σύνδεσμος"\r
+\r
+#: content-quote.php:19\r
+msgid "Quote"\r
+msgstr "Παράθεση"\r
+\r
+#: content-status.php:31\r
+msgid "Status"\r
+msgstr "Κατάσταση"\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Αποτελέσματα αναζήτησης για: %s"\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "Δεν βρέθηκαν αποτελέσματα για: %s"\r
+\r
+#: sidebar.php:35 sidebar.php:92\r
+msgid "Archives"\r
+msgstr "Αρχεία"\r
+\r
+#: sidebar.php:42 sidebar.php:99\r
+msgid "Meta"\r
+msgstr "Μεταδεδομένα"\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr "Προβολή όλων των δημοσιεύσεων από "\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Αρχεία Ετικέτας: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr ""\r
+"Προτού μπορέσετε να μεταφορτώσετε το αρχείο εισαγωγής, πρέπει να διορθώσετε "\r
+"το ακόλουθο σφάλμα:"\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Εισαγωγή Ρυθμίσεων Θέματος Mantra"\r
+\r
+#: admin/admin-functions.php:72\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"Εδώ μπορείτε να εισαγάγετε τις Ρυθμίσεις του Mantra. <i> Παρακαλούμε "\r
+"σημειώστε πως πρόκειται για πειραματικό χαρακτηριστικό.</i>"\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Επιλέξτε ένα αρχείο από τον υπολογιστή σας:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "Μέγιστο μέγεθος: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "Και εισαγωγή!"\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Εισαγωγή Ρυθμίσεων Θέματος Mantra"\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "Υπέροχα! Οι ρυθμίσεις έχουν εισαχθεί!"\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Επιστρέψτε στη σελίδα ρυθμίσεων του Mantra και μελετήστε τις!"\r
+\r
+#: admin/admin-functions.php:155 admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "Ωχ! παρουσιάστηκε ένα μικρό πρόβλημα."\r
+\r
+#: admin/admin-functions.php:156\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"Το μεταφορτωμένο αρχείο δεν περιλαμβάνει έγκυρες ρυθμίσεις για το Mantra. "\r
+"Βεβαιωθείτε πως το αρχείο έχει εξαχθεί από τη σελίδα Ρυθμίσεων του Mantra"\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "Το μεταφορτωμένο αρχείο δεν ήταν δυνατό να αναγνωσθεί."\r
+\r
+#: admin/admin-functions.php:168\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"Δεν υποστηρίζεται ο τύπος του μεταφορτωμένου αρχείου. Βεβαιωθείτε πως το "\r
+"αρχείο έχει εξαχθεί από τη σελίδα του Mantra και πως είναι αρχείο κειμένου."\r
+\r
+#: admin/admin-functions.php:177\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"Ωχ! Το αρχείο είναι κενό ή δεν υπήρχε αρχείο. Αυτό το σφάλμα μπορεί ακόμη να "\r
+"προκαλείται από την απενεργοποίηση των μεταφορτώσεων στο 'php.ini' ή από τον "\r
+"προσδιορισμό χαμηλότερης τιμής στο 'post_max_size' από εκείνη του "\r
+"'upload_max_filesize' στο 'php.ini'"\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "ΣΦΑΛΜΑ: Δεν έχετε την αρμοδιότητα να εκτελέσετε τέτοιου είδους εργασία"\r
+\r
+#: admin/main.php:93\r
+msgid "Layout Settings"\r
+msgstr "Ρυθμίσεις Διάταξης"\r
+\r
+#: admin/main.php:94\r
+msgid "Presentation Page"\r
+msgstr "Σελίδα Παρουσίασης"\r
+\r
+#: admin/main.php:95\r
+msgid "Text Settings"\r
+msgstr "Ρυθμίσεις Κειμένου"\r
+\r
+#: admin/main.php:96\r
+msgid "Color Settings"\r
+msgstr "Ρυθμίσεις Χρώματος"\r
+\r
+#: admin/main.php:97\r
+msgid "Graphics Settings"\r
+msgstr "Ρυθμίσεις Γραφικών"\r
+\r
+#: admin/main.php:98\r
+msgid "Post Information Settings"\r
+msgstr "Ρυθμίσεις Πληροφοριών Δημοσίευσης"\r
+\r
+#: admin/main.php:99\r
+msgid "Post Excerpt Settings"\r
+msgstr "Ρυθμίσεις Αποσπάσματος Δημοσίευσης"\r
+\r
+#: admin/main.php:100\r
+msgid "Featured Image Settings"\r
+msgstr "Ρυθμίσεις Επιλεγμένης Εικόνας"\r
+\r
+#: admin/main.php:101\r
+msgid "Social Media Settings"\r
+msgstr "Ρυθμίσεις Κοινωνικής Δικτύωσης"\r
+\r
+#: admin/main.php:102\r
+msgid "Miscellaneous Settings"\r
+msgstr "Διάφορες Ρυθμίσεις"\r
+\r
+#: admin/main.php:104\r
+msgid "Main Layout"\r
+msgstr "Κύρια Διάταξη"\r
+\r
+#: admin/main.php:105\r
+msgid "Content / Sidebar Width"\r
+msgstr "Πλάτος Περιεχομένου / Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:106\r
+msgid "Header Image Height"\r
+msgstr "Ύψος Εικόνας Κεφαλίδας"\r
+\r
+#: admin/main.php:108\r
+msgid "Enable Presentation Page"\r
+msgstr "Ενεργοποίηση Σελίδας Παρουσίασης"\r
+\r
+#: admin/main.php:109\r
+msgid "Slider Settings"\r
+msgstr "Ρυθμίσεις Slider"\r
+\r
+#: admin/main.php:110\r
+msgid "Slides"\r
+msgstr "Slides"\r
+\r
+#: admin/main.php:111\r
+msgid "Presentation Page Columns"\r
+msgstr "Στήλες Σελίδας Παρουσίασης"\r
+\r
+#: admin/main.php:112\r
+msgid "Extras"\r
+msgstr "Πρόσθετα"\r
+\r
+#: admin/main.php:114\r
+msgid "General Font"\r
+msgstr "Γενική Γραμματοσειρά"\r
+\r
+#: admin/main.php:115\r
+msgid "General Font Size"\r
+msgstr "Μέγεθος Γενικής Γραμματοσειράς"\r
+\r
+#: admin/main.php:116\r
+msgid "Post Title Font "\r
+msgstr "Γραμματοσειρά Τίτλου Δημοσίευσης"\r
+\r
+#: admin/main.php:117\r
+msgid "Post Title Font Size"\r
+msgstr "Μέγεθος Γραμματοσειράς Τίτλου Δημοσίευσης"\r
+\r
+#: admin/main.php:118\r
+msgid "Sidebar Font"\r
+msgstr "Γραμματοσειρά Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:119\r
+msgid "SideBar Font Size"\r
+msgstr "Μέγεθος Γραμματοσειράς Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:120\r
+msgid "Sub-Headers Font"\r
+msgstr "Γραμματοσειρά Υπο-Κεφαλίδας"\r
+\r
+#: admin/main.php:121\r
+msgid "Force Text Align"\r
+msgstr "Επιβολή Στοίχισης Κειμένου"\r
+\r
+#: admin/main.php:122\r
+msgid "Paragraph indent"\r
+msgstr "Εσοχή παραγράφου"\r
+\r
+#: admin/main.php:123\r
+msgid "Header indent"\r
+msgstr "Εσοχή κεφαλίδας"\r
+\r
+#: admin/main.php:124\r
+msgid "Line Height"\r
+msgstr "Ύψος Γραμμής"\r
+\r
+#: admin/main.php:125\r
+msgid "Word spacing"\r
+msgstr "Απόσταση λέξεων"\r
+\r
+#: admin/main.php:126\r
+msgid "Letter spacing"\r
+msgstr "Απόσταση χαρακτήρων"\r
+\r
+#: admin/main.php:127\r
+msgid "Text shadow"\r
+msgstr "Σκίαση κειμένου"\r
+\r
+#: admin/main.php:129\r
+msgid "Background Color"\r
+msgstr "Χρώμα Υποβάθρου"\r
+\r
+#: admin/main.php:130\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Χρώμα Υποβάθρου Κεφαλίδας (Μενού και Πανό)"\r
+\r
+#: admin/main.php:131\r
+msgid "Content Background Color"\r
+msgstr "Χρώμα Υποβάθρου Περιεχομεένου"\r
+\r
+#: admin/main.php:132\r
+msgid "Menu background color"\r
+msgstr "Χρώμα υποβάθρου μενού"\r
+\r
+#: admin/main.php:134\r
+msgid "Site Title Color"\r
+msgstr "Χρώμα Τίτλου Ιστοτόπου"\r
+\r
+#: admin/main.php:135\r
+msgid "Site Description Color"\r
+msgstr "Χρώμα Περιγραφής Ιστοτόπου"\r
+\r
+#: admin/main.php:137\r
+msgid "Content Text Color"\r
+msgstr "Χρώμα Κειμένου Περιεχομένου"\r
+\r
+#: admin/main.php:138\r
+msgid "Links Color"\r
+msgstr "Χρώμα Συνδέσμων"\r
+\r
+#: admin/main.php:139\r
+msgid "Links Hover Color"\r
+msgstr "Χρώμα Συνδέσμων κατά την Υπέρπτηση του Δείκτη"\r
+\r
+#: admin/main.php:140\r
+msgid "Post Title Color"\r
+msgstr "Χρώμα Τίτλου Δημοσίευσης"\r
+\r
+#: admin/main.php:141\r
+msgid "Post Title Hover Color"\r
+msgstr "Χρώμα Τίτλου Δημοσίευσης κατά την Υπέρπτηση του Δείκτη"\r
+\r
+#: admin/main.php:142\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Χρώμα Υποβάθρου Κεφαλίδας Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:143\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Χρώμα Κειμένου Κεφαλίδας Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:144\r
+msgid "Footer Widget Background Color"\r
+msgstr "Χρώμα Υποβάθρου Μονάδων Υποσέλιδου."\r
+\r
+#: admin/main.php:145\r
+msgid "Footer Background Color"\r
+msgstr "Χρώμα Υποβάθρου Υποσέλιδου"\r
+\r
+#: admin/main.php:146\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Χρώμα Κειμένου Κεφαλίδας Μονάδων Υποσέλιδου"\r
+\r
+#: admin/main.php:147\r
+msgid "Footer Widget Link Color"\r
+msgstr "Χρώμα Συνδέσμου Μονάδων Υποσέλιδου"\r
+\r
+#: admin/main.php:148\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Χρώμα Μονάδων Υποσέλιδου κατά την Υπέρπτηση του Δείκτη"\r
+\r
+#: admin/main.php:150\r
+msgid "Caption Border"\r
+msgstr "Περίγραμμα Λεζάντας"\r
+\r
+#: admin/main.php:151\r
+msgid "Post Images Border"\r
+msgstr "Περίγραμμα Εικόνων Δημοσίευσης"\r
+\r
+#: admin/main.php:152\r
+msgid "Caption Pin"\r
+msgstr "Καρφίτσα Περιγράμματος"\r
+\r
+#: admin/main.php:153\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Κουκκίδες Μενού Πλευρικής Στήλης"\r
+\r
+#: admin/main.php:154\r
+msgid "Meta Area Background"\r
+msgstr "Υπόβαθρο Περιοχής Μεταδεδομένων"\r
+\r
+#: admin/main.php:155\r
+msgid "Post Separator"\r
+msgstr "Διαχωριστικό Δημοσιεύσεων"\r
+\r
+#: admin/main.php:156\r
+msgid "Content List Bullets"\r
+msgstr "Κουκκίδες Λίστας Περιεχομένου"\r
+\r
+#: admin/main.php:157\r
+msgid "Title and Description"\r
+msgstr "Τίτλος και Περιγραφή"\r
+\r
+#: admin/main.php:158\r
+msgid "Page Titles"\r
+msgstr "Τίτλοι Σελίδων"\r
+\r
+#: admin/main.php:159\r
+msgid "Category Page Titles"\r
+msgstr "Τίτλοι Σελίδων Κατηγοριών"\r
+\r
+#: admin/main.php:160\r
+msgid "Hide Tables"\r
+msgstr "Απόκρυψη Πινάκων"\r
+\r
+#: admin/main.php:161\r
+msgid "Back to Top button"\r
+msgstr "Κουμπί Επιστροφής στην Κορυφή"\r
+\r
+#: admin/main.php:162\r
+msgid "Text Under Comments"\r
+msgstr "Κείμενο Κάτωθεν Σχολίων"\r
+\r
+#: admin/main.php:163\r
+msgid "Comments are closed text"\r
+msgstr "Κείμενο κλεισίματος σχολίων"\r
+\r
+#: admin/main.php:164\r
+msgid "Comments off"\r
+msgstr "Ανενεργός σχολιασμός"\r
+\r
+#: admin/main.php:165\r
+msgid "Insert footer copyright"\r
+msgstr "Εισάγετε τα στοχεία πνευματικών δικαιωμάτων για το υποσέλιδο"\r
+\r
+#: admin/main.php:167\r
+msgid "Post Comments Link"\r
+msgstr "Σύνδεσμος Σχολίων Δημοσίευσης"\r
+\r
+#: admin/main.php:168\r
+msgid "Post Date"\r
+msgstr "Ημερομηνία Δημοσίευσης"\r
+\r
+#: admin/main.php:169\r
+msgid "Post Time"\r
+msgstr "Ώρα Δημοσίευσης"\r
+\r
+#: admin/main.php:170\r
+msgid "Post Author"\r
+msgstr "Συντάκτης Δημοσίευσης"\r
+\r
+#: admin/main.php:171\r
+msgid "Post Category"\r
+msgstr "Κατηγορία Δημοσίευσης"\r
+\r
+#: admin/main.php:172\r
+msgid "Post Tags"\r
+msgstr "Ετικέτες Δημοσίευσης"\r
+\r
+#: admin/main.php:173\r
+msgid "Post Permalink"\r
+msgstr "Μόνιμος Σύνδεσμος Δημοσίευσης"\r
+\r
+#: admin/main.php:174\r
+msgid "All Post Metas"\r
+msgstr "Σύνολο Μεταδεδομένων Δημοσίευσης"\r
+\r
+#: admin/main.php:176\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Αποσπάσματα Δημοσίευσης στην Αρχική Σελίδα"\r
+\r
+#: admin/main.php:177\r
+msgid "Affect Sticky Posts"\r
+msgstr "Κεντρικές Δημοσιεύσεις"\r
+\r
+#: admin/main.php:178\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Αποσπάσματα Δημοσίευσης στις Σελίδες Αρχείων και Κατηγοριών"\r
+\r
+#: admin/main.php:179\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Αριθμός Λέξεων Αποσπάσματος Δημοσιεύσεων"\r
+\r
+#: admin/main.php:180\r
+msgid "Magazine Layout"\r
+msgstr "Διάταξη Περιοδικού"\r
+\r
+#: admin/main.php:181\r
+msgid "Excerpt suffix"\r
+msgstr "Πρόθεμα Αποσπάσματος"\r
+\r
+#: admin/main.php:182\r
+msgid "Continue reading link text "\r
+msgstr "Κείμενο συνδέσμου 'διαβάστε περισσότερα'"\r
+\r
+#: admin/main.php:183\r
+msgid "HTML tags in Excerpts"\r
+msgstr "Ετικέτες HTML στα Αποσπάσματα"\r
+\r
+#: admin/main.php:185\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Επιλεγμένες Εικόνες ως Μικρογραφίες ΔΗΜΟΣΙΕΥΣΗΣ"\r
+\r
+#: admin/main.php:186\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Αυτόματη Επιλογή Εικόνων Δημοσιεύσεων"\r
+\r
+#: admin/main.php:187\r
+msgid "Thumbnails Alignment "\r
+msgstr "Στοίχιση Μικρογραφιών"\r
+\r
+#: admin/main.php:188\r
+msgid "Thumbnails Size "\r
+msgstr "Μέγεθος Μικρογραφιών"\r
+\r
+#: admin/main.php:189\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Επιλεγμένες Εικόνες ως Εικόνες ΚΕΦΑΛΙΔΑΣ"\r
+\r
+#: admin/main.php:191\r
+msgid "Link nr. 1"\r
+msgstr "Σύνδεσμος αρ. 1"\r
+\r
+#: admin/main.php:192\r
+msgid "Link nr. 2"\r
+msgstr "Σύνδεσμος αρ. 2"\r
+\r
+#: admin/main.php:193\r
+msgid "Link nr. 3"\r
+msgstr "Σύνδεσμος αρ. 3"\r
+\r
+#: admin/main.php:194\r
+msgid "Link nr. 4"\r
+msgstr "Σύνδεσμος αρ. 4"\r
+\r
+#: admin/main.php:195\r
+msgid "Link nr. 5"\r
+msgstr "Σύνδεσμος αρ. 5"\r
+\r
+#: admin/main.php:196\r
+msgid "Socials display"\r
+msgstr "Εμφάνιση κοινωνικών δικτύων"\r
+\r
+#: admin/main.php:198\r
+msgid "Make Site Header a Link"\r
+msgstr "Κεφαλίδα Ιστοτόπου ως Σύνδεσμος"\r
+\r
+#: admin/main.php:199\r
+msgid "Breadcrumbs"\r
+msgstr "Διαδρομή"\r
+\r
+#: admin/main.php:200\r
+msgid "Pagination"\r
+msgstr "Σελιδοποίηση"\r
+\r
+#: admin/main.php:201\r
+msgid "Mobile view"\r
+msgstr "Προβολή Φορητών Συσκευών"\r
+\r
+#: admin/main.php:202\r
+msgid "FavIcon"\r
+msgstr "Favicon"\r
+\r
+#: admin/main.php:203\r
+msgid "Custom CSS"\r
+msgstr "Προσαρμοσμένος κώδικας CSS"\r
+\r
+#: admin/main.php:204\r
+msgid "Custom JavaScript"\r
+msgstr "Προσαρμοσμένος κώδικας Javascript"\r
+\r
+#: admin/main.php:205\r
+msgid "SEO Settings"\r
+msgstr "Ρυθμίσεις SEO"\r
+\r
+#: admin/main.php:222\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Συγγνώμη, δεν έχει επαρκή δικαιώματα πρόσβασης σ' αυτή τη σελίδα."\r
+\r
+#: admin/main.php:232\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Οι ρυθμίσεις του Mantra ενημέρωθηκαν επιτυχώς."\r
+\r
+#: admin/main.php:243\r
+msgid "Reset to Defaults"\r
+msgstr "Επαναφορά Προεπιλογών"\r
+\r
+#: admin/main.php:244\r
+msgid "Save Changes"\r
+msgstr "Αποθήκευση Αλλαγών"\r
+\r
+#: admin/main.php:258\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+"keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+"folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+"coffee. We love it! So if you want to help with the further development of "\r
+"the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Εδώ στην Cryout Creations (την εταιρεία ανάπτυξης του Θέματος Mantra), "\r
+"αφιερώνουμε πολλές νύχτες, μία μετά την άλλη, στην βελτίωση του θέματος "\r
+"Mantra. Διορθώνουμε αρκετές δυσλειτουργίες (που δημιουργήσαμε νωρίτερα), "\r
+"προσθέτουμε ολοένα και περισσότερες ρυθμίσεις προσαρμογής, προσπαθώντας "\r
+"ταυτόχρονα να τις διατηρούμε όσο πιο απλές γίνεται. Έπειτα... μπορεί να "\r
+"παίξουμε και λίγο αλλά να είστε σίγουροι ότι επιστρέφουμε για να διαβάσουμε "\r
+"και (στις περισσότερες περιπτώσεις) να απαντήσουμε στα μεταμεσονύχτα email "\r
+"και σχόλιά σας, να κρατήσουμε σημειώσεις και να δημιουργήσουμε σχέδια για "\r
+"πράγματα που θέλουμε να υλοποιήσουμε σε μελλοντικές εκδόσεις.</p>\n"\r
+"\t\t\t<p>Οπότε θα αναρωτιέστε: <i>Πώς τα καταφέρνουν; Πώς μπορούν να μένουν "\r
+"τόσο φρέσκιοι μετά από τόση δουλειά πάνω σ' αυτό το αναθεματισμένο θέμα; </"\r
+"i> Λοιπόν, είναι απλό. Πίνουμε πολύ καφέ. Βιομηχανικές ποσότητες ζεστού, "\r
+"βραστού καφέ. Μας αρέσει πολύ! Οπότε αν θέλετε να βοηθήστε την συνεχή "\r
+"ανάπτυξη του θέματος Mantra...</p> "\r
+\r
+#: admin/main.php:273\r
+msgid "Import/Export Settings"\r
+msgstr "Εισαγωγή/Εξαγωγή Ρυθμίσεων"\r
+\r
+#: admin/main.php:279\r
+msgid "Export Theme options"\r
+msgstr "Εξαγωγή Ρυθμίσεων Θέματος"\r
+\r
+#: admin/main.php:280\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"Τόσο εύκολο είναι: ένα 'κλικ' του ποντικιού μακρυά - η δυνατότητα να εξάγετε "\r
+"τις Ρυθμίσεις του Mantra και να τις αποθηκεύετε στον υπολογιστή σας. Νιώθετε "\r
+"πιο ασφαλείς; Θα έπρεπε!"\r
+\r
+#: admin/main.php:285\r
+msgid "Import Theme options"\r
+msgstr "Εισαγωγή Ρυθμίσεων Θέματος"\r
+\r
+#: admin/main.php:286\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+"Ελλείψει της λειτουργίας εισαγωγής η εξαγωγή θα ήταν μάταιη. Βεβαιωθείτε πως "\r
+"έχετε έτοιμο το εξαχθέν αρχείο και θα σας δούμε μετά το επόμενο κλικ."\r
+\r
+#: admin/main.php:293\r
+msgid "Mantra Latest News"\r
+msgstr "Τελευταία Νέα για το Mantra"\r
+\r
+#: admin/main.php:304\r
+msgid "No news items."\r
+msgstr "Δεν υπάρχουν νέα."\r
+\r
+#: admin/main.php:318\r
+msgid "Mantra Help"\r
+msgstr "Βοήθεια Mantra"\r
+\r
+#: admin/main.php:321\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "\r
+"version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+"expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "\r
+"your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+"Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Χρειάζεστε βοήθεια με το Mantra ή το Wordpress;</li>\n"\r
+"\t\t\t\t<li>- Θέλετε να γνωρίζετε τί αλλαγές γίνονται στο θέμα σε κάθε νέα "\r
+"έκδοση;</li>\n"\r
+"\t\t\t\t<li>- Έχετε εντοπίσει μια δυσλειτουργία ή μήπως κάτι δεν λειτουργεί "\r
+"όπως ακριβώς θα έπρεπε;</li>\n"\r
+"\t\t\t\t<li>- Έχετε μια ιδέα για τη βελτίωση του θέματος Mantra ώστε να "\r
+"ικανοποιεί περισσότερο τις ανάγκες σας;</li>\n"\r
+"\t\t\t\t<li>- Θέλετε να προστεθεί μια ρύθμιση;</li>\n"\r
+"\t\t\t\t<li>- Θέλετε να υποβάλετε μια μετάφραση για το θέμα Mantra;</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Τότε επισκεφθείτε μας στη σελίδα υποστηρίξης του Mantra.</p>\n"\r
+"\t"\r
+\r
+#: admin/main.php:332\r
+msgid "Mantra Support Page"\r
+msgstr "Σελίδα Υποστήριξης του Mantra"\r
+\r
+#: admin/settings.php:61\r
+msgid "One column (no sidebars)"\r
+msgstr "Μία στήλη (χωρίς πλευρικές στήλες)"\r
+\r
+#: admin/settings.php:62\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Δύο στήλες, η πλευρική στήλη στα δεξιά."\r
+\r
+#: admin/settings.php:63\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Δύο στήλες, η πλευρική στήλη στα αριστερά"\r
+\r
+#: admin/settings.php:64\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Τρεις στήλες, οι πλευρικές στήλες στα δεξιά"\r
+\r
+#: admin/settings.php:65\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Τρεις στήλες, οι πλευρικές στήλες στα αριστερά"\r
+\r
+#: admin/settings.php:66\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Τρεις στήλες, μία πλευρική στήλη σε κάθε πλευρά"\r
+\r
+#: admin/settings.php:81\r
+msgid "Choose your layout "\r
+msgstr "Επιλέξτε διάταξη"\r
+\r
+#: admin/settings.php:89\r
+msgid "Absolute"\r
+msgstr "Απόλυτες"\r
+\r
+#: admin/settings.php:89\r
+msgid "Relative"\r
+msgstr "Σχετικές"\r
+\r
+#: admin/settings.php:90\r
+msgid "Dimensions to use: "\r
+msgstr "Διαστάσεις:"\r
+\r
+#: admin/settings.php:189 admin/settings.php:209\r
+msgid "Content ="\r
+msgstr "Περιεχόμενο ="\r
+\r
+#: admin/settings.php:190 admin/settings.php:210\r
+msgid "Sidebar(s) ="\r
+msgstr "Πλευρική(-ές) Στήλη(-ες) ="\r
+\r
+#: admin/settings.php:191 admin/settings.php:211\r
+msgid "Total width ="\r
+msgstr "Συνολικό πλάτος ="\r
+\r
+#: admin/settings.php:200\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Επιλέξτε το πλάτος του <b>περιεχομένου</b> και της(των) <b>πλευρικής(-ών) "\r
+"στήλης(-ών)</b>. \n"\r
+" \t\tΗ περιοχή του περιεχομένου δεν μπορεί να έχει πλάτος μικρότερο των "\r
+"500px και η περιοχή της πλευρικής στήλης πρέπει να έχει πλάτος τουλάχιστον "\r
+"220px και όχι μεγαλύτερο από 800px.<br />\n"\r
+"\tΑν επιλέξετε 3 στήλες (με δύο πλευρικές στήλες) το πλάτος της κάθεμιάς θα "\r
+"είναι το ήμισυ του επιλεγμένου πλάτους."\r
+\r
+#: admin/settings.php:220\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Επιλέξτε το πλάτος του <b>περιεχομένου</b> και της(των) <b>πλευρικής(-ών) "\r
+"στήλης(-ών)</b>. \n"\r
+" \t\tΠρόκειται για σχετικές διαστάσεις - σχετικές προς τον φυλλομετρητή του "\r
+"χρήστη. Το συνολικό πλάτος είναι ένα ποσοστό του πλάτος του φυλλομετρητή."\r
+"<br />\n"\r
+"\t Αν και το περιεχόμενο δεν μπορεί να έχει πλάτος μικρότερο του 40%, η "\r
+"πλευρική στήλη έχει μέγεθος τουλάχιστον 20% και όχι πάνω από 50%.<br />\n"\r
+"\tΑν επιλέξτε 3 στήλες (με δύο πλευρικές στήλες) καθεμιά θα έχει το ήμισυ "\r
+"του επιλεγμένου πλάτους."\r
+\r
+#: admin/settings.php:244\r
+msgid ""\r
+"Select the header's height. After saving the settings go and upload your new "\r
+"header image. The header's width will be = "\r
+msgstr ""\r
+"Επιλέξτε το ύψος της κεφαλίδας. Αφού αποθηκεύσετε τις ρυθμίσεις πηγαίντε και "\r
+"μεταφορτώστε τη νέα σας εικόνα κεφαλίδας. Το πλάτος της κεφαλίδας θα είναι ="\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1353 admin/settings.php:1415 admin/settings.php:1623\r
+#: admin/settings.php:1652 admin/settings.php:1675 admin/settings.php:1698\r
+#: admin/settings.php:1747 admin/settings.php:1876 admin/settings.php:1891\r
+#: admin/settings.php:1906 admin/settings.php:1921 admin/settings.php:1963\r
+msgid "Enable"\r
+msgstr "Ενεργοποίηση"\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1353 admin/settings.php:1415 admin/settings.php:1623\r
+#: admin/settings.php:1652 admin/settings.php:1675 admin/settings.php:1698\r
+#: admin/settings.php:1747 admin/settings.php:1876 admin/settings.php:1891\r
+#: admin/settings.php:1906 admin/settings.php:1921 admin/settings.php:1963\r
+msgid "Disable"\r
+msgstr "Απενεργοποίηση"\r
+\r
+#: admin/settings.php:265\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page and "\r
+"it will replace whatever page you have selected as homepage. It has a slider "\r
+"and columns for presentation\n"\r
+"\t\ttext and images."\r
+msgstr ""\r
+"Ενεργοποίηση της σελίδας παρουσίασης. Αυτή θα γίνει η νέα σας αρχική σελίδα "\r
+"και θα αντικαταστήσει οποιαδήποτε σελίδα έχει επιλέξει ως αρχική σελίδα. "\r
+"Περιλαμβάνει έναν slider και στήλες για τη παρουσίαση \n"\r
+"\t\tκειμένου και εικόνων."\r
+\r
+#: admin/settings.php:275\r
+msgid "Slider Dimensions:"\r
+msgstr "Διαστάσεις Slider:"\r
+\r
+#: admin/settings.php:276\r
+msgid "width"\r
+msgstr "πλάτος"\r
+\r
+#: admin/settings.php:277\r
+msgid "height"\r
+msgstr "ύψος"\r
+\r
+#: admin/settings.php:278\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+"Οι διαστάσεις του slider. Βεβαιωθείτε πως οι εικόνες σας είναι του ίδιου "\r
+"μεγέθους."\r
+\r
+#: admin/settings.php:280\r
+msgid "Animation:"\r
+msgstr "Γραφική Απεικόνιση"\r
+\r
+#: admin/settings.php:282\r
+msgid "Random"\r
+msgstr "Τυχαία"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fold"\r
+msgstr "Fold"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fade"\r
+msgstr "Fade"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInRight"\r
+msgstr "SlideInRight"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInLeft"\r
+msgstr "SlideInLeft"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDown"\r
+msgstr "SliceDown"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDownLeft"\r
+msgstr "SliceDownLeft"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUp"\r
+msgstr "SliceUp"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpLeft"\r
+msgstr "SliceUpLeft"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDown"\r
+msgstr "SliceUpDown"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDownLeft"\r
+msgstr "SliceUpDownLeft"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRandom"\r
+msgstr "BoxRandom"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRain"\r
+msgstr "BoxRain"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainReverse"\r
+msgstr "BoxRainReverse"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrow"\r
+msgstr "BoxRainGrow"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrowReverse"\r
+msgstr "BoxRainGrowReverse"\r
+\r
+#: admin/settings.php:290\r
+msgid "The transition effect your slider will have."\r
+msgstr "Το εφέ μετάβασης που θα χρησιμοποιεί ο slider"\r
+\r
+#: admin/settings.php:292\r
+msgid "Border Settings:"\r
+msgstr "Ρυθμίσεις Περιγράμματος:"\r
+\r
+#: admin/settings.php:293\r
+msgid "Width"\r
+msgstr "Πλάτος"\r
+\r
+#: admin/settings.php:294\r
+msgid "Color"\r
+msgstr "Χρώμα"\r
+\r
+#: admin/settings.php:296\r
+msgid "The width and color of the slider's border."\r
+msgstr "Το πλάτος και το χρώμα του περιγράμματος του slider."\r
+\r
+#: admin/settings.php:298\r
+msgid "Animation Time:"\r
+msgstr "Χρόνος γραφικής απεικόνισης:"\r
+\r
+#: admin/settings.php:299 admin/settings.php:303\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "milliseconds (1000ms = 1 δευτερόλεπτο) "\r
+\r
+#: admin/settings.php:300\r
+msgid "The time in which the transition animation will take place."\r
+msgstr ""\r
+"Ο χρόνος εντός του οποίου πραγματοποιείται η μετάβαση της γραφικής "\r
+"απεικόνισης."\r
+\r
+#: admin/settings.php:302\r
+msgid "Pause Time:"\r
+msgstr "Χρόνος Παύσης"\r
+\r
+#: admin/settings.php:304\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Ο χρόνος που ένα slide παραμένει ακίνητο και ορατό."\r
+\r
+#: admin/settings.php:307\r
+msgid "Slider navigation:"\r
+msgstr "Πλοήγηση Slider:"\r
+\r
+#: admin/settings.php:309\r
+msgid "Numbers"\r
+msgstr "Αριθμοί"\r
+\r
+#: admin/settings.php:309\r
+msgid "Bullets"\r
+msgstr "Κουκκίδες"\r
+\r
+#: admin/settings.php:309 admin/settings.php:1259\r
+msgid "None"\r
+msgstr "Καμμία"\r
+\r
+#: admin/settings.php:317\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Ο τύπος πλοήγησης του slider. Εμφανίζεται κάτωθεν του slider."\r
+\r
+#: admin/settings.php:319\r
+msgid "Slider arrows:"\r
+msgstr "Βέλη Slider:"\r
+\r
+#: admin/settings.php:321\r
+msgid "Always Visible"\r
+msgstr "Πάντοτε Ορατό"\r
+\r
+#: admin/settings.php:321\r
+msgid "Visible on Hover"\r
+msgstr "Ορατά κατά την Υπέρπτηση του Δείκτη"\r
+\r
+#: admin/settings.php:321\r
+msgid "Hidden"\r
+msgstr "Κρυμμένα"\r
+\r
+#: admin/settings.php:329\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Τα Αριστερά και Δεξιά Βέλη του Slider"\r
+\r
+#: admin/settings.php:370 admin/settings.php:438\r
+msgid "Select Category"\r
+msgstr "Επιλέξτε Κατηγορία"\r
+\r
+#: admin/settings.php:397\r
+msgid "Custom Slides"\r
+msgstr "Προσαρμοσμένα Slides"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts"\r
+msgstr "Τελευταίες Δημοσιεύσεις"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts"\r
+msgstr "Τυχαίες Δημοσιεύσεις"\r
+\r
+#: admin/settings.php:397\r
+msgid "Sticky Posts"\r
+msgstr "Κεντρικές Δημοσιεύσεις"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts from Category"\r
+msgstr "Τελευταίες Δημοσιεύσεις Κατηγορίας"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts from Category"\r
+msgstr "Τυχαίες Δημοσιεύσεις Κατηγορίας"\r
+\r
+#: admin/settings.php:397\r
+msgid "Specific Posts"\r
+msgstr "Επιλεγμένες Δημοσιεύσεις"\r
+\r
+#: admin/settings.php:410\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Στον slider θα φορτώνονται οι τελευταίες δημοσιεύσεις."\r
+\r
+#: admin/settings.php:414\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Στον slider θα φορτώνονται τυχαίες δημοσιεύσεις."\r
+\r
+#: admin/settings.php:418\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr ""\r
+"Στον slider θα φορτώνονται οι τελευταίες δημοσιεύσεις από τις κατηγορίες που "\r
+"θα επιλέξετε."\r
+\r
+#: admin/settings.php:423\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr ""\r
+"Στον slider θα φορτώνονται τυχαίες δημοσιεύσεις από τη κατηγορία που θα "\r
+"επιλέξετε."\r
+\r
+#: admin/settings.php:427\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Μόνο Κεντρικές Δημοσιεύσεις θα φορτώνονται στον slider."\r
+\r
+#: admin/settings.php:431\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr ""\r
+"Εισάγετε τα αναγνωριστικά/ID των δημοσιεύσεων που θέλετε να προβάλετε "\r
+"(χωρισμένα με κόμμα):"\r
+\r
+#: admin/settings.php:436\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Επιλέξτε κατηγορία: "\r
+\r
+#: admin/settings.php:453\r
+msgid "Number of posts to show:"\r
+msgstr "Αριθμός δημοσιεύσεων προς εμφάνιση:"\r
+\r
+#: admin/settings.php:460\r
+msgid "Slide 1"\r
+msgstr "Slide 1"\r
+\r
+#: admin/settings.php:464 admin/settings.php:479 admin/settings.php:494\r
+#: admin/settings.php:509 admin/settings.php:524 admin/settings.php:567\r
+#: admin/settings.php:582 admin/settings.php:597 admin/settings.php:612\r
+msgid "Upload or select image from gallery"\r
+msgstr "Μεταφορτώστε ή επιλέξτε μια εικόνα από τη συλλογή"\r
+\r
+#: admin/settings.php:465 admin/settings.php:480 admin/settings.php:495\r
+#: admin/settings.php:510 admin/settings.php:525 admin/settings.php:568\r
+#: admin/settings.php:583 admin/settings.php:613\r
+msgid "Title"\r
+msgstr "Τίτλος"\r
+\r
+#: admin/settings.php:467 admin/settings.php:482 admin/settings.php:497\r
+#: admin/settings.php:512 admin/settings.php:527 admin/settings.php:570\r
+#: admin/settings.php:585 admin/settings.php:600 admin/settings.php:615\r
+msgid "Text"\r
+msgstr "Κείμενο"\r
+\r
+#: admin/settings.php:475\r
+msgid "Slide 2"\r
+msgstr "Slide 2"\r
+\r
+#: admin/settings.php:490\r
+msgid "Slide 3"\r
+msgstr "Slide 3"\r
+\r
+#: admin/settings.php:505\r
+msgid "Slide 4"\r
+msgstr "Slide 4"\r
+\r
+#: admin/settings.php:520\r
+msgid "Slide 5"\r
+msgstr "Slide 5"\r
+\r
+#: admin/settings.php:533\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"Το περιεχόμενο των slide σας. Μόνο η εικόνα είναι απαιτούμενη, όλα τα άλλα "\r
+"πεδία είναι προαιρετικά. Μόνο τα slide που περιλαμβάνουν μια εικόνα θα "\r
+"επιλεγούν και θα καταστούν ενεργά και ορατά στον slider."\r
+\r
+#: admin/settings.php:543\r
+msgid "Number of columns:"\r
+msgstr "Αριθμός στηλών:"\r
+\r
+#: admin/settings.php:553\r
+msgid "Image Height:"\r
+msgstr "Ύψος Εικόνας"\r
+\r
+#: admin/settings.php:556\r
+msgid "Read more text:"\r
+msgstr "Κείμενο 'Διαβάστε περισσότερα':"\r
+\r
+#: admin/settings.php:559\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr ""\r
+"Το κείμενο που εμφανίζεται ως σύνδεσμος κάτω από όλες τις στήλες. Μπορείτε "\r
+"να διαγράψετε το κείμενο αν δεν το χρειάζεστε."\r
+\r
+#: admin/settings.php:563\r
+msgid "1st Column"\r
+msgstr "1η Στήλη"\r
+\r
+#: admin/settings.php:578\r
+msgid "2nd Column"\r
+msgstr "2η Στήλη"\r
+\r
+#: admin/settings.php:593\r
+msgid "3rd Column"\r
+msgstr "3η Στήλη"\r
+\r
+#: admin/settings.php:608\r
+msgid "4th Column"\r
+msgstr "4η Στήλη"\r
+\r
+#: admin/settings.php:630\r
+msgid "Extra Text"\r
+msgstr "Πρόσθετο Κείμενο"\r
+\r
+#: admin/settings.php:630\r
+msgid "Top Title"\r
+msgstr "Κύριος Τίτλος"\r
+\r
+#: admin/settings.php:632\r
+msgid "Second Title"\r
+msgstr "Δευτερεύων Τίτλος"\r
+\r
+#: admin/settings.php:635\r
+msgid "Title color"\r
+msgstr "Χρώμα τίτλου"\r
+\r
+#: admin/settings.php:638\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "Χρώμα Τίτλων (Προεπιλεγμένη τιμή: 333333)"\r
+\r
+#: admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr "Συνοδευτικό Κείμενο 1"\r
+\r
+#: admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr "Συνοδευτικό Κείμενο 2"\r
+\r
+#: admin/settings.php:645\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Επιπλέον κείμενο για την αρχική σας σελίδα. Ο πρώτος τίτλος τοποθετείται "\r
+"πάνω από τον slider, ο δεύτερος τίτλος μεταξύ του slider και των στηλών και "\r
+"διατίθενται δύο ακόμη σειρές κειμένου κάτω από τις στήλες.\n"\r
+"\t\t Όλα τα πεδία είναι προαιρετικά, οπότε μπορείτε να τα αφήστε κενά αν δεν "\r
+"τα χρειάζεστε."\r
+\r
+#: admin/settings.php:651\r
+msgid "Hide areas"\r
+msgstr "Απόκρυψη περιοχών"\r
+\r
+#: admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Απόκρυψη της κεφαλίδας (εικόνας ή χρώματος υποβάθρου)"\r
+\r
+#: admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Απόκρυψη του κύριου μενού (των κύριων καρτελών πλοήγησης)"\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr "Απόκρυψη μονάδων υποσέλιδου."\r
+\r
+#: admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Απόκρυψη υποσέλιδου (περιοχή δήλωσης πνευματικών δικαιωμάτων)"\r
+\r
+#: admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Απόκρυψη του άσπρου χρώματος. Θα παραμείνει μόνο το χρώμα υποβάθρου."\r
+\r
+#: admin/settings.php:684\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Επιλέξτε τις περιοχές που θέλετε να κρύψετε στην πρώτη σελίδα."\r
+\r
+#: admin/settings.php:703\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"Επιλέξτε μέγεθος γραμματοσειράς για το ιστολόγιό σας. Επηρεάζει τις Σελίδες, "\r
+"τις Δημοσιεύσεις και τα Σχόλια. Τα Κουμπιά, οι Κεφαλίδες και τα Πλευρικά "\r
+"μενού θα παραμείνουν ως έχουν."\r
+\r
+#: admin/settings.php:747\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"Επιλέξτε την οικογένεια γραμματοσειράς που θέλετε να χρησιμοποιήσετε στο "\r
+"ιστολογιό σας. Θα επηρεάσει όλο το κείμενο που βρίσκεται εντός του "\r
+"περιεχομένου (συμπεριλαμβανομένων και των κουμπιών του μενού)."\r
+\r
+#: admin/settings.php:748 admin/settings.php:797 admin/settings.php:848\r
+#: admin/settings.php:899\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"Εναλλακτικά εισάγετε τη Γραμματοσειρά Google που επιθυμείτε παρακάτω. "\r
+"Παρακαλούμε εισάγετε μόνο το <strong>όνομα</strong> της γραμματοσειράς.<br /"\r
+"> Πχ: Marko One. Επισκεφθείτε τις <a href='http://www.google.com/webfonts' > "\r
+"γραμματοσειρές google </a> για λίγη έμπνευση."\r
+\r
+#: admin/settings.php:795\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"Επιλέξτε την οικογένεια γραμματοσειράς που θέλετε να χρησιμοποιήσετε για "\r
+"τους τίτλους. Θα επηρεάσει τους τίτλους δημοσιεύσεων και σελίδων. Επιλέξτε "\r
+"'Προεπιλογή\" και θα χρησιμοποιηθεί η γενική γραμματοσειρά που έχετε ορίσει."\r
+\r
+#: admin/settings.php:846\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"Επιλέξτε την οικογένεια γραμματοσειράς που θέλετε να χρησιμοποιούν οι "\r
+"πλευρικές στήλες. Θα επηρεαστεί το κείμενο στις πλευρικές στήλες, "\r
+"συμπεριλαμβανομένων και των μονάδων. Επιλέξτε 'Προεπιλογή' για να "\r
+"χρησιμοποιηθεί η γενική γραμματοσειρά που έχετε ορίσει."\r
+\r
+#: admin/settings.php:897\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"Επιλέξτε την οικογένεια γραμματοσειράς που θέλετε να χρησιμοποιούν οι υπο-"\r
+"κεφαλίδες (ετικέτες h2-h6). Επιλέξτε 'Προεπιλογή' για να χρησιμοποιηθεί η "\r
+"γενική γραμματοσειρά που έχετε ορίσει."\r
+\r
+#: admin/settings.php:909 admin/settings.php:924 admin/settings.php:939\r
+#: admin/settings.php:984 admin/settings.php:999 admin/settings.php:1014\r
+msgid "Default"\r
+msgstr "Προεπιλογή"\r
+\r
+#: admin/settings.php:917\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"Μέγεθος Γραμματοσειράς Κεφαλίδας Δημοσίευσης. Επιλέξτε 'Προεπιλογή' για τις "\r
+"κανονικές ρυθμίσεις (η τιμή του μεγέθους θα οριστεί βάσει του κώδικα CSS)"\r
+\r
+#: admin/settings.php:932\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"Μέγεθος Γραμματοσειράς Πλευρικής Στήλης. Επιλέξτε 'Προεπιλογή' για τις "\r
+"κανονικές ρυθμίσεις (η τιμή του μεγέθους θα οριστεί βάσει του κώδικα CSS)"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Left"\r
+msgstr "Αριστερά"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Right"\r
+msgstr "Δεξιά"\r
+\r
+#: admin/settings.php:939\r
+msgid "Justify"\r
+msgstr "Πλήρης"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Center"\r
+msgstr "Κέντρο"\r
+\r
+#: admin/settings.php:947\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"Αυτή η ρύθμιση υπερβαίνει την στοίχιση κειμένου των δημοσιεύσεων και των "\r
+"σελίδων. Επιλέξτε 'Προεπιλογή' για τις κανονικές ρυθμίσεις (η ρύθμιση θα "\r
+"παραμείνει ως έχει στις δημοσιεύσεις, τα σχόλια κοκ)."\r
+\r
+#: admin/settings.php:961\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Ορίστε το μέγεθος της εσοχής των παραγράφων."\r
+\r
+#: admin/settings.php:977\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr ""\r
+"Απενεργοποίηση της προεπιλεγμένης εσοχής κεφαλίδας και τίτλου (αριστερό "\r
+"περιθώριο)."\r
+\r
+#: admin/settings.php:992\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"Ύψος γραμμής κειμένου. Η απόσταση μεταξύ δύο γραμμών κειμένου. Επιλέξτε "\r
+"'Προεπιλογή' για τις κανονικές ρυθμίσεις (η τιμή του μεγέθους θα οριστεί "\r
+"βάσει του κώδικα CSS)."\r
+\r
+#: admin/settings.php:1007\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Η απόσταση/το διάστημα μεταξύ <i>λέξεων</i>. Επιλέξτε 'Προεπιλογή' για τις "\r
+"κανονικές ρυθμίσεις (η τιμή του μεγέθους θα οριστεί βάσει του κώδικα CSS)."\r
+\r
+#: admin/settings.php:1022\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Η απόσταση/το διάστημα μεταξύ <i>χαρακτήρων/γραμμάτων</i>. Επιλέξτε "\r
+"'Προεπιλογή' για τις κανονικές ρυθμίσεις (η τιμή του μεγέθους θα οριστεί "\r
+"βάσει του κώδικα CSS)."\r
+\r
+#: admin/settings.php:1039\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr ""\r
+"Απενεργοποίηση της προεπιλεγμένης σκίασης κειμένου στις κεφαλίδες και τους "\r
+"τίτλους. "\r
+\r
+#: admin/settings.php:1051\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Χρώμα υποβάθρου (Προεπιλεγμένη τιμή: 444444)."\r
+\r
+#: admin/settings.php:1059\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr ""\r
+"Χρώμα υποβάθρου κεφαλίδας (Προεπιλεγμένη τιμή: 333333) Μπορείτε να "\r
+"διαγράψετε το περιεχόμενο για να μην έχετε χρώμα υποβάθρου."\r
+\r
+#: admin/settings.php:1066\r
+msgid ""\r
+"Content background color (Default value is FAFAFA). Works best with really "\r
+"light colors."\r
+msgstr ""\r
+"Χρώμα υποβάθρου περιεχομένου (Προεπιλεγμένη τιμή: FAFAFA). Προτιμήστε "\r
+"φωτεινά χρώματα."\r
+\r
+#: admin/settings.php:1073\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"Χρώμα υποβάθρου του κύριου μενού (Προεπιλεγμένη τιμή: FAFAFA). Θα πρέπει να "\r
+"είναι το ίδιο χρώμα με το υπόβαθρο περιεχομένου ή κάποιο εξίσου φωτεινό."\r
+\r
+#: admin/settings.php:1081\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr ""\r
+"Χρώμα υποβάθρου υποσέλιδου-περιοχής μονάδων (Προεπιλεγμένη τιμή: 171717)."\r
+\r
+#: admin/settings.php:1089\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Χρώμα υποβάθρου υποσέλιδου (Προεπιλεγμένη τιμή: 222222)."\r
+\r
+#: admin/settings.php:1097\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Το χρώμα του τίτλου του ιστολογίου σας (Προεπιλεγμένη τιμή: 0D85CC)."\r
+\r
+#: admin/settings.php:1105\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr ""\r
+"Το χρώμα της περιγραφής του ιστολογίου σας (Προεπιλεγμένη τιμή: 222222)."\r
+\r
+#: admin/settings.php:1113\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Χρώμα Κειμένου Περιεχομένου (Προεπιλεγμένη τιμή: 333333)."\r
+\r
+#: admin/settings.php:1121\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Χρώμα συνδέσμων (Προεπιλεγμένη τιμή: 0D85CC)."\r
+\r
+#: admin/settings.php:1129\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr ""\r
+"Χρώμα Συνδέσμων κατά την Υπέρπτηση του Δείκτη (Προεπιλεγμένη τιμή: 333333)."\r
+\r
+#: admin/settings.php:1137\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Χρώμα Κειμένου Κεφαλίδας Δημοσίευσης (Προεπιλεγμένη τιμή: 333333)"\r
+\r
+#: admin/settings.php:1145\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+"Χρώμα Κειμένου Κεφαλίδας Δημοσίευσης κατά την Υπέρπτηση του Δείκτη "\r
+"(Προεπιλεγμένη τιμή: 000000)."\r
+\r
+#: admin/settings.php:1153\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr ""\r
+"Χρώμα Υποβάθρου Κεφαλίδας Πλευρικής Στήλης (Προεπιλεγμένη τιμή: 444444)."\r
+\r
+#: admin/settings.php:1162\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr ""\r
+"Χρώμα Κειμένου Κεφαλίδας Πλευρικής Στήλης (Προεπιλεγμένη τιμή: 2EA5FD)."\r
+\r
+#: admin/settings.php:1170\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Χρώμα Κειμένου Μονάδων Υποσέλιδου (Προεπιλεγμένη τιμή: 0D85CC)"\r
+\r
+#: admin/settings.php:1178\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Χρώμα Συνδέσμου Μονάδων Υποσέλιδου (Προεπιλεγμένη τιμή: 666666)."\r
+\r
+#: admin/settings.php:1186\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+"Χρώμα Συνδέσμου Μονάδων Υποσέλιδου κατά την Υπέρπτηση του Δείκτη "\r
+"(Προεπιλεγμένη τιμή: 888888)."\r
+\r
+#: admin/settings.php:1198 admin/settings.php:1259\r
+msgid "White"\r
+msgstr "Άσπρο"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Light"\r
+msgstr "Φωτεινό"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Light Gray"\r
+msgstr "Φωτεινό Γκρι"\r
+\r
+#: admin/settings.php:1198 admin/settings.php:1259\r
+msgid "Gray"\r
+msgstr "Γκρίζο"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Dark Gray"\r
+msgstr "Σκοτεινό Γκρι"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Black"\r
+msgstr "Μαύρο"\r
+\r
+#: admin/settings.php:1206\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"Αυτή η ρύθμιση αλλάζει την όψη των λεζαντών. Οι εικόνες που δεν εισάγονται "\r
+"με λεζάντες δεν θα επηρεαστούν."\r
+\r
+#: admin/settings.php:1222\r
+msgid "The border around your inserted images. "\r
+msgstr "Το περίγραμμα γύρω από τις εισαχθείσες εικόνες."\r
+\r
+#: admin/settings.php:1237\r
+msgid "The image on top of your captions. "\r
+msgstr "Η εικόνα πάνω από τις λεζάντες σας."\r
+\r
+#: admin/settings.php:1252\r
+msgid "The sidebar list bullets. "\r
+msgstr "Οι κουκκίδες λίστας της πλευρικής στήλης."\r
+\r
+#: admin/settings.php:1267\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default.<"\r
+msgstr ""\r
+"Το υπόβαθρο της περιοχής μεταδεδομένων (κάτωθεν των δημοσιεύσεων). Γκρίζο εκ "\r
+"προεπιλογής."\r
+\r
+#: admin/settings.php:1275 admin/settings.php:1291 admin/settings.php:1308\r
+#: admin/settings.php:1323 admin/settings.php:1338 admin/settings.php:1368\r
+#: admin/settings.php:1383 admin/settings.php:1399 admin/settings.php:1442\r
+#: admin/settings.php:1457 admin/settings.php:1472 admin/settings.php:1487\r
+#: admin/settings.php:1502 admin/settings.php:1517 admin/settings.php:1532\r
+#: admin/settings.php:1547\r
+msgid "Show"\r
+msgstr "Εμφάνιση"\r
+\r
+#: admin/settings.php:1275 admin/settings.php:1291 admin/settings.php:1308\r
+#: admin/settings.php:1323 admin/settings.php:1338 admin/settings.php:1368\r
+#: admin/settings.php:1399 admin/settings.php:1442 admin/settings.php:1457\r
+#: admin/settings.php:1472 admin/settings.php:1487 admin/settings.php:1502\r
+#: admin/settings.php:1517 admin/settings.php:1532 admin/settings.php:1547\r
+msgid "Hide"\r
+msgstr "Απόκρυψη"\r
+\r
+#: admin/settings.php:1283\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη ενός οριζόντιου χάρακα για το διαχωρισμό των "\r
+"δημοσιεύσεων."\r
+\r
+#: admin/settings.php:1299\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη των κουκκίδων δίπλα στις λίστες που έχετε εντός της "\r
+"περιοχής περιεχομένου (σελίδες, δημοσιεύσεις κοκ)."\r
+\r
+#: admin/settings.php:1316\r
+msgid ""\r
+"Hide or show your blog's Title and Description in the header (recommended if "\r
+"you have a custom header image with text)."\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη του Τίτλου και της Περιγραφής του ιστολογίου σας στην "\r
+"κεφαλίδα (προτείνεται η απόκρυψη αν έχετε μια προσαρμοσμένη εικόνα με "\r
+"κείμενο)."\r
+\r
+#: admin/settings.php:1331\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη των τίτλων Σελίδων σε όλες τις <i>δημιουργηθείσες</i> "\r
+"σελίδες."\r
+\r
+#: admin/settings.php:1346\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη των τίτλων των σελίδων στις Σελίδες <i> Κατηγοριών</i>."\r
+\r
+#: admin/settings.php:1361\r
+msgid "Hide table borders and background color."\r
+msgstr "Απόκρυψη περιγράμματος πίνακα και χρώματος υποβάθρου."\r
+\r
+#: admin/settings.php:1376\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"Απόκρυψη του επεξηγηματικού κειμένου κάτωθεν του πεδίου των σχολίων. Αρχίζει "\r
+"με: <i>Μπορείτε να χρησιμοποιήσετε τις ακόλουθες HTML ετικέτες και "\r
+"ιδιότητες:...</i>."\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide in posts"\r
+msgstr "Απόκρυψη στις δημοσιεύσεις"\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide in pages"\r
+msgstr "Απόκρυψη στις σελίδες"\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide everywhere"\r
+msgstr "Απόκρυψη παντού"\r
+\r
+#: admin/settings.php:1391\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"Απόκρυψη του κειμένου <b>Τα σχόλια έχουν κλείσει</b> που εμφανίζεται εκ "\r
+"προεπιλογής στις σελίδες ή στις δημοσιεύσεις όπου τα σχόλια έχουν "\r
+"απενεργοποιηθεί."\r
+\r
+#: admin/settings.php:1407\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+"Απόκρυψη του κειμένου <b>Ανενεργός σχολιασμός</b> που εμφανίζεται σε "\r
+"δημοσιεύσεις με απενεργοποιημένα τα σχόλια."\r
+\r
+#: admin/settings.php:1423\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"Ενεργοποίηση του κουμπιού 'Επιστροφής στην Κορυφή'. Το κουμπί εμφανίζεται "\r
+"κατά την κατακύλιση της σελίδας."\r
+\r
+#: admin/settings.php:1430\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"Εισάγετε προσαρμοσμένο κείμενο ή κώδικα HTML που θα εμφανίζεται στο τέλος "\r
+"του υποσελίδου σας. <br /> Μπορείτε να χρησιμοποιήστε HTML για να εισάγετε "\r
+"συνδέσμους, εικόνες και ειδικούς χαρακτήρες όπως © ."\r
+\r
+#: admin/settings.php:1450\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"Εμφάνιση ή απόκρυψη του κειμένου <strong>Αφήστε ένα σχόλιο</strong> ή "\r
+"<strong>x Σχόλια</strong> δίπλα στις δημοσιεύσεις ή στα αποσπάσματα "\r
+"δημοσιεύσεων."\r
+\r
+#: admin/settings.php:1465\r
+msgid "Hide or show the post date."\r
+msgstr "Απόκρυψη ή εμφάνιση της ημερομηνίας δημοσίευσης"\r
+\r
+#: admin/settings.php:1480\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"Εμφάνιση της ώρας δημοσίευσης μαζί με την ημερομηνία. Η ώρα δεν θα "\r
+"εμφανίζεται αν η Ημερομηνία Δημοσίευσης είναι κρυμμένη."\r
+\r
+#: admin/settings.php:1495\r
+msgid "Hide or show the post author."\r
+msgstr "Απόκρυψη ή εμφάνιση του συντάκτη της δημοσίευσης."\r
+\r
+#: admin/settings.php:1510\r
+msgid "Hide the post category."\r
+msgstr "Απόκρυψη κατηγορίας δημοσίευσης"\r
+\r
+#: admin/settings.php:1525\r
+msgid "Hide the post tags."\r
+msgstr "Απόκρυψη ετικετών δημοσίευσης"\r
+\r
+#: admin/settings.php:1540\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr ""\r
+"Απόκρυψη του κειμένου 'Προσθέστε στους σελιδοδείκτες το μόνιμο σύνδεσμο'."\r
+\r
+#: admin/settings.php:1555\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+"Απόκρυψη όλων των μεταδεδομένων των δημοσιεύσεων. Ολες οι πληροφορίες και "\r
+"περιοχές μεταδεδομένων θα αποκρύπτονται."\r
+\r
+#: admin/settings.php:1568 admin/settings.php:1583 admin/settings.php:1599\r
+msgid "Excerpt"\r
+msgstr "Απόσπασμα"\r
+\r
+#: admin/settings.php:1568 admin/settings.php:1583 admin/settings.php:1599\r
+msgid "Full Post"\r
+msgstr "Πλήρης δημοσίευση"\r
+\r
+#: admin/settings.php:1576\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"Αποσπάσματα στην αρχική σελίδα. Θα επηρεαστούν μόνο οι κανονικές "\r
+"δημοσιεύσεις. Όλοι οι υπόλοιποι τύποι δημοσίευσης (παραπλεύρως, εικόνα, "\r
+"συνομιλία, παράθεση κτλ) έχουν ειδική διαμόρφωση."\r
+\r
+#: admin/settings.php:1591\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"Επιλέξτε αν θέλετε να προβάλλεται το πλήρες περιεχόμενο των Κεντρικών "\r
+"Δημοσιεύσεών σας στην αρχική σελίδα ή μόνο τα αποσπάσματα."\r
+\r
+#: admin/settings.php:1607\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"Εμφάνιση αποσπασμάτων στις σελίδες αρχείων, κατηγοριών και αναζήτησης. Όπως "\r
+"παραπάνω, θα επηρεάζονται μόνο οι κανονικές δημοσιεύσεις."\r
+\r
+#: admin/settings.php:1615\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"Ο αριθμός των λέξεων που θα περιλαμβάνονται στο απόσπασμα. Όταν "\r
+"συμπληρώνεται αυτός ο αριθμός, το κείμενο της δημοσίευσης θα διακόπτεται από "\r
+"έναν σύνδεσμο <i>Διαβάστε περισσότερα</i> που\n"\r
+"\t\t\t\t\t\t\tθα οδηγεί τον αναγνώστη στη σελίδα της πλήρους δημοσίευσης."\r
+\r
+#: admin/settings.php:1631\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"Ενεργοποίηση της Διάταξης Περιοδικού. Αυτή η διάταξη εφαρμόζεται σε σελίδες "\r
+"που περιλαμβάνουν δημοσιεύσεις και εμφανίζει δύο δημοσιεύσεις ανά σειρά."\r
+\r
+#: admin/settings.php:1638\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr ""\r
+"Αντικαθιστά τις τρεις τελείες ('[...])' που επισυνάπτονται αυτόματα στα "\r
+"αποσπάσματα."\r
+\r
+#: admin/settings.php:1645\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr ""\r
+"Επεξεργαστείτε τον σύνδεσμο 'Διαβάστε περισσότερα' που προστίθεται στα "\r
+"αποσπάσματα των δημοσιεύσεών σας."\r
+\r
+#: admin/settings.php:1660\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr ""\r
+"Εκ προεπιλογής το Wordpress αφαιρεί όλες τις ετικέτες HTML από τα "\r
+"αποσπάσματα ("\r
+\r
+#: admin/settings.php:1691\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"Εμφάνιση των επιλεγμένων εικόνων ως μικρογραφιών στις δημοσιεύσεις. Οι "\r
+"εικόνες πρέπει να έχουν οριστεί για κάθε δημοσίευση στη περιοχή Επιλεγμένης "\r
+"Εικόνας."\r
+\r
+#: admin/settings.php:1706\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"Εμφάνιση της πρώτης εικόνας μιας δημοσίευσης ως μικρογραφία. Αν "\r
+"ενεργοποιήσετε αυτή την επιλογή, θα χρησιμοποιείται η πρώτη εικόνα της "\r
+"δημοσίευσής σας ακόμη κι αν έχετε ορίσει μια Επιλεγμένη Εικόνα για τη "\r
+"δημοσίευση."\r
+\r
+#: admin/settings.php:1722\r
+msgid "Thumbnail alignment."\r
+msgstr "Στοίχιση μικρογραφίας"\r
+\r
+#: admin/settings.php:1739\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"Το μέγεθος που θέλετε να έχουν οι μικρογραφίες (σε εικονοστοιχεία-pixels). "\r
+"Εκ προεπιλογής οι εικόνες θα αναπροσαρμοστούν με σταθερή αναλογία "\r
+"διαστάσεων. Ορίστε να περικόπτονται οι εικόνες αν θέλετε ένα ακριβές μέγεθος."\r
+\r
+#: admin/settings.php:1755\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"Εμφάνιση των Επιλεγμένων Εικόνων στις κεφαλίδες. Η κεφαλίδα θα "\r
+"αντικατασταθεί από μια επιλεγμένη εικόνα, την οποία έχετε ορίσει ως "\r
+"Επιλεγμένη στη δημοσίευσή σας\n"\r
+"\t\t\t\t\t\t\tκαι είναι μεγαλύτερη ή τουλάχιστον ίση με το τρέχον μέγεθος "\r
+"κεφαλίδας."\r
+\r
+#: admin/settings.php:1776\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"Επιλέξτε το Κοινωνικό Δίκτυο που επιθυμείτε από το μενού και εισάγετε τις "\r
+"αντίστοιχες διευθύνσεις στο πεδίο εισαγωγής (πχ: <i>http://www.facebook.com/"\r
+"yourname</i> )"\r
+\r
+#: admin/settings.php:1790\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Μπορείτε να εισάγετε μέχρι 5 κοινωνικά δίκτυα και διευθύνσεις."\r
+\r
+#: admin/settings.php:1804\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Υπάρχουν συνολικά 27 κοινωνικά δίκτυα για να διαλέξετε."\r
+\r
+#: admin/settings.php:1818\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Μπορείτε να αφήσετε όσα πεδία εισαγωγής θέλετε κενά."\r
+\r
+#: admin/settings.php:1832\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Μπορείτε να επιλέξετε τα ίδια κοινωνικά δίκτυα πάνω από μία φορά."\r
+\r
+#: admin/settings.php:1863\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr ""\r
+"Επιλέξτε τις <b>περιοχές</b> όπου θέλετε να εμφανίζονται τα εικονίδια "\r
+"κοινωνικής δικτύωσης."\r
+\r
+#: admin/settings.php:1884\r
+msgid ""\r
+"Make the site header into a clickable link that links to your index page."\r
+msgstr ""\r
+"Μετατρέψτε τη κελίδα του ιστοτόπου σε σύνδεσμο προς την σελίδα ευρετηρίου "\r
+"(index)."\r
+\r
+#: admin/settings.php:1899\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"Εμφάνιση της διαδρομής στη κορυφή της περιοχής περιεχομένου. Η διαδρομή "\r
+"είναι μια μορφή πλογήσης που δείχνει τα ίχνη της τοποθεσίας σας εντός του "\r
+"ιστοτόπου."\r
+\r
+#: admin/settings.php:1914\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"Εμφάνιση αριθμημένης σελιδοποίησης. Όπου υπάρχει πάνω από μια σελίδα, αντί "\r
+"των συνδέσμων <b>Παλαιότερες δημοσιεύσεις</b> και <b>Νεώτερες δημοσιεύσεις</"\r
+"b>, θα εμφανίζεται αριθμημένη σελιδοποίηση."\r
+\r
+#: admin/settings.php:1929\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in. "\r
+msgstr ""\r
+"Ενεργοποιήστε τη προβολή φορητών συσκευών και κάντε το Mantra ευέλικτο. Η "\r
+"διάταξη και η όψη του ιστολογίου σας θα αλλάζει ανάλογα με τη συσκευή και "\r
+"την ανάλυση στην οποία προβάλλεται."\r
+\r
+#: admin/settings.php:1939\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "Μεταφορτώστε ή επιλέξτε ένα favicon από τη συλλογή"\r
+\r
+#: admin/settings.php:1943\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+"Περιορισμοί: Πρέπει να είναι εικόνα. Πρέπει να έχει μέγιστες διαστάσεις "\r
+"64x64 εικονοστοιχεία. Προτεινόμενες επεκτάσεις: .ico και .png"\r
+\r
+#: admin/settings.php:1951\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br /> Your custom CSS will be preserved when updating the "\r
+"theme."\r
+msgstr ""\r
+"Εισάγετε τον προσαρμοσμένο κώδικα CSS εδώ. Κάθε CSS δήλωση που προστίθεται "\r
+"εδώ θα υπερβαίνει τις προεπιλεγμένες του Mantra (ακόμη και τις "\r
+"προσαρμοσμένες ρυθμίσεις που ορίζονται εδώ, στη Σελίδα Ρυθμίσεων του "\r
+"Mantra). <br /> Ο προσαρμοσμένος σας κώδικας CSS θα διατηρείται κατά την "\r
+"αναβάθμιση του θέματος."\r
+\r
+#: admin/settings.php:1958\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software)."\r
+msgstr ""\r
+"Εισάγετε τον προσαρμοσμένο κώδικα Javascript εδώ (Google Analytics και άλλα "\r
+"είδη λογισμικού ανάλυσης)."\r
+\r
+#: admin/settings.php:1971\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Ενεργοποίηση της λειτουργίας SEO του Mantra. Είναι ενεργοποιημένη εκ "\r
+"προεπιλογής και θα πρέπει να απενεργοποιείται μόνο αν χρησιμοποιείτε κάποιο "\r
+"πρόσθετο SEO. "\r
+\r
+#: admin/settings.php:1983\r
+msgid "Auto"\r
+msgstr "Αυτόματα"\r
+\r
+#: admin/settings.php:1983\r
+msgid "Manual"\r
+msgstr "Επιλεκτικά"\r
+\r
+#: includes/theme-functions.php:213\r
+msgid "Home Page"\r
+msgstr "Αρχική Σελίδα"\r
+\r
+#: includes/theme-loop.php:146\r
+msgid "says:"\r
+msgstr "λέει:"\r
+\r
+#: includes/theme-loop.php:152\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Αναμένεται ο έλεγχος του συντονιστή για τη δημοσίευση του σχολίου σας."\r
+\r
+#: includes/theme-loop.php:159\r
+msgid "at"\r
+msgstr "στο"\r
+\r
+#: includes/theme-loop.php:159 includes/theme-loop.php:176\r
+msgid "(Edit)"\r
+msgstr "(Επεξεργασία)"\r
+\r
+#: includes/theme-loop.php:176\r
+msgid "Pingback: "\r
+msgstr "Pingback: "\r
+\r
+#: includes/theme-loop.php:213\r
+msgid "By "\r
+msgstr "Από"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "Leave a comment"\r
+msgstr "Αφήστε ένα σχόλιο"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Σχόλιο"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Σχόλια"\r
+\r
+#: includes/theme-loop.php:247\r
+msgid " Bookmark the "\r
+msgstr "Προσθέστε στους σελιδοδείκτες το"\r
+\r
+#: includes/theme-loop.php:247 includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "Permalink to"\r
+msgstr "Μόνιμος σύνδεσμος στο"\r
+\r
+#: includes/theme-loop.php:247 includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "permalink"\r
+msgstr "μόνιμο σύνδεσμο"\r
+\r
+#: includes/theme-loop.php:249 includes/theme-loop.php:251\r
+msgid "Bookmark the "\r
+msgstr "Προσθέστε στους σελιδοδείκτες το"\r
+\r
+#: includes/theme-loop.php:273\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Παλαιότερες δημοσιεύσεις"\r
+\r
+#: includes/theme-loop.php:274\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Νεώτερες δημοσιεύσεις <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Σελίδα %s"\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Primary Navigation"\r
+msgstr "Κύρια Πλοήγηση"\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Top Navigation"\r
+msgstr "Πλοήγηση Κορυφής"\r
+\r
+#: includes/theme-setup.php:93\r
+msgid "Footer Navigation"\r
+msgstr "Πλοήγηση Υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:137\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:198\r
+msgid "Skip to content"\r
+msgstr "Μετάβαση στο περιεχόμενο"\r
+\r
+#: includes/theme-setup.php:224\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Πρωτεύουσα Περιοχή Μονάδων - Πλευρική Στήλη 1"\r
+\r
+#: includes/theme-setup.php:226\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Πρωτεύουσα περιοχή μονάδων - πλευρική στήλη 1"\r
+\r
+#: includes/theme-setup.php:235\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Δευτερεύουσα Περιοχή Μονάδων - Πλευρική Στήλη 1"\r
+\r
+#: includes/theme-setup.php:237\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Δευτερεύουσα περιοχή μονάδων - πλευρική στήλη 1"\r
+\r
+#: includes/theme-setup.php:246\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Τριτεύουσα Περιοχή Μονάδων - Πλευρική Στήλη 2"\r
+\r
+#: includes/theme-setup.php:248\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Τριτεύουσα περιοχή μονάδων - πλευρική στήλη 2"\r
+\r
+#: includes/theme-setup.php:257\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Τεταρτεύουσα Περιοχή Μονάδων - Πλευρική Στήλη 2"\r
+\r
+#: includes/theme-setup.php:259\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Τεταρτεύουσα περιοχή μονάδων - πλευρική στήλη 2"\r
+\r
+#: includes/theme-setup.php:268\r
+msgid "First Footer Widget Area"\r
+msgstr "Πρωτεύουσα Περιοχή Μονάδων Υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:270\r
+msgid "First footer widget area"\r
+msgstr "Πρωτεύουσα περιοχή μονάδων υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:279\r
+msgid "Second Footer Widget Area"\r
+msgstr "Δευτερεύουσα Περιοχή Μονάδων Υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:281\r
+msgid "Second footer widget area"\r
+msgstr "Δευτερεύουσα περιοχή μονάδων υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:290\r
+msgid "Third Footer Widget Area"\r
+msgstr "Τριτεύουσα Περιοχή Μονάδων Υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:292\r
+msgid "The third footer widget area"\r
+msgstr "Τριτεύουσα περιοχή μονάδων υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:301\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Τεταρτεύουσα περιοχή Μονάδων Υποσέλιδου"\r
+\r
+#: includes/theme-setup.php:303\r
+msgid "The fourth footer widget area"\r
+msgstr "Τεταρτεύουσα περιοχή μονάδων υποσέλδου"\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra Wordpress Theme 1.9.8\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-09-19 15:55+0100\n"\r
+"PO-Revision-Date: 2013-08-03 21:03+0100\n"\r
+"Last-Translator: Raúl Antón Cuadrado <raulanton@gmail.com>\n"\r
+"Language-Team: Cryout Creations <contact@htx.ro>\n"\r
+"Language: fr_FR\n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;_x;_ex;_nx;"\r
+"esc_attr__;esc_attr_e;esc_html_e\n"\r
+"X-Poedit-Basepath: ..\n"\r
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"\r
+"X-Poedit-SourceCharset: UTF-8\n"\r
+"X-Generator: Poedit 1.5.7\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "No encontrado"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr ""\r
+"Disculpenos, pero la página que pidió no se encuentra disponible. Quizás una "\r
+"búsqueda podría ayudar."\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Archivos diarioss: %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Archivos mensuales: %s"\r
+\r
+#: archive.php:27\r
+msgid "F Y"\r
+msgstr "F Y"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Archivos anuales: %s"\r
+\r
+#: archive.php:29\r
+msgid "Y"\r
+msgstr "Y"\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "Artículos archivados"\r
+\r
+#: archive.php:57 author.php:74 category.php:50 index.php:40 search.php:40\r
+#: tag.php:51 template-blog.php:36\r
+msgid "Nothing Found"\r
+msgstr "No se encontró ningún artículo"\r
+\r
+#: archive.php:61 author.php:78 category.php:54 index.php:44 tag.php:55\r
+#: template-blog.php:40\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr ""\r
+"Disculpenos, pero la página que pidió no se encuentra disponible. Intente "\r
+"buscar algún artículo relacionado."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Volver a %s"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "De"\r
+\r
+#: attachment.php:33 includes/theme-loop.php:145\r
+#, php-format\r
+msgid "View all posts by %s"\r
+msgstr "Ver todos los artículos de %s"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "Publicado"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "Talla original de %s pixels"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "Enlace a la imagen original"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:48 content-gallery.php:64 content-image.php:41\r
+#: content-link.php:48 content-page.php:22 content-quote.php:46\r
+#: content-status.php:49 content.php:76 single.php:53\r
+#: template-onecolumn.php:27\r
+msgid "Edit"\r
+msgstr "Modificar"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "Continuar leyendo"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:37\r
+#: content-gallery.php:54 content-image.php:32 content-link.php:37\r
+#: content-page.php:21 content-quote.php:36 content-status.php:40\r
+#: content.php:48 content.php:65 single.php:31 template-onecolumn.php:26\r
+msgid "Pages:"\r
+msgstr "Páginas:"\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Archivos del autor: %s"\r
+\r
+#: author.php:49 single.php:40\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "Acerca de %s"\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Archivos por categoría: %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+"Este artículo está protegido por una palabra clave. Introduzca la palabra "\r
+"clave para ver los comentarios."\r
+\r
+#: content-aside.php:16 content-chat.php:16 content-gallery.php:16\r
+#: content-gallery.php:48 content-image.php:15 content-link.php:16\r
+#: content-quote.php:14 content-status.php:15 content.php:20\r
+#, php-format\r
+msgid "Permalink to %s"\r
+msgstr "Permalink a %s"\r
+\r
+#: content-aside.php:21\r
+msgid "Aside"\r
+msgstr "Pasando"\r
+\r
+#: content-aside.php:38 content-chat.php:36 content-gallery.php:32\r
+#: content-image.php:31 content-link.php:36 content-quote.php:35\r
+#: content-status.php:39\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Continuar leyendo <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:44 content-gallery.php:61\r
+#: content-image.php:38 content-link.php:44 content-quote.php:43\r
+#: content-status.php:47 content.php:74 includes/theme-loop.php:171\r
+msgid "Tagged"\r
+msgstr "Etiquetado"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "Chat"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "Galería"\r
+\r
+#: content-gallery.php:47\r
+#, php-format\r
+msgid "This gallery contains <a %1$s>%2$s photo</a>."\r
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."\r
+msgstr[0] "Esta galería contiene <a %1$s>%2$s foto</a>."\r
+msgstr[1] "Esta galería contiene <a %1$s>%2$s fotos</a>."\r
+\r
+#: content-image.php:19 admin/settings.php:462 admin/settings.php:477\r
+#: admin/settings.php:492 admin/settings.php:507 admin/settings.php:522\r
+#: admin/settings.php:565 admin/settings.php:580 admin/settings.php:595\r
+#: admin/settings.php:610\r
+msgid "Image"\r
+msgstr "Imagen"\r
+\r
+#: content-link.php:20 admin/settings.php:469 admin/settings.php:484\r
+#: admin/settings.php:499 admin/settings.php:514 admin/settings.php:529\r
+#: admin/settings.php:572 admin/settings.php:587 admin/settings.php:602\r
+#: admin/settings.php:617\r
+msgid "Link"\r
+msgstr "Enlace"\r
+\r
+#: content-page.php:27 includes/theme-comments.php:130\r
+msgid "Comments are closed."\r
+msgstr "Los comentarios están cerrados."\r
+\r
+#: content-quote.php:19\r
+msgid "Quote"\r
+msgstr "Cita"\r
+\r
+#: content-status.php:31\r
+msgid "Status"\r
+msgstr "Estado"\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Resultado de la búsqueda de: %s"\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "No hay resultados para: %s"\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr "Ver todos los artículos de "\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Archivos por etiqueta: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr ""\r
+"Antes de poder descargar su fichero, Vd. debe corregir el error siguiente: "\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Importar las opciones del tema Mantra"\r
+\r
+#: admin/admin-functions.php:72\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"Hola. Aquí es donde Vd. puede importar las opciones del tema Mantra."\r
+"<i>Atención, se trata todavía de una función en desarrollo</i>"\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Seleccione un fichero de su ordenador:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "Tamaño máximo: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "E importar!"\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Importar las opciones del tema Mantra"\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "¡Chachi! ¡Las opciones se han importado!"\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "¡Volver a la página de opciones de Mantra y verificarlas!"\r
+\r
+#: admin/admin-functions.php:155 admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "Uyyy, hay un problemita."\r
+\r
+#: admin/admin-functions.php:156\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"El fichero subido no contiene opciones Mantra válidas. Asegurese de que el "\r
+"fichero fue exportado desde la página de opciones de Mantra"\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "El fichero subido no pudo ser leído."\r
+\r
+#: admin/admin-functions.php:168\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"El formato de fichero está sin soporte. Aseguresé que se exportó desde la "\r
+"página de Mantra y que se trata de un fichero de texto."\r
+\r
+#: admin/admin-functions.php:177\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"¡Uyyy! El fichero está vacío o simplemente no existe. Este error podría "\r
+"causarse por la inhabilitación de subidas de ficheros en el php.ini o por un "\r
+"post_max_size definido más reducido que upload_max_filesize en el php.ini."\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "Error: Vd. no está autorizado a realizar esta operación."\r
+\r
+#: admin/main.php:93\r
+msgid "Layout Settings"\r
+msgstr "Configuración de página (layout)"\r
+\r
+#: admin/main.php:94\r
+msgid "Presentation Page"\r
+msgstr "Página de presentación"\r
+\r
+#: admin/main.php:95\r
+msgid "Text Settings"\r
+msgstr "Texto"\r
+\r
+#: admin/main.php:96\r
+msgid "Color Settings"\r
+msgstr "Color"\r
+\r
+#: admin/main.php:97\r
+msgid "Graphics Settings"\r
+msgstr "Configuración gráfica"\r
+\r
+#: admin/main.php:98\r
+msgid "Post Information Settings"\r
+msgstr "Propiedades de los artículos"\r
+\r
+#: admin/main.php:99\r
+msgid "Post Excerpt Settings"\r
+msgstr "Extractos de artículos"\r
+\r
+#: admin/main.php:100\r
+msgid "Featured Image Settings"\r
+msgstr "Configuración de imagen 'featured'"\r
+\r
+#: admin/main.php:101\r
+msgid "Social Media Settings"\r
+msgstr "Configuración de Redes Sociales"\r
+\r
+#: admin/main.php:102\r
+msgid "Miscellaneous Settings"\r
+msgstr "Otras configuraciones"\r
+\r
+#: admin/main.php:104\r
+msgid "Main Layout"\r
+msgstr "Disposición global"\r
+\r
+#: admin/main.php:105\r
+msgid "Content / Sidebar Width"\r
+msgstr "Ancho de contenido y barra de desplazamiento"\r
+\r
+#: admin/main.php:106\r
+msgid "Header Image Height"\r
+msgstr "Altura de la imagen de cabecera"\r
+\r
+#: admin/main.php:108\r
+msgid "Enable Presentation Page"\r
+msgstr "Activar la página de presentación"\r
+\r
+#: admin/main.php:109\r
+msgid "Slider Settings"\r
+msgstr "Parametros de dispositivas"\r
+\r
+#: admin/main.php:110\r
+msgid "Slides"\r
+msgstr "Diapositivas"\r
+\r
+#: admin/main.php:111\r
+msgid "Presentation Page Columns"\r
+msgstr "Columnas de la página de presentación"\r
+\r
+#: admin/main.php:112\r
+msgid "Extras"\r
+msgstr "Extras"\r
+\r
+#: admin/main.php:114\r
+msgid "General Font"\r
+msgstr "Fuente de caracteres general"\r
+\r
+#: admin/main.php:115\r
+msgid "General Font Size"\r
+msgstr "Tamaño general de la fuente"\r
+\r
+#: admin/main.php:116\r
+msgid "Post Title Font "\r
+msgstr "Fuente de títulos de artículo"\r
+\r
+#: admin/main.php:117\r
+msgid "Post Title Font Size"\r
+msgstr "Tamaño de la fuente de títulos de artículo"\r
+\r
+#: admin/main.php:118\r
+msgid "Sidebar Font"\r
+msgstr "Fuente para las barras laterales"\r
+\r
+#: admin/main.php:119\r
+msgid "SideBar Font Size"\r
+msgstr "Tamaño de la fuente para las barras laterales"\r
+\r
+#: admin/main.php:120\r
+msgid "Sub-Headers Font"\r
+msgstr "Fuente para títulos de párrafo"\r
+\r
+#: admin/main.php:121\r
+msgid "Force Text Align"\r
+msgstr "Alineamiento forzado"\r
+\r
+#: admin/main.php:122\r
+msgid "Paragraph indent"\r
+msgstr "Indentación de párrafo"\r
+\r
+#: admin/main.php:123\r
+msgid "Header indent"\r
+msgstr "Indentación de título"\r
+\r
+#: admin/main.php:124\r
+msgid "Line Height"\r
+msgstr "Alto de línea"\r
+\r
+#: admin/main.php:125\r
+msgid "Word spacing"\r
+msgstr "Espaciado entre palabras"\r
+\r
+#: admin/main.php:126\r
+msgid "Letter spacing"\r
+msgstr "Espaciado entre letras"\r
+\r
+#: admin/main.php:127\r
+msgid "Text shadow"\r
+msgstr "Sombreado del texto"\r
+\r
+#: admin/main.php:129\r
+msgid "Background Color"\r
+msgstr "Color de fondo"\r
+\r
+#: admin/main.php:130\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Color de fondo para el encabezado (Banner y Menú)."\r
+\r
+#: admin/main.php:131\r
+msgid "Content Background Color"\r
+msgstr "Color de fondo para el contenido"\r
+\r
+#: admin/main.php:132\r
+msgid "Menu Background Color"\r
+msgstr "Color de fondo del menú"\r
+\r
+#: admin/main.php:133\r
+msgid "First Sidebar Background Color"\r
+msgstr "Color de fondo de la primera barra lateral"\r
+\r
+#: admin/main.php:134\r
+msgid "Second Sidebar Background Color"\r
+msgstr "Color de fondo de la segunda barra lateral"\r
+\r
+#: admin/main.php:136\r
+msgid "Site Title Color"\r
+msgstr "Color del título del site"\r
+\r
+#: admin/main.php:137\r
+msgid "Site Description Color"\r
+msgstr "Color de la descripción del site"\r
+\r
+#: admin/main.php:139\r
+msgid "Content Text Color"\r
+msgstr "Color de texto en el contenido"\r
+\r
+#: admin/main.php:140\r
+msgid "Links Color"\r
+msgstr "Colores de los vínvulos"\r
+\r
+#: admin/main.php:141\r
+msgid "Links Hover Color"\r
+msgstr "Color del hover de los enlaces"\r
+\r
+#: admin/main.php:142\r
+msgid "Post Title Color"\r
+msgstr "Color del título de los archivos"\r
+\r
+#: admin/main.php:143\r
+msgid "Post Title Hover Color"\r
+msgstr "Color del hover del título del post"\r
+\r
+#: admin/main.php:144\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Color del fondo de la cabecera de la barra lateral"\r
+\r
+#: admin/main.php:145\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Color del texto de la cabecera de la barra lateral"\r
+\r
+#: admin/main.php:146\r
+msgid "Footer Widget Background Color"\r
+msgstr "Color del fondo del pie de la barra lateral"\r
+\r
+#: admin/main.php:147\r
+msgid "Footer Background Color"\r
+msgstr "Color del fondo del pie de página"\r
+\r
+#: admin/main.php:148\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Color de texto de los títulos en los widgets de pie de página"\r
+\r
+#: admin/main.php:149\r
+msgid "Footer Widget Link Color"\r
+msgstr "Color de los enlaces en los widgets de pie de página"\r
+\r
+#: admin/main.php:150\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Color de hover en los widgets de pie de página"\r
+\r
+#: admin/main.php:152\r
+msgid "Caption Border"\r
+msgstr "Borde de las leyendas"\r
+\r
+#: admin/main.php:153\r
+msgid "Post Images Border"\r
+msgstr "Borde de imagen en los artículos"\r
+\r
+#: admin/main.php:154\r
+msgid "Caption Pin"\r
+msgstr "Pin para las leyendas (caption)"\r
+\r
+#: admin/main.php:155\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Viñetas del menú lateral."\r
+\r
+#: admin/main.php:156\r
+msgid "Meta Area Background"\r
+msgstr "Color de fondo de la zona de información"\r
+\r
+#: admin/main.php:157\r
+msgid "Post Separator"\r
+msgstr "Separador de artículos"\r
+\r
+#: admin/main.php:158\r
+msgid "Content List Bullets"\r
+msgstr "Viñetas para lista de contenido"\r
+\r
+#: admin/main.php:159\r
+msgid "Title and Description"\r
+msgstr "Título y descripción"\r
+\r
+#: admin/main.php:160\r
+msgid "Page Titles"\r
+msgstr "Títulos de página"\r
+\r
+#: admin/main.php:161\r
+msgid "Category Page Titles"\r
+msgstr "Títulos de la página de categorías"\r
+\r
+#: admin/main.php:162\r
+msgid "Hide Tables"\r
+msgstr "Esconder tablas"\r
+\r
+#: admin/main.php:163\r
+msgid "Back to Top button"\r
+msgstr "Botón de vuelta a principio de página"\r
+\r
+#: admin/main.php:164\r
+msgid "Text Under Comments"\r
+msgstr "Texto bajo los comentarios"\r
+\r
+#: admin/main.php:165\r
+msgid "Comments are closed text"\r
+msgstr "Comentarios cerrados"\r
+\r
+#: admin/main.php:166\r
+msgid "Comments off"\r
+msgstr "Comentarios inactivos"\r
+\r
+#: admin/main.php:167\r
+msgid "Insert footer copyright"\r
+msgstr "Inserción de copiright en el pie de página."\r
+\r
+#: admin/main.php:169\r
+msgid "Post Comments Link"\r
+msgstr "Enlace de comentarios de un post"\r
+\r
+#: admin/main.php:170\r
+msgid "Post Date"\r
+msgstr "Fecha de publicación"\r
+\r
+#: admin/main.php:171\r
+msgid "Post Time"\r
+msgstr "Hora de publicación"\r
+\r
+#: admin/main.php:172\r
+msgid "Post Author"\r
+msgstr "Autor del artículo"\r
+\r
+#: admin/main.php:173\r
+msgid "Post Category"\r
+msgstr "Categoría del artículo"\r
+\r
+#: admin/main.php:174\r
+msgid "Post Tags"\r
+msgstr "Etiquetas de artículo"\r
+\r
+#: admin/main.php:175\r
+msgid "Post Permalink"\r
+msgstr "Permalink del artículo"\r
+\r
+#: admin/main.php:176\r
+msgid "All Post Metas"\r
+msgstr "Infos asociadas al artículo"\r
+\r
+#: admin/main.php:178\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Extractos en página principal."\r
+\r
+#: admin/main.php:179\r
+msgid "Affect Sticky Posts"\r
+msgstr "Afectar a Sticky Posts"\r
+\r
+#: admin/main.php:180\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Extractos de artículos en los archivos y páginas de categoría"\r
+\r
+#: admin/main.php:181\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Número de palabras para los extractos de artículo"\r
+\r
+#: admin/main.php:182\r
+msgid "Magazine Layout"\r
+msgstr "Disposición (layout) tipo magazine "\r
+\r
+#: admin/main.php:183\r
+msgid "Excerpt suffix"\r
+msgstr "Terminador de extracto"\r
+\r
+#: admin/main.php:184\r
+msgid "Continue reading link text "\r
+msgstr "Texto del enlace 'Continuar leyendo'"\r
+\r
+#: admin/main.php:185\r
+msgid "HTML tags in Excerpts"\r
+msgstr "Etiquetas HTML en los extractos"\r
+\r
+#: admin/main.php:187\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Imagenes destacadas como Thumbnail de post"\r
+\r
+#: admin/main.php:188\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Selección automática de imágenes de artículos"\r
+\r
+#: admin/main.php:189\r
+msgid "Thumbnails Alignment "\r
+msgstr "Alineamiento de miniaturas (Thumbnails)"\r
+\r
+#: admin/main.php:190\r
+msgid "Thumbnails Size "\r
+msgstr "Tamaño de los Thumbnails"\r
+\r
+#: admin/main.php:191\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Imágenes destacadas como imágenes de cabecera"\r
+\r
+#: admin/main.php:193\r
+msgid "Link nr. 1"\r
+msgstr "Enlace N°1"\r
+\r
+#: admin/main.php:194\r
+msgid "Link nr. 2"\r
+msgstr "Enlace N°2"\r
+\r
+#: admin/main.php:195\r
+msgid "Link nr. 3"\r
+msgstr "Enlace N°3"\r
+\r
+#: admin/main.php:196\r
+msgid "Link nr. 4"\r
+msgstr "Enlace N°4"\r
+\r
+#: admin/main.php:197\r
+msgid "Link nr. 5"\r
+msgstr "Enlace N°5"\r
+\r
+#: admin/main.php:198\r
+msgid "Socials display"\r
+msgstr "Mostrar redes sociales"\r
+\r
+#: admin/main.php:200\r
+msgid "Make Site Header a Link"\r
+msgstr "Hacer la cabecera del site un enlace"\r
+\r
+#: admin/main.php:201\r
+msgid "Breadcrumbs"\r
+msgstr "Ayuda a la navegación"\r
+\r
+#: admin/main.php:202\r
+msgid "Pagination"\r
+msgstr "Paginación"\r
+\r
+#: admin/main.php:203\r
+msgid "Mobile view"\r
+msgstr "Vista para móviles"\r
+\r
+#: admin/main.php:204\r
+msgid "FavIcon"\r
+msgstr "Favicon"\r
+\r
+#: admin/main.php:205\r
+msgid "Custom CSS"\r
+msgstr "CSS personalizado"\r
+\r
+#: admin/main.php:206\r
+msgid "Custom JavaScript"\r
+msgstr "JavaScript personalizado"\r
+\r
+#: admin/main.php:207\r
+msgid "SEO Settings"\r
+msgstr "Parametros SEO"\r
+\r
+#: admin/main.php:224\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Los siento, pero no tienes suficientes permisos para ver esta página"\r
+\r
+#: admin/main.php:234\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Configuration de Mantr actualizada"\r
+\r
+#: admin/main.php:245\r
+msgid "Reset to Defaults"\r
+msgstr "Volver a la configuración por defecto"\r
+\r
+#: admin/main.php:246\r
+msgid "Save Changes"\r
+msgstr "Grabar las modificaciones"\r
+\r
+#: admin/main.php:260\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+"keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+"folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+"coffee. We love it! So if you want to help with the further development of "\r
+"the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Aquí, en Cryout Creations (los desarrolladores de tu tema Mantra), "\r
+"buscamos mejorar Mantra, noche tras noche. Corregimos bastantes bugs (que "\r
+"hemos creado previamente). Añadimos cada vez más opciones de configuración, "\r
+"siempre esforzándonos en dejar las cosas tan sencillas como sea posible, "\r
+"asíq ue... podremos echar una partidita o dos, pero estate seguro que "\r
+"volvemos a leer y (en la mayoría de los casos) responder tus email y "\r
+"comentarios nocturnos, tomar notas y planear lo que implementar en las "\r
+"próximas versiones.</p>\n"\r
+"\t\t\t<p>Así que podéis preguntaros: <i> Vómo lo hacen? Cómo pueden "\r
+"mantenerse tan frescos después de todo ese duro trabajo para este dichoso "\r
+"tema? </i> Bueno, amigos, es sencillo. bebemos café. Cantidades industriales "\r
+"de café calentito, humenante. ¡Nos encanta! Así que si deseas colaborar con "\r
+"la continuación del desarrollo del tema Mantra... </p>"\r
+\r
+#: admin/main.php:275\r
+msgid "Import/Export Settings"\r
+msgstr "Importación/exportación de la configuración"\r
+\r
+#: admin/main.php:281\r
+msgid "Export Theme options"\r
+msgstr "Exportar las opciones del tema"\r
+\r
+#: admin/main.php:282\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"Es así de fácil, un sólo click de ratón para exportar todas las opciones de "\r
+"tu tema Mantra y guardarlas en tu ordenador. ¿Te sientes más seguro? "\r
+"Debieras. "\r
+\r
+#: admin/main.php:287\r
+msgid "Import Theme options"\r
+msgstr "Importar las opciones del tema"\r
+\r
+#: admin/main.php:288\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+"Sin la importación, la exportación no serviría de nada. Asegurate que tienes "\r
+"a mano el fichero de exportación y nos vemos tras el click."\r
+\r
+#: admin/main.php:295\r
+msgid "Mantra Latest News"\r
+msgstr "Últimas noticias de Mantra"\r
+\r
+#: admin/main.php:306\r
+msgid "No news items."\r
+msgstr "No hay nuevos elementos."\r
+\r
+#: admin/main.php:320\r
+msgid "Mantra Help"\r
+msgstr "Ayuda de Mantra"\r
+\r
+#: admin/main.php:323\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "\r
+"version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+"expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "\r
+"your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+"Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"<ul><li>- ¿Necesitas ayuda sobre Mantra o sobre Wordpress?</li><li>- "\r
+"¿Quieres saber qué cambios se hacen al tema con cada nueva versión?</"\r
+"li><li>- ¿Has encontrado un bug o algo que no funciona como debiera?</"\r
+"li><li>- ¿Tienes una idea para mejorar el tema Mantra para que se ajuste "\r
+"mejor a tus necesidades?</li><li>- ¿Deseas que se implemente una opción?</"\r
+"li><li>-¿Has hecho o te gustaría hacer una traducción del tema Mantra?</li></"\r
+"ul><p>Entonces, ven a visitarnos a la página de suporte de Mantra.</p>"\r
+\r
+#: admin/main.php:334\r
+msgid "Mantra Support Page"\r
+msgstr "Página de soporte de Mantra"\r
+\r
+#: admin/settings.php:61\r
+msgid "One column (no sidebars)"\r
+msgstr "Una columna (sin barra lateral)"\r
+\r
+#: admin/settings.php:62\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Dos columnas. Barra lateral a la derecha"\r
+\r
+#: admin/settings.php:63\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Dos columnas. Barra lateral a la izquierda"\r
+\r
+#: admin/settings.php:64\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Tres columnas, dos barras laterales a la derecha"\r
+\r
+#: admin/settings.php:65\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "tres columnas, dos barras laterales a la izquierda"\r
+\r
+#: admin/settings.php:66\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Ttres columnas, una barra a cada lado."\r
+\r
+#: admin/settings.php:81\r
+msgid "Choose your layout "\r
+msgstr "Elige una disposición en la página"\r
+\r
+#: admin/settings.php:89\r
+msgid "Absolute"\r
+msgstr "Absoluta"\r
+\r
+#: admin/settings.php:89\r
+msgid "Relative"\r
+msgstr "Relativa"\r
+\r
+#: admin/settings.php:90\r
+msgid "Dimensions to use: "\r
+msgstr "Dimensiones:"\r
+\r
+#: admin/settings.php:189 admin/settings.php:209\r
+msgid "Content ="\r
+msgstr "Contenido ="\r
+\r
+#: admin/settings.php:190 admin/settings.php:210\r
+msgid "Sidebar(s) ="\r
+msgstr "Barra(s) Laterale(s) ="\r
+\r
+#: admin/settings.php:191 admin/settings.php:211\r
+msgid "Total width ="\r
+msgstr "Ancho total="\r
+\r
+#: admin/settings.php:200\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Selecciona el ancho de tus zonas de <b>contenido</b> y <b>barras</b>. \n"\r
+" \t\tEl ancho mínimo de la zona de contenido es de 500px. El de la zona de "\r
+"barra lateral debe estar entre 220px y 800px.<br />\n"\r
+"\tEn caso de una disposición en 3 columnas, con 2 barras laterales, cada "\r
+"barra ocupa la mitad del ancho seleccionado."\r
+\r
+#: admin/settings.php:220\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Selecciona el ancho de tus zonas de <b>contenido</b> y <b>barras</b>. \n"\r
+"\t\tEstas dimensiones son relativas al ancho de la ventana de navegación del "\r
+"usuario (ancho navegador).<br />\n"\r
+"\t El ancho de la zona de contenido no puede ser inferior al 40% del ancho "\r
+"del navegador. El de la zona de la barra lateral debe estar comprendido "\r
+"entre el 20% y el 50% del ancho del navegador.<br />\n"\r
+"\tEn el caso de una disposición en la página de 3 columnas con dos barras "\r
+"laterales, cada barra ocupa la mitad de la zona de barras."\r
+\r
+#: admin/settings.php:244\r
+msgid ""\r
+"Select the header's height. After saving the settings go and upload your new "\r
+"header image. The header's width will be = "\r
+msgstr ""\r
+"Elige el alto del encabezado. Despues de registrar el parámetro, sube al "\r
+"site una nueva imagen de encabezado. El ancho del encabezado será igual al "\r
+"ancho total del site ="\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1367 admin/settings.php:1429 admin/settings.php:1637\r
+#: admin/settings.php:1666 admin/settings.php:1689 admin/settings.php:1712\r
+#: admin/settings.php:1761 admin/settings.php:1890 admin/settings.php:1905\r
+#: admin/settings.php:1920 admin/settings.php:1935 admin/settings.php:1977\r
+msgid "Enable"\r
+msgstr "Activar"\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1367 admin/settings.php:1429 admin/settings.php:1637\r
+#: admin/settings.php:1666 admin/settings.php:1689 admin/settings.php:1712\r
+#: admin/settings.php:1761 admin/settings.php:1890 admin/settings.php:1905\r
+#: admin/settings.php:1920 admin/settings.php:1935 admin/settings.php:1977\r
+msgid "Disable"\r
+msgstr "Desactivar"\r
+\r
+#: admin/settings.php:265\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page and "\r
+"it will replace whatever page you have selected as homepage. It has a slider "\r
+"and columns for presentation\n"\r
+"\t\ttext and images."\r
+msgstr ""\r
+"Activar la página de presentación. Esta deviene la nueva página de "\r
+"bienvenida, remplazando toda página seleccionada como tal anteriormente. "\r
+"Integra una presentación en diapositivas y varias columnas para la "\r
+"presentación de texto e imágenes. "\r
+\r
+#: admin/settings.php:275\r
+msgid "Slider Dimensions:"\r
+msgstr "Dimensiones de la presentación:"\r
+\r
+#: admin/settings.php:276\r
+msgid "width"\r
+msgstr "ancho"\r
+\r
+#: admin/settings.php:277\r
+msgid "height"\r
+msgstr "alto"\r
+\r
+#: admin/settings.php:278\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+"Dimensiones de la presentación de las diapositivas. Aseguraté que las "\r
+"imagenes son de la misma talla."\r
+\r
+#: admin/settings.php:280\r
+msgid "Animation:"\r
+msgstr "Animación:"\r
+\r
+#: admin/settings.php:282\r
+msgid "Random"\r
+msgstr "Aleatorio"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fold"\r
+msgstr "Fold"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fade"\r
+msgstr "Fundido"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInRight"\r
+msgstr "Deslizar desde la derecha"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInLeft"\r
+msgstr "Deslizar desde la izquierda"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDown"\r
+msgstr "Deslizar hacia abajo y derecha"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDownLeft"\r
+msgstr "Deslizar hacia abajo e izquierda"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUp"\r
+msgstr "Delizar arriba a la derecha"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpLeft"\r
+msgstr "Delizar arriba a la izquierda"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDown"\r
+msgstr "Deslizar desde arriba y abajo a partir de la izquierda"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDownLeft"\r
+msgstr "Deslizar desde arriba y abajo a partir de la derecha"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRandom"\r
+msgstr "Cajas aleatorias"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRain"\r
+msgstr "Lluvia de cajas"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainReverse"\r
+msgstr "Lluvia de cajas 'hacia arriba'"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrow"\r
+msgstr "Los cuadrados se agrandan de arriba a abajo y hacia la derecha"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrowReverse"\r
+msgstr "Los cuadrados se agrandan de abajo a arriba y hacia la izquierda"\r
+\r
+#: admin/settings.php:290\r
+msgid "The transition effect your slider will have."\r
+msgstr "El efecto para las transiciones de la presentación."\r
+\r
+#: admin/settings.php:292\r
+msgid "Border Settings:"\r
+msgstr "Parámetros de bordes:"\r
+\r
+#: admin/settings.php:293\r
+msgid "Width"\r
+msgstr "Ancho"\r
+\r
+#: admin/settings.php:294\r
+msgid "Color"\r
+msgstr "Color"\r
+\r
+#: admin/settings.php:296\r
+msgid "The width and color of the slider's border."\r
+msgstr "Ancho y color del borde de la presentación"\r
+\r
+#: admin/settings.php:298\r
+msgid "Animation Time:"\r
+msgstr "Duración de la animación:"\r
+\r
+#: admin/settings.php:299 admin/settings.php:303\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "milisegundos (1000ms = 1 segundo)"\r
+\r
+#: admin/settings.php:300\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "Momento en que la animación de transición ocurrirá"\r
+\r
+#: admin/settings.php:302\r
+msgid "Pause Time:"\r
+msgstr "Tiempo de pausa:"\r
+\r
+#: admin/settings.php:304\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Tiempo en que cada diapositiva estará estable y visible."\r
+\r
+#: admin/settings.php:307\r
+msgid "Slider navigation:"\r
+msgstr "Navegación entre diapositivas:"\r
+\r
+#: admin/settings.php:309\r
+msgid "Numbers"\r
+msgstr "Numeros"\r
+\r
+#: admin/settings.php:309\r
+msgid "Bullets"\r
+msgstr "Marcadores"\r
+\r
+#: admin/settings.php:309 admin/settings.php:1273\r
+msgid "None"\r
+msgstr "Ningún"\r
+\r
+#: admin/settings.php:317\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Modo de navegación de la presentación. Se muestra debajo."\r
+\r
+#: admin/settings.php:319\r
+msgid "Slider arrows:"\r
+msgstr "Flechas de navegación:"\r
+\r
+#: admin/settings.php:321\r
+msgid "Always Visible"\r
+msgstr "Siempre visible"\r
+\r
+#: admin/settings.php:321\r
+msgid "Visible on Hover"\r
+msgstr "Visible al paso del ratón"\r
+\r
+#: admin/settings.php:321\r
+msgid "Hidden"\r
+msgstr "Escondido"\r
+\r
+#: admin/settings.php:329\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Las flechas izquierda y derecha en tu presentación"\r
+\r
+#: admin/settings.php:370 admin/settings.php:438\r
+msgid "Select Category"\r
+msgstr "Elige una categoría"\r
+\r
+#: admin/settings.php:397\r
+msgid "Custom Slides"\r
+msgstr "Presentación personalizada"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts"\r
+msgstr "Últimos artículos"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts"\r
+msgstr "Artículos al azar"\r
+\r
+#: admin/settings.php:397\r
+msgid "Sticky Posts"\r
+msgstr "Sticky Posts"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts from Category"\r
+msgstr "Últimos artículos de la categoría"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts from Category"\r
+msgstr "Artículos de la categoría al azar"\r
+\r
+#: admin/settings.php:397\r
+msgid "Specific Posts"\r
+msgstr "Artículos específicos"\r
+\r
+#: admin/settings.php:410\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Los últimos artículos se cargarán en la presentación."\r
+\r
+#: admin/settings.php:414\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Se cargarán en la presentación artículos al azar."\r
+\r
+#: admin/settings.php:418\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr ""\r
+"Se cargarán en la presentación los últimos artículos de la categoría que "\r
+"elijas."\r
+\r
+#: admin/settings.php:423\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr ""\r
+"Se cargarán en la presentación artículos al azar de la categoría que elijas."\r
+\r
+#: admin/settings.php:427\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Sólo se cargarán en la presentación los sticky posts."\r
+\r
+#: admin/settings.php:431\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr ""\r
+"Lista los IDs de los artículos que quieras mostrar (separados por comas):"\r
+\r
+#: admin/settings.php:436\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br/> Elige la categoría: "\r
+\r
+#: admin/settings.php:453\r
+msgid "Number of posts to show:"\r
+msgstr "Número de artículos a mostrar :"\r
+\r
+#: admin/settings.php:460\r
+msgid "Slide 1"\r
+msgstr "Diapositiva 1"\r
+\r
+#: admin/settings.php:464 admin/settings.php:479 admin/settings.php:494\r
+#: admin/settings.php:509 admin/settings.php:524 admin/settings.php:567\r
+#: admin/settings.php:582 admin/settings.php:597 admin/settings.php:612\r
+msgid "Upload or select image from gallery"\r
+msgstr "Subir o selecionar una imagen de la galería"\r
+\r
+#: admin/settings.php:465 admin/settings.php:480 admin/settings.php:495\r
+#: admin/settings.php:510 admin/settings.php:525 admin/settings.php:568\r
+#: admin/settings.php:583 admin/settings.php:613\r
+msgid "Title"\r
+msgstr "Título"\r
+\r
+#: admin/settings.php:467 admin/settings.php:482 admin/settings.php:497\r
+#: admin/settings.php:512 admin/settings.php:527 admin/settings.php:570\r
+#: admin/settings.php:585 admin/settings.php:600 admin/settings.php:615\r
+msgid "Text"\r
+msgstr "Texto"\r
+\r
+#: admin/settings.php:475\r
+msgid "Slide 2"\r
+msgstr "Diapositiva 2"\r
+\r
+#: admin/settings.php:490\r
+msgid "Slide 3"\r
+msgstr "Diapositiva 3"\r
+\r
+#: admin/settings.php:505\r
+msgid "Slide 4"\r
+msgstr "Diapositiva 4"\r
+\r
+#: admin/settings.php:520\r
+msgid "Slide 5"\r
+msgstr "Diapositiva 5"\r
+\r
+#: admin/settings.php:533\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"El contenido de tu presentación. Sólo es obligatoria la imagen, todo el "\r
+"resto de campos son facultativos. Sólo las diapositivas con una imagen "\r
+"seleccionada serán activas y visibles en la presentación."\r
+\r
+#: admin/settings.php:543\r
+msgid "Number of columns:"\r
+msgstr "Número de columnas:"\r
+\r
+#: admin/settings.php:553\r
+msgid "Image Height:"\r
+msgstr "Altura de las imágenes:"\r
+\r
+#: admin/settings.php:556\r
+msgid "Read more text:"\r
+msgstr "Texto de continuar leyendo:"\r
+\r
+#: admin/settings.php:559\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr ""\r
+"Texto del enlace que aparece bajo todas las columnas. Puedes borrar el texto "\r
+"si lo deseas."\r
+\r
+#: admin/settings.php:563\r
+msgid "1st Column"\r
+msgstr "Primera columna"\r
+\r
+#: admin/settings.php:578\r
+msgid "2nd Column"\r
+msgstr "Segunda columna"\r
+\r
+#: admin/settings.php:593\r
+msgid "3rd Column"\r
+msgstr "Tercera columna"\r
+\r
+#: admin/settings.php:608\r
+msgid "4th Column"\r
+msgstr "Cuarta columna"\r
+\r
+#: admin/settings.php:630\r
+msgid "Extra Text"\r
+msgstr "Texto suplementario"\r
+\r
+#: admin/settings.php:630\r
+msgid "Top Title"\r
+msgstr "Título superior"\r
+\r
+#: admin/settings.php:632\r
+msgid "Second Title"\r
+msgstr "Segundo título"\r
+\r
+#: admin/settings.php:635\r
+msgid "Title color"\r
+msgstr "Color de los títulos"\r
+\r
+#: admin/settings.php:638\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "Color del texto de los títulos (333333 por defecto)."\r
+\r
+#: admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr "Texto inferior 1"\r
+\r
+#: admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr "Texto inferior 2"\r
+\r
+# Raúl Antón Cuadrado\r
+#: admin/settings.php:645\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Más texto para tu página principal. El título superior se muestra bajo la "\r
+"presentación, el segundo título entre ésta y las columnas, dónde se muestran "\r
+"los textos inferiores 1 y 2. Todo es opocional, así que deja vacíos los "\r
+"campos que no te interese mostrar."\r
+\r
+#: admin/settings.php:651\r
+msgid "Hide areas"\r
+msgstr "Ocultar áreas"\r
+\r
+#: admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Ocultar el encabezado (imagen y fondo)."\r
+\r
+#: admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Ocultar el menú principal (pestañas de navegación)"\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr "Ocultar la zona de widget inferior."\r
+\r
+#: admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Ocultar el pie de página (área del copyright)"\r
+\r
+#: admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr ""\r
+"En zonas de fondo blanco, remplazar el blanco por el color de fondo elegido."\r
+\r
+#: admin/settings.php:684\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Elegir las zonas a ocultar en la primera página."\r
+\r
+#: admin/settings.php:703\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"Elegir la talla de la fuente a utilizar en el blog. Se verán afectados "\r
+"páginas, artículos (posts) y comentarios. Los botones, encabezados y los "\r
+"menús laterales permanecerán inalterados."\r
+\r
+#: admin/settings.php:747\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"Elige la fuente a utilizar en el site. Esta decisión afecta a todos los "\r
+"textos de contenido (incluyendo los botones de menú)."\r
+\r
+#: admin/settings.php:748 admin/settings.php:797 admin/settings.php:848\r
+#: admin/settings.php:899\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"O inserta tu fuente Google aquí. Por favor, inserta exclusivamente el "\r
+"<strong>nombre</strong> de la fuente. <br /> Ej: Marko One. Si quieres un "\r
+"poco de inspiración, la puedes encontrar en: <a href='http://www.google.com/"\r
+"webfonts' > Google Fonts </a>."\r
+\r
+#: admin/settings.php:795\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"Elige qué fuente usar para los títulos. Esto concierne tanto a títulos de "\r
+"artículo como de página. La elección por defecto corresponde a la fuente "\r
+"general."\r
+\r
+#: admin/settings.php:846\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"Elige la fuente de caracteres deseada para las barras laterales. Será "\r
+"afectado el texto de estas barras, inlcuyendo algunos widgets. Si dejas "\r
+"default, se utilizará la fuente general que selecciones."\r
+\r
+#: admin/settings.php:897\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"Escoger la fuente para los subtítulos (etiquetas h2-h6). Si dejas la opción "\r
+"por defecto se usará la fuente general que seleccionaste."\r
+\r
+#: admin/settings.php:909 admin/settings.php:924 admin/settings.php:939\r
+#: admin/settings.php:984 admin/settings.php:999 admin/settings.php:1014\r
+msgid "Default"\r
+msgstr "Por defecto"\r
+\r
+#: admin/settings.php:917\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"Tamaño de la fuente de los títulos de artículo. Si dejas la opción por "\r
+"defecto el tamaño se obtendrá del fijado en la hoja de estilo CSS."\r
+\r
+#: admin/settings.php:932\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"Tamaño de la fuente en las barras laterales. El tamaño por defecto es el que "\r
+"figura en la hoja de estilo CSS."\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Left"\r
+msgstr "Izquierda"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Right"\r
+msgstr "Derecha"\r
+\r
+#: admin/settings.php:939\r
+msgid "Justify"\r
+msgstr "Justificado"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Center"\r
+msgstr "Centrado"\r
+\r
+#: admin/settings.php:947\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"Esto redefine el alineamiento del texto de artículos y páginas. La opción "\r
+"por defecto corresponde a la configuración normal (el alineamiento "\r
+"corresponderá al declarado en los comentarios, artículos, etc.)."\r
+\r
+#: admin/settings.php:961\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Elige la indentación de tus párrafos."\r
+\r
+#: admin/settings.php:977\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr ""\r
+"Activar o desactivar la indentación por defecto de los títulos de artículo y "\r
+"párrafo (margen a la izquierda)."\r
+\r
+#: admin/settings.php:992\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"Tamaño del interlineado, esto es, la altura del espacio entre dos líneas de "\r
+"texto. La por defecto corresponde a la declarada en la hoja de estilos CSS."\r
+\r
+#: admin/settings.php:1007\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Espaciado entre <i>palabras</i>. Si dejas la opción por defecto éste se "\r
+"obtendrá de la hoja de estilos CSS."\r
+\r
+#: admin/settings.php:1022\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Espacio entre <i>letras</i>. El espaciado por defecto se encuentra en la "\r
+"hoja de estilos CSS."\r
+\r
+#: admin/settings.php:1039\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr ""\r
+"Activar o desactivar la sombra de texto en los títulos (de artículos, "\r
+"páginas y párrafos)."\r
+\r
+#: admin/settings.php:1051\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Color de fondo (444444 por defecto)."\r
+\r
+#: admin/settings.php:1059\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr ""\r
+"Color de fondo del encabezado (333333 por defecto). Si el campo está vacío, "\r
+"no se define ningún color específico."\r
+\r
+#: admin/settings.php:1066\r
+msgid ""\r
+"Content background color (Default value is FFFFFF). Works best with really "\r
+"light colors."\r
+msgstr ""\r
+"Color de fondo del contenido (valor por defecto FFFFFF). Funciona mejor con "\r
+"colores muy claros."\r
+\r
+#: admin/settings.php:1073\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"Color de fondo del menú principal (El valor por defecto es FAFAFA). Debiera "\r
+"ser el mismo color que el del contenido o algo un pelín más claro."\r
+\r
+#: admin/settings.php:1080 admin/settings.php:1087\r
+msgid "First sidebar background color (Default value is FFFFFF)."\r
+msgstr "Color de fondo de la primera barra lateral (FFFFFF por defecto)."\r
+\r
+#: admin/settings.php:1095\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr ""\r
+"Color de fondo de la zona de widgets de la zona inferior de página (171717 "\r
+"por defecto)."\r
+\r
+#: admin/settings.php:1103\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Color de fondo del pie de página (222222 por defecto)."\r
+\r
+#: admin/settings.php:1111\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Color del título del site (0D85CC por defecto)."\r
+\r
+#: admin/settings.php:1119\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Color de texto de la descripción del site (222222 por defecto)."\r
+\r
+#: admin/settings.php:1127\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Color de texto de la zona de contenido (333333 por defecto)."\r
+\r
+#: admin/settings.php:1135\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Color de los hipervínculos (0D85CC por defecto)."\r
+\r
+#: admin/settings.php:1143\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr ""\r
+"Color de los hipervínculos cuando se pasa el ratón por encima (333333 por "\r
+"defecto)."\r
+\r
+#: admin/settings.php:1151\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Color de texto de los títulos de artículo (333333 por defecto)."\r
+\r
+#: admin/settings.php:1159\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+"Color de los títulos de artículo cuando se pasa el ratón por encima (000000 "\r
+"por defecto)."\r
+\r
+#: admin/settings.php:1167\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr ""\r
+"Color de fondo de los títulos en las barras laterales (444444 por defecto)."\r
+\r
+#: admin/settings.php:1176\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr ""\r
+"Color de texto de los títulos de las barras laterales (2EA5FD por defecto)."\r
+\r
+#: admin/settings.php:1184\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Color de texto de los widgets del pie de página (0D85CC por defecto)."\r
+\r
+#: admin/settings.php:1192\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr ""\r
+"Color de los hipervínculos en los widgets de pie de página (666666 por "\r
+"defecto)."\r
+\r
+#: admin/settings.php:1200\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+"Color de los vínculos del pie de página cuando se pasa el ratón por encima "\r
+"(888888 por defecto)."\r
+\r
+#: admin/settings.php:1212 admin/settings.php:1273\r
+msgid "White"\r
+msgstr "Blanco"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Light"\r
+msgstr "Claro"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Light Gray"\r
+msgstr "Gris claro"\r
+\r
+#: admin/settings.php:1212 admin/settings.php:1273\r
+msgid "Gray"\r
+msgstr "Gris"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Dark Gray"\r
+msgstr "Gris oscuro"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Black"\r
+msgstr "Negro"\r
+\r
+#: admin/settings.php:1220\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"Este parametrage cambia la apariencia de las leyendas (captions). Las "\r
+"imágenes que no son dotadas de éstas no se verán afectadas."\r
+\r
+#: admin/settings.php:1236\r
+msgid "The border around your inserted images. "\r
+msgstr "El borde alrededor de tus imágenes insertadas."\r
+\r
+#: admin/settings.php:1251\r
+msgid "The image on top of your captions. "\r
+msgstr "La imagen que aparece sobre los cuadros (captions)."\r
+\r
+#: admin/settings.php:1266\r
+msgid "The sidebar list bullets. "\r
+msgstr "Marcador de elementos de lista en las barras laterales."\r
+\r
+#: admin/settings.php:1281\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default.<"\r
+msgstr ""\r
+"Fondo de la zona de info (post-metas) asociada al artículo. Gris por defecto."\r
+"<"\r
+\r
+#: admin/settings.php:1289 admin/settings.php:1305 admin/settings.php:1322\r
+#: admin/settings.php:1337 admin/settings.php:1352 admin/settings.php:1382\r
+#: admin/settings.php:1397 admin/settings.php:1413 admin/settings.php:1456\r
+#: admin/settings.php:1471 admin/settings.php:1486 admin/settings.php:1501\r
+#: admin/settings.php:1516 admin/settings.php:1531 admin/settings.php:1546\r
+#: admin/settings.php:1561\r
+msgid "Show"\r
+msgstr "Mostrar"\r
+\r
+#: admin/settings.php:1289 admin/settings.php:1305 admin/settings.php:1322\r
+#: admin/settings.php:1337 admin/settings.php:1352 admin/settings.php:1382\r
+#: admin/settings.php:1413 admin/settings.php:1456 admin/settings.php:1471\r
+#: admin/settings.php:1486 admin/settings.php:1501 admin/settings.php:1516\r
+#: admin/settings.php:1531 admin/settings.php:1546 admin/settings.php:1561\r
+msgid "Hide"\r
+msgstr "Ocultar"\r
+\r
+#: admin/settings.php:1297\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Mostrar u ocultar una linea de separación entre artículos."\r
+\r
+#: admin/settings.php:1313\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"Ocultar o mostrar los marcadores de elementos de lista en la zona de "\r
+"contenido (artículos, páginas, etc...)."\r
+\r
+#: admin/settings.php:1330\r
+msgid ""\r
+"Hide or show your blog's Title and Description in the header (recommended if "\r
+"you have a custom header image with text)."\r
+msgstr ""\r
+"Ocultar o mostrar el título y la descripción cucenta del site en el "\r
+"encabezado (se recomienda ocultar si se utiliza una imagen de encabezado con "\r
+"texto)."\r
+\r
+#: admin/settings.php:1345\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "Mostrar o no los títulos de página para cada página <i>creada</i>."\r
+\r
+#: admin/settings.php:1360\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Ocultar o mostrar los títulos de página en páginas de categoría."\r
+\r
+#: admin/settings.php:1375\r
+msgid "Hide table borders and background color."\r
+msgstr "Activar o no los bordes de tabla y el color de fondo."\r
+\r
+#: admin/settings.php:1390\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"Ocultal o mostrar el texto explicativo bajo el formulario de comentarios. "\r
+"(El que explcia las etiquetas HTML utilizables)."\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide in posts"\r
+msgstr "Ocultar en los artículos"\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide in pages"\r
+msgstr "Ocultar en las páginas."\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide everywhere"\r
+msgstr "Ocultar siempre."\r
+\r
+#: admin/settings.php:1405\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"Mostrar u ocultar el texto del mensaje <b>Comentarios cerrados</b> que "\r
+"aparece por defecto en las páginas y artículos cuya fase de comentarios "\r
+"terminó."\r
+\r
+#: admin/settings.php:1421\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+"Mostrar u ocultar el texto del mensaje <b>Comentarios desactivados</b> que "\r
+"aparece en los artículos cuyos comentarios fueron desactivados."\r
+\r
+#: admin/settings.php:1437\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"Activar o desactivar el botón de volver arriba. Este botón aparece en la "\r
+"zona baja de la página tras un desplazamiento abajo de la página."\r
+\r
+#: admin/settings.php:1444\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"Insertar texto o html personalizado para que aparezca en el pie de página. "\r
+"<br /> Puedes utilizar HTML para insertar enlaces, imágenes o caracteres "\r
+"especiales como ©."\r
+\r
+#: admin/settings.php:1464\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"Mostrar u ocultar la opción <strong>Dejar un comentario</strong> o "\r
+"<strong>Comentarios</strong> al lado del artículo o el resumen."\r
+\r
+#: admin/settings.php:1479\r
+msgid "Hide or show the post date."\r
+msgstr "Mostrar u ocultar la fecha de publicación."\r
+\r
+#: admin/settings.php:1494\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"Mostrar u ocultar la hora de publicación con la fecha. La hora no puede "\r
+"mostrarse si no se muestra la fecha."\r
+\r
+#: admin/settings.php:1509\r
+msgid "Hide or show the post author."\r
+msgstr "Mostrar u ocultar el autor del post."\r
+\r
+#: admin/settings.php:1524\r
+msgid "Hide the post category."\r
+msgstr "Mostrar u ocultar la categoría del artículo."\r
+\r
+#: admin/settings.php:1539\r
+msgid "Hide the post tags."\r
+msgstr "Mostrar u ocultar las etiquetas de los artículos."\r
+\r
+#: admin/settings.php:1554\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "Mostrar u ocultar el texto para hacer bookmark del permalink."\r
+\r
+#: admin/settings.php:1569\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+"Ocultar todos los metas de los artículos. Toda las áreas de meta-información "\r
+"se ocultarán."\r
+\r
+#: admin/settings.php:1582 admin/settings.php:1597 admin/settings.php:1613\r
+msgid "Excerpt"\r
+msgstr "Resumen"\r
+\r
+#: admin/settings.php:1582 admin/settings.php:1597 admin/settings.php:1613\r
+msgid "Full Post"\r
+msgstr "Artículo completo"\r
+\r
+#: admin/settings.php:1590\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"Resumenes en la página principal. Sólo los artículos de tipo estándar se "\r
+"verán afectados. El resto de formatos, se muestran de un modo específico."\r
+\r
+#: admin/settings.php:1605\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"Elije la forma en que los artículos sticky post serán visibles en la página "\r
+"principal (resumen o en su totalidad)."\r
+\r
+#: admin/settings.php:1621\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"Resumenes en archivos, categorías y páginas de búsqeuda. Como el anterior, "\r
+"sólo se verán afectados los artículos de tipo estándar."\r
+\r
+#: admin/settings.php:1629\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"Número de palabras de los resúmenes. Cuando se llega a este número se "\r
+"interrumpe con un vínculo 'continuar leyendo' que lleva al artículo completo."\r
+\r
+#: admin/settings.php:1645\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"Activar la presentación magazine. Esta presentación se aplica a páginas con "\r
+"artículos y muestra 2 por fila. "\r
+\r
+#: admin/settings.php:1652\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr ""\r
+"Definir una cadena que se añada al final de los resúmenes (por defecto, "\r
+"puntos suspensivos)."\r
+\r
+#: admin/settings.php:1659\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr ""\r
+"Definir el texto del enlace de fin de resumen conduciendo a la totalidad del "\r
+"artículo."\r
+\r
+#: admin/settings.php:1674\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr "Por defecto, Wordpress elimina las etiquetas HTML ("\r
+\r
+#: admin/settings.php:1705\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"Muestra Featured images como thumbnails en los artículos. Las imágenes se "\r
+"seleccionaran por cada post en la sección 'Featured Image'."\r
+\r
+#: admin/settings.php:1720\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"Muestra la primera imagen insertada en el artículo como thumbnail. Si "\r
+"habilitas esta opción, la primera imagen del post será utilizada incluso si "\r
+"seleccionas una featured Image."\r
+\r
+#: admin/settings.php:1736\r
+msgid "Thumbnail alignment."\r
+msgstr "Alineamiento de thumbnails."\r
+\r
+#: admin/settings.php:1753\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"El tamaño que desee para las viñetas (en píxeles). Por defecto las imágenes "\r
+"mantendrán el ratio de dimensión. También puedes elegir la opción recortar "\r
+"(crop) si deseas un tamaño exacto."\r
+\r
+#: admin/settings.php:1769\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"Muestra imágenes asociadas en las cabeceras. La cabecera será remplazada con "\r
+"una imagen seleccionada en el artículo y si es mayor o al menos igual que el "\r
+"tamaño actual de cabecera."\r
+\r
+#: admin/settings.php:1790\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"Elegir una red social del menú desplegable e introducir la dirección que "\r
+"corresponda (ej: <i>http://www.facebook.com/nombre</i>)"\r
+\r
+#: admin/settings.php:1804\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Puedes insertar referencias hasta a 5 redes sociales."\r
+\r
+#: admin/settings.php:1818\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Elegir una de las 27 redes sociales disponibles."\r
+\r
+#: admin/settings.php:1832\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Puedes dejar cualquier campo vacío."\r
+\r
+#: admin/settings.php:1846\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Se puede elegir varias veces la misma red social."\r
+\r
+#: admin/settings.php:1877\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr ""\r
+"Elige la zona o las zonas en las que mostrar los iconos de las redes "\r
+"sociales elegidas."\r
+\r
+#: admin/settings.php:1898\r
+msgid ""\r
+"Make the site header into a clickable link that links to your index page."\r
+msgstr "Hacer que la cabecera sea un enlace clicable a la página principal."\r
+\r
+#: admin/settings.php:1913\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"Mostrar una ayuda a la navegación sobre la zona de contenido. Esta ayuda "\r
+"muestra una traza del camino reciente en el site."\r
+\r
+#: admin/settings.php:1928\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"Mostrar paginación numerada. Si hay más de una página usar ésta en lugar de "\r
+"los textos <b>artículos precedentes</b> y <b>artículos posteriores</b>. "\r
+\r
+#: admin/settings.php:1943\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in. "\r
+msgstr ""\r
+"Activar la versión para dispositivo móvil. La disposición y el look "\r
+"cambiarán dependiendo del dispositivo y su resolución."\r
+\r
+#: admin/settings.php:1953\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "Subir un favicon o seleccionarlo de la galería."\r
+\r
+#: admin/settings.php:1957\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+"Limitaciones: debe de ser una imagen con talla máxima de 64x64 píxeles. La "\r
+"extensión recomendada es .ico ou .png."\r
+\r
+#: admin/settings.php:1965\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br /> Your custom CSS will be preserved when updating the "\r
+"theme."\r
+msgstr ""\r
+"Inserta aquí tu hoja de estilos CSS. Toda declaración CSS hecha aquí "\r
+"prevalecerá sobre aquellas del tema Mantra, incluidas las que estén "\r
+"originadas en la parametrización del tema."\r
+\r
+#: admin/settings.php:1972\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software)."\r
+msgstr ""\r
+"Inserta tu JavaScript propio aquí. (Google Analytics y otros códigos de SW "\r
+"de análisis)."\r
+\r
+#: admin/settings.php:1985\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Activar la optimización Mantra para motores de búsqueda. Por defecto lo está "\r
+"y debiera ser desactivado sólo en el caso de que estés usando un plugin SEO."\r
+\r
+#: admin/settings.php:1997\r
+msgid "Auto"\r
+msgstr "Automatico"\r
+\r
+#: admin/settings.php:1997\r
+msgid "Manual"\r
+msgstr "Manual"\r
+\r
+#: includes/theme-comments.php:28\r
+msgid "says:"\r
+msgstr "dice:"\r
+\r
+#: includes/theme-comments.php:34\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Tu comentario está esperando a ser moderado."\r
+\r
+#: includes/theme-comments.php:41\r
+msgid "at"\r
+msgstr "en"\r
+\r
+#: includes/theme-comments.php:41 includes/theme-comments.php:58\r
+msgid "(Edit)"\r
+msgstr "(Modificar"\r
+\r
+#: includes/theme-comments.php:58\r
+msgid "Pingback: "\r
+msgstr "Pingback:"\r
+\r
+#: includes/theme-comments.php:82\r
+msgid "Leave a comment"\r
+msgstr "¡Comenta!"\r
+\r
+#: includes/theme-comments.php:82\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Comentario"\r
+\r
+#: includes/theme-comments.php:82\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Comentarios"\r
+\r
+#: includes/theme-comments.php:90\r
+#, php-format\r
+msgid "One Response to %2$s"\r
+msgid_plural "%1$s Responses to %2$s"\r
+msgstr[0] "Una reacción a %2$s"\r
+msgstr[1] "%1$s reacciones a %2$s"\r
+\r
+#: includes/theme-comments.php:103\r
+msgid "Older Comments"\r
+msgstr "Comentarios anteriores"\r
+\r
+#: includes/theme-comments.php:104\r
+msgid "Newer Comments"\r
+msgstr "Comentarios más recientes"\r
+\r
+#: includes/theme-functions.php:218\r
+msgid "Home Page"\r
+msgstr "Página principal (Home page)"\r
+\r
+#: includes/theme-functions.php:283\r
+msgid "Semantic Personal Publishing Platform"\r
+msgstr "Semantic Personal Publishing Platform "\r
+\r
+#: includes/theme-loop.php:143\r
+msgid "By "\r
+msgstr "Por"\r
+\r
+#: includes/theme-loop.php:171\r
+msgid " Bookmark the "\r
+msgstr "Enlace para bookmark : "\r
+\r
+#: includes/theme-loop.php:171 includes/theme-loop.php:173\r
+#: includes/theme-loop.php:175\r
+msgid "Permalink to"\r
+msgstr "Permalink a"\r
+\r
+#: includes/theme-loop.php:171 includes/theme-loop.php:173\r
+#: includes/theme-loop.php:175\r
+msgid "permalink"\r
+msgstr "permalink"\r
+\r
+#: includes/theme-loop.php:173 includes/theme-loop.php:175\r
+msgid "Bookmark the "\r
+msgstr "Bookmark : "\r
+\r
+#: includes/theme-loop.php:197\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Artículos precedentes"\r
+\r
+#: includes/theme-loop.php:198\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Artículos posteriores <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Página %s"\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Primary Navigation"\r
+msgstr "Navegación principal"\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Top Navigation"\r
+msgstr "Navegación superior"\r
+\r
+#: includes/theme-setup.php:93\r
+msgid "Footer Navigation"\r
+msgstr "Navegación en pie de página"\r
+\r
+#: includes/theme-setup.php:137\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:198\r
+msgid "Skip to content"\r
+msgstr "Pasar al contenido directamente"\r
+\r
+#: includes/theme-setup.php:224\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Área de widget primaria - Barra Lateral 1"\r
+\r
+#: includes/theme-setup.php:226\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Área de widget primaria - Barra Lateral 1"\r
+\r
+#: includes/theme-setup.php:235\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Área de widget secundaria - Barra Lateral 1"\r
+\r
+#: includes/theme-setup.php:237\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Área de widget secundaria - Barra Lateral 1"\r
+\r
+#: includes/theme-setup.php:246\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Tercer área de widget - Barra Lateral 2"\r
+\r
+#: includes/theme-setup.php:248\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Tercer área de widget - Barra Lateral 2"\r
+\r
+#: includes/theme-setup.php:257\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Cuarta área de widget - Barra Lateral 2"\r
+\r
+#: includes/theme-setup.php:259\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Cuarta área de widget - Barra Lateral 2"\r
+\r
+#: includes/theme-setup.php:268\r
+msgid "First Footer Widget Area"\r
+msgstr "Primera zona de widget de pie de página."\r
+\r
+#: includes/theme-setup.php:270\r
+msgid "First footer widget area"\r
+msgstr "Primera zona de widget de pie de página."\r
+\r
+#: includes/theme-setup.php:279\r
+msgid "Second Footer Widget Area"\r
+msgstr "Segunda zona de widget de pie de página."\r
+\r
+#: includes/theme-setup.php:281\r
+msgid "Second footer widget area"\r
+msgstr "Segunda zona de widget de pie de página."\r
+\r
+#: includes/theme-setup.php:290\r
+msgid "Third Footer Widget Area"\r
+msgstr "Tercera zona de widget de pie de página."\r
+\r
+#: includes/theme-setup.php:292\r
+msgid "The third footer widget area"\r
+msgstr "Tercera zona de widget de pie de página."\r
+\r
+#: includes/theme-setup.php:301\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Cuarta zona de widget de pie de página."\r
+\r
+#: includes/theme-setup.php:303\r
+msgid "The fourth footer widget area"\r
+msgstr "Cuarta zona de widget de pie de página."\r
+\r
+#~ msgid "Sorry - nothing to found."\r
+#~ msgstr "Désoler - rien à chercher."\r
+\r
+#~ msgid "Image "\r
+#~ msgstr "Image"\r
+\r
+#~ msgid "See photo »"\r
+#~ msgstr "Voir la photo »"\r
+\r
+#~ msgid "Archives"\r
+#~ msgstr "Archives"\r
+\r
+#~ msgid "Meta"\r
+#~ msgstr "Meta"\r
+\r
+#~ msgid "Featured"\r
+#~ msgstr "Mis en avant"\r
+\r
+#~ msgid "Previous post link"\r
+#~ msgstr "Lien pour l'article préccédent"\r
+\r
+#~ msgid "Next post link"\r
+#~ msgstr "Lien pour l'article suivant"\r
+\r
+#~ msgid "The size you want the thumbnails to have (in pixels)."\r
+#~ msgstr "Définir la taille (en pixels) que doit avoir une réduction d'image."\r
+\r
+#~ msgid "<span>Pages:</span>"\r
+#~ msgstr "<span>Pages:</span>"\r
+\r
+#~ msgid ""\r
+#~ "Upload your Fav Icon<br />Limitations: It has to be an image and it can't "\r
+#~ "be bigger than 20Kb. All uploaded files will \r\n"\r
+#~ "be found in the <b>mantra/uploads/</b> folder."\r
+#~ msgstr ""\r
+#~ "Télécharger sur le site votre favicon.<br />Attention : il doit s'agir "\r
+#~ "d'une image dont la taille doit être inférieure à 20 Ko. Tout fichier "\r
+#~ "ainsi téléchargé est stocké dans le dossier <b>mantra/uploads/</b>."\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra Wordpress Themes - Fa-IR\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-08-31 16:33+0330\n"\r
+"PO-Revision-Date: 2012-09-02 20:22+0330\n"\r
+"Last-Translator: Sajjad <sajjad.designing@gmail.com>\n"\r
+"Language-Team: Wp-Parsi <sajjad.designing@gmail.com>\n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;e_\n"\r
+"X-Poedit-Basepath: E:\\Localhost\\Blog\\wp-content\\themes\\mantra\n"\r
+"Plural-Forms: http://forum.wp-parsi.com/ , http://helical-graph.ir/\n"\r
+"X-Poedit-Language: Persian\n"\r
+"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"\r
+"X-Poedit-SourceCharset: utf-8\n"\r
+"X-Poedit-SearchPath-0: E:\\Localhost\\Blog\\wp-content\\themes\\mantra\n"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/404.php:17\r
+msgid "Not Found"\r
+msgstr "یافت نشد"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/404.php:19\r
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."\r
+msgstr "خیلی متاسفیم ولی صفحه مورد نظر شما یافت نشد ! شاید با جستجو بتوانید به نتیجه برسید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "آرشیو روزانه %s"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "آرشیو ماهانه %s"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "آرشیو ماهانه %s"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "آرشیو سایت"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/archive.php:57\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/author.php:74\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/category.php:50\r
+msgid "Nothing Found"\r
+msgstr "بدون نتیجه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/archive.php:61\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/author.php:78\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/category.php:54\r
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."\r
+msgstr "خیلی متاسفیم ولی هیچ نتیجه ای برای آرشیو در خواست شده توسط شما یافت نشد. لطفا از طریق جستجو اقدام کنید تا بتوانید به نتیجه های مشابه دست پیدا کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "بازگشت به %s"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/attachment.php:29\r
+msgid "By"\r
+msgstr "توسط"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/attachment.php:40\r
+msgid "Published"\r
+msgstr "انتشار"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "تمام صفحه در سایز %s پیکسل"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "لینک به عکس تمام صفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/attachment.php:60\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/attachment.php:107\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-aside.php:48\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-chat.php:48\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-gallery.php:64\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-image.php:41\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-link.php:48\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-page.php:22\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-quote.php:46\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-status.php:49\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content.php:85\r
+msgid "Edit"\r
+msgstr "ویرایش"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "ادامه مطلب"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/attachment.php:101\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-aside.php:39\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-chat.php:37\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-gallery.php:54\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-image.php:32\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-link.php:37\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-page.php:21\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-quote.php:36\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-status.php:40\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content.php:57\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content.php:74\r
+msgid "Pages:"\r
+msgstr "صفحه : "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "آرشیو نویسنده %s "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "درباره ی %s "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "آرشیو دسته بندی ها %s "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/comments.php:18\r
+msgid "This post is password protected. Enter the password to view any comments."\r
+msgstr "این پست محافظت شده است برای دیدن آن و ارسال نظر پسورد خود را وارد کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/comments.php:41\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/comments.php:60\r
+msgid "Older Comments"\r
+msgstr "نظرات قدیمی تر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/comments.php:42\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/comments.php:61\r
+msgid "Newer Comments"\r
+msgstr "نظرات جدیدتر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/comments.php:72\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr "نظرات بسته شده است."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-aside.php:21\r
+msgid "Aside"\r
+msgstr "کنار"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-aside.php:38\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-chat.php:36\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-gallery.php:32\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-image.php:31\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-link.php:36\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-quote.php:35\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-status.php:39\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "ادامه مطلب <span class=\"meta-nav\">→</span>"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-aside.php:46\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-chat.php:44\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-gallery.php:61\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-image.php:38\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-link.php:44\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-quote.php:43\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-status.php:47\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content.php:83\r
+msgid "Tagged"\r
+msgstr "برچسب خورده :"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-chat.php:20\r
+msgid "Chat"\r
+msgstr "گفتگو"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "گالری"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-image.php:19\r
+msgid "Image"\r
+msgstr "عکس ها "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-link.php:20\r
+msgid "Link"\r
+msgstr "لینک"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-quote.php:19\r
+msgid "Quote"\r
+msgstr "پاسخ"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/content-status.php:31\r
+msgid "Status"\r
+msgstr "وضعیت"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/header.php:101\r
+msgid "Skip to content"\r
+msgstr "دسترسی به محتوا"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "نتیجه جستجو برای کلمه %s"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "هیچ نتیجه ای برای کلمه مقابل یافت نشد : %s"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/sidebar.php:35\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/sidebar.php:92\r
+msgid "Archives"\r
+msgstr "آرشیو"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/sidebar.php:42\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/sidebar.php:99\r
+msgid "Meta"\r
+msgstr "متاتگ"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/single.php:44\r
+msgid "View all posts by "\r
+msgstr "دیدن تمام پست های ارسال شده توسط"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "برچسب های آرشیو %s"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:62\r
+msgid "Before you can upload your import file, you will need to fix the following error:"\r
+msgstr "قبل از این که شما بتوانید فایل های مهم خود را آپلود کنید باید ارورهای ذکر شده را رفع کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "تنظیمات مهم قالب Mantra"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:72\r
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"\r
+msgstr "سلام این جا مکانی است که شما تنظیمات مهم قالب Mantra را انجام میدهید. لطفا توجه داشته باشید که تغییرات در گزینه های کاملا تجربی است."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "فایلی را از رایانه خود انتخاب کنید"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "حداکثر سایز فایل %s"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "وارد کردن ! "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "تنظیمات قالب را درون ریزی کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "تبریک ! تمام تنظیمات با موفقیت ذخیره شد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "به تنظیمات قالب برگردید و تمام آن ها را چک کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:155\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:161\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "اوه ! مشکل کوچکی وجود دارد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:156\r
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."\r
+msgstr "فایل درون ریزی شده توسط شما معتبر نیست ! لطفا اطمینان حاصل کنید که تنظیمات حتما از قالب Mantra برون ریزی شده باشد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "فایل آپلود شده قالب خواندن نیست."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:168\r
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."\r
+msgstr "فایل آپلود شده پشتبانی نمیشود. اطمینان حاصل کنید فایل از قالب Mantra برون ریزی شده باشد و همچنین فایل به صورت پرونده نوشتاری باشد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:177\r
+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."\r
+msgstr "اوه ! این فایل خالی است یا این که فایلی نیست . این خطا اغلب به این دلیل است که در تنظیمات فایل php.ini آپلود غیر فعال شده باشد یا این که حجم آپلود در تنظیمات php.ini تعریف شده باشد. "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "خطا : شما مجاز به انجام این عملیات نیستید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:93\r
+msgid "Layout Settings"\r
+msgstr "تنظیمات چیدمان"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:94\r
+msgid "Presentation Page"\r
+msgstr "صفحه مطالب"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:95\r
+msgid "Text Settings"\r
+msgstr "تنظیمات متن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:96\r
+msgid "Color Settings"\r
+msgstr "تنظیمات رنگ "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:97\r
+msgid "Graphics Settings"\r
+msgstr "تنظیمات گرافیکی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:98\r
+msgid "Post Information Settings"\r
+msgstr "تنظیمات مربوط به اطلاعات نوشته ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:99\r
+msgid "Post Excerpt Settings"\r
+msgstr "تنظیمات مربوط به خلاصه نوشته ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:100\r
+msgid "Featured Image Settings"\r
+msgstr "تنظیمات عکس های ویژه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:101\r
+msgid "Social Media Settings"\r
+msgstr "تنظیمات مربوط به رسانه های اجتماعی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:102\r
+msgid "Miscellaneous Settings"\r
+msgstr "تنظیمات متفرقه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:104\r
+msgid "Main Layout"\r
+msgstr "چیدمان اصلی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:105\r
+msgid "Content / Sidebar Width"\r
+msgstr "عرض نوار کناری و محتوا"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:106\r
+msgid "Header Image Height"\r
+msgstr "طول عکس سربرگ"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:108\r
+msgid "Enable Presentation Page"\r
+msgstr "فعال کردن صفحه معرفی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:109\r
+msgid "Slider Settings"\r
+msgstr "تنظیمات اسلایدر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:110\r
+msgid "Slides"\r
+msgstr "اسلایدر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:111\r
+msgid "Presentation Page Columns"\r
+msgstr "ستون های صفحه نوشته ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:112\r
+msgid "Extras"\r
+msgstr "موارد بیشتر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:114\r
+msgid "General Font"\r
+msgstr "قلم عمومی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:115\r
+msgid "General Font Size"\r
+msgstr "سایز قلم عمومی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:116\r
+msgid "Post Title Font "\r
+msgstr "قلم عنوان پست ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:117\r
+msgid "Post Title Font Size"\r
+msgstr "سایز قلم عنوان پست ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:118\r
+msgid "Sidebar Font"\r
+msgstr "قلم سایدبار"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:119\r
+msgid "SideBar Font Size"\r
+msgstr "سایز قلم سایدبار"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:120\r
+msgid "Sub-Headers Font"\r
+msgstr "قلم زیرصفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:121\r
+msgid "Force Text Align"\r
+msgstr "جهت نوشته ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:122\r
+msgid "Paragraph indent"\r
+msgstr "تورفتگی پاراگراف"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:123\r
+msgid "Header indent"\r
+msgstr "نسبت تو رفتگی سربرگ (هیدر) "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:124\r
+msgid "Line Height"\r
+msgstr "ارتفاع خط"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:125\r
+msgid "Word spacing"\r
+msgstr "فاصله کلمات"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:126\r
+msgid "Letter spacing"\r
+msgstr "فاصله حروف"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:127\r
+msgid "Text shadow"\r
+msgstr "سایه متن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:129\r
+msgid "Background Color"\r
+msgstr "رنگ پس زمینه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:130\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "رنگ پس زمینه سربرگ ( بنر و منو ها )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:131\r
+msgid "Content Background Color"\r
+msgstr "رنگ پس زمینه ی محتوا"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:132\r
+msgid "Menu background color"\r
+msgstr "رنگ پس زمینه منوها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:134\r
+msgid "Site Title Color"\r
+msgstr "رنگ عنوان سایت"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:135\r
+msgid "Site Description Color"\r
+msgstr "رنگ توضیحات اصلی سایت"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:137\r
+msgid "Content Text Color"\r
+msgstr "رنگ نوشته های محتوا"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:138\r
+msgid "Links Color"\r
+msgstr "رنگ لینک ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:139\r
+msgid "Links Hover Color"\r
+msgstr "رنگ لینک ها وقتی ماوس روی آن ها قرار میگیرید"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:140\r
+msgid "Post Title Color"\r
+msgstr "رنگ عناوین پست ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:141\r
+msgid "Post Title Hover Color"\r
+msgstr "رنگ عناوین پست ها زمین قرار گیری ماوس روی آن ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:142\r
+msgid "Sidebar Header Background Color"\r
+msgstr "رنگ پس زمینه ی سربرگ سایدبار"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:143\r
+msgid "Sidebar Header Text Color"\r
+msgstr "رنگ نوشته های سربرگ سایدبار"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:144\r
+msgid "Footer Widget Background Color"\r
+msgstr "رنگ پس زمینه ی پاصفحه ابزارک ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:145\r
+msgid "Footer Background Color"\r
+msgstr "رنگ زمینه ی پاصفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:146\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "رنگ نوشته های پاصفحه ابزارک ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:147\r
+msgid "Footer Widget Link Color"\r
+msgstr "رنگ لینک های پا صفحه ابزارک ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:148\r
+msgid "Footer Widget Hover Color"\r
+msgstr "رنگ ابزار پا صفحه زمان قرار گیری ماوس روی آن ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:150\r
+msgid "Caption Border"\r
+msgstr "کادر عناوین"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:151\r
+msgid "Post Images Border"\r
+msgstr "قاب عکس های قرار گرفته در پست ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:152\r
+msgid "Caption Pin"\r
+msgstr "نوع سنجاق"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:153\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "گلوله های توپی منوی سایدر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:154\r
+msgid "Meta Area Background"\r
+msgstr "متای محیط پس زمینه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:155\r
+msgid "Post Separator"\r
+msgstr "جدا کننده ی پست "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:156\r
+msgid "Content List Bullets"\r
+msgstr "گلوله های توپی لیست در محتوای پست"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:157\r
+msgid "Title and Description"\r
+msgstr "عنوان و توضیحات"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:158\r
+msgid "Page Titles"\r
+msgstr "عنوان صفحات"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:159\r
+msgid "Category Page Titles"\r
+msgstr "عنوان صفحات دسته بندی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:160\r
+msgid "Hide Tables"\r
+msgstr "پنهان کردن جدول ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:161\r
+msgid "Back to Top button"\r
+msgstr "دکمه بازگشت به بالا"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:162\r
+msgid "Text Under Comments"\r
+msgstr "نوشته زیر نظرات"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:163\r
+msgid "Comments are closed text"\r
+msgstr "متن نظرات بسته شده"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:164\r
+msgid "Comments off"\r
+msgstr "نظرات : خاموش"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:165\r
+msgid "Insert footer copyright"\r
+msgstr "قرار دادن متن کپی رایت در پاصفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:167\r
+msgid "Post Comments Link"\r
+msgstr "لینک نظرات پست ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:168\r
+msgid "Post Date"\r
+msgstr "تاریخ پست"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:169\r
+msgid "Post Time"\r
+msgstr "زمان پست"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:170\r
+msgid "Post Author"\r
+msgstr "نویسنده پست"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:171\r
+msgid "Post Category"\r
+msgstr "دسته بندی پست"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:172\r
+msgid "Post Tags"\r
+msgstr "برچسب های پست"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:173\r
+msgid "Post Permalink"\r
+msgstr "پیوند یکتای پست"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:174\r
+msgid "All Post Metas"\r
+msgstr "تمام متاهای پست"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:176\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "پست های برگزیده در صفحه اصلی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:177\r
+msgid "Affect Sticky Posts"\r
+msgstr "پست های مهم"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:178\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "پست های برگزیده در صفحه دسته بندی و آرشیو"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:179\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "تعداد کلمات برای پست های برگزیده"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:180\r
+msgid "Magazine Layout"\r
+msgstr "طرح بندی به صورت مجله ای"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:181\r
+msgid "Excerpt suffix"\r
+msgstr "پسوند برگزیده ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:182\r
+msgid "Continue reading link text "\r
+msgstr "متن لینک ادامه مطلب"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:183\r
+msgid "HTML tags in Excerpts"\r
+msgstr "تگ های اچ تی ام ال در برگزیده ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:185\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "تصاویر اول در تصاویر بند انگشتی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:186\r
+msgid "Auto Select Images From Posts "\r
+msgstr "انتخاب خودکار عکس از پست ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:187\r
+msgid "Thumbnails Alignment "\r
+msgstr "ترازبندی تصاویر بند انگشتی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:188\r
+msgid "Thumbnails Size "\r
+msgstr "اندازه تصاویر بند انگشتی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:189\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "عکس اول در عکس سربرگ"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:191\r
+msgid "Link nr. 1"\r
+msgstr "لینک شماره 1"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:192\r
+msgid "Link nr. 2"\r
+msgstr "لینک شماره 2"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:193\r
+msgid "Link nr. 3"\r
+msgstr "لینک شماره 3"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:194\r
+msgid "Link nr. 4"\r
+msgstr "لینک شماره 4"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:195\r
+msgid "Link nr. 5"\r
+msgstr "لینک شماره 5"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:196\r
+msgid "Socials display"\r
+msgstr "نمایش اجتماعی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:198\r
+msgid "Make Site Header a Link"\r
+msgstr "سربرگ سایت را لینک دار کن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:199\r
+msgid "Breadcrumbs"\r
+msgstr "موارد جزئی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:200\r
+msgid "Pagination"\r
+msgstr "صفحه بندی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:201\r
+msgid "Mobile view"\r
+msgstr "نمایش در تلفن همراه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:202\r
+msgid "FavIcon"\r
+msgstr "فاوآیکن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:203\r
+msgid "Custom CSS"\r
+msgstr "CSS سفارشی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:204\r
+msgid "Custom JavaScript"\r
+msgstr "JavaScript سفارشی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:205\r
+msgid "SEO Settings"\r
+msgstr "تنظیمات سئو"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:222\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "با عرض پوزش ، ولی شما دسترسی کافی برای دسترسی به این صفحه را ندارید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:232\r
+msgid "Mantra settings updated successfully."\r
+msgstr "به روز رسانی تنظیمات قالب با موفقیت اتمام یافت."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:243\r
+msgid "Reset to Defaults"\r
+msgstr "بازنشاندن تنظیمات پیش فرض"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:244\r
+msgid "Save Changes"\r
+msgstr "ذخیره تغییرات"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:258\r
+#, fuzzy\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we spend night after night improving the Mantra Theme. We fix a lot of bugs (that we previously created); we add more and more customization options while also trying to keep things as simple as possible; then... we might play a game or two but rest assured that we return to read and (in most cases) reply to your late night emails and comments, take notes and draw dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they keep so fresh after all that hard labor for that darned theme? </i> Well folks, it's simple. We drink coffee. Industrial quantities of hot boiling coffee. We love it! So if you want to help with the further development of the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we spend night after night improving the Mantra Theme. We fix a lot of bugs (that we previously created); we add more and more customization options while also trying to keep things as simple as possible; then... we might play a game or two but rest assured that we return to read and (in most cases) reply to your late night emails and comments, take notes and draw dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they keep so fresh after all that hard labor for that darned theme? </i> Well folks, it's simple. We drink coffee. Industrial quantities of hot boiling coffee. We love it! So if you want to help with the further development of the Mantra Theme...</p> "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:273\r
+msgid "Import/Export Settings"\r
+msgstr "تنظیمات برون ریزی / درون ریزی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:279\r
+msgid "Export Theme options"\r
+msgstr "برون ریزی تنظیمات قالب"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:280\r
+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!"\r
+msgstr "این کار بسیان آسان است . با یک کلیک ماوس میتوانید تمام تنظیمات قالب را برون ریزی کنید و در کامپیوتر خود ان را ذخیره کنید! احساس امنیت نمیکنید ؟ پس این کار را حتما انجام دهید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:285\r
+msgid "Import Theme options"\r
+msgstr "درون ریزی تنظیمات قالب"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:286\r
+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."\r
+msgstr "شما میتوانید به آسانی تنظیمات اصلی قالب را از یک سایت دیگر درون ریزی کنید. با این کار دیگر مجبور نیستید در هر دفعه تمام تنظیمات را انجام دهید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:293\r
+msgid "Mantra Latest News"\r
+msgstr "آخرین اخبار قالب Mantra"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:304\r
+msgid "No news items."\r
+msgstr "هنور خبری ارسال نشده است ."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:318\r
+msgid "Mantra Help"\r
+msgstr "راهنمای قالب"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:321\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- نیاز به راهنمایی بیشتر در مورد قالب و وردپرس دارید ؟</li>\n"\r
+"\t\t\t\t<li>- آیا میخواهید تغییراتی که انجام دادید در ورژن جدید هم اعمال شود ؟</li>\n"\r
+"\t\t\t\t<li>- مشکلی وجود دارد یا چیزی مطابق آنچه انتظار میرود کار نمیکند ؟</li>\n"\r
+"\t\t\t\t<li>- آیا ایده ای برای بهتر شدن قالب منترا دارید ؟</li>\n"\r
+"\t\t\t\t<li>- آیا میخواهید تنظیمات اجرا شود؟</li>\n"\r
+"\t\t\t\t<li>- آیا شما دوست دارید ترجمه ای بهتر برای قالب مانترا بسازید؟</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>صفحه پشتیبانی مانترا را ببینید.</p>\n"\r
+"\t"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/main.php:332\r
+msgid "Mantra Support Page"\r
+msgstr "صفحه پشتیبانی قالب مانترا"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:61\r
+msgid "One column (no sidebars)"\r
+msgstr "یک ستون ( بدون ساید بار )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:62\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "دو ستون ( سایدبار سمت راست )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:63\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "دو ستون ( سایدبار سمت چپ )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:64\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "سه ستون ، ساید بار سمت چپ و ساید بار سمت راست "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:65\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "سه ستون ، سایدبار سمت چپ"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:66\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "سه ستون ، ساید بار در هر طرفی باشد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:81\r
+msgid "Choose your layout "\r
+msgstr "طرح خود را انتخاب کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:89\r
+msgid "Absolute"\r
+msgstr "Absolute"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:89\r
+msgid "Relative"\r
+msgstr "Relative"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:90\r
+msgid "Dimensions to use: "\r
+msgstr "استفاده در ابعاد :"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:189\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:209\r
+msgid "Content ="\r
+msgstr "محتوا ="\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:190\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:210\r
+msgid "Sidebar(s) ="\r
+msgstr "ساید بار (ها) ="\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:191\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:211\r
+msgid "Total width ="\r
+msgstr "عرض کل ="\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:200\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+"انتخاب کنید عرض <b>محتوا</b> و <b>سایدبار (s)</b>. \n"\r
+" \t\tعرض محتوا نمیتواند کمتر از 500 پیکسل باشد. محیط سایدبار باید بیشتر از 220 پیکسل و کمتر از 800 پیکسل باشد..<br />\n"\r
+"\tاگر شما طرح سه ستون را انتخاب کردید( همراه 2 سایدبار ) هر یک آز آن ها نیمی از عرض انتخاب شده را تشکیل میدهد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:220\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+"انتخاب کنید عرض<b>محتوا را</b> و <b>سایدبار(ها)</b>. \n"\r
+" \t\tاین ابعاد تقریبا نسبی است. نسبت به مرورگر کاربر است. عرض کلی درصدی است که به نسبت مرورگر کاربر نمایش داده میشود..<br />\n"\r
+"\t در حالی که عرض محتوا نمیوانید کمتر از 40 درصد باشد. عرض سایدبار باید بیشتر از 20 درصد و کمتر از 50 درصد باشد..<br />\n"\r
+"\tاگر شما طرح بندی را به صورت سه ستونه انتخاب کردید ( همراه 2 سایدبار ) آن دو هر کدام نیمی از عرض انتخاب شده را تشکیل میدهد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:244\r
+msgid "Select the header's height. After saving the settings go and upload your new header image. The header's width will be = "\r
+msgstr "ارتفاع سبرگ را مشخص کنید. سپس تنظیمات را ذخیره کنید و به قسمت بارگذاری سربرگ بروید و سربرگ جدید را بارگذاری کنید. ارتفاع سربرگ جدید مساوی با عدد مقابل میشود ="\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:257\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:969\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1031\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1353\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1415\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1623\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1652\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1675\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1698\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1747\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1876\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1891\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1906\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1921\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1963\r
+msgid "Enable"\r
+msgstr "فعال"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:257\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:969\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1031\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1353\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1415\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1623\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1652\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1675\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1698\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1747\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1876\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1891\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1906\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1921\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1963\r
+msgid "Disable"\r
+msgstr "غیرفعال"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:265\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page and it will replace whatever page you have selected as homepage. It has a slider and columns for presentation\n"\r
+"\t\ttext and images."\r
+msgstr "ابزار front-page را فعال کنید.صفحه انتخابی شما به عنوان صفحه خانگی شما و جایگزین تمام صفحه ها میشود.این شامل اسلایدرها ، ستون ها ، نوشته و عکس ها میشود."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:275\r
+msgid "Slider Dimensions:"\r
+msgstr "ابعاد اسلایدر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:276\r
+msgid "width"\r
+msgstr "عرض"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:277\r
+msgid "height"\r
+msgstr "طول"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:278\r
+msgid "The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr "ابعاد اسلایدر شما . اطمینان حاصل کنید ابعاد عکس های شما هم در همین ابعاد باشد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:280\r
+msgid "Animation:"\r
+msgstr "انیمیشن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "Random"\r
+msgstr "تصادفی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "Fold"\r
+msgstr "Fold"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "Fade"\r
+msgstr "Fade"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "SlideInRight"\r
+msgstr "SlideInRight"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "SlideInLeft"\r
+msgstr "SlideInLeft"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "SliceDown"\r
+msgstr "SliceDown"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "SliceDownLeft"\r
+msgstr "SliceDownLeft"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "SliceUp"\r
+msgstr "SliceUp"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "SliceUpLeft"\r
+msgstr "SliceUpLeft"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "SliceUpDown"\r
+msgstr "SliceUpDown"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "SliceUpDownLeft"\r
+msgstr "SliceUpDownLeft"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "BoxRandom"\r
+msgstr "BoxRandom"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "BoxRain"\r
+msgstr "BoxRain"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "BoxRainReverse"\r
+msgstr "BoxRainReverse"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "BoxRainGrow"\r
+msgstr "BoxRainGrow"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:282\r
+msgid "BoxRainGrowReverse"\r
+msgstr "BoxRainGrowReverse"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:290\r
+msgid "The transition effect your slider will have."\r
+msgstr "سایدبار شما دارای این جلوه های اثرگذار است"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:292\r
+msgid "Border Settings:"\r
+msgstr "تنظیمات قاب : "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:293\r
+msgid "Width"\r
+msgstr "عرض"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:294\r
+msgid "Color"\r
+msgstr "رنگ"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:296\r
+msgid "The width and color of the slider's border."\r
+msgstr "عرض و رنگ قاب اسلایدر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:298\r
+msgid "Animation Time:"\r
+msgstr "زمان انیمیشن :"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:299\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:303\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "میلی ثانیه (1000ms = 1 ثانیه)"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:300\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "در این زمان جابه جایی به صورت انیمیشن صورت میگرید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:302\r
+msgid "Pause Time:"\r
+msgstr "زمان توقف:"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:304\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "در زمان توقف نیز اسلایدر قابل مشاهده و استفاده میباشد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:307\r
+msgid "Slider navigation:"\r
+msgstr "اسلایدر کشویی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:309\r
+msgid "Numbers"\r
+msgstr "شماره ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:309\r
+msgid "Bullets"\r
+msgstr "گلوله توپی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:309\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1259\r
+msgid "None"\r
+msgstr "هیچ"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:317\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "نوع اسلایدر کشویی شما . این اسلایدر در زیر اسلایدر اصلی نمایش داده میشود."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:319\r
+msgid "Slider arrows:"\r
+msgstr "پیکان اسلایدر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:321\r
+msgid "Always Visible"\r
+msgstr "همیشه قابل نمایش باشد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:321\r
+msgid "Visible on Hover"\r
+msgstr "قابل مشاهده در زمان قرار گیری ماوس رو آن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:321\r
+msgid "Hidden"\r
+msgstr "پنهان"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:329\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "فلش های پچ و راست در اسلایدر شما"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:370\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:438\r
+msgid "Select Category"\r
+msgstr "انتخاب دسته بندی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:397\r
+msgid "Custom Slides"\r
+msgstr "اسلاید سفارشی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:397\r
+msgid "Latest Posts"\r
+msgstr "آخرین نوشته ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:397\r
+msgid "Random Posts"\r
+msgstr "نوشته های تصادفی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:397\r
+msgid "Sticky Posts"\r
+msgstr "نوشته های مهم"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:397\r
+msgid "Latest Posts from Category"\r
+msgstr "آخرین نوشته ها از دسته بندی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:397\r
+msgid "Random Posts from Category"\r
+msgstr "نوشته های تصادفی از دسته بندها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:397\r
+msgid "Specific Posts"\r
+msgstr "نوشته های خاص"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:410\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "آخرین نوشته هایی که در اسلایدر بارگذاری میشوند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:414\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "نوشته های تصادفی که در اسلایدر بارگذاری میشوند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:418\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "آخرین نوشته ها از دسته بندی انتخابی شما و بارگذاری آن در اسلایدر."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:423\r
+msgid "Random posts from the category you choose will be loaded into the slider."\r
+msgstr "نوشته های تصادفی از دسته بندی انتخابی شما و بارگذاری آن در اسلایدر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:427\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr " نوشته های مهم و لود آن در اسلایدر "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:431\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr "لیست از آیدی پست های شما برای نمایش. ( با کاما جدا کنید )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:436\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> انتخاب از دسته بندی ها :"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:453\r
+msgid "Number of posts to show:"\r
+msgstr "تعداد پست ها برای نمایش :"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:460\r
+msgid "Slide 1"\r
+msgstr "اسلاید 1"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:464\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:479\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:494\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:509\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:524\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:567\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:582\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:597\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:612\r
+msgid "Upload or select image from gallery"\r
+msgstr "بارگذاری یا انتخاب عکس از گالری"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:465\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:480\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:495\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:510\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:525\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:568\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:583\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:613\r
+msgid "Title"\r
+msgstr "عنوان"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:467\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:482\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:497\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:512\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:527\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:570\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:585\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:600\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:615\r
+msgid "Text"\r
+msgstr "نوشته"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:475\r
+msgid "Slide 2"\r
+msgstr "اسلاید 2"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:490\r
+msgid "Slide 3"\r
+msgstr "اسلاید 3"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:505\r
+msgid "Slide 4"\r
+msgstr "اسلاید 4"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:520\r
+msgid "Slide 5"\r
+msgstr "اسلاید 5"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:533\r
+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."\r
+msgstr "محتوای اسلایدر شما. فقط تصویر مورد نیاز است. فیلد های دیگر به صورت اختیاری است. اسلایدر تنها با عکس انتخاب شده فعال میشود و قابل نمایش بر روی اسلایدر فعال است.."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:543\r
+msgid "Number of columns:"\r
+msgstr "تعداد ستون ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:553\r
+msgid "Image Height:"\r
+msgstr "ارتفاع تصویر:"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:556\r
+msgid "Read more text:"\r
+msgstr "خواندن ادامه مطلب:"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:559\r
+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."\r
+msgstr "متن لینک داری که در پایین ستون ها نمایش داده میشود. شما میتوانید تمام نوشته ها را در صورتی که تمایلی به این کار ندارید حذف کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:563\r
+msgid "1st Column"\r
+msgstr "ستون اول"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:578\r
+msgid "2nd Column"\r
+msgstr "ستون دوم"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:593\r
+msgid "3rd Column"\r
+msgstr "ستون سوم"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:608\r
+msgid "4th Column"\r
+msgstr "ستون چهارم"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:630\r
+msgid "Extra Text"\r
+msgstr "متن های اضافه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:630\r
+msgid "Top Title"\r
+msgstr "عنوان بالا"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:632\r
+msgid "Second Title"\r
+msgstr "عنوان دوم"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:635\r
+msgid "Title color"\r
+msgstr "رنگ عنوان"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:638\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "رنگ عنوان (مقدار پیش فرض 333،333 است)."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr "نوشته دکمه 1"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr "نوشته دکمه 2"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:645\r
+msgid ""\r
+"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"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"نوشته بیشتر برای پایین صفحه شما. بالاترین نوشته بالای اسلایدر قرار دارد، عنوان دوم میان اسلایدر و ستون و دو ستون بیشتر از نوشته زیر ستون ها است. .\n"\r
+"\t\t تمام این ها اختیاری میباشد. اگر بخواهید میتوانید آن ها را خالی بگذارید. "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:651\r
+msgid "Hide areas"\r
+msgstr "پنهان کردن مناطق"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "پنهان کردن محیط سربرگ ( عکس یا رنگ بک گراند )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "پنهان کردن منوی اصلی ( منوی کشویی بالا ) "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr "پنهان کردن ابرارک های پاصفحه."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "پنهان کردن پاصفحه ( محیط کپی رایت )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "پنهان کردن رنگ سفید. فقط رنگ بکگراند باقی میماند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:684\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "محیطی که میخواهید در صفحه اول پنهان شود را انتخاب کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:703\r
+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."\r
+msgstr "قلمی را که میخواهید در وبلاگ خود از آن استفاده کنید انتخاب کنید.این تغییرات در صفحات ، نوشته ها و نظرات اعمال میشود.دکمه ها ، منوی سایدبار و سربرگ تحت تاثیر قرار نمیگیریند. "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:747\r
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "\r
+msgstr "قلمی را که میخواهید از آن در وبلاگ خود استفاده کنید انتخاب کنید. تمامی محتواهای متنی تحت تاثیر این تغییرات قرار میگیریند. ( از جمله دکمه های منو )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:748\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:797\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:848\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:899\r
+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."\r
+msgstr "یا قلمی از گوگل انتخاب کنید و در زیر قرار دهید. لطف فقط وارد کنید <strong>نام</strong>فوت را.<br /> مثال: برای انتخاب یک فونت بروید به <a href='http://www.google.com/webfonts' > گوگل فونت </a> برای انتخاب فونت های استاندارد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:795\r
+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."\r
+msgstr "قلمی که میخواهید به عنوان قلم \"عنوان\" قرار بگیرد را انتخاب کنید. این تغییر به عنوان صفحات و نوشته ها اعمال میشود. با زدن دکمه پیش فرض قلمی که به صورت عمومی انتخاب کردید در اینجا نیز مورد استفاده قرار میگیرد ."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:846\r
+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."\r
+msgstr "قلمی را که میخواهید در سایدبار(ها) از آن استفاده کنید انتخاب کنید.تغییرات در تمام سایدبارها از جمله ابزارک ها اعمال میشود.با زدن دکمه پیش فرض قلمی که به صورت عمومی انتخاب کردید در اینجا نیز مورد استفاده قرار میگیرد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:897\r
+msgid "Select the font family you want your subheaders to have (h2 - h6 tags will be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr "فونتی که میخواهید در ساب هیدر مورد استفاده قرار بگیرد را انتخاب کنید. ( درتگ های اچ 2 و اچ 6 اعمال میشود. )با زدن دکمه پیش فرض قلمی که به صورت عمومی انتخاب کردید در اینجا نیز مورد استفاده قرار میگیرد "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:909\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:924\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:939\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:984\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:999\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1014\r
+msgid "Default"\r
+msgstr "پیش فرض"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:917\r
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "سایز قلم سربرگ نوشته ها . با زدن دکمه پیش فرض تنظیمات عادی اعمال میشوند. ( سایز در فایل سی اس اس تنظیم شده است. )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:932\r
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "سایز قلم سایدبار. ( سایز در فایل سی اس اس تنظیم شده است. )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:939\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1714\r
+msgid "Left"\r
+msgstr "چپ"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:939\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1714\r
+msgid "Right"\r
+msgstr "راست"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:939\r
+msgid "Justify"\r
+msgstr "تراز کردن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:939\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1714\r
+msgid "Center"\r
+msgstr "وسط"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:947\r
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr "این تراز بندی دلخواه برای متون را تنظیم میکند. با زدن دکمه پیش فرض تنظیمات اولیه اعمال میشوند. ( این تراز بندی همانطور گفته که گفته شد در نوشته ها ، نظرات و غیره اعمال میشود. ) "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:961\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "مقدار تو رفتگی را برای پاراگراف های خود انتخاب کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:977\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "غیرفعال کردن تو رفتگی پیش فرض برای سربرگ عنوان ها ( مارجین سمت چپ )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:992\r
+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)."\r
+msgstr "ارتفاع خط متن. ارتفاع آن بین 2 ستون از نوشته هاست. برای اعمال تنظیمات دلخواه پیش فرض را کلیک کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1007\r
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "فاصله میان <i>کلمات</i>.برای بازگشت به تنظیمات اولیه پیش فرض را کلیک کنید. ( از سی اس اس قابل تغییر است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1022\r
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "فاصله میان <i>حروف</i>. برای بازگشت به تنظیمات اولیه پیش فرض را کلیک کنید. ( از سی اس اس قابل تغییر است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1039\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "غیرفعال کردن سایه پیش فرض در سربرگ و عناوین"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1051\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "رنگ پس زمینه ( به صورت پیش فرض 44444 است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1059\r
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."\r
+msgstr "رنگ پس زمینه سربرگ ( به صورت پیش فرض 333333 است ) شما میتوانید تمام متن ها را پاک کنید تا پس زمینه رنگی نداشته باشد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1066\r
+msgid "Content background color (Default value is FAFAFA). Works best with really light colors."\r
+msgstr "رنگ پس زمینه محتوابهترین حالت ترکیب با رنگ روشن است.رنگ پیش فرض : FAFAFA"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1073\r
+msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."\r
+msgstr "رنگ پس زمینه منوی اصلی باید برای بک گراند باید از چند رنگ یا از رنگ روشن استفاده کرد.رنگ پیش فرض : FAFAFA "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1081\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "رنگ پس زمینه محیط ابزارک پاصفحه.( رنگ پیش فرض : 171717 )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1089\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "رنگ پس زمینه پاصفحه ( رنگ پیش فرض 222222 است. )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1097\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "رنگ عنوان بلاگ ( ها ) شما رنگ پیش فرض : 0D85CC"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1105\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "رنگ توضیحات وبلاگ شما ( رنگ پیش فرض 222222 است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1113\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "رنگ نوشته محتوا ( رنگ پیش فرض 333333 است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1121\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "رنگ لینک ها ( رنگ پیش فرض 0D85CC است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1129\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "رنگ لینک زمان قرار گیری ماوس روی آن ها ( پیش فرض 333333 است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1137\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "رنگ نوشته سربرگ نوشته ها (رنگ پیش فرض 333333 است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1145\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr "رنگ نوشته سربرگ نوشته ها زمان قرار گیری ماوس روی آن ها ( پیش فرض 000000 است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1153\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "رنگ پس زمینه سربرگ سایدبار ( رنگ پیش فرض 444444 است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1162\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "رنگ نوشته سربرگ سایدبار ( رنگ پیش فرض 444444 است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1170\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "رنگ نوشته های ابزارک پا صفحه ( رنگ پیش فرض 0D85CC است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1178\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "رنگ لینک های ابزارک پاصفحه ( رنگ پیش فرض 666666 است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1186\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr "رنگ لینک های ابزارک پاصفحه زمان قرار گیری ماوس رو یان ها ( پیش فرض 888888 است )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1198\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1259\r
+msgid "White"\r
+msgstr "سفید"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1198\r
+msgid "Light"\r
+msgstr "روشن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1198\r
+msgid "Light Gray"\r
+msgstr "خاکستری روشن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1198\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1259\r
+msgid "Gray"\r
+msgstr "خاکستری"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1198\r
+msgid "Dark Gray"\r
+msgstr "خاکستری تیره"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1198\r
+msgid "Black"\r
+msgstr "مشکی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1206\r
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."\r
+msgstr "این تنظیمات نوع نمایش توضیحات عکس را تغییر میدهد.عکس هایی که دارای توضیحات نیستند اعمال نمیشوند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1222\r
+msgid "The border around your inserted images. "\r
+msgstr "قاب برای اطرف عکس هایی که قرار دادید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1237\r
+msgid "The image on top of your captions. "\r
+msgstr "یک عکس برای بالای توضیحات شما"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1252\r
+msgid "The sidebar list bullets. "\r
+msgstr "گلوله توپی سایدبار"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1267\r
+msgid "The background for your post-metas area (under your post tiltes). Gray by default.<"\r
+msgstr "پس زمینه برای محیط متای پست ها ( زیر عنوان پست ها ) . به طور پیش فرض رنگ خاکستری در نظر گرفته شده.<"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1275\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1291\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1308\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1323\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1338\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1368\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1383\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1399\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1442\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1457\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1472\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1487\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1502\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1517\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1532\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1547\r
+msgid "Show"\r
+msgstr "نمایش"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1275\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1291\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1308\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1323\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1338\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1368\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1399\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1442\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1457\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1472\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1487\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1502\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1517\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1532\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1547\r
+msgid "Hide"\r
+msgstr "پنهان کردن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1283\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "نمایش یا عدم نمایش خط افقی برای جدا کردن پست ها از هم."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1299\r
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."\r
+msgstr "نمایش یا عدم نمایش گلوله های توپی به صورت لیست در ناحیه محتوا ( نوشته ها ، صفحات و غیره . . .)"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1316\r
+msgid "Hide or show your blog's Title and Description in the header (recommended if you have a custom header image with text)."\r
+msgstr "نمایش یا عدم نمایش عنوان و توضیحات در سربرگ اصلی ( اگر شما سربرگ سفارشی شده دارید که دارای نوشته و عکس است این گزینه پیشنهاد میشود. )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1331\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "نمایش یا عدم نمایش عنوان ها در هر <i>صفحه</i> ساخته شده. "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1346\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "نمایش یا عدم نمایش عنوان ها <i>در صفحات</i> دسته بندی. "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1361\r
+msgid "Hide table borders and background color."\r
+msgstr "مخفی کردن قاب جدول ها در رنگ پس زمینه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1376\r
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."\r
+msgstr "مخفی کردن متن توضیحات در زیر فرم ارسال نظرات (starts with <i>شما میتوانید از کدهای اچ تی ام ال هم استفاده کنید:...</i>)."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1383\r
+msgid "Hide in posts"\r
+msgstr "مخفی کردن در پست ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1383\r
+msgid "Hide in pages"\r
+msgstr "مخفی کردن در صفحات"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1383\r
+msgid "Hide everywhere"\r
+msgstr "پنهان کردن در همه جا"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1391\r
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."\r
+msgstr "مخفی کردن متن <b>نظرات بسته شده</b> این متن به صورت پیش فرض در زمانی که نظرات در نوشته ها یا صفحات بسته شده باشد نمایش داده میشود"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1407\r
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr "مخفی کردن متن <b>نظرات خاموش</b> این متن مواقعی نمایش داده میشود که نظرات غیرفعال باشند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1423\r
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."\r
+msgstr "فعال کردن بازگشت به بالا. این دکمه بعد از اسکرول در پایین صفحه نمایش داده میشود"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1430\r
+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 © ."\r
+msgstr "قرار دادن نوشته یا کد اچ تی ام ال سفارشی که در آخر پاصفحه نمایش داده شود.. <br /> شما میتوانید با استفاده از اچ تی ام ال لینک های ، عکس ها یا کارکتر های سفارشی خود را در پاصفحه قرار دهید. مثل : © ."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1450\r
+msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."\r
+msgstr "نمایش یا عدم نمایش <strong>دیدگاهتان را بنویسید</strong> یا <strong>x نظر</strong>در نوشته های برگزیده و عادی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1465\r
+msgid "Hide or show the post date."\r
+msgstr "نمایش یا عدم نمایش تاریخ نوشته ها"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1480\r
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."\r
+msgstr "نمایش ساعت ارسال پست همرا با تاریخ. اگر تاریخ نوشته را غیرفعال کرده باشید این گزینه کاربردی ندارد!"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1495\r
+msgid "Hide or show the post author."\r
+msgstr "نمایش یا پنهان کردن نویسنده پست."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1510\r
+msgid "Hide the post category."\r
+msgstr "پنهان کردن دسته بندی پست."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1525\r
+msgid "Hide the post tags."\r
+msgstr "پنهان کردن برچسب های نوشته"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1540\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "پنهان کردن پیوند بوک مارک"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1555\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr "پنهان کردن تمام متاهای نوشته.تمام اطلاعات متا و ناحیه متا پنهان میشود."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1568\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1583\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1599\r
+msgid "Excerpt"\r
+msgstr "گلچین کردن"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1568\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1583\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1599\r
+msgid "Full Post"\r
+msgstr "نوشته کامل"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1576\r
+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."\r
+msgstr "گزیده ها در صفحه اصلی. فقط نوشته های استاندارد تحت تاثیر قرار میگیرند. تمام نوشته های دیگر که قالب خود را دارند مثل ( نوار کنار ، تصاویر ، گفتگو ، نقل قول و ...) تحت تاثیر این تغییر قرار نخواهند گرفت."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1591\r
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "\r
+msgstr "اگر شما دوست دارید نوشته های سنجاق شده و مهم صفحه اصلی را کاملا یا فقط گزیده های آن ها در بر بگیرد و قابل نمایش باشد این گزینه را انتخاب کنید. "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1607\r
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."\r
+msgstr "گزیده ها در ارشیو ، دسته بندی ، صفحه جستجو بالاتر از همه قرار بگیرند. فقط پست های استاندارد تحت تاثیر قرار میگیرند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1615\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"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"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1631\r
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."\r
+msgstr "فعال کردن طرح بندی مجله ای. در این طرح بندی پست ها و صفحات با هم نمایش داده میشوند و در هر سطر دو پست نمایش داده میشود."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1638\r
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."\r
+msgstr "جایگزین کردن 3 نقطه ('[...])'که به طور خودکار به گزیده ها اضفه میشوند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1645\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "ویرایش ' ادامه مطلب' لینک ها به گزیده ی پست ها اضفه میشوند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1660\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr "توسط گزیده های پیش فرض وردپرس تمام تگ های HTML پاک میشوند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1691\r
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."\r
+msgstr "نمایش عکس های ویژه در پست ها به صورت عکس های بند انگشتی. عکس باید در هنگام ارسال به عنوان تصویر بند انگشتی انتخاب شده باشد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1706\r
+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."\r
+msgstr "نمایش اولین عکس قرار داده شده در پست به عنوان تصویر بندانگشتی. اگر شما این گزینه را فعال کنید تصویر بند انشگتی از اولین تصویری که در پست خود استفاده کردید انتخاب میشود."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1722\r
+msgid "Thumbnail alignment."\r
+msgstr "تراز بندی دلخواه برای تصاویر بندانگشتی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1739\r
+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."\r
+msgstr "سایز تصویر بند انگشتی ( در پیکسل )به طور پیشفرض عکس ها با اندازه کوچک قرار میگیریند.اگر شما سایزی مد نظر دارید به سیسم بدهید تا به صورت خودکار عکس شما بریده و به سایز دلخواه شما تبدیل شود."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1755\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."\r
+msgstr ""\r
+"نمایش عکس های برتر در سربرگ. سربرگ فعلی با عکس برتر انتخاب شده جایگزین میشود اگه در نوشته هایتان عکس را مشخص کرده باشید.\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1776\r
+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> )"\r
+msgstr "شبکه اجتماعی مورد نظر خود را از منوی کشویی سمت پچ انتخاب کنید و آدرس مربوط به پروفایل خود را در فیلد ورودی سمت راست وارد کنید.(مثال: <i>http://www.facebook.com/yourname</i> )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1790\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "شما میتوانید 5 سایت از شبکه های اجتماعی را با آدرس های مختلف وارد کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1804\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "این ها تمام 27 شبکه اجتماعی موجود برای انتخاب کردن شماست."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1818\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "شما میتوانید تعدادی از فیلدهای ورودی را خالی بگذارید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1832\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "شما میتوانید هر تعدادی که میخواهید رسانه ای اجتماعی را انتخاب کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1863\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "انتخاب کنید <b>ناحیه ای</b> که دوست دارید آیکن های اجتماعی در آن جا نمایش داده شوند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1884\r
+msgid "Make the site header into a clickable link that links to your index page."\r
+msgstr "میتوانید سربرگ سایت را لینک دار کنید. آدرس لینک ، صفحه اصلی سایت شما خواهد بود."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1899\r
+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."\r
+msgstr "نمایش نوار پیمایش در بالای محیط محتوا. نوار راهنمای ابزاری است که مکان فعلی شخص در سایت را به او نمایش میدهد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1914\r
+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. "\r
+msgstr "نمایش شماره بندی صفحات. در مکان های که بیشتر از یک صفحه وجود داشته باشد, امکان دسترسی به در پایین صفحه قرار میگیرد و <b>پست های قدیمی تر</b> و <b>پست های جدیدتر </b> را آسان میکند."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1929\r
+msgid "Enable the mobile view and make Mantra responsive. The layout and look of your blog will change depending on what device and what resolution it is viewed in. "\r
+msgstr "فعال کردن نمایش به صورت تلفن همراه . در این نمایش خود قالب پاسخگو خواهد بود. ابعاد و سایر قالب به گونه ای تغییر میکند که به راحتی در دستگاه تلفن همراه قابل نمایش باشد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1939\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "بارگذاری یا انتخاب فاوآیکن از گالری"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1943\r
+msgid "Limitations: It has to be an image. It should be max 64x64 pixels in dimensions. Recommended file extensions .ico and .png . "\r
+msgstr "محدودیت ها : فایل باید حتما به صورت عکس باشد. باید حداکثر در سایز 64 پیکسل در 64 پیکسل باشد. بهترین فرمت عکس : .png , .ico"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1951\r
+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."\r
+msgstr "CSS سفارشی خود را در اینجا قرار بدید.هر اعلان استایلی بر روی استایل Mantra رو نویسی میشود.( تمام تنظیمات سفارشی پیشرفته در تنظیمات قالب آماده است. )CSS سفارشی شما حتما پس از به روز رسانه قالب هم حفظ خواهد شد."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1958\r
+msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software)."\r
+msgstr "کدهای جاوا اسکریپت سفارشی خود را در اینجا قرار دهید. ( گوگل آنالیز و هر شکل دیگر از نرم افزارهای آنالیزگر سایت )"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1971\r
+msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."\r
+msgstr "فعال کردن قابلیت بهینه سازی سایت برای موتور های جستجو. این مورد به صورت پیش فرض فعال است و شما فقط میتوانید آن را غیرفعال کنید. البته اگر از پلاگین های سئو استفاده میکنید پیشنهاد میکنیم این گزینه را غیرفعال کنید."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1983\r
+msgid "Auto"\r
+msgstr "خودکار"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/admin/settings.php:1983\r
+msgid "Manual"\r
+msgstr "دستی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-functions.php:56\r
+msgid "Home Page"\r
+msgstr "صفحه خانگی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:146\r
+msgid "says:"\r
+msgstr "میگوید :"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:152\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "نظر شما در انتظار تایید توسط مدیریت سایت است."\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:159\r
+msgid "at"\r
+msgstr "در"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:159\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:176\r
+msgid "(Edit)"\r
+msgstr "(ویرایش)"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:176\r
+msgid "Pingback: "\r
+msgstr "پینگ بک :"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:213\r
+msgid "By "\r
+msgstr "توسط"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:224\r
+msgid "Leave a comment"\r
+msgstr "دیدگاهتان را بنویسید"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:224\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> نظر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:224\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> نظرات"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:247\r
+msgid " Bookmark the "\r
+msgstr " Bookmark the "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:247\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:249\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:251\r
+msgid "Permalink to"\r
+msgstr "پیوند یکتا به"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:247\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:249\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:251\r
+msgid "permalink"\r
+msgstr "پیوند یکتا"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:249\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:251\r
+msgid "Bookmark the "\r
+msgstr "Bookmark the "\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:273\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> نوشته های قدیمی تر"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-loop.php:274\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "پست های جدیدتر <span class=\"meta-nav\">»</span>"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "صفحه %s"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:91\r
+msgid "Primary Navigation"\r
+msgstr "منوی اولی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:92\r
+msgid "Top Navigation"\r
+msgstr "منوی بالایی"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:93\r
+msgid "Footer Navigation"\r
+msgstr "منوی پاصفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:137\r
+msgid "mantra"\r
+msgstr "مانترا"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:196\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "محیط ابزارک اول - سایدبار 1"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:198\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "محیط ابزارک اول - سایدبار 1"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:207\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "محیط ابزارک دوم - سایدبار 1"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:209\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "محیط ابزارک دوم - سایدبار 1"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:218\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "محیط ابزارک سوم - سایدبار 2"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:220\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "محیط ابزارک سوم - سایدبار 2"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:229\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "محیط ابزارک چهارم - سایدبار 2"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:231\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "محیط ابزارک چهارم - سایدبار 2"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:240\r
+msgid "First Footer Widget Area"\r
+msgstr "محیط ابزارک اول محیط پایین صفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:242\r
+msgid "First footer widget area"\r
+msgstr "محیط ابزارک اول محیط پایین صفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:251\r
+msgid "Second Footer Widget Area"\r
+msgstr "محیط ابزارک دوم محیط پایین صفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:253\r
+msgid "Second footer widget area"\r
+msgstr "محیط ابزارک دوم محیط پایین صفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:262\r
+msgid "Third Footer Widget Area"\r
+msgstr "محیط ابزارک سوم محیط پایین صفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:264\r
+msgid "The third footer widget area"\r
+msgstr "محیط ابزارک سوم محیط پایین صفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:273\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "محیط ابزارک چهارم محیط پایین صفحه"\r
+\r
+#: E:\Localhost\Blog\wp-content\themes\mantra/includes/theme-setup.php:275\r
+msgid "The fourth footer widget area"\r
+msgstr "محیط ابزارک چهارم محیط پایین صفحه"\r
+\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra v2.3.2\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2014-01-02 15:49+0100\n"\r
+"PO-Revision-Date: 2014-01-02 15:50+0100\n"\r
+"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"\r
+"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"Language: fr_FR\n"\r
+"Plural-Forms: nplurals=2; plural=n>1;\n"\r
+"X-Generator: Poedit 1.5.7\n"\r
+"X-Poedit-SourceCharset: UTF-8\n"\r
+"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"\r
+"X-Poedit-Basepath: ..\n"\r
+"X-Textdomain-Support: yes\n"\r
+"X-Poedit-Language: French\n"\r
+"X-Poedit-Country: FRANCE\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+# @ mantra\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "Non trouvé"\r
+\r
+# @ mantra\r
+#: 404.php:19\r
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."\r
+msgstr "Désolé, la page que vous demandez n'a pu être trouvée. Une recherche peut être utile."\r
+\r
+# @ mantra\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Archives journalières: %s"\r
+\r
+# @ mantra\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Archives mensuelles: %s"\r
+\r
+# @ mantra\r
+#: archive.php:29\r
+msgctxt "monthly archives date format"\r
+msgid "F Y"\r
+msgstr "F Y"\r
+\r
+# @ mantra\r
+#: archive.php:31\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Archives annuelles: %s"\r
+\r
+# @ mantra\r
+#: archive.php:31\r
+msgctxt "yearly archives date format"\r
+msgid "Y"\r
+msgstr "Y"\r
+\r
+# @ mantra\r
+#: archive.php:33\r
+msgid "Blog Archives"\r
+msgstr "Articles archivés"\r
+\r
+# @ mantra\r
+#: archive.php:59\r
+#: author.php:75\r
+#: category.php:51\r
+#: content-frontpage.php:26\r
+msgid "Nothing Found"\r
+msgstr "Aucun article trouvé"\r
+\r
+# @ mantra\r
+#: archive.php:63\r
+#: author.php:79\r
+#: category.php:55\r
+#: content-frontpage.php:30\r
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."\r
+msgstr "Désolé, l'archive demandée ne peut être trouvée. Essayez de rechercher un article en rapport avec elle."\r
+\r
+# @ mantra\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Retour à %s"\r
+\r
+# @ mantra\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "De"\r
+\r
+# @ mantra\r
+#: attachment.php:33\r
+#, php-format\r
+msgid "View all posts by %s"\r
+msgstr "Voir tous les artciles de %s"\r
+\r
+# @ mantra\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "Publié"\r
+\r
+# @ mantra\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "Taille originelle de %s pixels"\r
+\r
+# @ mantra\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "Lien vers l'image d'origine"\r
+\r
+# @ mantra\r
+#: attachment.php:60\r
+#: attachment.php:107\r
+#: content-aside.php:48\r
+#: content-chat.php:49\r
+#: content-gallery.php:75\r
+#: content-image.php:42\r
+#: content-link.php:49\r
+#: content-page.php:22\r
+#: content-quote.php:46\r
+#: content-status.php:48\r
+#: content.php:76\r
+msgid "Edit"\r
+msgstr "Modifier"\r
+\r
+# @ mantra\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "Lire la suite"\r
+\r
+# @ mantra\r
+#: attachment.php:101\r
+#: content-aside.php:39\r
+#: content-chat.php:38\r
+#: content-gallery.php:65\r
+#: content-image.php:33\r
+#: content-link.php:38\r
+#: content-page.php:21\r
+#: content-quote.php:36\r
+#: content-status.php:39\r
+#: content.php:49\r
+#: content.php:65\r
+msgid "Pages:"\r
+msgstr "Pages:"\r
+\r
+# @ mantra\r
+#: author.php:29\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Archives par auteur: %s"\r
+\r
+# @ mantra\r
+#: author.php:50\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "A propos de %s"\r
+\r
+# @ mantra\r
+#: category.php:20\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Archives par catégorie: %s"\r
+\r
+# @ mantra\r
+#: comments.php:18\r
+msgid "This post is password protected. Enter the password to view any comments."\r
+msgstr "Cet article est protégé par un mot de passe. Donner le mot de passe pour voir les commentaires."\r
+\r
+# @ mantra\r
+#: content-aside.php:16\r
+#: content-chat.php:16\r
+#: content-gallery.php:19\r
+#: content-gallery.php:56\r
+#: content-image.php:15\r
+#: content-link.php:16\r
+#: content-quote.php:14\r
+#: content-status.php:15\r
+#: content.php:20\r
+#, php-format\r
+msgid "Permalink to %s"\r
+msgstr "Permalien vers %s"\r
+\r
+# @ mantra\r
+#: content-aside.php:20\r
+msgid "Aside"\r
+msgstr "En passant"\r
+\r
+# @ mantra\r
+#: content-aside.php:38\r
+#: content-chat.php:37\r
+#: content-image.php:32\r
+#: content-link.php:37\r
+#: content-quote.php:35\r
+#: content-status.php:38\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Lire la suite <span class=\"meta-nav\">→</span>"\r
+\r
+# @ mantra\r
+#: content-aside.php:46\r
+#: content-chat.php:45\r
+#: content-gallery.php:72\r
+#: content-image.php:39\r
+#: content-link.php:45\r
+#: content-quote.php:43\r
+#: content-status.php:46\r
+#: content.php:74\r
+msgid "Tagged"\r
+msgstr "Avec mots-clefs"\r
+\r
+# @ mantra\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "Chat"\r
+\r
+# @ mantra\r
+#: content-gallery.php:23\r
+msgid "Gallery"\r
+msgstr "Galerie"\r
+\r
+# @ mantra\r
+#: content-gallery.php:55\r
+#, php-format\r
+msgid "This gallery contains <a %1$s>%2$s photo</a>."\r
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."\r
+msgstr[0] "Cette gallerie contient <a %1$s>%2$s photo</a>."\r
+msgstr[1] "Cette gallerie contient <a %1$s>%2$s photos</a>."\r
+\r
+# @ mantra\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr "Image"\r
+\r
+# @ mantra\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr "Lien"\r
+\r
+# @ mantra\r
+#: content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr "Les commentaires sont fermés."\r
+\r
+# @ mantra\r
+#: content-quote.php:18\r
+msgid "Quote"\r
+msgstr "Citation"\r
+\r
+# @ mantra\r
+#: content-status.php:30\r
+msgid "Status"\r
+msgstr "Etat"\r
+\r
+# @ mantra\r
+#: search.php:20\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Résultat de la recherche de: %s"\r
+\r
+# @ mantra\r
+#: search.php:39\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "Pas de résultat pour : %s"\r
+\r
+# @ mantra\r
+#: searchform.php:1\r
+msgid "Search"\r
+msgstr "Rechercher"\r
+\r
+# @ mantra\r
+#: sidebar.php:26\r
+#: sidebar.php:92\r
+msgid "Sidebar 1"\r
+msgstr "Barre latérale 1"\r
+\r
+#: sidebar.php:28\r
+#: sidebar.php:94\r
+#, php-format\r
+msgid "You currently have no widgets set in the primary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."\r
+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>."\r
+\r
+#: sidebar.php:29\r
+#: sidebar.php:61\r
+#: sidebar.php:95\r
+#: sidebar.php:128\r
+#, php-format\r
+msgid "To hide this sidebar, switch to a different Layout via the <a href=\"%s\">Theme Settings</a>."\r
+msgstr "Pour cacher cette barre latérale, choisissez une présentation diffférente par les <a href=\"%s\">paramètres du thème</a>."\r
+\r
+# @ mantra\r
+#: sidebar.php:58\r
+#: sidebar.php:125\r
+msgid "Sidebar 2"\r
+msgstr "Barre latérale 2"\r
+\r
+#: sidebar.php:60\r
+#: sidebar.php:127\r
+#, php-format\r
+msgid "You currently have no widgets set in the secondary sidebar. You can add widgets via the <a href=\"%s\">Dashboard</a>."\r
+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>."\r
+\r
+# @ mantra\r
+#: single.php:46\r
+msgid "View all posts by "\r
+msgstr "Voir tous les articles de "\r
+\r
+# @ mantra\r
+#: tag.php:21\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Archives par mot-clef: %s"\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:62\r
+msgid "Before you can upload your import file, you will need to fix the following error:"\r
+msgstr "Avant de pouvoir télécharger votre fichier, vous devez corriger l'erreur suivante :"\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Importer les options du thème Mantra"\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:72\r
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"\r
+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>"\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Choissiez un fichier sur votre ordinateur:"\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "Taille maximum: %s"\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "Et importer!"\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Importer les options du thème Mantra"\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "Bravo ! Les options ont été importées !"\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Retourner sur la page des options du thème et vérifier les !"\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:155\r
+#: admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "Désoler, il y a eut un problème."\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:156\r
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "Le fichier téléchargé ne peut pas être lu."\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:168\r
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:177\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "ERREUR: Vous n'êtes pas autorisé à faire cette opération"\r
+\r
+# @ mantra\r
+#: admin/defaults.php:39\r
+msgid "This is your caption's title"\r
+msgstr "Ceux-ci est le titre de votre diapositive"\r
+\r
+#: admin/defaults.php:40\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/defaults.php:43\r
+msgid "This is yet another caption title"\r
+msgstr "Ceux-ci est le titre de votre diapositive"\r
+\r
+#: admin/defaults.php:44\r
+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>."\r
+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>."\r
+\r
+# @ mantra\r
+#: admin/defaults.php:61\r
+msgid "Read more"\r
+msgstr "En savoir plus"\r
+\r
+#: admin/defaults.php:64\r
+msgid "Hi there!"\r
+msgstr "Bonjour à tous!"\r
+\r
+#: admin/defaults.php:65\r
+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."\r
+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."\r
+\r
+#: admin/defaults.php:68\r
+msgid " HTML tags"\r
+msgstr "Balises HTML"\r
+\r
+#: admin/defaults.php:69\r
+msgid "You can also have <a href='http://www.cryoutcreations.eu'>links</a> here as well as some <strong>HTML tags</strong>."\r
+msgstr "Vous pouvez utiliser <a href='http://www.cryoutcreations.eu' >des liens</a> et balises <b>HTML</b> <i>pour modifier l'affichage</i>."\r
+\r
+# @ mantra\r
+#: admin/defaults.php:80\r
+msgid "This could be a title"\r
+msgstr "Ceux-ci peut-être un texte"\r
+\r
+# @ mantra\r
+#: admin/defaults.php:81\r
+msgid "And this is a second title"\r
+msgstr "Et ici un deuxième titre"\r
+\r
+#: admin/defaults.php:83\r
+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! "\r
+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. "\r
+\r
+# @ mantra\r
+#: admin/defaults.php:99\r
+#: admin/settings.php:738\r
+msgid "Site Title and Description"\r
+msgstr "Titre du site et sa description"\r
+\r
+# @ mantra\r
+#: admin/main.php:105\r
+msgid "Layout Settings"\r
+msgstr "Mise en page"\r
+\r
+# @ mantra\r
+#: admin/main.php:106\r
+msgid "Header Settings"\r
+msgstr "Entête"\r
+\r
+# @ mantra\r
+#: admin/main.php:107\r
+msgid "Presentation Page"\r
+msgstr "Page de présentation"\r
+\r
+# @ mantra\r
+#: admin/main.php:108\r
+msgid "Text Settings"\r
+msgstr "Texte"\r
+\r
+# @ mantra\r
+#: admin/main.php:109\r
+msgid "Color Settings"\r
+msgstr "Couleur"\r
+\r
+# @ mantra\r
+#: admin/main.php:110\r
+msgid "Graphics Settings"\r
+msgstr "Eléments graphiques"\r
+\r
+# @ mantra\r
+#: admin/main.php:111\r
+msgid "Post Information Settings"\r
+msgstr "Propriétés des articles"\r
+\r
+# @ mantra\r
+#: admin/main.php:112\r
+msgid "Post Excerpt Settings"\r
+msgstr "Extraits d'articles"\r
+\r
+# @ mantra\r
+#: admin/main.php:113\r
+msgid "Featured Image Settings"\r
+msgstr "Images à la une"\r
+\r
+# @ mantra\r
+#: admin/main.php:114\r
+msgid "Social Media Settings"\r
+msgstr "Réseaux sociaux"\r
+\r
+# @ mantra\r
+#: admin/main.php:115\r
+msgid "Miscellaneous Settings"\r
+msgstr "Divers"\r
+\r
+# @ mantra\r
+#: admin/main.php:118\r
+msgid "Main Layout"\r
+msgstr "Agencement global"\r
+\r
+# @ mantra\r
+#: admin/main.php:119\r
+msgid "Content / Sidebar Width"\r
+msgstr "Largeur contenu / volet"\r
+\r
+# @ mantra\r
+#: admin/main.php:120\r
+msgid "Responsiveness"\r
+msgstr "Adaptable"\r
+\r
+# @ mantra\r
+#: admin/main.php:123\r
+msgid "Enable Presentation Page"\r
+msgstr "Activer la page de présentation"\r
+\r
+# @ mantra\r
+#: admin/main.php:124\r
+msgid "Show Posts on Presentation Page"\r
+msgstr "Afficher les articles sur la page de présentation"\r
+\r
+# @ mantra\r
+#: admin/main.php:125\r
+msgid "Slider Settings"\r
+msgstr "Diaporama"\r
+\r
+# @ mantra\r
+#: admin/main.php:126\r
+msgid "Slides"\r
+msgstr "Diapos"\r
+\r
+# @ mantra\r
+#: admin/main.php:127\r
+msgid "Presentation Page Columns"\r
+msgstr "Colonnes de la page de présentation"\r
+\r
+# @ mantra\r
+#: admin/main.php:128\r
+msgid "Extras"\r
+msgstr "Extras"\r
+\r
+# @ mantra\r
+#: admin/main.php:131\r
+msgid "Header Height"\r
+msgstr "Hauteur de l'entête"\r
+\r
+# @ mantra\r
+#: admin/main.php:132\r
+msgid "Header Image"\r
+msgstr "Image de l'entête"\r
+\r
+# @ mantra\r
+#: admin/main.php:133\r
+msgid "Site Header"\r
+msgstr "En-tête du site"\r
+\r
+# @ mantra\r
+#: admin/main.php:134\r
+msgid "Custom Logo Upload"\r
+msgstr "Envoi du logo personalisé"\r
+\r
+# @ mantra\r
+#: admin/main.php:135\r
+msgid "Header Spacing"\r
+msgstr "Espacement de l'entête"\r
+\r
+# @ mantra\r
+#: admin/main.php:136\r
+msgid "Rounded Menu Corners"\r
+msgstr "Coin des menus arrondis"\r
+\r
+# @ mantra\r
+#: admin/main.php:137\r
+msgid "FavIcon Upload"\r
+msgstr "Envoie de la favicon"\r
+\r
+# @ mantra\r
+#: admin/main.php:139\r
+msgid "General Font"\r
+msgstr "Police de caractères générale"\r
+\r
+# @ mantra\r
+#: admin/main.php:140\r
+msgid "General Font Size"\r
+msgstr "Taille de la police générale"\r
+\r
+# @ mantra\r
+#: admin/main.php:141\r
+msgid "Post Title Font "\r
+msgstr "Police des titres d'article"\r
+\r
+# @ mantra\r
+#: admin/main.php:142\r
+msgid "Post Title Font Size"\r
+msgstr "Taille de la police des titres d'article"\r
+\r
+# @ mantra\r
+#: admin/main.php:143\r
+msgid "Sidebar Font"\r
+msgstr "Police pour les volets"\r
+\r
+# @ mantra\r
+#: admin/main.php:144\r
+msgid "SideBar Font Size"\r
+msgstr "Taille de la police pour les volets"\r
+\r
+# @ mantra\r
+#: admin/main.php:145\r
+msgid "Headings Font"\r
+msgstr "Police pour l'entête"\r
+\r
+# @ mantra\r
+#: admin/main.php:146\r
+msgid "Force Text Align"\r
+msgstr "Alignement de texte forcé"\r
+\r
+# @ mantra\r
+#: admin/main.php:147\r
+msgid "Paragraph spacing"\r
+msgstr "Espace entre les paragraphes"\r
+\r
+# @ mantra\r
+#: admin/main.php:148\r
+msgid "Paragraph indent"\r
+msgstr "Indentation de paragraphe"\r
+\r
+# @ mantra\r
+#: admin/main.php:149\r
+msgid "Header indent"\r
+msgstr "Indentation des titres"\r
+\r
+# @ mantra\r
+#: admin/main.php:150\r
+msgid "Line Height"\r
+msgstr "Hauteur de ligne"\r
+\r
+# @ mantra\r
+#: admin/main.php:151\r
+msgid "Word spacing"\r
+msgstr "Espacement entre mots"\r
+\r
+# @ mantra\r
+#: admin/main.php:152\r
+msgid "Letter spacing"\r
+msgstr "Espacement entre lettres"\r
+\r
+# @ mantra\r
+#: admin/main.php:153\r
+msgid "Text shadow"\r
+msgstr "Ombrage de texte"\r
+\r
+# @ mantra\r
+#: admin/main.php:155\r
+msgid "Background Image"\r
+msgstr "Image de fond"\r
+\r
+# @ mantra\r
+#: admin/main.php:156\r
+msgid "Background Color"\r
+msgstr "Couleur de fond"\r
+\r
+# @ mantra\r
+#: admin/main.php:157\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Couleur de fond pour l'en-tête (bannière et menu)"\r
+\r
+# @ mantra\r
+#: admin/main.php:158\r
+msgid "Content Background Color"\r
+msgstr "Couleur de fond de la zone de contenu"\r
+\r
+# @ mantra\r
+#: admin/main.php:159\r
+msgid "Menu Items Background Color"\r
+msgstr "Couleur de fond du menu"\r
+\r
+# @ mantra\r
+#: admin/main.php:160\r
+msgid "First Sidebar Background Color"\r
+msgstr "Couleur de fond de la première barre latérale"\r
+\r
+# @ mantra\r
+#: admin/main.php:161\r
+msgid "Second Sidebar Background Color"\r
+msgstr "Couleur de fond de la deuxième barre latérale"\r
+\r
+# @ mantra\r
+#: admin/main.php:163\r
+msgid "Site Title Color"\r
+msgstr "Couleur du titre du site"\r
+\r
+# @ mantra\r
+#: admin/main.php:164\r
+msgid "Site Description Color"\r
+msgstr "Couleur de la description du titre du site"\r
+\r
+# @ mantra\r
+#: admin/main.php:166\r
+msgid "Content Text Color"\r
+msgstr "Couleur du texte dans le contenu"\r
+\r
+# @ mantra\r
+#: admin/main.php:167\r
+msgid "Links Color"\r
+msgstr "Couleur des liens"\r
+\r
+# @ mantra\r
+#: admin/main.php:168\r
+msgid "Links Hover Color"\r
+msgstr "Couleur des liens lors du passage de la souris"\r
+\r
+# @ mantra\r
+#: admin/main.php:169\r
+msgid "Post Title Color"\r
+msgstr "Couleur du titre des articles"\r
+\r
+# @ mantra\r
+#: admin/main.php:170\r
+msgid "Post Title Hover Color"\r
+msgstr "Couleur du titre des articles lors du passage de la souris"\r
+\r
+# @ mantra\r
+#: admin/main.php:171\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Couleur de fond des titres dans les volets"\r
+\r
+# @ mantra\r
+#: admin/main.php:172\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Couleur du texte des titres dans les volets"\r
+\r
+# @ mantra\r
+#: admin/main.php:173\r
+msgid "Footer Widget Background Color"\r
+msgstr "Couleur de fond des widgets en bas de page"\r
+\r
+# @ mantra\r
+#: admin/main.php:174\r
+msgid "Footer Background Color"\r
+msgstr "Couleur de fond de la zone bas de page"\r
+\r
+# @ mantra\r
+#: admin/main.php:175\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Couleur du texte des titres dans les widgets de bas de page"\r
+\r
+# @ mantra\r
+#: admin/main.php:176\r
+msgid "Footer Widget Link Color"\r
+msgstr "Couleur des liens dans les widgets de bas de page"\r
+\r
+# @ mantra\r
+#: admin/main.php:177\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Couleur des liens sous la souris dans les widgets de bas de page"\r
+\r
+# @ mantra\r
+#: admin/main.php:179\r
+msgid "Breadcrumbs"\r
+msgstr "Aide à la navigation"\r
+\r
+# @ mantra\r
+#: admin/main.php:180\r
+msgid "Pagination"\r
+msgstr "Pagination"\r
+\r
+# @ mantra\r
+#: admin/main.php:181\r
+msgid "Main Menu Alignment"\r
+msgstr "Alignement du menu principal"\r
+\r
+# @ mantra\r
+#: admin/main.php:182\r
+msgid "Post Images Border"\r
+msgstr "Bordure des images dans les articles"\r
+\r
+# @ mantra\r
+#: admin/main.php:183\r
+msgid "Caption Border"\r
+msgstr "Bordure des légendes"\r
+\r
+# @ mantra\r
+#: admin/main.php:184\r
+msgid "Caption Pin"\r
+msgstr "Epingle pour les légendes"\r
+\r
+# @ mantra\r
+#: admin/main.php:185\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Vignette des menus de volet"\r
+\r
+# @ mantra\r
+#: admin/main.php:186\r
+msgid "Meta Area Background"\r
+msgstr "Couleur du fond de la zone info"\r
+\r
+# @ mantra\r
+#: admin/main.php:187\r
+msgid "Post Separator"\r
+msgstr "Séparateur entre articles"\r
+\r
+# @ mantra\r
+#: admin/main.php:188\r
+msgid "Content List Bullets"\r
+msgstr "Vignette des listes dans la zone contenu"\r
+\r
+# @ mantra\r
+#: admin/main.php:189\r
+msgid "Page Titles"\r
+msgstr "Titres des pages"\r
+\r
+# @ mantra\r
+#: admin/main.php:190\r
+msgid "Category Page Titles"\r
+msgstr "Titre lors de l'affichage d'un ensemble"\r
+\r
+# @ mantra\r
+#: admin/main.php:191\r
+msgid "Hide Tables"\r
+msgstr "Masquage des tableaux"\r
+\r
+# @ mantra\r
+#: admin/main.php:192\r
+msgid "Back to Top button"\r
+msgstr "Bouton de retour en haut de page"\r
+\r
+# @ mantra\r
+#: admin/main.php:193\r
+msgid "Text Under Comments"\r
+msgstr "Texte sous les commentaires"\r
+\r
+# @ mantra\r
+#: admin/main.php:194\r
+msgid "Comments are closed text"\r
+msgstr "Commentaires fermés"\r
+\r
+# @ mantra\r
+#: admin/main.php:195\r
+msgid "Comments off"\r
+msgstr "Commentaires désactivés"\r
+\r
+# @ mantra\r
+#: admin/main.php:197\r
+msgid "Post Comments Link"\r
+msgstr "Liens pour soumettre un commentaire"\r
+\r
+# @ mantra\r
+#: admin/main.php:198\r
+msgid "Post Date"\r
+msgstr "Date de publication"\r
+\r
+# @ mantra\r
+#: admin/main.php:199\r
+msgid "Post Time"\r
+msgstr "Heure de publication"\r
+\r
+# @ mantra\r
+#: admin/main.php:200\r
+#: admin/settings.php:2072\r
+msgid "Post Author"\r
+msgstr "Auteur de l'article"\r
+\r
+# @ mantra\r
+#: admin/main.php:201\r
+msgid "Post Category"\r
+msgstr "Catégorie de publication"\r
+\r
+# @ mantra\r
+#: admin/main.php:202\r
+msgid "Meta Bar"\r
+msgstr "Meta"\r
+\r
+# @ mantra\r
+#: admin/main.php:203\r
+msgid "Post Tags"\r
+msgstr "Mots-clefs associés"\r
+\r
+# @ mantra\r
+#: admin/main.php:204\r
+msgid "Post Permalink"\r
+msgstr "Permalien de l'article"\r
+\r
+# @ mantra\r
+#: admin/main.php:206\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Extraits d'articles en page d'accueil"\r
+\r
+# @ mantra\r
+#: admin/main.php:207\r
+msgid "Affect Sticky Posts"\r
+msgstr "Cas des articles épinglés"\r
+\r
+# @ mantra\r
+#: admin/main.php:208\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Extraits des articles dans les archives et les pages de catégories"\r
+\r
+# @ mantra\r
+#: admin/main.php:209\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Nombre de mots pour les extraits d'articles"\r
+\r
+# @ mantra\r
+#: admin/main.php:210\r
+msgid "Magazine Layout"\r
+msgstr "Mise en page de type magazine"\r
+\r
+# @ mantra\r
+#: admin/main.php:211\r
+msgid "Excerpt suffix"\r
+msgstr "Terminateur des extraits"\r
+\r
+# @ mantra\r
+#: admin/main.php:212\r
+msgid "Continue reading link text "\r
+msgstr "Texte du lien lire la suite"\r
+\r
+# @ mantra\r
+#: admin/main.php:213\r
+msgid "HTML tags in Excerpts"\r
+msgstr "Tags HTML dans les extraits"\r
+\r
+# @ mantra\r
+#: admin/main.php:215\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Réductions pour les images à la une"\r
+\r
+# @ mantra\r
+#: admin/main.php:216\r
+msgid "Auto Select Images From Posts "\r
+msgstr " Sélection automatique d'images d'articles"\r
+\r
+# @ mantra\r
+#: admin/main.php:217\r
+msgid "Thumbnails Alignment "\r
+msgstr "Emplacement des réductions"\r
+\r
+# @ mantra\r
+#: admin/main.php:218\r
+msgid "Thumbnails Size "\r
+msgstr "Taille des réductions"\r
+\r
+# @ mantra\r
+#: admin/main.php:219\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Images à la une utilisées comme images d'en-tête"\r
+\r
+# @ mantra\r
+#: admin/main.php:221\r
+msgid "Link nr. 1"\r
+msgstr "Lien N°1"\r
+\r
+# @ mantra\r
+#: admin/main.php:222\r
+msgid "Link nr. 2"\r
+msgstr "Lien N°2"\r
+\r
+# @ mantra\r
+#: admin/main.php:223\r
+msgid "Link nr. 3"\r
+msgstr "Lien N°3"\r
+\r
+# @ mantra\r
+#: admin/main.php:224\r
+msgid "Link nr. 4"\r
+msgstr "Lien N°4"\r
+\r
+# @ mantra\r
+#: admin/main.php:225\r
+msgid "Link nr. 5"\r
+msgstr "Lien N°5"\r
+\r
+# @ mantra\r
+#: admin/main.php:226\r
+msgid "Socials display"\r
+msgstr "Affichage des réseaux sociaux"\r
+\r
+# @ mantra\r
+#: admin/main.php:228\r
+msgid "SEO Settings"\r
+msgstr "SEO"\r
+\r
+# @ mantra\r
+#: admin/main.php:229\r
+msgid "Custom Footer Text"\r
+msgstr "Text de pied de page"\r
+\r
+# @ mantra\r
+#: admin/main.php:230\r
+msgid "Custom CSS"\r
+msgstr "CSS spécifique"\r
+\r
+# @ mantra\r
+#: admin/main.php:231\r
+msgid "Custom JavaScript"\r
+msgstr "JavaScript personalisé"\r
+\r
+# @ mantra\r
+#: admin/main.php:248\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Désolé, vos droits ne vous permettent pas d'accéder à cette page."\r
+\r
+# @ mantra\r
+#: admin/main.php:268\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Configuration de Mantra mise à jour"\r
+\r
+# @ mantra\r
+#: admin/main.php:283\r
+msgid "Save Changes"\r
+msgstr "Enregistrer les modifications"\r
+\r
+# @ mantra\r
+#: admin/main.php:284\r
+msgid "Reset to Defaults"\r
+msgstr "Retour à configuration par défaut"\r
+\r
+# @ mantra\r
+#: admin/main.php:316\r
+msgid "Import/Export Settings"\r
+msgstr "Import/export de la configuration"\r
+\r
+# @ mantra\r
+#: admin/main.php:322\r
+msgid "Export Theme options"\r
+msgstr "Exporter les options du thème"\r
+\r
+# @ mantra\r
+#: admin/main.php:323\r
+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!"\r
+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 !"\r
+\r
+# @ mantra\r
+#: admin/main.php:328\r
+msgid "Import Theme options"\r
+msgstr "Importer les options du thème"\r
+\r
+# @ mantra\r
+#: admin/main.php:329\r
+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."\r
+msgstr "Sans l'import, l'export ne servirait à rien. Vérifier de disposer du fichier d'export puis cliquer."\r
+\r
+# @ mantra\r
+#: admin/main.php:337\r
+msgid "Mantra Latest News"\r
+msgstr "Dernières nouvelles de Mantra"\r
+\r
+# @ mantra\r
+#: admin/main.php:348\r
+msgid "No news items."\r
+msgstr "Pas de nouvel élément."\r
+\r
+# @ mantra\r
+#: admin/main.php:352\r
+msgid "Posted on"\r
+msgstr "Publié sur"\r
+\r
+# @ mantra\r
+#: admin/settings.php:66\r
+msgid "One column (no sidebars)"\r
+msgstr "Une colonne (pas de volet)"\r
+\r
+# @ mantra\r
+#: admin/settings.php:67\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Deux colonnes, volet à droite"\r
+\r
+# @ mantra\r
+#: admin/settings.php:68\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Deux colonnes, volet à gauche"\r
+\r
+# @ mantra\r
+#: admin/settings.php:69\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Trois colonnes dont deux volets à droite"\r
+\r
+# @ mantra\r
+#: admin/settings.php:70\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Trois colonnes dont deux volets à gauche"\r
+\r
+# @ mantra\r
+#: admin/settings.php:71\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Trois colonnes, un volet de chaque côté"\r
+\r
+# @ mantra\r
+#: admin/settings.php:86\r
+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."\r
+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é."\r
+\r
+# @ mantra\r
+#: admin/settings.php:94\r
+msgid "Absolute"\r
+msgstr "Absolue"\r
+\r
+# @ mantra\r
+#: admin/settings.php:94\r
+msgid "Relative *DEPRECATED"\r
+msgstr "Relatif (* Plus supporter)"\r
+\r
+# @ mantra\r
+#: admin/settings.php:95\r
+msgid "Dimensions to use: "\r
+msgstr "Dimensions "\r
+\r
+# @ mantra\r
+#: admin/settings.php:177\r
+#: admin/settings.php:195\r
+msgid "Content ="\r
+msgstr "Contenu ="\r
+\r
+# @ mantra\r
+#: admin/settings.php:178\r
+#: admin/settings.php:196\r
+msgid "Sidebar(s) ="\r
+msgstr "Volet(s) ="\r
+\r
+# @ mantra\r
+#: admin/settings.php:179\r
+#: admin/settings.php:197\r
+msgid "Total width ="\r
+msgstr "Largeur totale="\r
+\r
+# @ mantra\r
+#: admin/settings.php:188\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:206\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:217\r
+#: admin/settings.php:240\r
+#: admin/settings.php:255\r
+#: admin/settings.php:722\r
+#: admin/settings.php:1085\r
+#: admin/settings.php:1147\r
+#: admin/settings.php:1335\r
+#: admin/settings.php:1350\r
+#: admin/settings.php:1521\r
+#: admin/settings.php:1583\r
+#: admin/settings.php:1783\r
+#: admin/settings.php:1812\r
+#: admin/settings.php:1833\r
+#: admin/settings.php:1856\r
+#: admin/settings.php:1905\r
+#: admin/settings.php:2040\r
+msgid "Enable"\r
+msgstr "Activer"\r
+\r
+# @ mantra\r
+#: admin/settings.php:217\r
+#: admin/settings.php:240\r
+#: admin/settings.php:255\r
+#: admin/settings.php:722\r
+#: admin/settings.php:1085\r
+#: admin/settings.php:1147\r
+#: admin/settings.php:1335\r
+#: admin/settings.php:1350\r
+#: admin/settings.php:1521\r
+#: admin/settings.php:1583\r
+#: admin/settings.php:1783\r
+#: admin/settings.php:1812\r
+#: admin/settings.php:1833\r
+#: admin/settings.php:1856\r
+#: admin/settings.php:1905\r
+#: admin/settings.php:2040\r
+msgid "Disable"\r
+msgstr "Désactiver"\r
+\r
+# @ mantra\r
+#: admin/settings.php:226\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:248\r
+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 » Reading </a> and make sure you have selected <strong>Front Page Displays</strong> as <Strong>Your Latest Posts</strong>."\r
+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 » 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>."\r
+\r
+#: admin/settings.php:264\r
+msgid "posts"\r
+msgstr "articles"\r
+\r
+#: admin/settings.php:265\r
+msgid "Enable to display latest posts on the presentation page, below the columns. Sticky posts are always displayed and not counted."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:273\r
+msgid "Slider Dimensions:"\r
+msgstr "Taille des diapos:"\r
+\r
+# @ mantra\r
+#: admin/settings.php:274\r
+msgid "width"\r
+msgstr "largeur"\r
+\r
+# @ mantra\r
+#: admin/settings.php:275\r
+msgid "height"\r
+msgstr "hauteur"\r
+\r
+# @ mantra\r
+#: admin/settings.php:276\r
+msgid "The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr "Dimensions de l'affichage du diaporama. S'assurer que les images utilisées sont de la même taille."\r
+\r
+# @ mantra\r
+#: admin/settings.php:278\r
+msgid "Animation:"\r
+msgstr "Animation:"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "Random"\r
+msgstr "Au hasard"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "Fold"\r
+msgstr "Balayage"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "Fade"\r
+msgstr "Fondu"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "SlideInRight"\r
+msgstr "Glisser depuis la droite"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "SlideInLeft"\r
+msgstr "Glisser depuis la gauche"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "SliceDown"\r
+msgstr "Glisser vers le bas et la droite"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "SliceDownLeft"\r
+msgstr "Glisser vers le bas et la gauche"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "SliceUp"\r
+msgstr "Glisser vers le haut et la droite"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "SliceUpLeft"\r
+msgstr "Glisser vers le haut et la gauche"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "SliceUpDown"\r
+msgstr "Glisser du haut et du bas à partir de la gauche"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "SliceUpDownLeft"\r
+msgstr "Glisser du haut et du bas à partir de la droite"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "BoxRandom"\r
+msgstr "Boites au hasard"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "BoxRain"\r
+msgstr "Carrés du haut en bas vers la droite"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "BoxRainReverse"\r
+msgstr "Carrés du bas en haut vers la gauche"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "BoxRainGrow"\r
+msgstr "Carrés s'agrandissant de haut en bas vers la droite"\r
+\r
+# @ mantra\r
+#: admin/settings.php:280\r
+msgid "BoxRainGrowReverse"\r
+msgstr "Carrés s'agrandissant de bas en haut vers la gauche"\r
+\r
+# @ mantra\r
+#: admin/settings.php:288\r
+msgid "The transition effect your slider will have."\r
+msgstr "Type d'effet lors des transitions du diaporama."\r
+\r
+# @ mantra\r
+#: admin/settings.php:290\r
+msgid "Border Settings:"\r
+msgstr "Bordures:"\r
+\r
+# @ mantra\r
+#: admin/settings.php:291\r
+msgid "Width"\r
+msgstr "Largeur"\r
+\r
+# @ mantra\r
+#: admin/settings.php:292\r
+msgid "Color"\r
+msgstr "Couleur"\r
+\r
+# @ mantra\r
+#: admin/settings.php:294\r
+msgid "The width and color of the slider's border."\r
+msgstr "La taille et la couleur de la bordure du diaporama"\r
+\r
+# @ mantra\r
+#: admin/settings.php:296\r
+msgid "Animation Time:"\r
+msgstr "Durée d'animation:"\r
+\r
+# @ mantra\r
+#: admin/settings.php:297\r
+#: admin/settings.php:301\r
+msgid "milliseconds"\r
+msgstr "milliseconds"\r
+\r
+# @ mantra\r
+#: admin/settings.php:298\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "Durée de l'effet lors des transitions."\r
+\r
+# @ mantra\r
+#: admin/settings.php:300\r
+msgid "Pause Time:"\r
+msgstr "Temps de pose:"\r
+\r
+# @ mantra\r
+#: admin/settings.php:302\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Durée pendant laquelle chaque vue est stable et visible."\r
+\r
+# @ mantra\r
+#: admin/settings.php:305\r
+msgid "Slider navigation:"\r
+msgstr "Navigation entre diapos:"\r
+\r
+# @ mantra\r
+#: admin/settings.php:307\r
+msgid "Numbers"\r
+msgstr "Numéros"\r
+\r
+# @ mantra\r
+#: admin/settings.php:307\r
+msgid "Bullets"\r
+msgstr "Marqueurs"\r
+\r
+# @ mantra\r
+#: admin/settings.php:307\r
+#: admin/settings.php:1442\r
+msgid "None"\r
+msgstr "Aucun"\r
+\r
+# @ mantra\r
+#: admin/settings.php:315\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Mode de navigation entre vues pour le diaporama. Affiché sous le passe-vues."\r
+\r
+# @ mantra\r
+#: admin/settings.php:317\r
+msgid "Slider arrows:"\r
+msgstr "Flèches pour navigation:"\r
+\r
+# @ mantra\r
+#: admin/settings.php:319\r
+msgid "Always Visible"\r
+msgstr "Toujours visible"\r
+\r
+# @ mantra\r
+#: admin/settings.php:319\r
+msgid "Visible on Hover"\r
+msgstr "Visible sous la souris"\r
+\r
+# @ mantra\r
+#: admin/settings.php:319\r
+msgid "Hidden"\r
+msgstr "Caché"\r
+\r
+# @ mantra\r
+#: admin/settings.php:327\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Flèches gauche et droite sur le passe-vues"\r
+\r
+# @ mantra\r
+#: admin/settings.php:368\r
+#: admin/settings.php:437\r
+msgid "Select Category"\r
+msgstr "Choisir une catégorie"\r
+\r
+# @ mantra\r
+#: admin/settings.php:395\r
+msgid "Custom Slides"\r
+msgstr "Diaporama personalisé"\r
+\r
+# @ mantra\r
+#: admin/settings.php:395\r
+msgid "Latest Posts"\r
+msgstr "Derniers articles"\r
+\r
+# @ mantra\r
+#: admin/settings.php:395\r
+msgid "Random Posts"\r
+msgstr "Articles au hasard"\r
+\r
+# @ mantra\r
+#: admin/settings.php:395\r
+msgid "Sticky Posts"\r
+msgstr "Articles épinglés"\r
+\r
+# @ mantra\r
+#: admin/settings.php:395\r
+msgid "Latest Posts from Category"\r
+msgstr "Derniers articles de la catégorie"\r
+\r
+# @ mantra\r
+#: admin/settings.php:395\r
+msgid "Random Posts from Category"\r
+msgstr "Articles au hasard de la catégorie"\r
+\r
+# @ mantra\r
+#: admin/settings.php:395\r
+msgid "Specific Posts"\r
+msgstr "Articles spécifiques"\r
+\r
+#: admin/settings.php:396\r
+msgid "Select the content you want to load in your slides:"\r
+msgstr "Choisissez le contenu que vous voulez mettre dans le diaporama :"\r
+\r
+# @ mantra\r
+#: admin/settings.php:404\r
+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."\r
+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é."\r
+\r
+# @ mantra\r
+#: admin/settings.php:409\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Les derniers articles seront mis dans le diaporama."\r
+\r
+# @ mantra\r
+#: admin/settings.php:413\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Des articles au hasard seront mis dans le diaporama."\r
+\r
+# @ mantra\r
+#: admin/settings.php:417\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "Les derniers articles de la catégorie sélectionnée seront mis dans le diaporama."\r
+\r
+# @ mantra\r
+#: admin/settings.php:422\r
+msgid "Random posts from the category you choose will be loaded into the slider."\r
+msgstr "Des articles au hasard de la catégorie sélectionnée seront mis dans le diaporama."\r
+\r
+# @ mantra\r
+#: admin/settings.php:426\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Seuls les articles sélectionnés seront mis dans le diaporama."\r
+\r
+# @ mantra\r
+#: admin/settings.php:430\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr "Listes des articles (identifiés par leurs ID) à mettre dans le diaporama (séparés par des virgules)"\r
+\r
+# @ mantra\r
+#: admin/settings.php:435\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br/> Choisir la catégorie: "\r
+\r
+# @ mantra\r
+#: admin/settings.php:452\r
+msgid "Number of posts to show:"\r
+msgstr "Nombre d'articles à montrer :"\r
+\r
+# @ mantra\r
+#: admin/settings.php:459\r
+msgid "Slide 1"\r
+msgstr "Diapo 1"\r
+\r
+# @ mantra\r
+#: admin/settings.php:463\r
+#: admin/settings.php:478\r
+#: admin/settings.php:493\r
+#: admin/settings.php:508\r
+#: admin/settings.php:523\r
+#: admin/settings.php:565\r
+#: admin/settings.php:580\r
+#: admin/settings.php:595\r
+#: admin/settings.php:610\r
+#: admin/settings.php:757\r
+#: admin/settings.php:780\r
+msgid "Select / Upload Image"\r
+msgstr "Sélectionner / Charger une image"\r
+\r
+# @ mantra\r
+#: admin/settings.php:464\r
+#: admin/settings.php:479\r
+#: admin/settings.php:494\r
+#: admin/settings.php:509\r
+#: admin/settings.php:524\r
+#: admin/settings.php:566\r
+#: admin/settings.php:581\r
+#: admin/settings.php:611\r
+msgid "Title"\r
+msgstr "Titre"\r
+\r
+# @ mantra\r
+#: admin/settings.php:466\r
+#: admin/settings.php:481\r
+#: admin/settings.php:496\r
+#: admin/settings.php:511\r
+#: admin/settings.php:526\r
+#: admin/settings.php:568\r
+#: admin/settings.php:583\r
+#: admin/settings.php:598\r
+#: admin/settings.php:613\r
+msgid "Text"\r
+msgstr "Texte"\r
+\r
+# @ mantra\r
+#: admin/settings.php:474\r
+msgid "Slide 2"\r
+msgstr "Diapo 2"\r
+\r
+# @ mantra\r
+#: admin/settings.php:489\r
+msgid "Slide 3"\r
+msgstr "Diapo 3"\r
+\r
+# @ mantra\r
+#: admin/settings.php:504\r
+msgid "Slide 4"\r
+msgstr "Diapo 4"\r
+\r
+# @ mantra\r
+#: admin/settings.php:519\r
+msgid "Slide 5"\r
+msgstr "Diapo 5"\r
+\r
+# @ mantra\r
+#: admin/settings.php:541\r
+msgid "Number of columns:"\r
+msgstr "Nombre de colonnes:"\r
+\r
+# @ mantra\r
+#: admin/settings.php:551\r
+msgid "Image Height:"\r
+msgstr "Hauteur des images:"\r
+\r
+# @ mantra\r
+#: admin/settings.php:554\r
+msgid "Read more text:"\r
+msgstr "Texte suite:"\r
+\r
+# @ mantra\r
+#: admin/settings.php:557\r
+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."\r
+msgstr "Texte du lien apparaissant au bas de chaque colonne. Ce texte peut être vide, auquel cas aucun lien n'est affiché."\r
+\r
+# @ mantra\r
+#: admin/settings.php:561\r
+msgid "1st Column"\r
+msgstr "1ère colonne"\r
+\r
+# @ mantra\r
+#: admin/settings.php:576\r
+msgid "2nd Column"\r
+msgstr "2ème colonne"\r
+\r
+# @ mantra\r
+#: admin/settings.php:591\r
+msgid "3rd Column"\r
+msgstr "3ème colonne"\r
+\r
+# @ mantra\r
+#: admin/settings.php:606\r
+msgid "4th Column"\r
+msgstr "4ème colonne"\r
+\r
+# @ mantra\r
+#: admin/settings.php:628\r
+msgid "Extra Text"\r
+msgstr "Texte supplémentaire"\r
+\r
+# @ mantra\r
+#: admin/settings.php:630\r
+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. "\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:632\r
+msgid "Top Title"\r
+msgstr "Titre du haut"\r
+\r
+# @ mantra\r
+#: admin/settings.php:633\r
+msgid "Second Title"\r
+msgstr "Second titre"\r
+\r
+# @ mantra\r
+#: admin/settings.php:636\r
+msgid "Title color"\r
+msgstr "Couleur des titres"\r
+\r
+# @ mantra\r
+#: admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr "Texte du bas N°1"\r
+\r
+# @ mantra\r
+#: admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr "Texte du bas N°2"\r
+\r
+# @ mantra\r
+#: admin/settings.php:650\r
+msgid "Hide areas"\r
+msgstr "Masquage de zones"\r
+\r
+# @ mantra\r
+#: admin/settings.php:652\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Choisir les zones à cacher en première page."\r
+\r
+# @ mantra\r
+#: admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Masquer la zone en-tête (image et fond)"\r
+\r
+# @ mantra\r
+#: admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Masquer le menu principal (onglets de navigation)"\r
+\r
+# @ mantra\r
+#: admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr "Masquer la zone widget du bas."\r
+\r
+# @ mantra\r
+#: admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Masquer le bas de page (zone du copyright)"\r
+\r
+# @ mantra\r
+#: admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Dans la zone à fond blanc, remplacer le blanc par la couleur de fond choisie."\r
+\r
+# @ mantra\r
+#: admin/settings.php:700\r
+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 = "\r
+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 ="\r
+\r
+# @ default\r
+#: admin/settings.php:707\r
+msgid "Define header image"\r
+msgstr "Définir l'image de l'entête"\r
+\r
+#: admin/settings.php:708\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:711\r
+msgid "Center the header image horizontally"\r
+msgstr "Centrer l'image de l'entête horizontallement"\r
+\r
+# @ default\r
+#: admin/settings.php:714\r
+msgid "Keep header image aspect ratio"\r
+msgstr "Conserver les ratios de l'image"\r
+\r
+# @ mantra\r
+#: admin/settings.php:730\r
+msgid "Enable or disable the round corners for the main menu items."\r
+msgstr "Activié ou désactivé les coins arrondis pour le menu principal"\r
+\r
+# @ mantra\r
+#: admin/settings.php:738\r
+msgid "Custom Logo"\r
+msgstr "Logo personalisé"\r
+\r
+# @ mantra\r
+#: admin/settings.php:738\r
+msgid "Clickable header image"\r
+msgstr "Image d'entête avec un lien"\r
+\r
+# @ mantra\r
+#: admin/settings.php:738\r
+msgid "Empty"\r
+msgstr "Vide"\r
+\r
+# @ mantra\r
+#: admin/settings.php:746\r
+msgid "Choose what to display inside your header area."\r
+msgstr "Choisir ce qu'il faut afficher dans la zone d'entête"\r
+\r
+# @ mantra\r
+#: admin/settings.php:756\r
+msgid "Custom Logo upload. The logo will appear over the heder image if you have used one."\r
+msgstr "Chargement du logo personalisé. Le logo apparaitra par dessus l'image dans l'entête si vous en avez sélectionné une."\r
+\r
+# @ mantra\r
+#: admin/settings.php:765\r
+msgid "top"\r
+msgstr "haut"\r
+\r
+# @ mantra\r
+#: admin/settings.php:766\r
+msgid "left"\r
+msgstr "gauche"\r
+\r
+# @ mantra\r
+#: admin/settings.php:769\r
+msgid "Select the top spacing for the header. Use it to better position your site title and description or custom logo inside the header. "\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:779\r
+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>"\r
+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>"\r
+\r
+# @ mantra\r
+#: admin/settings.php:802\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:846\r
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "\r
+msgstr "Choisir la police à utiliser sur le site. Sont concernés tous les textes de contenu (y compris les boutons de menus)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:848\r
+#: admin/settings.php:898\r
+#: admin/settings.php:949\r
+#: admin/settings.php:1001\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:895\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:947\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:998\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1010\r
+#: admin/settings.php:1025\r
+#: admin/settings.php:1040\r
+#: admin/settings.php:1100\r
+#: admin/settings.php:1115\r
+#: admin/settings.php:1130\r
+msgid "Default"\r
+msgstr "Par défaut"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1018\r
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+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)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1033\r
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+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)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1040\r
+#: admin/settings.php:1364\r
+#: admin/settings.php:1872\r
+msgid "Left"\r
+msgstr "A gauche"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1040\r
+#: admin/settings.php:1364\r
+#: admin/settings.php:1872\r
+msgid "Right"\r
+msgstr "A droite"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1040\r
+msgid "Justify"\r
+msgstr "Justifié"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1040\r
+#: admin/settings.php:1364\r
+#: admin/settings.php:1872\r
+msgid "Center"\r
+msgstr "Centré"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1048\r
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."\r
+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..."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1062\r
+msgid "Choose the spacing between paragraphs."\r
+msgstr "Choisir l'espace entre les paragraphes."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1077\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Choisir l'indentation des paragraphes."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1093\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "Activer/désactiver l'indentation par défaut des titres d'article et de paragraphe (marge gauche)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1108\r
+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)."\r
+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"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1123\r
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Espacement entre <i>mots</i>. Choisir l'espacement par défaut pour celui défini normalement dans la feuille de style (CSS)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1138\r
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Espacement entre <i>lettres</i>. Choisir l'espacement par défaut pour celui défini normalement dans la feuille de style (CSS)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1155\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "Activer/désactiver l'ombrage de texte sur les divers titres (articles, pages et paragraphes)."\r
+\r
+# @ default\r
+#: admin/settings.php:1163\r
+msgid "Define background image"\r
+msgstr "Définir l'image de fond"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1172\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Couleur de fond (444444 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1180\r
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1187\r
+msgid "Content background color (Default value is FFFFFF). Works best with really light colors."\r
+msgstr "Couleur du fond du contenu (valeur par défaut FFFFFF). Fonctionne mieux avec des couleurs très claires."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1194\r
+msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1201\r
+msgid "First sidebar background color (Default is no color for a transparent sidebar)."\r
+msgstr "Couleur de fond de la première barre latérale (Par défaut pas de couleur pour une barre transparente)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1208\r
+msgid "Second sidebar background color (Default is no color for a transparent sidebar)."\r
+msgstr "Couleur de fond de la deuxième barre latérale (Par défaut, aucune couleur pour une barre latérale transparente)"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1216\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "Couleur de fond de la zone des widgets de bas de page (171717 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1224\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Couleur de fond de la zone de bas de page (222222 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1232\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Couleur du titre du site (0D85CC par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1240\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Couleur du texte de description du site (222222 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1248\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Couleur du texte dans la zone de contenu (333333 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1256\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Couleur des liens (0D85CC par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1264\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "Couleur des liens lors du passage de la souris (333333 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1272\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Couleur du texte des titres d'article (333333 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1280\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr "Couleur du texte des titres d'articles lors du passage de la souris (000000 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1288\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Couleur de fond des titres dans les volets (444444 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1297\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Couleur du texte des titres dans les volets (2EA5FD par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1305\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Couleur du texte dans les widgets en bas de page (0D85CC par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1313\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Couleur des liens dans les widgets de bas de page (666666 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1321\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr "Couleur des liens lors du passage de la souris dans les widgets de bas de page (888888 par défaut)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1343\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1358\r
+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. "\r
+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>."\r
+\r
+#: admin/settings.php:1372\r
+msgid "Select the desired main menu items alignment. Center option is only valid for single line menus."\r
+msgstr "Choisissez l'alignement du menu principal souhaiter. L'option centrer est valide uniquement pour les menus sur une seule ligne."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1379\r
+#: admin/settings.php:1442\r
+msgid "White"\r
+msgstr "Blanc"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1379\r
+msgid "Light"\r
+msgstr "Clair"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1379\r
+msgid "Light Gray"\r
+msgstr "Gris clair"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1379\r
+#: admin/settings.php:1442\r
+msgid "Gray"\r
+msgstr "Gris"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1379\r
+msgid "Dark Gray"\r
+msgstr "Gris foncé"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1379\r
+msgid "Black"\r
+msgstr "Noir"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1387\r
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1403\r
+msgid "The border around your inserted images. "\r
+msgstr "Bordure autour des images insérées dans les articles ou pages."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1418\r
+msgid "The image on top of your captions. "\r
+msgstr "Icône apparaissant au sommet des cadres avec légende."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1433\r
+msgid "The sidebar list bullets. "\r
+msgstr "Marqueur d'élément de liste dans les volets."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1450\r
+msgid "The background for your post-metas area (under your post tiltes). Gray by default."\r
+msgstr "Fond de la zone d'info associée à l’article (sous le titre de l'article). Gris par défaut."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1458\r
+#: admin/settings.php:1474\r
+#: admin/settings.php:1491\r
+#: admin/settings.php:1506\r
+#: admin/settings.php:1536\r
+#: admin/settings.php:1551\r
+#: admin/settings.php:1567\r
+#: admin/settings.php:1603\r
+#: admin/settings.php:1618\r
+#: admin/settings.php:1633\r
+#: admin/settings.php:1648\r
+#: admin/settings.php:1663\r
+#: admin/settings.php:1678\r
+#: admin/settings.php:1693\r
+#: admin/settings.php:1708\r
+msgid "Show"\r
+msgstr "Afficher"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1458\r
+#: admin/settings.php:1474\r
+#: admin/settings.php:1491\r
+#: admin/settings.php:1506\r
+#: admin/settings.php:1536\r
+#: admin/settings.php:1567\r
+#: admin/settings.php:1603\r
+#: admin/settings.php:1618\r
+#: admin/settings.php:1633\r
+#: admin/settings.php:1648\r
+#: admin/settings.php:1663\r
+#: admin/settings.php:1678\r
+#: admin/settings.php:1693\r
+#: admin/settings.php:1708\r
+msgid "Hide"\r
+msgstr "Cacher"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1466\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Afficher ou non une ligne horizontale de séparation entre les articles."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1482\r
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."\r
+msgstr "Cacher ou afficher les marqueurs d'éléments de liste dans la zone contenu (articles, pages, etc...)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1499\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "Afficher ou non les titres de page pour chaque page <i>créée</i>."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1514\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Afficher ou non un titre lors de l'affichage d'un ensemble de pages ou d'articles."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1529\r
+msgid "Hide table borders and background color."\r
+msgstr "Activer ou non le masquage des bordures de tableau et de la couleur de fond associée"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1544\r
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."\r
+msgstr "Afficher ou masquer le texte explicatif sous le formulaire de saisie de commentaire (celui commençant par <i>Vous pouvez utiliser...</i>)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1551\r
+msgid "Hide in posts"\r
+msgstr "Cacher dans les articles"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1551\r
+msgid "Hide in pages"\r
+msgstr "Cacher dans les pages"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1551\r
+msgid "Hide everywhere"\r
+msgstr "Cacher partout"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1559\r
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1575\r
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1591\r
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1611\r
+msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."\r
+msgstr "Montrer ou cacher l'option <strong>Laisser un commentaire</strong> ou <strong>Commentaires</strong> à côté de l'article ou du résummé."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1626\r
+msgid "Hide or show the post date."\r
+msgstr "Cacher ou afficher la date de publication."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1641\r
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."\r
+msgstr "Afficher/cacher l'heure de publication avec la date. L'heure ne peut être affichée si la date ne l'est pas."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1656\r
+msgid "Hide or show the post author."\r
+msgstr "Cacher ou afficher le nom de l'auteur de l'article."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1671\r
+msgid "Hide the post category."\r
+msgstr "Afficher ou cacher la catégorie associée à l'article."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1686\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "Afficher ou non le permalien pour marque-pages."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1701\r
+msgid "Hide the meta bar. All meta info in it will be hidden."\r
+msgstr "Cacher permet d'empêcher l'affichage de toute meta-information associée aux articles."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1716\r
+msgid "Hide the post tags."\r
+msgstr "Afficher ou non les mots-clefs associés à l'article."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1729\r
+#: admin/settings.php:1744\r
+#: admin/settings.php:1760\r
+msgid "Excerpt"\r
+msgstr "Extrait"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1729\r
+#: admin/settings.php:1744\r
+#: admin/settings.php:1760\r
+msgid "Full Post"\r
+msgstr "Article entier"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1737\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1752\r
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "\r
+msgstr "Sélectionner la façon dont les articles épinglés sont affichés en page d'accueil (extraits ou en totalité)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1768\r
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1776\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1791\r
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1798\r
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."\r
+msgstr "Définir la chaîne ajoutée automatiquement à la fin des extraits (par défaut une suite de points)."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1805\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "Définir le texte du lien de fin d'extrait conduisant à la totalité de l'article."\r
+\r
+#: admin/settings.php:1820\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr "Par défaut le résumé WordPress supprime tous les tags HTML ("\r
+\r
+#: admin/settings.php:1846\r
+msgid "Link the thumbail to the post"\r
+msgstr "Lié l'image à la une à l'article"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1849\r
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image Section."\r
+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. "\r
+\r
+# @ mantra\r
+#: admin/settings.php:1864\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1880\r
+msgid "Thumbnail alignment."\r
+msgstr "Endroit où doit être affichée une réduction d'image."\r
+\r
+#: admin/settings.php:1894\r
+msgid "Crop images to exact size."\r
+msgstr "Réduire les images à la taille exacte."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1897\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1913\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1928\r
+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> )"\r
+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>)"\r
+\r
+# @ mantra\r
+#: admin/settings.php:1929\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Il est possible d'insérer jusqu'à 5 références à des réseaux sociaux."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1930\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Choisir l'un des 27 réseaux sociaux disponibles."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1931\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Chaque champ peut être laissé vide."\r
+\r
+# @ mantra\r
+#: admin/settings.php:1932\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Il est possible de choisir plusieurs fois le même réseau social."\r
+\r
+#: admin/settings.php:1991\r
+msgid "Top right corner of header"\r
+msgstr "En haut et à droite du titre"\r
+\r
+#: admin/settings.php:1995\r
+msgid "Under menu - left side"\r
+msgstr "Sous le menu - à gauche"\r
+\r
+#: admin/settings.php:1999\r
+msgid "Under menu - right side"\r
+msgstr "Sous le menu - à droite"\r
+\r
+#: admin/settings.php:2003\r
+msgid "In the footer (smaller icons)"\r
+msgstr "Dans le pied de page (petites icônes)"\r
+\r
+# @ mantra\r
+#: admin/settings.php:2007\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "Sélectionner la ou les zones où afficher les icônes des réseaux sociaux choisis."\r
+\r
+# @ mantra\r
+#: admin/settings.php:2020\r
+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 © ."\r
+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 © ."\r
+\r
+# @ mantra\r
+#: admin/settings.php:2028\r
+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 <style> tags are not needed."\r
+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 <style> ne sont pas nécessaires."\r
+\r
+# @ mantra\r
+#: admin/settings.php:2035\r
+msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software).<br> The <script> tags are not needed."\r
+msgstr "Insérer votre code JavaScript personalisé ici. (Google Analytics ou n'importe quel autre code d'un fournisseur). Le tag <script> n'est pas nécessaire."\r
+\r
+# @ mantra\r
+#: admin/settings.php:2048\r
+msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."\r
+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."\r
+\r
+#: admin/settings.php:2049\r
+msgid "All title tags are handled automatically by Mantra."\r
+msgstr "Toutes les balises de titre sont automatiquement pris en compte par Mantra."\r
+\r
+# @ mantra\r
+#: admin/settings.php:2052\r
+msgid "Homepage Meta Description"\r
+msgstr "Contenu de la balise description pour la page d'accueil"\r
+\r
+#: admin/settings.php:2054\r
+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."\r
+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."\r
+\r
+# @ mantra\r
+#: admin/settings.php:2058\r
+msgid "Meta Descriptions for all other pages:"\r
+msgstr "Contenu de la balise description pour toutes les autres pages:"\r
+\r
+#: admin/settings.php:2060\r
+msgid "Auto"\r
+msgstr "Auto"\r
+\r
+# @ mantra\r
+#: admin/settings.php:2060\r
+msgid "Manual"\r
+msgstr "Manuel"\r
+\r
+#: admin/settings.php:2068\r
+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."\r
+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."\r
+\r
+#: admin/settings.php:2075\r
+msgid "Do not use"\r
+msgstr "Ne pas utiliser"\r
+\r
+#: admin/settings.php:2085\r
+msgid "If you want to show an author in the meta tags."\r
+msgstr "Si vous souhaitez afficher un autheur dans les balises méta."\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:28\r
+msgid "says:"\r
+msgstr "a écrit:"\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:34\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Votre commentaire est en attente de validation."\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:41\r
+msgid "at"\r
+msgstr "à"\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:41\r
+#: includes/theme-comments.php:58\r
+msgid "(Edit)"\r
+msgstr "(Modifier)"\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:58\r
+msgid "Pingback: "\r
+msgstr "Pingback:"\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:85\r
+msgid "Leave a comment"\r
+msgstr "Réagir"\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:85\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Commentaire"\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:85\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Commentaires"\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:94\r
+#, php-format\r
+msgid "One Response to %2$s"\r
+msgid_plural "%1$s Responses to %2$s"\r
+msgstr[0] "Une réaction à %2$s"\r
+msgstr[1] "%1$s réactions à %2$s"\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:107\r
+msgid "Older Comments"\r
+msgstr "Commentaires antérieurs"\r
+\r
+# @ mantra\r
+#: includes/theme-comments.php:108\r
+msgid "Newer Comments"\r
+msgstr "Commentaires plus récents"\r
+\r
+# @ mantra\r
+#: includes/theme-functions.php:58\r
+msgid "Menu"\r
+msgstr "Menu"\r
+\r
+# @ mantra\r
+#: includes/theme-functions.php:269\r
+msgid "Home Page"\r
+msgstr "Page d'accueil"\r
+\r
+# @ mantra\r
+#: includes/theme-functions.php:342\r
+msgid "Powered by"\r
+msgstr "Propulsé par"\r
+\r
+# @ mantra\r
+#: includes/theme-functions.php:344\r
+msgid "Semantic Personal Publishing Platform"\r
+msgstr "Semantic Personal Publishing Platform"\r
+\r
+# @ mantra\r
+#: includes/theme-loop.php:166\r
+msgid "By "\r
+msgstr "De"\r
+\r
+# @ mantra\r
+#: includes/theme-loop.php:206\r
+msgid " Bookmark the "\r
+msgstr "Lien pour marque-pages : "\r
+\r
+# @ mantra\r
+#: includes/theme-loop.php:206\r
+#: includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+msgid "Permalink to"\r
+msgstr "Permalien vers"\r
+\r
+# @ mantra\r
+#: includes/theme-loop.php:206\r
+#: includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+msgid "permalink"\r
+msgstr "permalien"\r
+\r
+# @ mantra\r
+#: includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+msgid "Bookmark the "\r
+msgstr "Pour marque-pages : "\r
+\r
+# @ mantra\r
+#: includes/theme-loop.php:232\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Articles antérieurs"\r
+\r
+# @ mantra\r
+#: includes/theme-loop.php:233\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Articles postérieurs <span class=\"meta-nav\">»</span>"\r
+\r
+# @ mantra\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Page %s"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:91\r
+msgid "Primary Navigation"\r
+msgstr "Navigation principale"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:92\r
+msgid "Top Navigation"\r
+msgstr "Navigation haut de page"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:93\r
+msgid "Footer Navigation"\r
+msgstr "Navigation bas de page"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:129\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:188\r
+msgid "Skip to content"\r
+msgstr "Passer directement au contenu"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:215\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Zone widget primaire - Volet 1"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:217\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Zone widget N°1 - Volet 1"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:226\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Zone widget secondaire - Volet 1"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:228\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Zone widget N°2 - Volet 1"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:237\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "3ème zone widget - Volet 2"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:239\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Zone widget N°3 - Volet 2"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:248\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "4ème zone widget - Volet 2"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:250\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Zone widget N°4 - Volet 2"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:259\r
+msgid "First Footer Widget Area"\r
+msgstr "1ère zone widget de bas de page"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:261\r
+msgid "First footer widget area"\r
+msgstr "Zone widget de bas de page N°1"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:270\r
+msgid "Second Footer Widget Area"\r
+msgstr "2ème zone widget de bas de page"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:272\r
+msgid "Second footer widget area"\r
+msgstr "Zone widget de bas de page N°2"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:281\r
+msgid "Third Footer Widget Area"\r
+msgstr "3ème zone widget de bas de page"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:283\r
+msgid "The third footer widget area"\r
+msgstr "Zone widget de bas de page N°3"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:292\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "4ème zone widget de bas de page"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:294\r
+msgid "The fourth footer widget area"\r
+msgstr "Zone widget de bas de page N°4"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:303\r
+#: includes/theme-setup.php:305\r
+msgid "Above content Widget Area"\r
+msgstr "Au dessus de la zone de Widget"\r
+\r
+# @ mantra\r
+#: includes/theme-setup.php:314\r
+#: includes/theme-setup.php:316\r
+msgid "Below Content Widget Area"\r
+msgstr "En dessous de la zone de Widget"\r
+\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: mantra 197\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-09-08 18:32+0200\n"\r
+"PO-Revision-Date: 2012-09-08 18:32+0200\n"\r
+"Last-Translator: Kay <contact@htx.ro>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"\r
+"X-Poedit-Basepath: C:\\Users\\medicated\\Desktop\\mantra\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr ""\r
+\r
+#: 404.php:19\r
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."\r
+msgstr ""\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr ""\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr ""\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr ""\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr ""\r
+\r
+#: archive.php:57\r
+#: author.php:74\r
+#: category.php:50\r
+msgid "Nothing Found"\r
+msgstr ""\r
+\r
+#: archive.php:61\r
+#: author.php:78\r
+#: category.php:54\r
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."\r
+msgstr ""\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr ""\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr ""\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr ""\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr ""\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr ""\r
+\r
+#: attachment.php:60\r
+#: attachment.php:107\r
+#: content-aside.php:48\r
+#: content-chat.php:48\r
+#: content-gallery.php:64\r
+#: content-image.php:41\r
+#: content-link.php:48\r
+#: content-page.php:22\r
+#: content-quote.php:46\r
+#: content-status.php:49\r
+#: content.php:80\r
+msgid "Edit"\r
+msgstr ""\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr ""\r
+\r
+#: attachment.php:101\r
+#: content-aside.php:39\r
+#: content-chat.php:37\r
+#: content-gallery.php:54\r
+#: content-image.php:32\r
+#: content-link.php:37\r
+#: content-page.php:21\r
+#: content-quote.php:36\r
+#: content-status.php:40\r
+#: content.php:52\r
+#: content.php:69\r
+msgid "Pages:"\r
+msgstr ""\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr ""\r
+\r
+#: author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr ""\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr ""\r
+\r
+#: comments.php:18\r
+msgid "This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+\r
+#: comments.php:41\r
+#: comments.php:60\r
+msgid "Older Comments"\r
+msgstr ""\r
+\r
+#: comments.php:42\r
+#: comments.php:61\r
+msgid "Newer Comments"\r
+msgstr ""\r
+\r
+#: comments.php:72\r
+#: content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr ""\r
+\r
+#: content-aside.php:21\r
+msgid "Aside"\r
+msgstr ""\r
+\r
+#: content-aside.php:38\r
+#: content-chat.php:36\r
+#: content-gallery.php:32\r
+#: content-image.php:31\r
+#: content-link.php:36\r
+#: content-quote.php:35\r
+#: content-status.php:39\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr ""\r
+\r
+#: content-aside.php:46\r
+#: content-chat.php:44\r
+#: content-gallery.php:61\r
+#: content-image.php:38\r
+#: content-link.php:44\r
+#: content-quote.php:43\r
+#: content-status.php:47\r
+#: content.php:78\r
+msgid "Tagged"\r
+msgstr ""\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr ""\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr ""\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr ""\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr ""\r
+\r
+#: content-quote.php:19\r
+msgid "Quote"\r
+msgstr ""\r
+\r
+#: content-status.php:31\r
+msgid "Status"\r
+msgstr ""\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr ""\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr ""\r
+\r
+#: sidebar.php:35\r
+#: sidebar.php:92\r
+msgid "Archives"\r
+msgstr ""\r
+\r
+#: sidebar.php:42\r
+#: sidebar.php:99\r
+msgid "Meta"\r
+msgstr ""\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr ""\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:62\r
+msgid "Before you can upload your import file, you will need to fix the following error:"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:72\r
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:155\r
+#: admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:156\r
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:168\r
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:177\r
+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."\r
+msgstr ""\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr ""\r
+\r
+#: admin/main.php:93\r
+msgid "Layout Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:94\r
+msgid "Presentation Page"\r
+msgstr ""\r
+\r
+#: admin/main.php:95\r
+msgid "Text Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:96\r
+msgid "Color Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:97\r
+msgid "Graphics Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:98\r
+msgid "Post Information Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:99\r
+msgid "Post Excerpt Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:100\r
+msgid "Featured Image Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:101\r
+msgid "Social Media Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:102\r
+msgid "Miscellaneous Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:104\r
+msgid "Main Layout"\r
+msgstr ""\r
+\r
+#: admin/main.php:105\r
+msgid "Content / Sidebar Width"\r
+msgstr ""\r
+\r
+#: admin/main.php:106\r
+msgid "Header Image Height"\r
+msgstr ""\r
+\r
+#: admin/main.php:108\r
+msgid "Enable Presentation Page"\r
+msgstr ""\r
+\r
+#: admin/main.php:109\r
+msgid "Slider Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:110\r
+msgid "Slides"\r
+msgstr ""\r
+\r
+#: admin/main.php:111\r
+msgid "Presentation Page Columns"\r
+msgstr ""\r
+\r
+#: admin/main.php:112\r
+msgid "Extras"\r
+msgstr ""\r
+\r
+#: admin/main.php:114\r
+msgid "General Font"\r
+msgstr ""\r
+\r
+#: admin/main.php:115\r
+msgid "General Font Size"\r
+msgstr ""\r
+\r
+#: admin/main.php:116\r
+msgid "Post Title Font "\r
+msgstr ""\r
+\r
+#: admin/main.php:117\r
+msgid "Post Title Font Size"\r
+msgstr ""\r
+\r
+#: admin/main.php:118\r
+msgid "Sidebar Font"\r
+msgstr ""\r
+\r
+#: admin/main.php:119\r
+msgid "SideBar Font Size"\r
+msgstr ""\r
+\r
+#: admin/main.php:120\r
+msgid "Sub-Headers Font"\r
+msgstr ""\r
+\r
+#: admin/main.php:121\r
+msgid "Force Text Align"\r
+msgstr ""\r
+\r
+#: admin/main.php:122\r
+msgid "Paragraph indent"\r
+msgstr ""\r
+\r
+#: admin/main.php:123\r
+msgid "Header indent"\r
+msgstr ""\r
+\r
+#: admin/main.php:124\r
+msgid "Line Height"\r
+msgstr ""\r
+\r
+#: admin/main.php:125\r
+msgid "Word spacing"\r
+msgstr ""\r
+\r
+#: admin/main.php:126\r
+msgid "Letter spacing"\r
+msgstr ""\r
+\r
+#: admin/main.php:127\r
+msgid "Text shadow"\r
+msgstr ""\r
+\r
+#: admin/main.php:129\r
+msgid "Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:130\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:131\r
+msgid "Content Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:132\r
+msgid "Menu background color"\r
+msgstr ""\r
+\r
+#: admin/main.php:134\r
+msgid "Site Title Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:135\r
+msgid "Site Description Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:137\r
+msgid "Content Text Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:138\r
+msgid "Links Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:139\r
+msgid "Links Hover Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:140\r
+msgid "Post Title Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:141\r
+msgid "Post Title Hover Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:142\r
+msgid "Sidebar Header Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:143\r
+msgid "Sidebar Header Text Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:144\r
+msgid "Footer Widget Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:145\r
+msgid "Footer Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:146\r
+msgid "Footer Widget Header Text Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:147\r
+msgid "Footer Widget Link Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:148\r
+msgid "Footer Widget Hover Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:150\r
+msgid "Caption Border"\r
+msgstr ""\r
+\r
+#: admin/main.php:151\r
+msgid "Post Images Border"\r
+msgstr ""\r
+\r
+#: admin/main.php:152\r
+msgid "Caption Pin"\r
+msgstr ""\r
+\r
+#: admin/main.php:153\r
+msgid "Sidebar Menu Bullets"\r
+msgstr ""\r
+\r
+#: admin/main.php:154\r
+msgid "Meta Area Background"\r
+msgstr ""\r
+\r
+#: admin/main.php:155\r
+msgid "Post Separator"\r
+msgstr ""\r
+\r
+#: admin/main.php:156\r
+msgid "Content List Bullets"\r
+msgstr ""\r
+\r
+#: admin/main.php:157\r
+msgid "Title and Description"\r
+msgstr ""\r
+\r
+#: admin/main.php:158\r
+msgid "Page Titles"\r
+msgstr ""\r
+\r
+#: admin/main.php:159\r
+msgid "Category Page Titles"\r
+msgstr ""\r
+\r
+#: admin/main.php:160\r
+msgid "Hide Tables"\r
+msgstr ""\r
+\r
+#: admin/main.php:161\r
+msgid "Back to Top button"\r
+msgstr ""\r
+\r
+#: admin/main.php:162\r
+msgid "Text Under Comments"\r
+msgstr ""\r
+\r
+#: admin/main.php:163\r
+msgid "Comments are closed text"\r
+msgstr ""\r
+\r
+#: admin/main.php:164\r
+msgid "Comments off"\r
+msgstr ""\r
+\r
+#: admin/main.php:165\r
+msgid "Insert footer copyright"\r
+msgstr ""\r
+\r
+#: admin/main.php:167\r
+msgid "Post Comments Link"\r
+msgstr ""\r
+\r
+#: admin/main.php:168\r
+msgid "Post Date"\r
+msgstr ""\r
+\r
+#: admin/main.php:169\r
+msgid "Post Time"\r
+msgstr ""\r
+\r
+#: admin/main.php:170\r
+msgid "Post Author"\r
+msgstr ""\r
+\r
+#: admin/main.php:171\r
+msgid "Post Category"\r
+msgstr ""\r
+\r
+#: admin/main.php:172\r
+msgid "Post Tags"\r
+msgstr ""\r
+\r
+#: admin/main.php:173\r
+msgid "Post Permalink"\r
+msgstr ""\r
+\r
+#: admin/main.php:174\r
+msgid "All Post Metas"\r
+msgstr ""\r
+\r
+#: admin/main.php:176\r
+msgid "Post Excerpts on Home Page"\r
+msgstr ""\r
+\r
+#: admin/main.php:177\r
+msgid "Affect Sticky Posts"\r
+msgstr ""\r
+\r
+#: admin/main.php:178\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr ""\r
+\r
+#: admin/main.php:179\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr ""\r
+\r
+#: admin/main.php:180\r
+msgid "Magazine Layout"\r
+msgstr ""\r
+\r
+#: admin/main.php:181\r
+msgid "Excerpt suffix"\r
+msgstr ""\r
+\r
+#: admin/main.php:182\r
+msgid "Continue reading link text "\r
+msgstr ""\r
+\r
+#: admin/main.php:183\r
+msgid "HTML tags in Excerpts"\r
+msgstr ""\r
+\r
+#: admin/main.php:185\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr ""\r
+\r
+#: admin/main.php:186\r
+msgid "Auto Select Images From Posts "\r
+msgstr ""\r
+\r
+#: admin/main.php:187\r
+msgid "Thumbnails Alignment "\r
+msgstr ""\r
+\r
+#: admin/main.php:188\r
+msgid "Thumbnails Size "\r
+msgstr ""\r
+\r
+#: admin/main.php:189\r
+msgid "Featured Images as HEADER Images "\r
+msgstr ""\r
+\r
+#: admin/main.php:191\r
+msgid "Link nr. 1"\r
+msgstr ""\r
+\r
+#: admin/main.php:192\r
+msgid "Link nr. 2"\r
+msgstr ""\r
+\r
+#: admin/main.php:193\r
+msgid "Link nr. 3"\r
+msgstr ""\r
+\r
+#: admin/main.php:194\r
+msgid "Link nr. 4"\r
+msgstr ""\r
+\r
+#: admin/main.php:195\r
+msgid "Link nr. 5"\r
+msgstr ""\r
+\r
+#: admin/main.php:196\r
+msgid "Socials display"\r
+msgstr ""\r
+\r
+#: admin/main.php:198\r
+msgid "Make Site Header a Link"\r
+msgstr ""\r
+\r
+#: admin/main.php:199\r
+msgid "Breadcrumbs"\r
+msgstr ""\r
+\r
+#: admin/main.php:200\r
+msgid "Pagination"\r
+msgstr ""\r
+\r
+#: admin/main.php:201\r
+msgid "Mobile view"\r
+msgstr ""\r
+\r
+#: admin/main.php:202\r
+msgid "FavIcon"\r
+msgstr ""\r
+\r
+#: admin/main.php:203\r
+msgid "Custom CSS"\r
+msgstr ""\r
+\r
+#: admin/main.php:204\r
+msgid "Custom JavaScript"\r
+msgstr ""\r
+\r
+#: admin/main.php:205\r
+msgid "SEO Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:222\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr ""\r
+\r
+#: admin/main.php:232\r
+msgid "Mantra settings updated successfully."\r
+msgstr ""\r
+\r
+#: admin/main.php:243\r
+msgid "Reset to Defaults"\r
+msgstr ""\r
+\r
+#: admin/main.php:244\r
+msgid "Save Changes"\r
+msgstr ""\r
+\r
+#: admin/main.php:258\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we spend night after night improving the Mantra Theme. We fix a lot of bugs (that we previously created); we add more and more customization options while also trying to keep things as simple as possible; then... we might play a game or two but rest assured that we return to read and (in most cases) reply to your late night emails and comments, take notes and draw dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they keep so fresh after all that hard labor for that darned theme? </i> Well folks, it's simple. We drink coffee. Industrial quantities of hot boiling coffee. We love it! So if you want to help with the further development of the Mantra Theme...</p> "\r
+msgstr ""\r
+\r
+#: admin/main.php:273\r
+msgid "Import/Export Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:279\r
+msgid "Export Theme options"\r
+msgstr ""\r
+\r
+#: admin/main.php:280\r
+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!"\r
+msgstr ""\r
+\r
+#: admin/main.php:285\r
+msgid "Import Theme options"\r
+msgstr ""\r
+\r
+#: admin/main.php:286\r
+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."\r
+msgstr ""\r
+\r
+#: admin/main.php:293\r
+msgid "Mantra Latest News"\r
+msgstr ""\r
+\r
+#: admin/main.php:304\r
+msgid "No news items."\r
+msgstr ""\r
+\r
+#: admin/main.php:318\r
+msgid "Mantra Help"\r
+msgstr ""\r
+\r
+#: admin/main.php:321\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+\r
+#: admin/main.php:332\r
+msgid "Mantra Support Page"\r
+msgstr ""\r
+\r
+#: admin/settings.php:61\r
+msgid "One column (no sidebars)"\r
+msgstr ""\r
+\r
+#: admin/settings.php:62\r
+msgid "Two columns, sidebar on the right"\r
+msgstr ""\r
+\r
+#: admin/settings.php:63\r
+msgid "Two columns, sidebar on the left"\r
+msgstr ""\r
+\r
+#: admin/settings.php:64\r
+msgid "Three columns, sidebars on the right"\r
+msgstr ""\r
+\r
+#: admin/settings.php:65\r
+msgid "Three columns, sidebars on the left"\r
+msgstr ""\r
+\r
+#: admin/settings.php:66\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr ""\r
+\r
+#: admin/settings.php:81\r
+msgid "Choose your layout "\r
+msgstr ""\r
+\r
+#: admin/settings.php:89\r
+msgid "Absolute"\r
+msgstr ""\r
+\r
+#: admin/settings.php:89\r
+msgid "Relative"\r
+msgstr ""\r
+\r
+#: admin/settings.php:90\r
+msgid "Dimensions to use: "\r
+msgstr ""\r
+\r
+#: admin/settings.php:189\r
+#: admin/settings.php:209\r
+msgid "Content ="\r
+msgstr ""\r
+\r
+#: admin/settings.php:190\r
+#: admin/settings.php:210\r
+msgid "Sidebar(s) ="\r
+msgstr ""\r
+\r
+#: admin/settings.php:191\r
+#: admin/settings.php:211\r
+msgid "Total width ="\r
+msgstr ""\r
+\r
+#: admin/settings.php:200\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+\r
+#: admin/settings.php:220\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+\r
+#: admin/settings.php:244\r
+msgid "Select the header's height. After saving the settings go and upload your new header image. The header's width will be = "\r
+msgstr ""\r
+\r
+#: admin/settings.php:257\r
+#: admin/settings.php:969\r
+#: admin/settings.php:1031\r
+#: admin/settings.php:1353\r
+#: admin/settings.php:1415\r
+#: admin/settings.php:1623\r
+#: admin/settings.php:1652\r
+#: admin/settings.php:1675\r
+#: admin/settings.php:1698\r
+#: admin/settings.php:1747\r
+#: admin/settings.php:1876\r
+#: admin/settings.php:1891\r
+#: admin/settings.php:1906\r
+#: admin/settings.php:1921\r
+#: admin/settings.php:1963\r
+msgid "Enable"\r
+msgstr ""\r
+\r
+#: admin/settings.php:257\r
+#: admin/settings.php:969\r
+#: admin/settings.php:1031\r
+#: admin/settings.php:1353\r
+#: admin/settings.php:1415\r
+#: admin/settings.php:1623\r
+#: admin/settings.php:1652\r
+#: admin/settings.php:1675\r
+#: admin/settings.php:1698\r
+#: admin/settings.php:1747\r
+#: admin/settings.php:1876\r
+#: admin/settings.php:1891\r
+#: admin/settings.php:1906\r
+#: admin/settings.php:1921\r
+#: admin/settings.php:1963\r
+msgid "Disable"\r
+msgstr ""\r
+\r
+#: admin/settings.php:265\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page and it will replace whatever page you have selected as homepage. It has a slider and columns for presentation\n"\r
+"\t\ttext and images."\r
+msgstr ""\r
+\r
+#: admin/settings.php:275\r
+msgid "Slider Dimensions:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:276\r
+msgid "width"\r
+msgstr ""\r
+\r
+#: admin/settings.php:277\r
+msgid "height"\r
+msgstr ""\r
+\r
+#: admin/settings.php:278\r
+msgid "The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+\r
+#: admin/settings.php:280\r
+msgid "Animation:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "Random"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "Fold"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "Fade"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInRight"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInLeft"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDown"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDownLeft"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUp"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpLeft"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDown"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDownLeft"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRandom"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRain"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainReverse"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrow"\r
+msgstr ""\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrowReverse"\r
+msgstr ""\r
+\r
+#: admin/settings.php:290\r
+msgid "The transition effect your slider will have."\r
+msgstr ""\r
+\r
+#: admin/settings.php:292\r
+msgid "Border Settings:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:293\r
+msgid "Width"\r
+msgstr ""\r
+\r
+#: admin/settings.php:294\r
+msgid "Color"\r
+msgstr ""\r
+\r
+#: admin/settings.php:296\r
+msgid "The width and color of the slider's border."\r
+msgstr ""\r
+\r
+#: admin/settings.php:298\r
+msgid "Animation Time:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:299\r
+#: admin/settings.php:303\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr ""\r
+\r
+#: admin/settings.php:300\r
+msgid "The time in which the transition animation will take place."\r
+msgstr ""\r
+\r
+#: admin/settings.php:302\r
+msgid "Pause Time:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:304\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr ""\r
+\r
+#: admin/settings.php:307\r
+msgid "Slider navigation:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:309\r
+msgid "Numbers"\r
+msgstr ""\r
+\r
+#: admin/settings.php:309\r
+msgid "Bullets"\r
+msgstr ""\r
+\r
+#: admin/settings.php:309\r
+#: admin/settings.php:1259\r
+msgid "None"\r
+msgstr ""\r
+\r
+#: admin/settings.php:317\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:319\r
+msgid "Slider arrows:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:321\r
+msgid "Always Visible"\r
+msgstr ""\r
+\r
+#: admin/settings.php:321\r
+msgid "Visible on Hover"\r
+msgstr ""\r
+\r
+#: admin/settings.php:321\r
+msgid "Hidden"\r
+msgstr ""\r
+\r
+#: admin/settings.php:329\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr ""\r
+\r
+#: admin/settings.php:370\r
+#: admin/settings.php:438\r
+msgid "Select Category"\r
+msgstr ""\r
+\r
+#: admin/settings.php:397\r
+msgid "Custom Slides"\r
+msgstr ""\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:397\r
+msgid "Sticky Posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts from Category"\r
+msgstr ""\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts from Category"\r
+msgstr ""\r
+\r
+#: admin/settings.php:397\r
+msgid "Specific Posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:410\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:414\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:418\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:423\r
+msgid "Random posts from the category you choose will be loaded into the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:427\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr ""\r
+\r
+#: admin/settings.php:431\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr ""\r
+\r
+#: admin/settings.php:436\r
+msgid "<br> Choose the cateogry: "\r
+msgstr ""\r
+\r
+#: admin/settings.php:453\r
+msgid "Number of posts to show:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:460\r
+msgid "Slide 1"\r
+msgstr ""\r
+\r
+#: admin/settings.php:464\r
+#: admin/settings.php:479\r
+#: admin/settings.php:494\r
+#: admin/settings.php:509\r
+#: admin/settings.php:524\r
+#: admin/settings.php:567\r
+#: admin/settings.php:582\r
+#: admin/settings.php:597\r
+#: admin/settings.php:612\r
+msgid "Upload or select image from gallery"\r
+msgstr ""\r
+\r
+#: admin/settings.php:465\r
+#: admin/settings.php:480\r
+#: admin/settings.php:495\r
+#: admin/settings.php:510\r
+#: admin/settings.php:525\r
+#: admin/settings.php:568\r
+#: admin/settings.php:583\r
+#: admin/settings.php:613\r
+msgid "Title"\r
+msgstr ""\r
+\r
+#: admin/settings.php:467\r
+#: admin/settings.php:482\r
+#: admin/settings.php:497\r
+#: admin/settings.php:512\r
+#: admin/settings.php:527\r
+#: admin/settings.php:570\r
+#: admin/settings.php:585\r
+#: admin/settings.php:600\r
+#: admin/settings.php:615\r
+msgid "Text"\r
+msgstr ""\r
+\r
+#: admin/settings.php:475\r
+msgid "Slide 2"\r
+msgstr ""\r
+\r
+#: admin/settings.php:490\r
+msgid "Slide 3"\r
+msgstr ""\r
+\r
+#: admin/settings.php:505\r
+msgid "Slide 4"\r
+msgstr ""\r
+\r
+#: admin/settings.php:520\r
+msgid "Slide 5"\r
+msgstr ""\r
+\r
+#: admin/settings.php:533\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:543\r
+msgid "Number of columns:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:553\r
+msgid "Image Height:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:556\r
+msgid "Read more text:"\r
+msgstr ""\r
+\r
+#: admin/settings.php:559\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:563\r
+msgid "1st Column"\r
+msgstr ""\r
+\r
+#: admin/settings.php:578\r
+msgid "2nd Column"\r
+msgstr ""\r
+\r
+#: admin/settings.php:593\r
+msgid "3rd Column"\r
+msgstr ""\r
+\r
+#: admin/settings.php:608\r
+msgid "4th Column"\r
+msgstr ""\r
+\r
+#: admin/settings.php:630\r
+msgid "Extra Text"\r
+msgstr ""\r
+\r
+#: admin/settings.php:630\r
+msgid "Top Title"\r
+msgstr ""\r
+\r
+#: admin/settings.php:632\r
+msgid "Second Title"\r
+msgstr ""\r
+\r
+#: admin/settings.php:635\r
+msgid "Title color"\r
+msgstr ""\r
+\r
+#: admin/settings.php:638\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr ""\r
+\r
+#: admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr ""\r
+\r
+#: admin/settings.php:645\r
+msgid ""\r
+"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"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:651\r
+msgid "Hide areas"\r
+msgstr ""\r
+\r
+#: admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr ""\r
+\r
+#: admin/settings.php:684\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr ""\r
+\r
+#: admin/settings.php:703\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:747\r
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "\r
+msgstr ""\r
+\r
+#: admin/settings.php:748\r
+#: admin/settings.php:797\r
+#: admin/settings.php:848\r
+#: admin/settings.php:899\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:795\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:846\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:897\r
+msgid "Select the font family you want your subheaders to have (h2 - h6 tags will be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+\r
+#: admin/settings.php:909\r
+#: admin/settings.php:924\r
+#: admin/settings.php:939\r
+#: admin/settings.php:984\r
+#: admin/settings.php:999\r
+#: admin/settings.php:1014\r
+msgid "Default"\r
+msgstr ""\r
+\r
+#: admin/settings.php:917\r
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:932\r
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:939\r
+#: admin/settings.php:1714\r
+msgid "Left"\r
+msgstr ""\r
+\r
+#: admin/settings.php:939\r
+#: admin/settings.php:1714\r
+msgid "Right"\r
+msgstr ""\r
+\r
+#: admin/settings.php:939\r
+msgid "Justify"\r
+msgstr ""\r
+\r
+#: admin/settings.php:939\r
+#: admin/settings.php:1714\r
+msgid "Center"\r
+msgstr ""\r
+\r
+#: admin/settings.php:947\r
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:961\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr ""\r
+\r
+#: admin/settings.php:977\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:992\r
+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)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1007\r
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1022\r
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1039\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1051\r
+msgid "Background color (Default value is 444444)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1059\r
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1066\r
+msgid "Content background color (Default value is FAFAFA). Works best with really light colors."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1073\r
+msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1081\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1089\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1097\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1105\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1113\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1121\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1129\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1137\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1145\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1153\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1162\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1170\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1178\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1186\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1198\r
+#: admin/settings.php:1259\r
+msgid "White"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1198\r
+msgid "Light"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1198\r
+msgid "Light Gray"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1198\r
+#: admin/settings.php:1259\r
+msgid "Gray"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1198\r
+msgid "Dark Gray"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1198\r
+msgid "Black"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1206\r
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1222\r
+msgid "The border around your inserted images. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1237\r
+msgid "The image on top of your captions. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1252\r
+msgid "The sidebar list bullets. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1267\r
+msgid "The background for your post-metas area (under your post tiltes). Gray by default.<"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1275\r
+#: admin/settings.php:1291\r
+#: admin/settings.php:1308\r
+#: admin/settings.php:1323\r
+#: admin/settings.php:1338\r
+#: admin/settings.php:1368\r
+#: admin/settings.php:1383\r
+#: admin/settings.php:1399\r
+#: admin/settings.php:1442\r
+#: admin/settings.php:1457\r
+#: admin/settings.php:1472\r
+#: admin/settings.php:1487\r
+#: admin/settings.php:1502\r
+#: admin/settings.php:1517\r
+#: admin/settings.php:1532\r
+#: admin/settings.php:1547\r
+msgid "Show"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1275\r
+#: admin/settings.php:1291\r
+#: admin/settings.php:1308\r
+#: admin/settings.php:1323\r
+#: admin/settings.php:1338\r
+#: admin/settings.php:1368\r
+#: admin/settings.php:1399\r
+#: admin/settings.php:1442\r
+#: admin/settings.php:1457\r
+#: admin/settings.php:1472\r
+#: admin/settings.php:1487\r
+#: admin/settings.php:1502\r
+#: admin/settings.php:1517\r
+#: admin/settings.php:1532\r
+#: admin/settings.php:1547\r
+msgid "Hide"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1283\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1299\r
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1316\r
+msgid "Hide or show your blog's Title and Description in the header (recommended if you have a custom header image with text)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1331\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1346\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1361\r
+msgid "Hide table borders and background color."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1376\r
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide in posts"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide in pages"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide everywhere"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1391\r
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1407\r
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1423\r
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1430\r
+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 © ."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1450\r
+msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1465\r
+msgid "Hide or show the post date."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1480\r
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1495\r
+msgid "Hide or show the post author."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1510\r
+msgid "Hide the post category."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1525\r
+msgid "Hide the post tags."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1540\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1555\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1568\r
+#: admin/settings.php:1583\r
+#: admin/settings.php:1599\r
+msgid "Excerpt"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1568\r
+#: admin/settings.php:1583\r
+#: admin/settings.php:1599\r
+msgid "Full Post"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1576\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1591\r
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1607\r
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1615\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1631\r
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1638\r
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1645\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1660\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr ""\r
+\r
+#: admin/settings.php:1691\r
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1706\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1722\r
+msgid "Thumbnail alignment."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1739\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1755\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1776\r
+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> )"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1790\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1804\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1818\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1832\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1863\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1884\r
+msgid "Make the site header into a clickable link that links to your index page."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1899\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1914\r
+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. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1929\r
+msgid "Enable the mobile view and make Mantra responsive. The layout and look of your blog will change depending on what device and what resolution it is viewed in. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1939\r
+msgid "Upload or select favicon from gallery"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1943\r
+msgid "Limitations: It has to be an image. It should be max 64x64 pixels in dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1951\r
+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."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1958\r
+msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1971\r
+msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1983\r
+msgid "Auto"\r
+msgstr ""\r
+\r
+#: admin/settings.php:1983\r
+msgid "Manual"\r
+msgstr ""\r
+\r
+#: includes/theme-functions.php:213\r
+msgid "Home Page"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:146\r
+msgid "says:"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:152\r
+msgid "Your comment is awaiting moderation."\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:159\r
+msgid "at"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:159\r
+#: includes/theme-loop.php:176\r
+msgid "(Edit)"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:176\r
+msgid "Pingback: "\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:213\r
+msgid "By "\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "Leave a comment"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "<b>1</b> Comment"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "<b>%</b> Comments"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:247\r
+msgid " Bookmark the "\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:247\r
+#: includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "Permalink to"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:247\r
+#: includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "permalink"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "Bookmark the "\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:273\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr ""\r
+\r
+#: includes/theme-loop.php:274\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr ""\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Primary Navigation"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Top Navigation"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:93\r
+msgid "Footer Navigation"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:137\r
+msgid "mantra"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:198\r
+msgid "Skip to content"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:224\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:226\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:235\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:237\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:246\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:248\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:257\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:259\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:268\r
+msgid "First Footer Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:270\r
+msgid "First footer widget area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:279\r
+msgid "Second Footer Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:281\r
+msgid "Second footer widget area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:290\r
+msgid "Third Footer Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:292\r
+msgid "The third footer widget area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:301\r
+msgid "Fourth Footer Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:303\r
+msgid "The fourth footer widget area"\r
+msgstr ""\r
+\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: mantra 197\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2013-01-15 19:23+0100\n"\r
+"PO-Revision-Date: 2013-01-16 15:46+0100\n"\r
+"Last-Translator: GeriSoft <gerisoft.studio@gmail.com>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"\r
+"X-Poedit-Basepath: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/"\r
+"themes/mantra/\n"\r
+"X-Generator: Poedit 1.5.4\n"\r
+"X-Poedit-SearchPath-0: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-"\r
+"content/themes/mantra\n"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/404.php:33\r
+msgid "Not Found"\r
+msgstr "Nincs találat"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/404.php:37\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr "Sajnos a keresett oldal nem található. Próbálj meg másképp keresni…"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/archive.php:49\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Napi archívum: %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/archive.php:53\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Havi archívum: %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/archive.php:57\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Éves archívum: %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/archive.php:61\r
+msgid "Blog Archives"\r
+msgstr "Blog archívum"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/archive.php:113\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/author.php:147\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/category.php:99\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/index.php:81\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/search.php:79\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/tag.php:101\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/template-blog.php:71\r
+msgid "Nothing Found"\r
+msgstr "Nincs találat"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/archive.php:121\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/author.php:155\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/category.php:107\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/index.php:89\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/tag.php:109\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/template-blog.php:79\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr ""\r
+"Sajnos a keresett bejegyzés nem található. Próbáld meg megkeresni másképp..."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/attachment.php:35\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Visszalépés: %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/attachment.php:57\r
+msgid "By"\r
+msgstr "Írta: "\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/attachment.php:79\r
+msgid "Published"\r
+msgstr "Publikálta: "\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/attachment.php:99\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "A teljes méret %s pixel"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/attachment.php:105\r
+msgid "Link to full-size image"\r
+msgstr "Link a teljes méretű képhez"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/attachment.php:119\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/attachment.php:213\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-aside.php:95\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-chat.php:97\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-gallery.php:129\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-image.php:83\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-link.php:97\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-page.php:43\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-quote.php:91\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-status.php:95\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content.php:153\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/single.php:105\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/template-onecolumn.php:53\r
+msgid "Edit"\r
+msgstr "Szerkesztés"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/attachment.php:199\r
+msgid "Continue reading"\r
+msgstr "Tovább olvasom"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/attachment.php:201\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-aside.php:77\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-chat.php:75\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-gallery.php:109\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-image.php:65\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-link.php:75\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-page.php:41\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-quote.php:71\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-status.php:77\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content.php:97\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content.php:131\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/single.php:61\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/template-onecolumn.php:51\r
+msgid "Pages:"\r
+msgstr "Oldalak: "\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/author.php:55\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Szerző archívum: %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/author.php:97\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "%s adatai"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/category.php:37\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Kategória archívum: %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/comments.php:35\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr "Ez a bejegyzés jelszóval védett. Lépj be az elolvasásához!"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-aside.php:39\r
+msgid "Aside"\r
+msgstr "Félre"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-aside.php:75\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-chat.php:73\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-gallery.php:65\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-image.php:63\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-link.php:73\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-quote.php:69\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-status.php:75\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Tovább olvasom <span class=\"meta-nav\">→</span>"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-aside.php:91\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-chat.php:89\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-gallery.php:123\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-image.php:77\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-link.php:89\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-quote.php:85\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-status.php:91\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content.php:149\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:369\r
+msgid "Tagged"\r
+msgstr "Megjelölve"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-chat.php:39\r
+msgid "Chat"\r
+msgstr "Chat"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-gallery.php:39\r
+msgid "Gallery"\r
+msgstr "Galéria"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-image.php:37\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:923\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:953\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:983\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1013\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1043\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1129\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1159\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1189\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1219\r
+msgid "Image"\r
+msgstr "Kép"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-link.php:39\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:937\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:967\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:997\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1027\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1057\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1143\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1173\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1203\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1233\r
+msgid "Link"\r
+msgstr "Link"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-page.php:53\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:271\r
+msgid "Comments are closed."\r
+msgstr "Hozzászólás nem lehetséges."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-quote.php:35\r
+msgid "Quote"\r
+msgstr "Idézet"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/content-status.php:59\r
+msgid "Status"\r
+msgstr "Státusz"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/search.php:37\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Keresési eredmények: %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/search.php:75\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "Nincs találat a keresett kifejezésre: %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/searchform.php:1\r
+msgid "Search"\r
+msgstr "Keresés"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/single.php:87\r
+msgid "View all posts by "\r
+msgstr "Minden bejegyzés megtekintése tőle: "\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/tag.php:39\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Cimke archívum: %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:123\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr ""\r
+"Mielőtt feltöltöd az import file, a következő hibákat kell kijavítani: "\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:139\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Mantra sablon opciók importálása"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:143\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"Üdv! Itt tudod importálni a Mantra beállításokat.<i>Vigyázz, ez egy "\r
+"kísérleti funkció.</i>"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:147\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Válassz egy filet a számítógépről:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:151\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "Maximális méret: %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:163\r
+msgid "And import!"\r
+msgstr "Hajrá!"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:295\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Mantra sablon opciók importálása"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:301\r
+msgid "Great! The options have been imported!"\r
+msgstr "Szuper! Az opciók importálva!"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:303\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Vissza a Mantra opciók oldalra és ellenőrizd!"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:309\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:321\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:333\r
+msgid "Oops, there's a small problem."\r
+msgstr "Hoppá, egy kis hiba történt."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:311\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"A feltöltött file nem tartalmaz Mantra opciókat. Ellenőrizd, hogy a file "\r
+"tényleg a Mantra exportálóval készült!"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:323\r
+msgid "The uploaded file could not be read."\r
+msgstr "A feltöltött file nem olvasható."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:335\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"A feltöltött file nem támogatott. Ellenőrizd, hogy a file tényleg a Mantra "\r
+"exportálóval készült!"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:353\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"Hoppá! A file üres vagy nem létezik. Ez a hiba akkor fordulhat elő, ha a "\r
+"feltöltés tiltott a php.ini fileban, vagy nagyobb, mint a maximális méret "\r
+"beállítás az upload_max_filesize opciónál."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/admin-functions.php:365\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "HIBA: nincs jogod a kért feladatra"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:185\r
+msgid "Layout Settings"\r
+msgstr "Elrendezés beállításai"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:187\r
+msgid "Presentation Page"\r
+msgstr "Bemutató oldal"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:189\r
+msgid "Text Settings"\r
+msgstr "Szöveg beállítások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:191\r
+msgid "Color Settings"\r
+msgstr "Szín beállítások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:193\r
+msgid "Graphics Settings"\r
+msgstr "Grafikai beállítások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:195\r
+msgid "Post Information Settings"\r
+msgstr "Bejegyzés információs beállítások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:197\r
+msgid "Post Excerpt Settings"\r
+msgstr "Szemelvény beállítások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:199\r
+msgid "Featured Image Settings"\r
+msgstr "Kiemelt kép beállítások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:201\r
+msgid "Social Media Settings"\r
+msgstr "Közösségi média beállítások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:203\r
+msgid "Miscellaneous Settings"\r
+msgstr "Egyéb beállítások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:207\r
+msgid "Main Layout"\r
+msgstr "Fő elrendezés"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:209\r
+msgid "Content / Sidebar Width"\r
+msgstr "Tartalom / Oldalsáv szélesség"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:211\r
+msgid "Header Image Height"\r
+msgstr "Fejléc kép magasság"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:215\r
+msgid "Enable Presentation Page"\r
+msgstr "Bemutató oldal engedélyezése"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:217\r
+msgid "Slider Settings"\r
+msgstr "Diavetítés beállítása"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:219\r
+msgid "Slides"\r
+msgstr "Diák"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:221\r
+msgid "Presentation Page Columns"\r
+msgstr "Prezentációs oldal oszlopok"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:223\r
+msgid "Extras"\r
+msgstr "Extrák"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:227\r
+msgid "General Font"\r
+msgstr "Általános betűtípus"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:229\r
+msgid "General Font Size"\r
+msgstr "Általános betűtípus mérete"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:231\r
+msgid "Post Title Font "\r
+msgstr "Bejegyzés címe betűtípus"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:233\r
+msgid "Post Title Font Size"\r
+msgstr "Bejegyzés betűtípus mérete"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:235\r
+msgid "Sidebar Font"\r
+msgstr "Oldalsáv betűtípus"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:237\r
+msgid "SideBar Font Size"\r
+msgstr "Oldalsáv betűtípus mérete"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:239\r
+msgid "Sub-Headers Font"\r
+msgstr "Al-címsor betűtípus"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:241\r
+msgid "Force Text Align"\r
+msgstr "Elrendezés kényszerítése"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:243\r
+msgid "Paragraph indent"\r
+msgstr "Bekezdés behúzása"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:245\r
+msgid "Header indent"\r
+msgstr "Fejléc behúzása"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:247\r
+msgid "Line Height"\r
+msgstr "Sor magasság"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:249\r
+msgid "Word spacing"\r
+msgstr "Szó-köz"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:251\r
+msgid "Letter spacing"\r
+msgstr "Betű-köz"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:253\r
+msgid "Text shadow"\r
+msgstr "Szöveg árnyékolás"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:257\r
+msgid "Background Color"\r
+msgstr "Háttér szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:259\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Fejléc (banner és menü) háttér szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:261\r
+msgid "Content Background Color"\r
+msgstr "Tartalom háttér szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:263\r
+msgid "Menu Background Color"\r
+msgstr "Menü háttér szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:265\r
+msgid "First Sidebar Background Color"\r
+msgstr "Első oldalsáv háttér szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:267\r
+msgid "Second Sidebar Background Color"\r
+msgstr "Második oldalsáv háttér szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:271\r
+msgid "Site Title Color"\r
+msgstr "Oldal cím szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:273\r
+msgid "Site Description Color"\r
+msgstr "Oldal leírás szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:277\r
+msgid "Content Text Color"\r
+msgstr "Tartalom szöveg szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:279\r
+msgid "Links Color"\r
+msgstr "Link szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:281\r
+msgid "Links Hover Color"\r
+msgstr "Link hover szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:283\r
+msgid "Post Title Color"\r
+msgstr "Bejegyzés címe szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:285\r
+msgid "Post Title Hover Color"\r
+msgstr "Bejegyzés címe hover szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:287\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Oldalsáv fejléc háttér szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:289\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Oldalsáv fejléc szöveg szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:291\r
+msgid "Footer Widget Background Color"\r
+msgstr "Lábléc widget háttér szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:293\r
+msgid "Footer Background Color"\r
+msgstr "Lábléc háttér szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:295\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Lábléc widget fejléc szöveg szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:297\r
+msgid "Footer Widget Link Color"\r
+msgstr "Lábléc widget link szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:299\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Lábléc widget hover szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:303\r
+msgid "Caption Border"\r
+msgstr "Képaláírás kerete"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:305\r
+msgid "Post Images Border"\r
+msgstr "Bejegyzés képek kerete"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:307\r
+msgid "Caption Pin"\r
+msgstr "Képaláírás jelölő"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:309\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Oldalsáv menü jelek"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:311\r
+msgid "Meta Area Background"\r
+msgstr "Meta terület háttér"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:313\r
+msgid "Post Separator"\r
+msgstr "Bejegyzés elválasztó"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:315\r
+msgid "Content List Bullets"\r
+msgstr "Tartalom lista jelölő"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:317\r
+msgid "Title and Description"\r
+msgstr "Cím és leírás"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:319\r
+msgid "Page Titles"\r
+msgstr "Oldal címek"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:321\r
+msgid "Category Page Titles"\r
+msgstr "Kategória oldal címek"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:323\r
+msgid "Hide Tables"\r
+msgstr "Táblák elrejtése"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:325\r
+msgid "Back to Top button"\r
+msgstr "Vissza a tetejére gomb"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:327\r
+msgid "Text Under Comments"\r
+msgstr "Szöveg a hozzászólások alatt"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:329\r
+msgid "Comments are closed text"\r
+msgstr "Hozzászólások lezárva szöveg"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:331\r
+msgid "Comments off"\r
+msgstr "Hozzászólások kikapcsolása"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:333\r
+msgid "Custom Footer Text"\r
+msgstr "Egyedi lábléc szöveg"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:337\r
+msgid "Post Comments Link"\r
+msgstr "Bejegyzés hozzászólások link"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:339\r
+msgid "Post Date"\r
+msgstr "Bejegyzés dátuma"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:341\r
+msgid "Post Time"\r
+msgstr "Bejegyzés ideje"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:343\r
+msgid "Post Author"\r
+msgstr "Bejegyzés szerzője"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:345\r
+msgid "Post Category"\r
+msgstr "Bejegyzés kategória"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:347\r
+msgid "Post Tags"\r
+msgstr "Bejegyzés cimke"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:349\r
+msgid "Post Permalink"\r
+msgstr "Bejegyzés permalink"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:351\r
+msgid "All Post Metas"\r
+msgstr "Minden bejegyzés meta adat"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:355\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Bejegyzés szemelvények a kezdőlapon"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:357\r
+msgid "Affect Sticky Posts"\r
+msgstr "Befolyásolja a ragadós bejegyzést"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:359\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Bejegyzés szemelvények a kategória archívum oldalakon"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:361\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Szavak száma a bejegyzés szemelvényekhez"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:363\r
+msgid "Magazine Layout"\r
+msgstr "Oldal elrendezés"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:365\r
+msgid "Excerpt suffix"\r
+msgstr "Szemelvény kivonat"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:367\r
+msgid "Continue reading link text "\r
+msgstr "Tovább olvasom link szöveg"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:369\r
+msgid "HTML tags in Excerpts"\r
+msgstr "HTML tag-ek a szemelvényekben"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:373\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Kiemelt képek a bejegyzések bélyegképeiben"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:375\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Képek automatikus kiválasztása a bejegyzésekhez"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:377\r
+msgid "Thumbnails Alignment "\r
+msgstr "Bélyegkép igazítása"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:379\r
+msgid "Thumbnails Size "\r
+msgstr "Bélyegkép mérete"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:381\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Kiemelt kép FEJLÉC képként"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:385\r
+msgid "Link nr. 1"\r
+msgstr "1. Link"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:387\r
+msgid "Link nr. 2"\r
+msgstr "2. Link"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:389\r
+msgid "Link nr. 3"\r
+msgstr "3. Link"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:391\r
+msgid "Link nr. 4"\r
+msgstr "4. Link"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:393\r
+msgid "Link nr. 5"\r
+msgstr "5. Link"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:395\r
+msgid "Socials display"\r
+msgstr "Közösségi hálózat megjelenítése"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:399\r
+msgid "Make Site Header a Link"\r
+msgstr "Legyen a fejléc link"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:401\r
+msgid "Breadcrumbs"\r
+msgstr "Breadcrumb"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:403\r
+msgid "Pagination"\r
+msgstr "Lapozó"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:405\r
+msgid "Mobile view"\r
+msgstr "Mobil nézet"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:407\r
+msgid "FavIcon"\r
+msgstr "FavIcon"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:409\r
+msgid "Custom CSS"\r
+msgstr "egyéni CSS"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:411\r
+msgid "Custom JavaScript"\r
+msgstr "Egyéni JavaScript"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:413\r
+msgid "SEO Settings"\r
+msgstr "SEO beállítások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:447\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Sajnálom, nincs elegendő jogosultságod megnyitni ezt az oldalt."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:467\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Mantra beállítások frissítve!"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:489\r
+msgid "Reset to Defaults"\r
+msgstr "Vissza az alapokhoz"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:491\r
+msgid "Save Changes"\r
+msgstr "Változások mentése"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:519\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+"keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+"folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+"coffee. We love it! So if you want to help with the further development of "\r
+"the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Mi itt a Cryout Creations-nél (a Mantra sablon készítő csapatánál) éjjel-"\r
+"nappal fejlesztjük a kedvenc Mantra sablonod. Rengeteg hibát javítunk (amit "\r
+"korábban tettünk bele :) ), több és jobb funkciókat adunk hozzá, melyekkel "\r
+"mind jobban testreszabható az oldalad. Majd játszunk egy kicsit… Aztán "\r
+"visszatérünk, elolvassuk a rengeteg visszajelzést, emailt és hozzászólást, "\r
+"majd (legtöbbször) meg is válaszoljuk aznap őket. És sokszor ki is "\r
+"fejlesztjük a kért funkciót.</p>\n"\r
+"\n"\r
+"\t\t\t<p>Szóval kérdezd meg magadtól: <i>Hogyan csinálják? Hogyan tudják "\r
+"naprakészen tartani az oldalt? </i> Nos, mi sem egyszerűbb, barátaim… Kávét "\r
+"iszunk. Ipari mennyiségű kávét iszunk :) És mi szeretjük ezt! Szóval, ha "\r
+"szeretnéd támogatni a mi csapatunkat...</p> "\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:549\r
+msgid "Import/Export Settings"\r
+msgstr "Import/Export beállítások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:561\r
+msgid "Export Theme options"\r
+msgstr "Theme export opciók"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:563\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"Ez ilyen egyszerű: csak egy kattintás, és az összes Mantra beállítást "\r
+"lementheted a számítógépedre. Nagyobb biztonságban érzed magad? Lehet is :)"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:573\r
+msgid "Import Theme options"\r
+msgstr "Theme opciók importálása"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:575\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+"Az importálás nélkül az exportálás csak butaság. Ellenőrizd a file meglétét "\r
+"a gépeden!"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:589\r
+msgid "Mantra Latest News"\r
+msgstr "Legfrissebb Mantra hírek"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:611\r
+msgid "No news items."\r
+msgstr "Nincs új hír"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:639\r
+msgid "Mantra Help"\r
+msgstr "Mantra súgó"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:645\r
+msgid ""\r
+"\n"\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "\r
+"version?</li>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+"expected?</li>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "\r
+"your needs?</li>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+"Mantra Theme?</li>\n"\r
+"\n"\r
+"\t\t\t</ul>\n"\r
+"\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Szükséged lenne Mantra segítségre a WP oldaladhoz?</li>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Szeretnéd tudni, milyen változások érhetők el a frissítésben?</"\r
+"li>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Hibát találtál, vagy valami nem úgy működik, mint elképzelted?"\r
+"</li>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Van egy ötleted, amivel jobbá tehetnéd a Mantra sablont?</li>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Szükséged van egyedi beállításra?</li>\n"\r
+"\n"\r
+"\t\t\t\t<li>- Van kész fordításod, vagy szeretnél fordítani?</li>\n"\r
+"\n"\r
+"\t\t\t</ul>\n"\r
+"\n"\r
+"\t\t\t<p>Akkor látogasd meg a Mantra support oldalát.</p>\n"\r
+"\n"\r
+"\t"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/main.php:667\r
+msgid "Mantra Support Page"\r
+msgstr "Mantra terméktámogatás"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:121\r
+msgid "One column (no sidebars)"\r
+msgstr "Egy oszlop (nincs oldalsáv)"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:123\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Két oszlop, oldalsáv jobb oldalt"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:125\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Két oszlop, oldalsáv bal oldalt"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:127\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Három oszlop, oldalsáv jobb oldalt"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:129\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Három oszlop, oldalsáv bal oldalt"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:131\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Három oszlop, oldalsáv mindkét oldalon"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:161\r
+msgid "Choose your layout "\r
+msgstr "Válassz elrendezést"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:177\r
+msgid "Absolute"\r
+msgstr "Abszolút"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:177\r
+msgid "Relative"\r
+msgstr "Relatív"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:179\r
+msgid "Dimensions to use: "\r
+msgstr "Méretek használata: "\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:377\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:417\r
+msgid "Content ="\r
+msgstr "Tartalom ="\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:379\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:419\r
+msgid "Sidebar(s) ="\r
+msgstr "Oldalsáv(ok) ="\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:381\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:421\r
+msgid "Total width ="\r
+msgstr "Teljes szélesség ="\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:399\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+"\n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Válaszd ki a <b>tartalom</b> és az <b>oldalsáv(ok)</b> szélességét. \n"\r
+"\n"\r
+" \t\tA tartalom nem lehet kisebb mint 500px széles, az oldalsáv minimum "\r
+"220px és maximum 800px.<br />\n"\r
+"\n"\r
+"\tHa 3 hasábos kinézetet állítasz be (2 oldalsávval) akkor a szélességek "\r
+"egyenként értendők."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:439\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+"\n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Válaszd ki a <b>tartalom</b> és az <b>oldalsáv(ok)</b> szélességét. \n"\r
+"\n"\r
+" \t\tEzek relatív méretek a böngésző szélességéhez képest. A teljes méret "\r
+"adott százaléka a szélesség.<br />\n"\r
+"\n"\r
+"\t A tartalom nem lehet kisebb mint 40% szélesség, az oldalsáv minimum 20% "\r
+"és maximum 50%.<br />\n"\r
+"\n"\r
+"\tHa 3 hasábos kinézetet választasz 2 oldalsávval, akkor a két oldalsáv a "\r
+"választott szélesség fele-fele lesz."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:487\r
+msgid ""\r
+"Select the header's height. After saving the settings go and upload your new "\r
+"header image. The header's width will be = "\r
+msgstr ""\r
+"Válaszd ki a fejléc magasságát. Miután elmentetted töltsd fel az új fejléc "\r
+"képet. A fejléc kép szélessége legyen ="\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:513\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1937\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2061\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2733\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2857\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3273\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3331\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3377\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3423\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3521\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3779\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3809\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3839\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3869\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3953\r
+msgid "Enable"\r
+msgstr "Engedélyezés"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:513\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1937\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2061\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2733\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2857\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3273\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3331\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3377\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3423\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3521\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3779\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3809\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3839\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3869\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3953\r
+msgid "Disable"\r
+msgstr "Letiltás"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:529\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page. It "\r
+"has a slider and columns for presentation\n"\r
+"\n"\r
+"\t\ttext and images.<br>If you have this enabled but don't see a "\r
+"Presentation page then go to <a href='options-reading.php'> Settings » "\r
+"Reading </a> and make sure you have selected <strong>Front Page Displays</"\r
+"strong> as <Strong>Your Latest Posts</strong>."\r
+msgstr ""\r
+"A prezentációs kezdő oldal engedélyezése. Ezután új kezdőlapod lesz, melyen "\r
+"egy diavetítés fut majd\n"\r
+"\n"\r
+"\t\t szöveggel és képpel.<br>Ha engedélyezed, de nem látod a prezentációs "\r
+"oldalt, menj a <a href='options-reading.php'> Beállítások » Olvasás </"\r
+"a> menübe és ellenőrizd, hogy a megfelelő oldal van kiválasztva "\r
+"<strong>kezdőlapnak</strong> mint <strong>utolsó bejegyzések</strong>."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:549\r
+msgid "Slider Dimensions:"\r
+msgstr "Diavetítés méretei:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:551\r
+msgid "width"\r
+msgstr "szélesség"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:553\r
+msgid "height"\r
+msgstr "magasság"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:555\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr "A diavetítés mérete. Ellenőrizd, hogy minden kép azonos méretű legyen!"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:559\r
+msgid "Animation:"\r
+msgstr "Animáció:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "Random"\r
+msgstr "Véletlenszerű"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "Fold"\r
+msgstr "Hajtogatás"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "Fade"\r
+msgstr "Áttűnés"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "SlideInRight"\r
+msgstr "Becsúszás jobbra"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "SlideInLeft"\r
+msgstr "Becsúszás balra"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "SliceDown"\r
+msgstr "Szeletelve le"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "SliceDownLeft"\r
+msgstr "Szeletelve balra"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "SliceUp"\r
+msgstr "Szeletelve fel"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "SliceUpLeft"\r
+msgstr "Szeletelve le"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "SliceUpDown"\r
+msgstr "Szeletelve fel/le"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "SliceUpDownLeft"\r
+msgstr "Szeletelve le/balra"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "BoxRandom"\r
+msgstr "Doboz véletlenszerű"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "BoxRain"\r
+msgstr "Doboz eső"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "BoxRainReverse"\r
+msgstr "Doboz eső vissza"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "BoxRainGrow"\r
+msgstr "Doboz eső növekvő"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:563\r
+msgid "BoxRainGrowReverse"\r
+msgstr "Doboz eső növekvő visszafelé"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:579\r
+msgid "The transition effect your slider will have."\r
+msgstr "A diavetítés effektje lesz."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:583\r
+msgid "Border Settings:"\r
+msgstr "Keret beállítások:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:585\r
+msgid "Width"\r
+msgstr "Szélesség"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:587\r
+msgid "Color"\r
+msgstr "Szín"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:591\r
+msgid "The width and color of the slider's border."\r
+msgstr "A diavetítés keretének szélessége és színe"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:595\r
+msgid "Animation Time:"\r
+msgstr "Animáció ideje:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:597\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:605\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "ezredmásodperc (1000ms = 1mp)"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:599\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "Ez alatt az idő alatt fut le az animáció"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:603\r
+msgid "Pause Time:"\r
+msgstr "Szünet ideje:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:607\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Ennyi ideig marad a kép mozdulatlan."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:613\r
+msgid "Slider navigation:"\r
+msgstr "Diavetítés navigáció:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:617\r
+msgid "Numbers"\r
+msgstr "Számok"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:617\r
+msgid "Bullets"\r
+msgstr "Jelölők"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:617\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2545\r
+msgid "None"\r
+msgstr "Semmi"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:633\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "A diavetítés navigáció típusa. Megjelenik a diavetítés alatt."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:637\r
+msgid "Slider arrows:"\r
+msgstr "Diavetítés nyilak:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:641\r
+msgid "Always Visible"\r
+msgstr "Mindig látható"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:641\r
+msgid "Visible on Hover"\r
+msgstr "Föléhúzáskor látható"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:641\r
+msgid "Hidden"\r
+msgstr "Rejtett"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:657\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "A bal és jobb nyilak mindig a diákon"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:739\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:875\r
+msgid "Select Category"\r
+msgstr "Válassz kategóriát"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:793\r
+msgid "Custom Slides"\r
+msgstr "Egyedi diák"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:793\r
+msgid "Latest Posts"\r
+msgstr "Utolsó bejegyzések"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:793\r
+msgid "Random Posts"\r
+msgstr "Véletlenszerű bejegyzések"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:793\r
+msgid "Sticky Posts"\r
+msgstr "Ragadós bejegyzések"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:793\r
+msgid "Latest Posts from Category"\r
+msgstr "Utolsó bejegyzések adott kategóriából"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:793\r
+msgid "Random Posts from Category"\r
+msgstr "Véletlenszerű bejegyzések adott kategóriából"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:793\r
+msgid "Specific Posts"\r
+msgstr "Adott bejegyzések"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:819\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Legutóbbi bejegyzések lesznek betöltve a diavetítésbe."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:827\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "A diavetítésbe véletlenszerű bejegyzések kerülnek."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:835\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr ""\r
+"A diavetítésbe a legutóbbi bejegyzések fognak bekerülni a választott "\r
+"kategóriából."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:845\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr ""\r
+"A diavetítésbe a legutóbbi bejegyzések fognak bekerülni a választott "\r
+"kategóriából."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:853\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Csak a ragadós bejegyzések kerülnek be a diavetítésbe."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:861\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr ""\r
+"Válaszd ki a bejegyzések ID-it amik a diavetítésbe kerülnek, vesszővel "\r
+"elválasztva:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:871\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Válassz kategóriát:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:905\r
+msgid "Number of posts to show:"\r
+msgstr "Bejegyzések száma a megjelenítéshez:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:919\r
+msgid "Slide 1"\r
+msgstr "1. Dia"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:927\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:957\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:987\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1017\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1047\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1133\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1163\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1193\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1223\r
+msgid "Upload or select image from gallery"\r
+msgstr "Tölts fel képet vagy válassz a médiatárból"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:929\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:959\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:989\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1019\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1049\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1135\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1165\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1225\r
+msgid "Title"\r
+msgstr "Cím"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:933\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:963\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:993\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1023\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1053\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1139\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1169\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1199\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1229\r
+msgid "Text"\r
+msgstr "Szöveg"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:949\r
+msgid "Slide 2"\r
+msgstr "2. Dia"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:979\r
+msgid "Slide 3"\r
+msgstr "3. Dia"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1009\r
+msgid "Slide 4"\r
+msgstr "4. Dia"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1039\r
+msgid "Slide 5"\r
+msgstr "5. Dia"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1065\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"A diák tartalma. Csak a képek kötelezők, minden más mező opcionális. Csak "\r
+"olyan dia jelenik meg, amihez van kép beállítva, és aktív."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1085\r
+msgid "Number of columns:"\r
+msgstr "Oszlopok száma:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1105\r
+msgid "Image Height:"\r
+msgstr "Kép magassága:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1111\r
+msgid "Read more text:"\r
+msgstr "Több szöveg olvasása:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1117\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr ""\r
+"A linkelt szöveg megjelenik minden oszlop alatt. A szöveget törölheted, ha "\r
+"nincs rá szükséged."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1125\r
+msgid "1st Column"\r
+msgstr "1. Oszlop"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1155\r
+msgid "2nd Column"\r
+msgstr "2. Oszlop"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1185\r
+msgid "3rd Column"\r
+msgstr "3. Oszlop"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1215\r
+msgid "4th Column"\r
+msgstr "4. Oszlop"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1259\r
+msgid "Extra Text"\r
+msgstr "Extra szöveg"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1259\r
+msgid "Top Title"\r
+msgstr "Felső cím"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1263\r
+msgid "Second Title"\r
+msgstr "Második cím"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1269\r
+msgid "Title color"\r
+msgstr "Cím színe"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1275\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "A cím alapértelmezett színe 333333"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1279\r
+msgid "Bottom Text 1"\r
+msgstr "Alszöveg 1"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1283\r
+msgid "Bottom Text 2"\r
+msgstr "Alszöveg 2"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1289\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Több szöveg a kezdőlapra. A felső cím a diavetítés felett jelenik meg, a "\r
+"második cím a diák és az oszlopok közt, és 2-nél több sor az oszlopok alatt "\r
+"jelenik meg.\n"\r
+"\n"\r
+"\t\tEz mind opcionális, hagyd üresen ha nem kell."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1301\r
+msgid "Hide areas"\r
+msgstr "Területek elrejtése"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1327\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Fejléc terület elrejtése (képek és háttér szín)"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1335\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Főmenü elrejtése (felső navigációs sor)"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1343\r
+msgid "Hide the footer widgets. "\r
+msgstr "Lábléc widgetek elrejtése."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1351\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Lábléc (copyright) elrejtése."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1359\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Fehér szín elrejtése. Csak a hátérszín marad."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1367\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Válaszd ki a kezdőlapon elrejtendő területeket."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1405\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"Válaszd ki a BLOG betűméretét. Az oldalak és bejegyzések betűméretei "\r
+"érintettek. Fejléc és oldalsáv menük nem változnak."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1493\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"Válaszd ki a betűtípust a BLOG-od részére. Minden szöveg érintett (a menü "\r
+"gombok is)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1495\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1593\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1695\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1797\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"Vagy válassz egy Google Fontot lent. Csak pontos <strong>nevet</strong> írj "\r
+"be. <br /> Pl.: Marko one. Menj a <a href='http://www.google.com/webfonts' > "\r
+"google fonts </a> oldalra további ötletekért."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1589\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"Válaszd ki a betűtípust a címhez. Ez befolyásolja a bejegyzések és oldalak "\r
+"címét. Hagyd 'alapértelmezett' állásban az általános betűtípus használatához."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1691\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"Válaszd ki a betűtípust az oldalsávhoz. Az oldalsáv szövegek és a widgetek "\r
+"érintettek. Hagyd 'alapértelmezett' állásban az általános betűtípus "\r
+"használatához."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1793\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"Válaszd ki a betűtípust az alcímekhez (h2-h6 elemek is érintettek). Hagyd "\r
+"'alapértelmezett' állásban az általános betűtípus használatához."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1817\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1847\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1877\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1967\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1997\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2027\r
+msgid "Default"\r
+msgstr "Alapértelmezett"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1833\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"Bejegyzés fejléc betűméret. Hagyd 'alapértelmezett' állásban az általános "\r
+"méret (CSS-ben állítva) használatához."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1863\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"Oldalsáv betűméret. Hagyd 'alapértelmezett' állásban az általános méret (CSS-"\r
+"ben állítva) használatához."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1877\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3455\r
+msgid "Left"\r
+msgstr "Bal"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1877\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3455\r
+msgid "Right"\r
+msgstr "Jobb"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1877\r
+msgid "Justify"\r
+msgstr "Sorkizárt"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1877\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3455\r
+msgid "Center"\r
+msgstr "Középre zárt"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1893\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"Ez felülírja a szöveg igazítást a bejegyzéseknél és oldalaknál. Hagyd "\r
+"'alapértelmezett' állásban az általános elrendezés érdekében (ha a "\r
+"bejegyzésben vagy oldalnál mást állítasz be, az felülírja)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1921\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Bekezdés behúzásának beállítása."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1953\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "Az alapértelmezett fejléc és cím behúzás kikapcsolása (bal margó)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:1983\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"Sormagasság. A távolság két sor közt. Hagyd 'alapértelmezett' állásban az "\r
+"általános méret (CSS-ben állítva) használatához."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2013\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"A távolság a <i>szavak</i> közt. Hagyd 'alapértelmezett' állásban az "\r
+"általános méret (CSS-ben állítva) használatához."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2043\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"A távolság a <i>betűk</i> közt. Hagyd 'alapértelmezett' állásban az "\r
+"általános méret (CSS-ben állítva) használatához."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2077\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "Szöveg árnyékolás kikapcsolása a fejlécben és a címeknél."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2101\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Háttér szín (alapértelmezett 444444)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2117\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr ""\r
+"Fejléc háttér szín (alapértelmezett 333333). Ha kitörölsz minden szöveget "\r
+"innen, nem lesz háttérszín."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2131\r
+msgid ""\r
+"Content background color (Default value is FFFFFF). Works best with really "\r
+"light colors."\r
+msgstr ""\r
+"Tartalom háttérszín (alapértelmezett FFFFFF). Világos színekkel mutat "\r
+"igazán jól."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2145\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"Főmenü háttér szín (alapértelmezett FAFAFA). Javasolt azonos színnel mint a "\r
+"tartalom "\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2159\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2173\r
+msgid "First sidebar background color (Default value is FFFFFF)."\r
+msgstr "Első oldalsáv háttér színe (alapértelmezett FFFFFF)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2189\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "Lábléc widget-terület háttér színe (alapértelmezett 171717)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2205\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Lábléc háttér színe (alapértelmezett 222222)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2221\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "A blogod címének színe (alapértelmezett 0D85CC)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2237\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "A blogod leírásának színe (alapértelmezett 222222)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2253\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Tartalom szöveg színe (alapértelmezett 333333)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2269\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Linkek színe (alapértelmezett 0D85CC)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2285\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "Egérrel mutatott link színe (alapértelmezett 333333)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2301\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Bejegyzés fejléc szövegének színe (alapértelmezett 333333)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2317\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+"Bejegyzés fejléc szövegének színe egérrel mutatva (alapértelmezett 000000)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2333\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Oldalsáv fejléc hátterének színe (alapértelmezett 444444)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2351\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Oldalsáv fejléc szövegének színe (alapértelmezett 2EA5FD)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2367\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Lábléc widget szöveg színe (alapértelmezett 0D85CC)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2383\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Lábléc widget link színe (alapértelmezett 666666)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2399\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr "Lábléc widget link színe egérrel mutatva (alapértelmezett 888888)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2423\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2545\r
+msgid "White"\r
+msgstr "Fehér"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2423\r
+msgid "Light"\r
+msgstr "Világos"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2423\r
+msgid "Light Gray"\r
+msgstr "Világos szürke"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2423\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2545\r
+msgid "Gray"\r
+msgstr "Szürke"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2423\r
+msgid "Dark Gray"\r
+msgstr "Sötét szürke"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2423\r
+msgid "Black"\r
+msgstr "Fekete"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2439\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"Ez a beállítás megváltoztatja a címmezők kinézetét. Azok a képek, amelyekhez "\r
+"nincs címmező, nem érintettek."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2471\r
+msgid "The border around your inserted images. "\r
+msgstr "Keret a beillesztett kép körül."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2501\r
+msgid "The image on top of your captions. "\r
+msgstr "A kép a megadott címmező felett."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2531\r
+msgid "The sidebar list bullets. "\r
+msgstr "Oldalsáv lista jelölők."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2561\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default.<"\r
+msgstr "A bejegyzések meta adatainak háttere. Alapesetben szürke.<"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2577\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2609\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2643\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2673\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2703\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2763\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2793\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2825\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2911\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2941\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2971\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3001\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3031\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3061\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3091\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3121\r
+msgid "Show"\r
+msgstr "Mutatás"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2577\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2609\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2643\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2673\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2703\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2763\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2825\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2911\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2941\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2971\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3001\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3031\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3061\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3091\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3121\r
+msgid "Hide"\r
+msgstr "Elrejtés"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2593\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "A bejegyzéseket elválasztó vonal mutatása vagy elrejtése."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2625\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"A lista elemek előtti jelölők mutatása vagy elrejtése a tartalom részben. "\r
+"(bejegyzések, oldalak, stb)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2659\r
+msgid ""\r
+"Hide or show your blog's Title and Description in the header (recommended if "\r
+"you have a custom header image with text)."\r
+msgstr ""\r
+"A blog címének és leírásának mutatása vagy elrejtése (fontos, ha olyan "\r
+"fejléc képed van, amin kép és szöveg is van)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2689\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "A <i>készítette</i> elem elrejtése az oldalakon."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2719\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Az oldalak címének elrejtése a <i>Kategóriák</i> oldalon."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2749\r
+msgid "Hide table borders and background color."\r
+msgstr "Táblázat szegélyek és háttérszínek elrejtése."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2779\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"A magyarázó szöveg elrejtése a kommentek mező alatt. (így kezdődik: "\r
+"<i>Használhatod a következő html elemeket…</i>)."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2793\r
+msgid "Hide in posts"\r
+msgstr "Elrejteni a bejegyzésekben"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2793\r
+msgid "Hide in pages"\r
+msgstr "Elrejteni az oldalakon"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2793\r
+msgid "Hide everywhere"\r
+msgstr "Mindenhol elrejteni"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2809\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"A <b>hozzászólások letiltva</b> üzenet elrejtése, ami automatikusan "\r
+"megjelenik minden oldalon, ahol tiltott."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2841\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+"A <b>Hozzászóások kikapcsolva</b> szöveg elrejtése ha globálisan le vannak "\r
+"tiltva."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2873\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"A vissza a tetejére gomb engedélyezése. A gomb megjelenik ha lefelé "\r
+"scrollozunk."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2887\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"Szúrj be egyedi szöveget vagy HTML kódot ami megjelenik a láblécben. <br /"\r
+">Használhatsz HTML tageket is, képeket, és speciális karaktereket is like "\r
+"© ."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2927\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"A <strong>szólj hozzá</strong> elem vagy <strong>x hozzászólás</strong> elem "\r
+"mutatása vagy elrejtése a bejegyzések szemelvényeinél."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2957\r
+msgid "Hide or show the post date."\r
+msgstr "A bejegyzés dátumának elrejtése."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:2987\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"Mutassa a bejegyzés idejét is a dátum mellett. Az idő nem lesz látható, ha a "\r
+"dátum el van rejtve."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3017\r
+msgid "Hide or show the post author."\r
+msgstr "A szerző mutatása vagy elrejtése."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3047\r
+msgid "Hide the post category."\r
+msgstr "A bejegyzés kategória elrejtése."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3077\r
+msgid "Hide the post tags."\r
+msgstr "A bejegyzés cimke elrejtése"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3107\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "A 'permalink könyvjelzőbe' elrejtése."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3137\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr "Minden bejegyzés meta adat elrejtése."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3163\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3193\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3225\r
+msgid "Excerpt"\r
+msgstr "Szemelvény"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3163\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3193\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3225\r
+msgid "Full Post"\r
+msgstr "Teljes bejegyzés"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3179\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"Szemelvények a főoldalon. Csak a normál bejegyzések érintettek. Minden más "\r
+"bejegyzés forma (mellék, kép, chat, idézet stb) saját formázással "\r
+"rendelkezik."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3209\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"Válaszd ki ha szeretnél ragadós bejegyzést a kezdő oldalon megjeleníteni, "\r
+"teljes méretben vagy szemelvényben."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3241\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"Szemelvények az archívumban, kategóriákban és a keresés oldalon. Csak az "\r
+"általános bejegyzések érintettek."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3257\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"A szavak száma a szemelvényekben. Ha a számot elérték, a szemelvény meg lesz "\r
+"szakítva a <i>tovább olvasom</i> linkkel együtt.\n"\r
+"\n"\r
+"\t\t\t\t\t\t\t az olvasót a cikk teljes tartalmára irányítja."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3289\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"A magazin kinézet engedélyezése. Ez a kinézet két oszlopban mutatja a "\r
+"bejegyzéseket soronként."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3303\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr ""\r
+"Kicseréli a három pontot ('[…])' amit automatikusan a szemelvény végéhez "\r
+"tesz."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3317\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "A 'tovább olvasom' link szerkesztése, amit a szemelvényekhez adunk."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3347\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr ""\r
+"Alapértelmezésben a WordPress eltávolít minden HTML taget a szemelvényekből ("\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3409\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"Mutassa a kiemelt képeket bélyegképként a bejegyzéseknél. A képeket ki kell "\r
+"jelölni minden bejegyzés elején kiemelt képként."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3439\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"Mutassa az első képet bélyegképként amit beillesztettél a bejegyzéshez. Ha "\r
+"engedélyezed ezt az opciót, a bejegyzésnél az első kép bekerül a kiemelt "\r
+"képek közé a bejegyzésnél."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3471\r
+msgid "Thumbnail alignment."\r
+msgstr "Bélyegkép rendezése."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3505\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"A bélyegkép mérete (képpontokban). Alapesetben a képek rögzített "\r
+"oldalaránnyal lesznek átméretezve. Válaszd a vágás opciót ha pontos méretet "\r
+"szeretnél."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3537\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"Mutassa a kiemelt képet a fejlécben. A fejléc le lesz cserélve a kiemelt "\r
+"képpel ha kiválasztod a kiemelt képet a bejegyzésnél\n"\r
+"\n"\r
+"\t\t\t\t\t\t\t és a feltöltött kép akkora vagy nagyobb mint a fejléc kép "\r
+"mérete."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3579\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"Válaszd ki a közösségi hálózatot a legördülő listából, és illeszd be a "\r
+"pontos URL-t a beviteli mezőbe. (pl <i>http://www.facebook.com/teneved</i> )"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3607\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Akár 5 különböző közösségi oldalt is beállíthatsz."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3635\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Összesen 27 közösségi oldal közül választhatsz."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3663\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Akármelyik mezőt üresen hagyhatod."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3691\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Ugyanazt a közösségi oldalt többször is használhatod."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3753\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "Válaszd ki a <b>területet</b> ahol megjelennek az ikonok."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3795\r
+msgid ""\r
+"Make the site header into a clickable link that links to your index page."\r
+msgstr "Legyen a fejléc kattintható, amely link a kezdőlapodra mutat."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3825\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"Mutassa a breadcrumb (webmorzsa) elemeket a tartalom felett. A webmorzsák "\r
+"egyfajta navigációs segédletként használhatók."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3855\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"Mutass számozott lapozót. Ahol több, mint egy oldal jelenne meg, ott látható "\r
+"a <b>régebbi bejegyzések</b> és az <b>újabb bejegyzések</b> link számozással "\r
+"együtt."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3885\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in. "\r
+msgstr ""\r
+"Engedélyezi a mobil nézetet a Mantra reszponzív kinézet érdekében. A "\r
+"kinézete a blogodnak megváltozik attól függően, hogy milyen eszközön "\r
+"tekintik meg azt."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3905\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "Favicon feltöltése vagy választása a galériából."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3913\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+"Korlátozások: képnek kell lennie, és maximum 64x64képpont méretű lehet. "\r
+"Javasolt kiterjesztések: ico, png."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3929\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br /> Your custom CSS will be preserved when updating the "\r
+"theme."\r
+msgstr ""\r
+"Illeszd be a saját CSS tartalmad. Bármilyen CSS deklarálás amit itt teszel, "\r
+"felülírja a Mantra beállításokat (akár az egyedi beállításokét is). <br /> "\r
+"Az egyedi CSS tartalom megőrzésre kerül frissítés után is."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3943\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software)."\r
+msgstr "Illeszd be az egyedi JavaScriptedet. (GoogleAnalytics vagy egyéb kód)"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3969\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Engedélyezed a Mantra SEO modult. Alapesetben bekapcsolva, akkor kell "\r
+"kikapcsold, ha saját SEO plugint használsz."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3993\r
+msgid "Auto"\r
+msgstr "Automatikus"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/admin/settings.php:3993\r
+msgid "Manual"\r
+msgstr "Kézi"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:55\r
+msgid "says:"\r
+msgstr "mondta:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:67\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "A hozzászólás moderációra vár."\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:81\r
+msgid "at"\r
+msgstr "ekkor"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:81\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:115\r
+msgid "(Edit)"\r
+msgstr "(Szerkesztés)"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:115\r
+msgid "Pingback: "\r
+msgstr "Pingback:"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:169\r
+msgid "Leave a comment"\r
+msgstr "Szólj hozzá"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:169\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Hozzászólás"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:169\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Hozzászólás"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:213\r
+msgid "Older Comments"\r
+msgstr "Régebbi hozzászólások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-comments.php:215\r
+msgid "Newer Comments"\r
+msgstr "Újabb hozzászólások"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-functions.php:465\r
+msgid "Home Page"\r
+msgstr "Kezdőlap"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:289\r
+msgid "By "\r
+msgstr "Írta"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:369\r
+msgid " Bookmark the "\r
+msgstr "Könyvjelzőkhöz"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:369\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:373\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:377\r
+msgid "Permalink to"\r
+msgstr "Permalink ehhez"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:369\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:373\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:377\r
+msgid "permalink"\r
+msgstr "permalink"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:373\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:377\r
+msgid "Bookmark the "\r
+msgstr "Könyvjelzőkhöz"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:421\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Régebbi bejegyzések"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-loop.php:423\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Újabb bejegyzések"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-seo.php:51\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Oldal %s"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:179\r
+msgid "Primary Navigation"\r
+msgstr "Elsődleges navigáció"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:181\r
+msgid "Top Navigation"\r
+msgstr "Felső navigáció"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:183\r
+msgid "Footer Navigation"\r
+msgstr "Lábléc navigáció"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:271\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:393\r
+msgid "Skip to content"\r
+msgstr "Ugrás a tartalomhoz"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:447\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Első widget terület - 1. oldalsáv"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:451\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Második widget terület - 1. oldalsáv"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:469\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Második widget terület - 1. oldalsáv"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:473\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Második widget terület - 1. oldalsáv"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:491\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Harmadik widget terület - 2. oldalsáv"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:495\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Harmadik widget terület - 2. oldalsáv"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:513\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Negyedik widget terület - 2. oldalsáv"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:517\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Negyedik widget terület - 2. oldalsáv"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:535\r
+msgid "First Footer Widget Area"\r
+msgstr "Első lábléc widget terület"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:539\r
+msgid "First footer widget area"\r
+msgstr "Első lábléc widget terület"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:557\r
+msgid "Second Footer Widget Area"\r
+msgstr "Második lábléc widget terület"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:561\r
+msgid "Second footer widget area"\r
+msgstr "Második lábléc widget terület"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:579\r
+msgid "Third Footer Widget Area"\r
+msgstr "Harmadik lábléc widget terület"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:583\r
+msgid "The third footer widget area"\r
+msgstr "Harmadik lábléc widget terület"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:601\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Negyedik lábléc widget terület"\r
+\r
+#: /Users/Peter/weblapjaim/gerisoft.hu/wp_site/wp-content/themes/mantra/includes/theme-setup.php:605\r
+msgid "The fourth footer widget area"\r
+msgstr "Negyedik lábléc widget terület"\r
+\r
+#~ msgid "Archives"\r
+#~ msgstr "Archívum"\r
+\r
+#~ msgid "Meta"\r
+#~ msgstr "Meta"\r
+\r
+#~ msgid "Insert footer copyright"\r
+#~ msgstr "Lábléc jogi információk beszúrása"\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra International\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2013-04-20 09:59+0100\n"\r
+"PO-Revision-Date: 2013-04-20 10:22+0100\n"\r
+"Last-Translator: Antonio Mercurio <antonio.mercurio@gmail.com>\n"\r
+"Language-Team: Antonio Mercurio <antonio.mercurio@gmail.com>\n"\r
+"Language: it_IT\n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;_x;_ex;_nx;"\r
+"esc_attr__;esc_attr_e;_n_noop;_nx_noop\n"\r
+"X-Poedit-Basepath: ..\n"\r
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"\r
+"X-Generator: Poedit 1.5.5\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "Non trovato"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr ""\r
+"Spiacenti, la pagina richiesta non è presente su questo sito. Provate a "\r
+"migliorare i criteri di ricerca"\r
+\r
+#: archive.php:26\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Archivi per Giorno: %s"\r
+\r
+#: archive.php:28\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Archivi per Mese: %s"\r
+\r
+#: archive.php:28\r
+msgid "F Y"\r
+msgstr "F Y"\r
+\r
+#: archive.php:30\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Archivi per Anno: %s"\r
+\r
+#: archive.php:30\r
+msgid "Y"\r
+msgstr "Y"\r
+\r
+#: archive.php:32\r
+msgid "Blog Archives"\r
+msgstr "Archivi Blog"\r
+\r
+#: archive.php:58 author.php:75 category.php:51 index.php:41 search.php:41\r
+#: tag.php:52 template-blog.php:36\r
+msgid "Nothing Found"\r
+msgstr "Nessun risultato"\r
+\r
+#: archive.php:62 author.php:79 category.php:55 index.php:45 tag.php:56\r
+#: template-blog.php:40\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr ""\r
+"Siamo spiacenti ma non è stato ottenuto alcun risultato per l'archivio "\r
+"richiesto. Provate a cercare negli articoli correlati."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Ritorna a %s"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "Di"\r
+\r
+#: attachment.php:33 includes/theme-loop.php:147\r
+#, php-format\r
+msgid "View all posts by %s"\r
+msgstr "Mostra tutti gli articoli di %s"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "Pubblicato"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "La dimensione reale è di %s pixel"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "Collegamento all'imagine in dimensione reale"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:49 content-gallery.php:65 content-image.php:42\r
+#: content-link.php:49 content-page.php:22 content-quote.php:46\r
+#: content-status.php:48 content.php:76 single.php:54\r
+#: template-onecolumn.php:27\r
+msgid "Edit"\r
+msgstr "Modifica"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "Continua a leggere"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:38\r
+#: content-gallery.php:55 content-image.php:33 content-link.php:38\r
+#: content-page.php:21 content-quote.php:36 content-status.php:39\r
+#: content.php:49 content.php:65 single.php:32 template-onecolumn.php:26\r
+msgid "Pages:"\r
+msgstr "Pagine:"\r
+\r
+#: author.php:29\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Archivio dell'Autore: %s"\r
+\r
+#: author.php:50 single.php:41\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "Info su %s"\r
+\r
+#: category.php:20\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Archivio categoria: %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+"Questo articolo è protetto da una password. Inseriscila per visualizzare i "\r
+"commenti"\r
+\r
+#: content-aside.php:16 content-chat.php:16 content-gallery.php:16\r
+#: content-gallery.php:49 content-image.php:15 content-link.php:16\r
+#: content-quote.php:14 content-status.php:15 content.php:20\r
+#, php-format\r
+msgid "Permalink to %s"\r
+msgstr "Permalink verso %s"\r
+\r
+#: content-aside.php:20\r
+msgid "Aside"\r
+msgstr "Da parte "\r
+\r
+#: content-aside.php:38 content-chat.php:37 content-gallery.php:33\r
+#: content-image.php:32 content-link.php:37 content-quote.php:35\r
+#: content-status.php:38\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Continua la lettura <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:45 content-gallery.php:62\r
+#: content-image.php:39 content-link.php:45 content-quote.php:43\r
+#: content-status.php:46 content.php:74 includes/theme-loop.php:185\r
+msgid "Tagged"\r
+msgstr "Con le parole chiave "\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "Chat"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "Galleria"\r
+\r
+#: content-gallery.php:48\r
+#, php-format\r
+msgid "This gallery contains <a %1$s>%2$s photo</a>."\r
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."\r
+msgstr[0] "Questa galleria contiene <a %1$s>%2$s foto</a>."\r
+msgstr[1] "Questa galleria contiene <a %1$s>%2$s foto</a>."\r
+\r
+#: content-image.php:19 admin/settings.php:470 admin/settings.php:485\r
+#: admin/settings.php:500 admin/settings.php:515 admin/settings.php:530\r
+#: admin/settings.php:572 admin/settings.php:587 admin/settings.php:602\r
+#: admin/settings.php:617\r
+msgid "Image"\r
+msgstr "Immagine"\r
+\r
+#: content-link.php:20 admin/settings.php:477 admin/settings.php:492\r
+#: admin/settings.php:507 admin/settings.php:522 admin/settings.php:537\r
+#: admin/settings.php:579 admin/settings.php:594 admin/settings.php:609\r
+#: admin/settings.php:624\r
+msgid "Link"\r
+msgstr "Link"\r
+\r
+#: content-page.php:27 includes/theme-comments.php:136\r
+msgid "Comments are closed."\r
+msgstr "I commenti sono disattivati"\r
+\r
+#: content-quote.php:18\r
+msgid "Quote"\r
+msgstr "Citazione"\r
+\r
+#: content-status.php:30\r
+msgid "Status"\r
+msgstr "Stato"\r
+\r
+#: search.php:20\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Risultati della ricerca per: %s"\r
+\r
+#: search.php:39\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "Nessun risultato per la ricerca di : %s"\r
+\r
+#: searchform.php:1\r
+msgid "Search"\r
+msgstr "Cerca"\r
+\r
+#: single.php:45\r
+msgid "View all posts by "\r
+msgstr "Mostra tutti gli articoli di "\r
+\r
+#: tag.php:21\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Archivi per parole chiave: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr ""\r
+"Prima di effettuare l'upload del file da importare è necessario rimediare a "\r
+"questo errore:"\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Importazione opzioni del template Mantra"\r
+\r
+#: admin/admin-functions.php:72\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"In questa sezione è possibile importare le impostazioni del template Mantra."\r
+"<i> Attenzione! Questa opzione è ancora sperimentale.</i>"\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Seleziona un file dal computer:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "Dimensione Massima: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "ed importa"\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Importazione delle Opzioni del template Mantra"\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "Perfetto! Le opzioni sono state importate!"\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr ""\r
+"Ritorna alla pagina di impostazione di Mantra e verifica la correttezza "\r
+"delle impostazioni importate"\r
+\r
+#: admin/admin-functions.php:155 admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "Oops, c'è stato un piccolo problema"\r
+\r
+#: admin/admin-functions.php:156\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"Il file inviato non contiene nessuna opzione valida per il template Mantra. "\r
+"Assicuratevi che il file sia stato esportato dalla pagina delle opzioni di "\r
+"Mantra"\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "Impossibile leggere il file inviato"\r
+\r
+#: admin/admin-functions.php:168\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"Il file inviato non è supportato. Assicuratevi che il file sia stato "\r
+"esportato dalla pagina delle opzioni di Mantra."\r
+\r
+#: admin/admin-functions.php:177\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"Oops! Il file è vuoto oppure non è stato inviato. Questo file potrebbe "\r
+"essere causato anche dall'impostazione file_upload nel php.ini oppure la "\r
+"dimensione del file è superiore a quella indicata nell'opzione "\r
+"upload_max_filesize, sempre nel php.ini"\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr ""\r
+"ERRORE: Non si possiedono le necessarie autorizzazioni per effettuare questa "\r
+"operazione!"\r
+\r
+#: admin/main.php:95\r
+msgid "Layout Settings"\r
+msgstr "Impostazione Layout"\r
+\r
+#: admin/main.php:96\r
+msgid "Header Settings"\r
+msgstr "Impostazione header"\r
+\r
+#: admin/main.php:97\r
+msgid "Presentation Page"\r
+msgstr "Pagina di presentazione"\r
+\r
+#: admin/main.php:98\r
+msgid "Text Settings"\r
+msgstr "Impostazione Testo"\r
+\r
+#: admin/main.php:99\r
+msgid "Color Settings"\r
+msgstr "Impostazione Colore"\r
+\r
+#: admin/main.php:100\r
+msgid "Graphics Settings"\r
+msgstr "Impostazione Grafica"\r
+\r
+#: admin/main.php:101\r
+msgid "Post Information Settings"\r
+msgstr "Impostazione Informazione Articoli"\r
+\r
+#: admin/main.php:102\r
+msgid "Post Excerpt Settings"\r
+msgstr "Impostazione Riassunto Articoli"\r
+\r
+#: admin/main.php:103\r
+msgid "Featured Image Settings"\r
+msgstr "Impostazione Immagini In Evidenza"\r
+\r
+#: admin/main.php:104\r
+msgid "Social Media Settings"\r
+msgstr "Impostazione Social Media"\r
+\r
+#: admin/main.php:105\r
+msgid "Miscellaneous Settings"\r
+msgstr "Impostazione Varie"\r
+\r
+#: admin/main.php:107\r
+msgid "Main Layout"\r
+msgstr "Layout principale"\r
+\r
+#: admin/main.php:108\r
+msgid "Content / Sidebar Width"\r
+msgstr "Larghezza Contenuti / Sidebar"\r
+\r
+#: admin/main.php:109\r
+msgid "Mobile view"\r
+msgstr "Sito Mobile"\r
+\r
+#: admin/main.php:111\r
+msgid "Enable Presentation Page"\r
+msgstr "Abilita la pagina di presentazione"\r
+\r
+#: admin/main.php:112\r
+msgid "Slider Settings"\r
+msgstr "Impostazioni Sliders"\r
+\r
+#: admin/main.php:113\r
+msgid "Slides"\r
+msgstr "Slide"\r
+\r
+#: admin/main.php:114\r
+msgid "Presentation Page Columns"\r
+msgstr "Colonne Pagina Presentazione"\r
+\r
+#: admin/main.php:115\r
+msgid "Extras"\r
+msgstr "Extra"\r
+\r
+#: admin/main.php:117\r
+msgid "Header Height"\r
+msgstr "Altezza Testata"\r
+\r
+#: admin/main.php:118\r
+msgid "Site Header"\r
+msgstr "Testata sito"\r
+\r
+#: admin/main.php:119\r
+msgid "Custom Logo Upload"\r
+msgstr "Invio Logo Personalizzato"\r
+\r
+#: admin/main.php:120\r
+msgid "Header Top Spacing"\r
+msgstr "Spaziatura superiore testata"\r
+\r
+#: admin/main.php:121\r
+msgid "Rounded Menu Corners"\r
+msgstr "Bordi Arrotondati per il menù"\r
+\r
+#: admin/main.php:122\r
+msgid "FavIcon Upload"\r
+msgstr "Upload Favicon"\r
+\r
+#: admin/main.php:124\r
+msgid "General Font"\r
+msgstr "Font Generale"\r
+\r
+#: admin/main.php:125\r
+msgid "General Font Size"\r
+msgstr "Dimesione Font Generale"\r
+\r
+#: admin/main.php:126\r
+msgid "Post Title Font "\r
+msgstr "Font Titolo Articolo"\r
+\r
+#: admin/main.php:127\r
+msgid "Post Title Font Size"\r
+msgstr "Dimensione Font Titolo Articolo"\r
+\r
+#: admin/main.php:128\r
+msgid "Sidebar Font"\r
+msgstr "Font Sidebar"\r
+\r
+#: admin/main.php:129\r
+msgid "SideBar Font Size"\r
+msgstr "Dimensione Font Barra Laterale"\r
+\r
+#: admin/main.php:130\r
+msgid "Sub-Headers Font"\r
+msgstr "Font Sub-Header"\r
+\r
+#: admin/main.php:131\r
+msgid "Force Text Align"\r
+msgstr "Forza allineamento del testo"\r
+\r
+#: admin/main.php:132\r
+msgid "Paragraph indent"\r
+msgstr "Indentazione paragrafo"\r
+\r
+#: admin/main.php:133\r
+msgid "Header indent"\r
+msgstr "Indentazione Header"\r
+\r
+#: admin/main.php:134\r
+msgid "Line Height"\r
+msgstr "Interlinea"\r
+\r
+#: admin/main.php:135\r
+msgid "Word spacing"\r
+msgstr "Spaziiatura parole"\r
+\r
+#: admin/main.php:136\r
+msgid "Letter spacing"\r
+msgstr "Spaziatura Lettere"\r
+\r
+#: admin/main.php:137\r
+msgid "Text shadow"\r
+msgstr "Ombreggiatura testo"\r
+\r
+#: admin/main.php:139\r
+msgid "Background Color"\r
+msgstr "Colore di Sfondo"\r
+\r
+#: admin/main.php:140\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Colore di sfondo Header ( Banner e Menù)"\r
+\r
+#: admin/main.php:141\r
+msgid "Content Background Color"\r
+msgstr "Colore di sfondo dei contenuti"\r
+\r
+#: admin/main.php:142\r
+msgid "Menu Items Background Color"\r
+msgstr "Colore di Sfondo del Menù"\r
+\r
+#: admin/main.php:143\r
+msgid "First Sidebar Background Color"\r
+msgstr "Colore di sfondo della prima barra laterale (Sidebar)"\r
+\r
+#: admin/main.php:144\r
+msgid "Second Sidebar Background Color"\r
+msgstr "Colore di sfondo della seconda barra laterale"\r
+\r
+#: admin/main.php:146\r
+msgid "Site Title Color"\r
+msgstr "Colore titolo del sito"\r
+\r
+#: admin/main.php:147\r
+msgid "Site Description Color"\r
+msgstr "Colore descrizione sito"\r
+\r
+#: admin/main.php:149\r
+msgid "Content Text Color"\r
+msgstr "Colore testo contenuti"\r
+\r
+#: admin/main.php:150\r
+msgid "Links Color"\r
+msgstr "Colore Link"\r
+\r
+#: admin/main.php:151\r
+msgid "Links Hover Color"\r
+msgstr "Colore Link Hover"\r
+\r
+#: admin/main.php:152\r
+msgid "Post Title Color"\r
+msgstr "Colore titolo dell'articolo "\r
+\r
+#: admin/main.php:153\r
+msgid "Post Title Hover Color"\r
+msgstr "Colore titolo dell'articolo hover"\r
+\r
+#: admin/main.php:154\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Colore di sfondo dell'intestazione della sidebar"\r
+\r
+#: admin/main.php:155\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Colore testo dell'intestazione della sidebar"\r
+\r
+#: admin/main.php:156\r
+msgid "Footer Widget Background Color"\r
+msgstr "Colore di Sfondo dei Widget a Piè di Pagina"\r
+\r
+#: admin/main.php:157\r
+msgid "Footer Background Color"\r
+msgstr "Colore di sfondo di Piè di Pagina"\r
+\r
+#: admin/main.php:158\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Colore testo dell'intestazione dei widger a piè di pagina"\r
+\r
+#: admin/main.php:159\r
+msgid "Footer Widget Link Color"\r
+msgstr "Colore link nei widget a piè di pagina"\r
+\r
+#: admin/main.php:160\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Colore link hover nei widget a piè di pagina"\r
+\r
+#: admin/main.php:162\r
+msgid "Breadcrumbs"\r
+msgstr "Barra di navigazione"\r
+\r
+#: admin/main.php:163\r
+msgid "Pagination"\r
+msgstr "Paginazione"\r
+\r
+#: admin/main.php:164\r
+msgid "Post Images Border"\r
+msgstr "Bordo immagini negli articoli "\r
+\r
+#: admin/main.php:165\r
+msgid "Caption Border"\r
+msgstr "Bordo didascalia"\r
+\r
+#: admin/main.php:166\r
+msgid "Caption Pin"\r
+msgstr "Pin Didascalia"\r
+\r
+#: admin/main.php:167\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Punti elenco Sidebar"\r
+\r
+#: admin/main.php:168\r
+msgid "Meta Area Background"\r
+msgstr "Sfondo Meta Area"\r
+\r
+#: admin/main.php:169\r
+msgid "Post Separator"\r
+msgstr "Separatore articoli"\r
+\r
+#: admin/main.php:170\r
+msgid "Content List Bullets"\r
+msgstr "Punti elenco nei contenuti"\r
+\r
+#: admin/main.php:171\r
+msgid "Page Titles"\r
+msgstr "Titolo Pagina"\r
+\r
+#: admin/main.php:172\r
+msgid "Category Page Titles"\r
+msgstr "Titolo Pagina Categoria"\r
+\r
+#: admin/main.php:173\r
+msgid "Hide Tables"\r
+msgstr "Nascondi Tabelle"\r
+\r
+#: admin/main.php:174\r
+msgid "Back to Top button"\r
+msgstr "Ritorna all'inizio"\r
+\r
+#: admin/main.php:175\r
+msgid "Text Under Comments"\r
+msgstr "Testo nei commenti"\r
+\r
+#: admin/main.php:176\r
+msgid "Comments are closed text"\r
+msgstr "Testo per commenti disattivati"\r
+\r
+#: admin/main.php:177\r
+msgid "Comments off"\r
+msgstr "Commenti disattivati"\r
+\r
+#: admin/main.php:179\r
+msgid "Post Comments Link"\r
+msgstr "Link Inserimento Commenti"\r
+\r
+#: admin/main.php:180\r
+msgid "Post Date"\r
+msgstr "Data Intervernto"\r
+\r
+#: admin/main.php:181\r
+msgid "Post Time"\r
+msgstr "Orario Articolo"\r
+\r
+#: admin/main.php:182\r
+msgid "Post Author"\r
+msgstr "Autore Articolo"\r
+\r
+#: admin/main.php:183\r
+msgid "Post Category"\r
+msgstr "Categoria Articolo"\r
+\r
+#: admin/main.php:184\r
+msgid "Post Tags"\r
+msgstr "Parole Chiave Articolo"\r
+\r
+#: admin/main.php:185\r
+msgid "Post Permalink"\r
+msgstr "Permalink Articolo"\r
+\r
+#: admin/main.php:186\r
+msgid "All Post Metas"\r
+msgstr "Meta Inserimenti"\r
+\r
+#: admin/main.php:188\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Inserimento Riassunto in Home Page"\r
+\r
+#: admin/main.php:189\r
+msgid "Affect Sticky Posts"\r
+msgstr "Applica a Articoli in evidenza"\r
+\r
+#: admin/main.php:190\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Inserire i Riassunti nelle pagine Archivio e Categorie"\r
+\r
+#: admin/main.php:191\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Numero di parole per creazione Riassunto"\r
+\r
+#: admin/main.php:192\r
+msgid "Magazine Layout"\r
+msgstr "Layout Magazine"\r
+\r
+#: admin/main.php:193\r
+msgid "Excerpt suffix"\r
+msgstr "Suffisso Riassunto"\r
+\r
+#: admin/main.php:194\r
+msgid "Continue reading link text "\r
+msgstr "Testo per la continuazione della lettura"\r
+\r
+#: admin/main.php:195\r
+msgid "HTML tags in Excerpts"\r
+msgstr "TAG HTML nei riassunti"\r
+\r
+#: admin/main.php:197\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Immagini in evidenza come miniature Articolo"\r
+\r
+#: admin/main.php:198\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Seleziona automatica Immagini dagli articoli "\r
+\r
+#: admin/main.php:199\r
+msgid "Thumbnails Alignment "\r
+msgstr "Allineamento Miniature"\r
+\r
+#: admin/main.php:200\r
+msgid "Thumbnails Size "\r
+msgstr "Dimensione Miniature"\r
+\r
+#: admin/main.php:201\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Immagini in evidenza come Immagine Header"\r
+\r
+#: admin/main.php:203\r
+msgid "Link nr. 1"\r
+msgstr "Link nr. 1"\r
+\r
+#: admin/main.php:204\r
+msgid "Link nr. 2"\r
+msgstr "Link nr. 2"\r
+\r
+#: admin/main.php:205\r
+msgid "Link nr. 3"\r
+msgstr "Link nr. 3"\r
+\r
+#: admin/main.php:206\r
+msgid "Link nr. 4"\r
+msgstr "Link nr. 4"\r
+\r
+#: admin/main.php:207\r
+msgid "Link nr. 5"\r
+msgstr "Link nr. 5"\r
+\r
+#: admin/main.php:208\r
+msgid "Socials display"\r
+msgstr "Socials display"\r
+\r
+#: admin/main.php:210\r
+msgid "SEO Settings"\r
+msgstr "Impostazioni SEO"\r
+\r
+#: admin/main.php:211\r
+msgid "Custom Footer Text"\r
+msgstr "Testo personalizzato piè di pagina"\r
+\r
+#: admin/main.php:212\r
+msgid "Custom CSS"\r
+msgstr "CSS Personalizzato"\r
+\r
+#: admin/main.php:213\r
+msgid "Custom JavaScript"\r
+msgstr "Codice Javascript personalizzato"\r
+\r
+#: admin/main.php:230\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Spiacenti! Permessi insufficienti per accedere a questa pagina"\r
+\r
+#: admin/main.php:249\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Impostazioni di Mantra correttamente aggornate."\r
+\r
+#: admin/main.php:261\r
+msgid "Save Changes"\r
+msgstr "Memorizza Modifica"\r
+\r
+#: admin/main.php:262\r
+msgid "Reset to Defaults"\r
+msgstr "Ripristina valori predefiniti."\r
+\r
+#: admin/main.php:276\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+"keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+"folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+"coffee. We love it! So if you want to help with the further development of "\r
+"the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Qui alla Cryout Creations ( gli sviluppatori del tema Mantra ) lavoriamo "\r
+"notte dopo notte per migliore il tema Mantra. Sistemiamo molti bug ( che "\r
+"abbiamo precedentemente creato); aggiungiamo molte opzioni di "\r
+"personalizzazione cercando di mantenere il tema il più semplice possibile; "\r
+"quindi potremmo giocare a qualche gioco o due ma prima ci assicuriamo di "\r
+"aver letto e ( nella maggior parte dei casi risposto) alle vostre email e "\r
+"commenti notturni, memorizzato annotazioni e riempito lavagne di opzioni da "\r
+"implementare nelle future versioni..</p>\n"\r
+"\t\t\t<p>A questo punto chiedetevi: <i>Come ci riescono? Come possono essere "\r
+"ancora freschi dopo tutto questo duro lavoro per questo dannato tema?</i> È "\r
+"semplice ragazzi: Noi beviamo caffè. Quantità industriali di caffè bollente. "\r
+"Lo amiamo! Quindi se volete aiutarci con lo sviluppo del tema Mantra …</p>"\r
+\r
+#: admin/main.php:291\r
+msgid "Import/Export Settings"\r
+msgstr "Impostazioni Importazione/Esportazione"\r
+\r
+#: admin/main.php:297\r
+msgid "Export Theme options"\r
+msgstr "Opzioni di esportazione del tema"\r
+\r
+#: admin/main.php:298\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"E' facile: basta un click del mouse per esportare le impostazioni del "\r
+"template e memorizzarle sul computer."\r
+\r
+#: admin/main.php:303\r
+msgid "Import Theme options"\r
+msgstr "Importa Opzioni del template"\r
+\r
+#: admin/main.php:304\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+"Senza la possibilità di importare la funzione di esportazione rimarrebbe un "\r
+"semplice esercizio. Assicuratevi di avere a portata di mano il file di "\r
+"esportazione."\r
+\r
+#: admin/main.php:312\r
+msgid "Mantra Latest News"\r
+msgstr "Ultime notizie relative a Mantra"\r
+\r
+#: admin/main.php:323\r
+msgid "No news items."\r
+msgstr "Nessuna novità"\r
+\r
+#: admin/settings.php:66\r
+msgid "One column (no sidebars)"\r
+msgstr "Una colonna ( Nessuna Sidebar)"\r
+\r
+#: admin/settings.php:67\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Due colonne, Sidebar a destra"\r
+\r
+#: admin/settings.php:68\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Due colonne, Sidebar a Sinistra"\r
+\r
+#: admin/settings.php:69\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Tre Colonne, Sidebar a Destra"\r
+\r
+#: admin/settings.php:70\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Tre colonne, sidebar a Sinistra"\r
+\r
+#: admin/settings.php:71\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Tre colonne, una sidebar per posizione"\r
+\r
+#: admin/settings.php:86\r
+msgid ""\r
+"Choose your layout. Possible options are: <br> No sidebar, a single sidebar "\r
+"on either left of right, two sidebars on either left or \n"\r
+"\t\tright and two sidebars on each side."\r
+msgstr ""\r
+"Selezionare il layout. Le opzioni possibili sono: <br> Nessuna Sidebar, "\r
+"Singola sidebar a destra o sinistra, una sidebar a destra ed una a sinistra, "\r
+"due sidebar a destra o due sidebar a sinistra."\r
+\r
+#: admin/settings.php:95\r
+msgid "Absolute"\r
+msgstr "Assoluto"\r
+\r
+#: admin/settings.php:95\r
+msgid "Relative"\r
+msgstr "Relativo"\r
+\r
+#: admin/settings.php:96\r
+msgid "Dimensions to use: "\r
+msgstr "Dimensione da utilizzare:"\r
+\r
+#: admin/settings.php:194 admin/settings.php:214\r
+msgid "Content ="\r
+msgstr "Contenuto ="\r
+\r
+#: admin/settings.php:195 admin/settings.php:215\r
+msgid "Sidebar(s) ="\r
+msgstr "Sidebar ="\r
+\r
+#: admin/settings.php:196 admin/settings.php:216\r
+msgid "Total width ="\r
+msgstr "Larghezza totale ="\r
+\r
+#: admin/settings.php:205\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Selezionare la larghezza dei <b>contenuti</b> e delle eventuali <b>Sidebar</"\r
+"b>. \r\n"\r
+"\t\tDal momento che la sezione dei contenuti non può essere inferiore a "\r
+"500px, i valori per l'area della o delle Sidebar è compresa tra 220px e "\r
+"800px.<br />\r\n"\r
+"Se avete impostato una sezione a 3 colonne ( con 2 siderbar) ciascuna di "\r
+"essa misurerà la metà del valore impostato"\r
+\r
+#: admin/settings.php:225\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Selezionare la larghezza del <b>contenuto</b> e della(e) <b>sidebar</b>. \n"\r
+"\t\tLe dimensioni sono relative al browser utilizzato dall'utente. La "\r
+"larghezza totale è una percentuale della larghezza del browser.<br />\n"\r
+"t Le dimensioni del contenuto non possono essere inferiori al 40%, l'area "\r
+"della sidecar deve essere almeno il 20% e non superare il 50%.<br />\n"\r
+"\tSe si sta lavorando su un'area a 3 colonne ( con due sidecar) ciascuna "\r
+"colonna avrà una larghezza par a metà di quella selezionata."\r
+\r
+#: admin/settings.php:239 admin/settings.php:264 admin/settings.php:724\r
+#: admin/settings.php:1071 admin/settings.php:1133 admin/settings.php:1316\r
+#: admin/settings.php:1331 admin/settings.php:1488 admin/settings.php:1550\r
+#: admin/settings.php:1751 admin/settings.php:1780 admin/settings.php:1803\r
+#: admin/settings.php:1826 admin/settings.php:1875 admin/settings.php:2024\r
+msgid "Enable"\r
+msgstr "Abilita"\r
+\r
+#: admin/settings.php:239 admin/settings.php:264 admin/settings.php:724\r
+#: admin/settings.php:1071 admin/settings.php:1133 admin/settings.php:1316\r
+#: admin/settings.php:1331 admin/settings.php:1488 admin/settings.php:1550\r
+#: admin/settings.php:1751 admin/settings.php:1780 admin/settings.php:1803\r
+#: admin/settings.php:1826 admin/settings.php:1875 admin/settings.php:2024\r
+msgid "Disable"\r
+msgstr "Disabilita"\r
+\r
+#: admin/settings.php:250\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in."\r
+msgstr ""\r
+"Abilitare la navigazione mobile. Il Layout del sito verrà visualizzato "\r
+"diversamente a seconda del sistema utilizzato per navigare sul web."\r
+\r
+#: admin/settings.php:272\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page. It "\r
+"has a slider and columns for presentation\n"\r
+"\t\ttext and images.<br>If you have this enabled but don't see a "\r
+"Presentation page then go to <a href='options-reading.php'> Settings » "\r
+"Reading </a> and make sure you have selected <strong>Front Page Displays</"\r
+"strong> as <Strong>Your Latest Posts</strong>."\r
+msgstr ""\r
+"Abilitare la modalità di presentazione per la pagina principale. Questa "\r
+"diventerà la pagina iniziale del sito e sostituirà qualsiasi pagina "\r
+"precedentemente imposta. Questa modalità comprende uno slide e delle colonne "\r
+"per la presentazione\n"\r
+"\t\ttesto ed immagini.<br>Se questa opzione è attiva ma non viene "\r
+"visualizzata la pagina di presentazione andare su <a href='options-reading."\r
+"php'> Impostazioni » Lettura </a> ed assicuratevi di aver selezionato "\r
+"<strong>La pagina inziale mostra</strong> come <strong>Gli ultimi articoli</"\r
+"strong>"\r
+\r
+#: admin/settings.php:282\r
+msgid "Slider Dimensions:"\r
+msgstr "Dimensioni dello Slider"\r
+\r
+#: admin/settings.php:283\r
+msgid "width"\r
+msgstr "larghezza"\r
+\r
+#: admin/settings.php:284\r
+msgid "height"\r
+msgstr "Altezza"\r
+\r
+#: admin/settings.php:285\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+"Le dimensioni dello slider. Assicuratevi che le immagini utilizzate abbiano "\r
+"la stessa dimensione."\r
+\r
+#: admin/settings.php:287\r
+msgid "Animation:"\r
+msgstr "Animazione:"\r
+\r
+#: admin/settings.php:289\r
+msgid "Random"\r
+msgstr "Casuale"\r
+\r
+#: admin/settings.php:289\r
+msgid "Fold"\r
+msgstr "Fold"\r
+\r
+#: admin/settings.php:289\r
+msgid "Fade"\r
+msgstr "Fade"\r
+\r
+#: admin/settings.php:289\r
+msgid "SlideInRight"\r
+msgstr "Scorrimento a Destra"\r
+\r
+#: admin/settings.php:289\r
+msgid "SlideInLeft"\r
+msgstr "Scorrimento a Sinistra"\r
+\r
+#: admin/settings.php:289\r
+msgid "SliceDown"\r
+msgstr "Slice verso il basso"\r
+\r
+#: admin/settings.php:289\r
+msgid "SliceDownLeft"\r
+msgstr "Slice verso il basso e a sinistra"\r
+\r
+#: admin/settings.php:289\r
+msgid "SliceUp"\r
+msgstr "Slice verso l'alto"\r
+\r
+#: admin/settings.php:289\r
+msgid "SliceUpLeft"\r
+msgstr "Slice verso l'alto ed a sinistra"\r
+\r
+#: admin/settings.php:289\r
+msgid "SliceUpDown"\r
+msgstr "Slice sopra e sotto"\r
+\r
+#: admin/settings.php:289\r
+msgid "SliceUpDownLeft"\r
+msgstr "Slice Sopra, sotto e a sinistra"\r
+\r
+#: admin/settings.php:289\r
+msgid "BoxRandom"\r
+msgstr "BoxRandom"\r
+\r
+#: admin/settings.php:289\r
+msgid "BoxRain"\r
+msgstr "BOX effetto pioggia"\r
+\r
+#: admin/settings.php:289\r
+msgid "BoxRainReverse"\r
+msgstr "Box Pioggia inverso"\r
+\r
+#: admin/settings.php:289\r
+msgid "BoxRainGrow"\r
+msgstr "BoxRainGrow"\r
+\r
+#: admin/settings.php:289\r
+msgid "BoxRainGrowReverse"\r
+msgstr "BoxRainGrowReverse"\r
+\r
+#: admin/settings.php:297\r
+msgid "The transition effect your slider will have."\r
+msgstr "Le transazioni che verranno applicate allo slider."\r
+\r
+#: admin/settings.php:299\r
+msgid "Border Settings:"\r
+msgstr "Impostazione Bordi:"\r
+\r
+#: admin/settings.php:300\r
+msgid "Width"\r
+msgstr "Larghezza"\r
+\r
+#: admin/settings.php:301\r
+msgid "Color"\r
+msgstr "Colore"\r
+\r
+#: admin/settings.php:303\r
+msgid "The width and color of the slider's border."\r
+msgstr "Colore e larghezza dei bordi delle barre a scorrimento"\r
+\r
+#: admin/settings.php:305\r
+msgid "Animation Time:"\r
+msgstr "Durata animazione:"\r
+\r
+#: admin/settings.php:306 admin/settings.php:310\r
+msgid "milliseconds"\r
+msgstr "millisecondi"\r
+\r
+#: admin/settings.php:307\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "La durata dell'animazione verrà applicata."\r
+\r
+#: admin/settings.php:309\r
+msgid "Pause Time:"\r
+msgstr "Durata della Pausa:"\r
+\r
+#: admin/settings.php:311\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr ""\r
+"Il tempo in cui il contenuto della finestra a scorrimento verrà visualizzato "\r
+"senza transazione"\r
+\r
+#: admin/settings.php:314\r
+msgid "Slider navigation:"\r
+msgstr "Navigazione slider: "\r
+\r
+#: admin/settings.php:316\r
+msgid "Numbers"\r
+msgstr "Numeri"\r
+\r
+#: admin/settings.php:316\r
+msgid "Bullets"\r
+msgstr "Segnaposto per liste"\r
+\r
+#: admin/settings.php:316 admin/settings.php:1409\r
+msgid "None"\r
+msgstr "Nessuno(a)"\r
+\r
+#: admin/settings.php:324\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Tipologia di navigazione dello slidere. Visualizzato sotto lo slidere."\r
+\r
+#: admin/settings.php:326\r
+msgid "Slider arrows:"\r
+msgstr "Frecce dello slider: "\r
+\r
+#: admin/settings.php:328\r
+msgid "Always Visible"\r
+msgstr "Sempre visibili"\r
+\r
+#: admin/settings.php:328\r
+msgid "Visible on Hover"\r
+msgstr "Visibili al passaggio del mouse"\r
+\r
+#: admin/settings.php:328\r
+msgid "Hidden"\r
+msgstr "Nascoste"\r
+\r
+#: admin/settings.php:336\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Le frecce a destra ed a sinistra dello slider"\r
+\r
+#: admin/settings.php:377 admin/settings.php:446\r
+msgid "Select Category"\r
+msgstr "Seleziona categoria"\r
+\r
+#: admin/settings.php:404\r
+msgid "Custom Slides"\r
+msgstr "Slides personalizzato"\r
+\r
+#: admin/settings.php:404\r
+msgid "Latest Posts"\r
+msgstr "Ultimi Articoli"\r
+\r
+#: admin/settings.php:404\r
+msgid "Random Posts"\r
+msgstr "Articoli casuali"\r
+\r
+#: admin/settings.php:404\r
+msgid "Sticky Posts"\r
+msgstr "Articoli in evidenza"\r
+\r
+#: admin/settings.php:404\r
+msgid "Latest Posts from Category"\r
+msgstr "Ultimi articoli per la categoria"\r
+\r
+#: admin/settings.php:404\r
+msgid "Random Posts from Category"\r
+msgstr "Articoli casuali per la categoria"\r
+\r
+#: admin/settings.php:404\r
+msgid "Specific Posts"\r
+msgstr "Articoli Specifici"\r
+\r
+#: admin/settings.php:413\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"Il contenuto della tua slide. E' richiesto soltanto l'inserimento di "\r
+"un'immagine, gli altri campi sono tutti opzionali. Verranno visualizzate "\r
+"solo le slide con un immagine."\r
+\r
+#: admin/settings.php:418\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "All'interno dello slider verranno inseriti gli ultimi articoli"\r
+\r
+#: admin/settings.php:422\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr ""\r
+"All'interno dello slider verranno inseriti gli articoli in modo casuale"\r
+\r
+#: admin/settings.php:426\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr ""\r
+"All'interno dello slider verranno inseriti gli ultimi articoli della "\r
+"categoria selezionata"\r
+\r
+#: admin/settings.php:431\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr ""\r
+"All'interno dello slider verranno inseriti gli articoli dalla categoria "\r
+"selezionata in modo casuale"\r
+\r
+#: admin/settings.php:435\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr ""\r
+"All'interno dello slider verranno inseriti solo gli articoli in evidenza."\r
+\r
+#: admin/settings.php:439\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr ""\r
+"Inserire i post ID ( separati da una virgola) degli articoli che si desidera "\r
+"visualizzare"\r
+\r
+#: admin/settings.php:444\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Selezionare la categoria: "\r
+\r
+#: admin/settings.php:461\r
+msgid "Number of posts to show:"\r
+msgstr "Numero di articoli da visualizzare"\r
+\r
+#: admin/settings.php:468\r
+msgid "Slide 1"\r
+msgstr "Slide 1"\r
+\r
+#: admin/settings.php:472 admin/settings.php:487 admin/settings.php:502\r
+#: admin/settings.php:517 admin/settings.php:532 admin/settings.php:574\r
+#: admin/settings.php:589 admin/settings.php:604 admin/settings.php:619\r
+#: admin/settings.php:759 admin/settings.php:781\r
+msgid "Select / Upload Image"\r
+msgstr "Seleziona / Upload immagine"\r
+\r
+#: admin/settings.php:473 admin/settings.php:488 admin/settings.php:503\r
+#: admin/settings.php:518 admin/settings.php:533 admin/settings.php:575\r
+#: admin/settings.php:590 admin/settings.php:620\r
+msgid "Title"\r
+msgstr "Titolo"\r
+\r
+#: admin/settings.php:475 admin/settings.php:490 admin/settings.php:505\r
+#: admin/settings.php:520 admin/settings.php:535 admin/settings.php:577\r
+#: admin/settings.php:592 admin/settings.php:607 admin/settings.php:622\r
+msgid "Text"\r
+msgstr "Test"\r
+\r
+#: admin/settings.php:483\r
+msgid "Slide 2"\r
+msgstr "Slide 2"\r
+\r
+#: admin/settings.php:498\r
+msgid "Slide 3"\r
+msgstr "Slide 3"\r
+\r
+#: admin/settings.php:513\r
+msgid "Slide 4"\r
+msgstr "Slide 4"\r
+\r
+#: admin/settings.php:528\r
+msgid "Slide 5"\r
+msgstr "Slide 5"\r
+\r
+#: admin/settings.php:550\r
+msgid "Number of columns:"\r
+msgstr "Numero di colonne:"\r
+\r
+#: admin/settings.php:560\r
+msgid "Image Height:"\r
+msgstr "Altezza immagine:"\r
+\r
+#: admin/settings.php:563\r
+msgid "Read more text:"\r
+msgstr "Testo Continua:"\r
+\r
+#: admin/settings.php:566\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr ""\r
+"Il testo con link verrà visualizzato nella parte inferiore di tutte le "\r
+"colonne. E' possibile cancellare tutto il testo se non è necessario "\r
+"utilizzarlo."\r
+\r
+#: admin/settings.php:570\r
+msgid "1st Column"\r
+msgstr "Prima Colonna"\r
+\r
+#: admin/settings.php:585\r
+msgid "2nd Column"\r
+msgstr "Seconda Colonna"\r
+\r
+#: admin/settings.php:600\r
+msgid "3rd Column"\r
+msgstr "Terza Colonna"\r
+\r
+#: admin/settings.php:615\r
+msgid "4th Column"\r
+msgstr "Quarta Colonna"\r
+\r
+#: admin/settings.php:637\r
+msgid "Extra Text"\r
+msgstr "Testo aggiuntivo"\r
+\r
+#: admin/settings.php:639\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Testo aggiuntivo nella pagina principale. Il titolo principale è "\r
+"visualizzato sopra lo slide, il secondario tra lo slider e le colonne e due "\r
+"ulteriori righe sono disposte sotto le colonne.\n"\r
+"\t\t Tutte le funzioni sono opzionali quindi è sufficiente non riempire i "\r
+"campi che non si desidera utilizzare."\r
+\r
+#: admin/settings.php:642\r
+msgid "Top Title"\r
+msgstr "Titolo Principale"\r
+\r
+#: admin/settings.php:643\r
+msgid "Second Title"\r
+msgstr "Titolo Secondario"\r
+\r
+#: admin/settings.php:646\r
+msgid "Title color"\r
+msgstr "Colore del titolo"\r
+\r
+#: admin/settings.php:650\r
+msgid "Bottom Text 1"\r
+msgstr "Testo Piè di Pagina 1"\r
+\r
+#: admin/settings.php:652\r
+msgid "Bottom Text 2"\r
+msgstr "Testo Piè di Pagina 2"\r
+\r
+#: admin/settings.php:660\r
+msgid "Hide areas"\r
+msgstr "Nascondi Aree"\r
+\r
+#: admin/settings.php:662\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Seleziona le aree da nascondere nella prima pagina"\r
+\r
+#: admin/settings.php:674\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Nascondi l'aera della testata ( immagine o colore di sfondo)"\r
+\r
+#: admin/settings.php:678\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Nascondi il menù principale ( il tab di navigazione in alto)"\r
+\r
+#: admin/settings.php:682\r
+msgid "Hide the footer widgets. "\r
+msgstr "Nascondi i widget a Piè di pagina"\r
+\r
+#: admin/settings.php:686\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Nascondi il footer (area copyright)"\r
+\r
+#: admin/settings.php:690\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Nascondi il colore bianco. Verrà utilizzato solo il colore di sfondo."\r
+\r
+#: admin/settings.php:714\r
+msgid "Center the header image horizontally"\r
+msgstr "Centra l'immagine della testata orizzontalmente."\r
+\r
+#: admin/settings.php:717\r
+msgid ""\r
+"Select the header's height. After saving the settings make sure you reupload "\r
+"a new header image (if you're using one). The header's width will be = "\r
+msgstr ""\r
+"Selezionare l'altezza della testata. Dopo aver salvato le impostazioni è "\r
+"necessario effettuare l'upload della nuova immagine. La larghezza della "\r
+"testata sarà ="\r
+\r
+#: admin/settings.php:732\r
+msgid "Enable or disable the round corners for the main menu items."\r
+msgstr ""\r
+"Abilita o disabilita i bordi arrotondati negli oggetti del menù principale."\r
+\r
+#: admin/settings.php:740\r
+msgid "Site Title and Description"\r
+msgstr "Titolo del sito e descrizione"\r
+\r
+#: admin/settings.php:740\r
+msgid "Custom Logo"\r
+msgstr "Logo personalizzato"\r
+\r
+#: admin/settings.php:740\r
+msgid "Clickable header image"\r
+msgstr "Immagine della testa cliccabile"\r
+\r
+#: admin/settings.php:740\r
+msgid "Empty"\r
+msgstr "Vuoto"\r
+\r
+#: admin/settings.php:748\r
+msgid "Choose what to display inside your header area."\r
+msgstr "Selezionare cosa visualizzare nell'area di testata"\r
+\r
+#: admin/settings.php:758\r
+msgid ""\r
+"Custom Logo upload. The logo will appear over the heder image if you have "\r
+"used one."\r
+msgstr ""\r
+"Upload logo personalizzato. Il logo verrà visualizzato sopra l'immagine "\r
+"della testata se utilizzata."\r
+\r
+#: admin/settings.php:770\r
+msgid ""\r
+"Select the top spacing for the header. Use it to better position your site "\r
+"title and description or custom logo inside the header. "\r
+msgstr ""\r
+"Seleziona la spaziatura superiore della testata. Utilizzare per posizionare "\r
+"il titolo e la descrizione del blogo o il logo personalizza all'interno "\r
+"della testata."\r
+\r
+#: admin/settings.php:780\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+"Limitazioni: deve essere un immagine. Deve avere una dimensione massima di "\r
+"64 x 64 pixel. Estensioni raccomandate: .ico e .png"\r
+\r
+#: admin/settings.php:803\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"Seleziona la dimensione del font che verrà utilizzato nel blog. Questo "\r
+"influirà su pagine, articoli e commenti. Pulsanti, Header e Menù resteranno "\r
+"immutati"\r
+\r
+#: admin/settings.php:847\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"Seleziona la tipologia del carattere usato (font family). Questa opzione "\r
+"avrà effetto su tutto il contenuto del blog, compresi i pulsanti del menù."\r
+\r
+#: admin/settings.php:849 admin/settings.php:899 admin/settings.php:950\r
+#: admin/settings.php:1002\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"Oppure inserite un font da Google. Inserire solamente il <strong>nome</"\r
+"strong> del font.<br /> Es: Marko One. Visitare <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> per approfondire"\r
+\r
+#: admin/settings.php:896\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"Selezionare la famiglia dei font da utilizzare per i titoli. Questo avrà "\r
+"effetto sui titoli degli articoli e delle pagine. Se si seleziona 'Default' "\r
+"o 'Predefinito' verrà utilizzato il font selezionato per il blog"\r
+\r
+#: admin/settings.php:948\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"Selezionare la famiglia dei font da utilizzare per le sideba. Questo avrà "\r
+"effetto sul testo presente nelle sidebar, compreso quello interno ad "\r
+"eventuali widget. Se si seleziona 'Default' o 'Predefinito' verrà utilizzato "\r
+"il font selezionato per il blog"\r
+\r
+#: admin/settings.php:999\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"Selezionare la famiglia dei font da utilizzare per le sezioni intermedie. "\r
+"Questo avrà effetto sul testo delimitato dai tag h2 - h6. Se si seleziona "\r
+"'Default' o 'Predefinito' verrà utilizzato il font selezionato per il blog"\r
+\r
+#: admin/settings.php:1011 admin/settings.php:1026 admin/settings.php:1041\r
+#: admin/settings.php:1086 admin/settings.php:1101 admin/settings.php:1116\r
+msgid "Default"\r
+msgstr "Predefinito"\r
+\r
+#: admin/settings.php:1019\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"Dimensione dei caratteri dell'header dei articoli. Se si seleziona "\r
+"'Default' o 'Predefinito' verrà utilizzato la dimensione impostata nel CSS"\r
+\r
+#: admin/settings.php:1034\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"Dimensione dei caratteri nelle Sidebat. Se si seleziona 'Default' o "\r
+"'Predefinito' verrà utilizzato la dimensione impostata nel CSS"\r
+\r
+#: admin/settings.php:1041 admin/settings.php:1842\r
+msgid "Left"\r
+msgstr "Destra"\r
+\r
+#: admin/settings.php:1041 admin/settings.php:1842\r
+msgid "Right"\r
+msgstr "Sinistra"\r
+\r
+#: admin/settings.php:1041\r
+msgid "Justify"\r
+msgstr "Giustificato"\r
+\r
+#: admin/settings.php:1041 admin/settings.php:1842\r
+msgid "Center"\r
+msgstr "Centrato"\r
+\r
+#: admin/settings.php:1049\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"Questo modificherà l'allineamento del testo nelle pagine e negli articoli . "\r
+"Selezionare Predefinito per le impostazioni standard ( l'allineamento sarà "\r
+"quello impostato negli articoli , commenti etc. etc."\r
+\r
+#: admin/settings.php:1063\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Selezionare l'indentazione dei paragrafi"\r
+\r
+#: admin/settings.php:1079\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr ""\r
+"Disabilitare l'header predefinito e l'indentazione del titolo ( margine "\r
+"sinistro)"\r
+\r
+#: admin/settings.php:1094\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"Dimensione interlinea. La distanza tra due righe di testo. Se si seleziona "\r
+"'Default' o 'Predefinito' verrà utilizzato la dimensione impostata nel CSS"\r
+\r
+#: admin/settings.php:1109\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Spazio tra <i>parole</i>. Se si seleziona 'Default' o 'Predefinito' verrà "\r
+"utilizzato la dimensione impostata nel CSS"\r
+\r
+#: admin/settings.php:1124\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Spazio tra le <i>lettere</i>. Se si seleziona 'Default' o 'Predefinito' "\r
+"verrà utilizzato la dimensione impostata nel CSS"\r
+\r
+#: admin/settings.php:1141\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr ""\r
+"Disattivare l'ombreggiatura predefinita per il testo nelle intestazioni, "\r
+"nella testata e nei titoli"\r
+\r
+#: admin/settings.php:1153\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Colore di sfondo (Default: 444444)."\r
+\r
+#: admin/settings.php:1161\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr ""\r
+"Colore di sfondo dell'intestazione (Default: 333333). Cancellando il testo "\r
+"all'interno lo sfondo diverrà trasparente"\r
+\r
+#: admin/settings.php:1168\r
+msgid ""\r
+"Content background color (Default value is FFFFFF). Works best with really "\r
+"light colors."\r
+msgstr ""\r
+"Colore di sfondo per i contenuti ( Valore predefinito FFFFFF). Si consiglia "\r
+"l'utilizzo di colori chiari."\r
+\r
+#: admin/settings.php:1175\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"Colore di sfondo principale. (Valore predefinito FAFAFA). Dovrebbe essere "\r
+"uguale al colore di sfondo per i contenuti o appena più chiaro."\r
+\r
+#: admin/settings.php:1182\r
+msgid ""\r
+"First sidebar background color (Default is no color for a transparent "\r
+"sidebar)."\r
+msgstr ""\r
+"Colore di sfondo della prima Sidebar (Default: nessun colore per una sidebar "\r
+"trasparente)."\r
+\r
+#: admin/settings.php:1189\r
+msgid ""\r
+"Second sidebar background color (Default is no color for a transparent "\r
+"sidebar)."\r
+msgstr ""\r
+"Colore di sfondo della seconda sidebar (Valore predefinito: nessun colore "\r
+"per una sidebar trasparente)"\r
+\r
+#: admin/settings.php:1197\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "Colore sfondo dell'area Widget a Piè di Pagina. (Default: 171717)."\r
+\r
+#: admin/settings.php:1205\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Colore di sfondo del piè di pagina (Default: 222222)."\r
+\r
+#: admin/settings.php:1213\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Colore del titolo del Blog (Default: 0D85CC)."\r
+\r
+#: admin/settings.php:1221\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Colore della descrizione del titolo (Default: 222222)."\r
+\r
+#: admin/settings.php:1229\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Colore testo dei contenuti (Default: 333333)."\r
+\r
+#: admin/settings.php:1237\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Colore dei link (Default: 0D85CC)."\r
+\r
+#: admin/settings.php:1245\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "Colore dei link su mouse over (Default: 333333)."\r
+\r
+#: admin/settings.php:1253\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Colore Intestazione dell'articolo (Default: 333333)."\r
+\r
+#: admin/settings.php:1261\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr "Colore Intestazione dell'articolo su Mouse over (Default: 000000)."\r
+\r
+#: admin/settings.php:1269\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Colore di Sfonto intestazione Sidebar (Default: 444444)."\r
+\r
+#: admin/settings.php:1278\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Colore Testo Intestazione Sidebar (Default: 2EA5FD)."\r
+\r
+#: admin/settings.php:1286\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Colore Testo del Widget a Piè di Pagina (Default: 0D85CC)."\r
+\r
+#: admin/settings.php:1294\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Colore dei link nei widget a piè di pagina (Default: 666666)."\r
+\r
+#: admin/settings.php:1302\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+"Colore dei link nei widget a piè di pagina su Mouse Over (Default: 888888)."\r
+\r
+#: admin/settings.php:1324\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"Mostra barra di navigazione al'inizio dell'area dei contenuti. La barra di "\r
+"navigazione (breadcrumbs) è un form di navigazione che tiene traccia della "\r
+"posizione dell'utente all'interno del sito."\r
+\r
+#: admin/settings.php:1339\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"Mostra la paginazione come numero. Nel caso in cui siano presenti più di una "\r
+"pagina, in sostituzione della barra di navigazio con vecchi e nuovi articoli "\r
+"i link avranno una numerazione navigabile."\r
+\r
+#: admin/settings.php:1346 admin/settings.php:1409\r
+msgid "White"\r
+msgstr "Bianco"\r
+\r
+#: admin/settings.php:1346\r
+msgid "Light"\r
+msgstr "Chiaro"\r
+\r
+#: admin/settings.php:1346\r
+msgid "Light Gray"\r
+msgstr "Grigio chiaro"\r
+\r
+#: admin/settings.php:1346 admin/settings.php:1409\r
+msgid "Gray"\r
+msgstr "Grigio"\r
+\r
+#: admin/settings.php:1346\r
+msgid "Dark Gray"\r
+msgstr "Grigio Scuro"\r
+\r
+#: admin/settings.php:1346\r
+msgid "Black"\r
+msgstr "Nero"\r
+\r
+#: admin/settings.php:1354\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"Questa opzione influisce sull'aspetto delle didascalie. Le immagini che non "\r
+"sono inserite con didascalie non saranno modificate."\r
+\r
+#: admin/settings.php:1370\r
+msgid "The border around your inserted images. "\r
+msgstr "Bordo attorno alle immagini"\r
+\r
+#: admin/settings.php:1385\r
+msgid "The image on top of your captions. "\r
+msgstr "Immagine all'inizio della didascalia"\r
+\r
+#: admin/settings.php:1400\r
+msgid "The sidebar list bullets. "\r
+msgstr "Punti elenco delle sidebar"\r
+\r
+#: admin/settings.php:1417\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default."\r
+msgstr ""\r
+"Sfondo per l'area post ( sotto il titolo dell'articolo ). Valore predefinto: "\r
+"Grigio."\r
+\r
+#: admin/settings.php:1425 admin/settings.php:1441 admin/settings.php:1458\r
+#: admin/settings.php:1473 admin/settings.php:1503 admin/settings.php:1518\r
+#: admin/settings.php:1534 admin/settings.php:1570 admin/settings.php:1585\r
+#: admin/settings.php:1600 admin/settings.php:1615 admin/settings.php:1630\r
+#: admin/settings.php:1645 admin/settings.php:1660 admin/settings.php:1675\r
+msgid "Show"\r
+msgstr "Mostra"\r
+\r
+#: admin/settings.php:1425 admin/settings.php:1441 admin/settings.php:1458\r
+#: admin/settings.php:1473 admin/settings.php:1503 admin/settings.php:1534\r
+#: admin/settings.php:1570 admin/settings.php:1585 admin/settings.php:1600\r
+#: admin/settings.php:1615 admin/settings.php:1630 admin/settings.php:1645\r
+#: admin/settings.php:1660 admin/settings.php:1675\r
+msgid "Hide"\r
+msgstr "Nascondi"\r
+\r
+#: admin/settings.php:1433\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Mostra o nascondi una riga orizzontale per separare gli articoli "\r
+\r
+#: admin/settings.php:1449\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"Mostra o nascondi Punti elenco nelle liste presenti nei contenuti "\r
+"(inserimenti, pagine etc.)"\r
+\r
+#: admin/settings.php:1466\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "Mostra o nascondi il titolo nelle in <i>qualsiai</i> pagina."\r
+\r
+#: admin/settings.php:1481\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Mostra o nascondi Titolo nelle <i>Categorie</i>"\r
+\r
+#: admin/settings.php:1496\r
+msgid "Hide table borders and background color."\r
+msgstr "Nascondi il bordo delle tabelle ed il colore di sfondo."\r
+\r
+#: admin/settings.php:1511\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"Nascondere il testo di aiuto nei form di inserimento commento ( quello che "\r
+"inizia con <i>È possibile utilizzare questi tag ed attributi XHTML: ...</i>)."\r
+\r
+#: admin/settings.php:1518\r
+msgid "Hide in posts"\r
+msgstr "Nascondi negli articoli "\r
+\r
+#: admin/settings.php:1518\r
+msgid "Hide in pages"\r
+msgstr "Nascondi nelle pagine."\r
+\r
+#: admin/settings.php:1518\r
+msgid "Hide everywhere"\r
+msgstr "Nascondi ovunque"\r
+\r
+#: admin/settings.php:1526\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"Nascondere il testo <b>Commenti disattivati</b> generalmente mostrato nelle "\r
+"pagine o negli articoli in cui siano stati disattivati i commenti."\r
+\r
+#: admin/settings.php:1542\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr "Nascondi l'articolo <b>Commenti disattivati</b>."\r
+\r
+#: admin/settings.php:1558\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"Abilita il pulsante \"Torna all'inizio\". Questo pulsante apparirà una volta "\r
+"raggiunta la fine della pagina."\r
+\r
+#: admin/settings.php:1578\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"Mostra o nascondi l'opzione <strong>Lascia un commento</strong> o "\r
+"<strong>Commenti</strong> vicino agli articoli o ai riassunti."\r
+\r
+#: admin/settings.php:1593\r
+msgid "Hide or show the post date."\r
+msgstr "Mostra o nascondi la data di inserimento articolo."\r
+\r
+#: admin/settings.php:1608\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"Mostra l'orario dell'inserimento dell'articolo assieme alla data. L'orario "\r
+"non sarà comunque visualizzato se la visualizzazione della data "\r
+"dell'articolo è disattivata."\r
+\r
+#: admin/settings.php:1623\r
+msgid "Hide or show the post author."\r
+msgstr "Mostra o nascondi l'autore dell'articolo "\r
+\r
+#: admin/settings.php:1638\r
+msgid "Hide the post category."\r
+msgstr "Nascondi la categoria dell'articolo ."\r
+\r
+#: admin/settings.php:1653\r
+msgid "Hide the post tags."\r
+msgstr "Nascondi le parole chiave dell'articolo ."\r
+\r
+#: admin/settings.php:1668\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "Nascondi \"Aggiungi ai preferiti: permalink\"."\r
+\r
+#: admin/settings.php:1683\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr "Nascondi tutte le meta-informazioni dell'articolo ."\r
+\r
+#: admin/settings.php:1696 admin/settings.php:1711 admin/settings.php:1727\r
+msgid "Excerpt"\r
+msgstr "Riassunto"\r
+\r
+#: admin/settings.php:1696 admin/settings.php:1711 admin/settings.php:1727\r
+msgid "Full Post"\r
+msgstr "Tutto l'articolo "\r
+\r
+#: admin/settings.php:1704\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"Riassunti nella pagina principale. Questa opzione avrà effetto sugli "\r
+"articoli normali. Tutti gli altri articoli (immagini, chat, citazioni etc.) "\r
+"manterranno le loro specifiche formattazioni."\r
+\r
+#: admin/settings.php:1719\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"Indicare se si vogliono visualizzare gli articoli in evidenza in home page o "\r
+"solo il loro riassunto."\r
+\r
+#: admin/settings.php:1735\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"Riassunti in archivio, categoria e pagine di ricerca. Come indicato sopra, "\r
+"solo gli articoli standard verranno modificati."\r
+\r
+#: admin/settings.php:1743\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"Il numero di parole che verranno visualizzate in un riassunto. Quando questo "\r
+"numero verrà raggiunto l'articolo verrà interrotto da un link <i>Continua</"\r
+"i> che\n"\r
+"\t\t\t\t\t\t\tporterà il lettore alla pagina con l'articolo integrale."\r
+\r
+#: admin/settings.php:1759\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"Abilita il layout magazine. Questo layout verrà applicato alle pagine con "\r
+"articoli e visualizzerà due articoli per riga"\r
+\r
+#: admin/settings.php:1766\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr ""\r
+"Sostituire i tre punti ('[...])' che vengono inseriti automaticamente ai "\r
+"riassunti."\r
+\r
+#: admin/settings.php:1773\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "Modifica il link 'Continua' aggiunto ai riassunti degli articoli ."\r
+\r
+#: admin/settings.php:1788\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr ""\r
+"Come impostazione predefinita Worpress rimuove tutti i tag HTML dai "\r
+"riassunti ("\r
+\r
+#: admin/settings.php:1819\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"Mostra immagini in evidenza come miniature negli articoli . Queste immagini "\r
+"devono essere selezionate per ciascun inserimento dalla sezione Immagini in "\r
+"Evidenza."\r
+\r
+#: admin/settings.php:1834\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"Mostra la prima immagine inserita nell'articolo come una miniatura. Se si "\r
+"abilita questa opzione, la prima immagine nell'articolo verrà utilizzata "\r
+"come miniatura, anche se è stata selezionata l'opzione Immagini in Evidenza."\r
+\r
+#: admin/settings.php:1850\r
+msgid "Thumbnail alignment."\r
+msgstr "Allineamento miniatura."\r
+\r
+#: admin/settings.php:1867\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"La dimensione da impostare per le miniature (in pixel). Le immagini verranno "\r
+"scalate in modo da mantenere la proporzione. Selezionare \"Ritaglia\" se "\r
+"volete utilizzare la dimensione esatta."\r
+\r
+#: admin/settings.php:1883\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"Mostra immagini in evidenza nell'intestazione. L'header verrà sostituito da "\r
+"un'immagine in evidenza se nell'articolo è stata selezionata l'opzione "\r
+"relativa e se\n"\r
+"\t\t\t\t\t\t\t la dimensione è maggiore o perlomeno identica a quella "\r
+"dell'immagine dell'header."\r
+\r
+#: admin/settings.php:1904\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"Selezionare l'icona del social network dal menù a tendina ed inserire il "\r
+"l'indirizzo internet corrispondente (es: <i>http://www.facebook.com/"\r
+"yourname</i> )"\r
+\r
+#: admin/settings.php:1918\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "E' possibile inserire sino a 5 social network o indirizzi web"\r
+\r
+#: admin/settings.php:1932\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Ci sono 27 social network da cui scegliere."\r
+\r
+#: admin/settings.php:1946\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "E' possibile lasciare qualsiasi numero di input non valorizzati"\r
+\r
+#: admin/settings.php:1960\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Potete selezionare lo stesso social media quante volte si desidera."\r
+\r
+#: admin/settings.php:1991\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr ""\r
+"Selezionare le <b>aree</b> in cui visualizzare le icone dei social network."\r
+\r
+#: admin/settings.php:2004\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"Inserire del testo personalizzato o codice HTML che verrà visualizzato nel "\r
+"Piè di pagina. <br /> E' possibile utilizzare l'HTML per inserire link, "\r
+"immagini e caratteri speciali come ©."\r
+\r
+#: admin/settings.php:2012\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br> Your custom CSS will be preserved when updating the "\r
+"theme.<br> The <style> tags are not needed."\r
+msgstr ""\r
+"Inserire qui i parametri CSS personalizzati. Ogni dichiarazione CSS "\r
+"sostituirà i valori predefiniti di Mantra. <br /> Questi valori verranno "\r
+"conservati anche in caso di aggiornamento del template."\r
+\r
+#: admin/settings.php:2019\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software).<br> The <script> tags are not needed."\r
+msgstr ""\r
+"Inserite qui il vostro codice Javascript personalizzato ( Google Analytics o "\r
+"altri script relativi a software di analisi traffico). <br> i tag "\r
+"<script> non sono necessari."\r
+\r
+#: admin/settings.php:2032\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Abilitare le funzioni SEO (search angine optimization) di Mantra. Questa "\r
+"funzione è abilitata come opzione predefinita e dovrebbe essere disabilitato "\r
+"esclusivamente se state utilizzando un altro plugin SEO"\r
+\r
+#: admin/settings.php:2044\r
+msgid "Auto"\r
+msgstr "Automatico"\r
+\r
+#: admin/settings.php:2044\r
+msgid "Manual"\r
+msgstr "Manuale"\r
+\r
+#: includes/theme-comments.php:28\r
+msgid "says:"\r
+msgstr "ha scritto:"\r
+\r
+#: includes/theme-comments.php:34\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Il commento è in attesa di moderazione"\r
+\r
+#: includes/theme-comments.php:41\r
+msgid "at"\r
+msgstr "a"\r
+\r
+#: includes/theme-comments.php:41 includes/theme-comments.php:58\r
+msgid "(Edit)"\r
+msgstr "(Modifica)"\r
+\r
+#: includes/theme-comments.php:58\r
+msgid "Pingback: "\r
+msgstr "Pingback: "\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "Leave a comment"\r
+msgstr "Scrivi un commento"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Commento"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Commenti"\r
+\r
+#: includes/theme-comments.php:94\r
+#, php-format\r
+msgid "One Response to %2$s"\r
+msgid_plural "%1$s Responses to %2$s"\r
+msgstr[0] "Una reazione a %2$s"\r
+msgstr[1] "%1$s reazioni a %2$s"\r
+\r
+#: includes/theme-comments.php:107\r
+msgid "Older Comments"\r
+msgstr "Commenti Precedenti"\r
+\r
+#: includes/theme-comments.php:108\r
+msgid "Newer Comments"\r
+msgstr "Commenti Successivi"\r
+\r
+#: includes/theme-functions.php:282\r
+msgid "Home Page"\r
+msgstr "Pagina Iniziale"\r
+\r
+#: includes/theme-functions.php:346\r
+msgid "Powered by"\r
+msgstr "Powered by"\r
+\r
+#: includes/theme-functions.php:348\r
+msgid "Semantic Personal Publishing Platform"\r
+msgstr "Semantic Personal Publishing Platform"\r
+\r
+#: includes/theme-loop.php:145\r
+msgid "By "\r
+msgstr "Di"\r
+\r
+#: includes/theme-loop.php:185\r
+msgid " Bookmark the "\r
+msgstr " Aggiungi ai preferiti :"\r
+\r
+#: includes/theme-loop.php:185 includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+msgid "Permalink to"\r
+msgstr "Permalink verso"\r
+\r
+#: includes/theme-loop.php:185 includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+msgid "permalink"\r
+msgstr "permalink"\r
+\r
+#: includes/theme-loop.php:187 includes/theme-loop.php:189\r
+msgid "Bookmark the "\r
+msgstr "Aggiungi ai preferiti : "\r
+\r
+#: includes/theme-loop.php:211\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Articoli precedenti"\r
+\r
+#: includes/theme-loop.php:212\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Articoli più recenti <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Pagina %s"\r
+\r
+#: includes/theme-setup.php:90\r
+msgid "Primary Navigation"\r
+msgstr "Navigazione Principale"\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Top Navigation"\r
+msgstr "Navigazione Inizio Pagina"\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Footer Navigation"\r
+msgstr "Navigazione Piè di Pagina"\r
+\r
+#: includes/theme-setup.php:139\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:200\r
+msgid "Skip to content"\r
+msgstr "Vai al contenuto"\r
+\r
+#: includes/theme-setup.php:227\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Prima Area Widget - Barra Laterale 1"\r
+\r
+#: includes/theme-setup.php:229\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Prima Area Widget - Barra Laterale 1"\r
+\r
+#: includes/theme-setup.php:238\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Seconda Area Widget - Barra Laterale 1"\r
+\r
+#: includes/theme-setup.php:240\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Seconda Area Widget - Barra Laterale 1"\r
+\r
+#: includes/theme-setup.php:249\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Terza Area Widget - Barra Laterale 2"\r
+\r
+#: includes/theme-setup.php:251\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Terza Area Widget - Barra Laterale 2"\r
+\r
+#: includes/theme-setup.php:260\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Quarta Area Widget - Barra Laterale 2"\r
+\r
+#: includes/theme-setup.php:262\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Quarta Area Widget - Barra Laterale 2"\r
+\r
+#: includes/theme-setup.php:271\r
+msgid "First Footer Widget Area"\r
+msgstr "Prima Area Widget Piè di Pagina"\r
+\r
+#: includes/theme-setup.php:273\r
+msgid "First footer widget area"\r
+msgstr "Prima Area Widget Piè di Pagina"\r
+\r
+#: includes/theme-setup.php:282\r
+msgid "Second Footer Widget Area"\r
+msgstr "Seconda Area Widget Piè di Pagina"\r
+\r
+#: includes/theme-setup.php:284\r
+msgid "Second footer widget area"\r
+msgstr "Seconda Area Widget Piè di Pagina"\r
+\r
+#: includes/theme-setup.php:293\r
+msgid "Third Footer Widget Area"\r
+msgstr "Terza Area Widget Piè di Pagina"\r
+\r
+#: includes/theme-setup.php:295\r
+msgid "The third footer widget area"\r
+msgstr "Terza Area Widget Piè di Pagina"\r
+\r
+#: includes/theme-setup.php:304\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Quarta Area Widget Piè di Pagina"\r
+\r
+#: includes/theme-setup.php:306\r
+msgid "The fourth footer widget area"\r
+msgstr "La Quarta Area Widget Piè di Pagina"\r
+\r
+#: includes/theme-setup.php:315 includes/theme-setup.php:317\r
+msgid "Above content Widget Area"\r
+msgstr "Area Widget sopra il contenuto"\r
+\r
+#: includes/theme-setup.php:326 includes/theme-setup.php:328\r
+msgid "Below Content Widget Area"\r
+msgstr "Area Widget sotto il contenuto"\r
+\r
+#~ msgid "Insert footer copyright"\r
+#~ msgstr "Inserimento copyright nel piè di pagina"\r
+\r
+#~ msgid "Mantra Help"\r
+#~ msgstr "Help Mantra (Inglese)"\r
+\r
+#, fuzzy\r
+#~ msgid ""\r
+#~ "\r\n"\r
+#~ "\t\t\t<ul>\r\n"\r
+#~ "\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\r\n"\r
+#~ "\t\t\t\t<li>- Want to know what changes are made to the theme with each "\r
+#~ "new version?</li>\r\n"\r
+#~ "\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+#~ "expected?</li>\r\n"\r
+#~ "\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better "\r
+#~ "suit your needs?</li>\r\n"\r
+#~ "\t\t\t\t<li>- Want a setting implemented?</li>\r\n"\r
+#~ "\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+#~ "Mantra Theme?</li>\r\n"\r
+#~ "\t\t\t</ul>\r\n"\r
+#~ "\t\t\t<p>Then come visit us at Mantra's support page.</p>\r\n"\r
+#~ "\t"\r
+#~ msgstr ""\r
+#~ "\r\n"\r
+#~ "\t\t\t<ul>\r\n"\r
+#~ "\t\t\t\t<li>- Avete bisogno di aiuto su Mantra o su WordPress?</li>\r\n"\r
+#~ "\t\t\t\t<li>- Volete sapere quali modifiche sono state fatte in ogni "\r
+#~ "nuova versione?</li>\r\n"\r
+#~ "\t\t\t\t<li>- Volete segnalare un bug o qualcosa non sembra funzionare "\r
+#~ "come previsto?</li>\r\n"\r
+#~ "\t\t\t\t<li>- Avete un idea da implementare su Mantra per venire incontro "\r
+#~ "alle vostre necessità?</li>\r\n"\r
+#~ "\t\t\t\t<li>- Volete implementare un’impostazione?</li>\r\n"\r
+#~ "\t\t\t\t<li>- Avete tradotto o volete collaborare alla traduzione del "\r
+#~ "tema Mantra?</li>\r\n"\r
+#~ "\t\t\t</ul>\r\n"\r
+#~ "\t\t\t<p>Visitate la pagina di supporto di Mantra ( in lingua inglese).</"\r
+#~ "p>\r\n"\r
+#~ "\t"\r
+\r
+#~ msgid "Mantra Support Page"\r
+#~ msgstr "Pagina di supporto (Inglese)"\r
+\r
+#~ msgid "Choose your layout "\r
+#~ msgstr "Seleziona il tuo layout"\r
+\r
+#~ msgid ""\r
+#~ "Enable the presentation front-page. This will become your new home page "\r
+#~ "and it will replace whatever page you have selected as homepage. It has a "\r
+#~ "slider and columns for presentation\r\n"\r
+#~ "\t\ttext and images."\r
+#~ msgstr ""\r
+#~ "Abilitare la modalità di presentazione per la pagina principale. Questa "\r
+#~ "diventerà la pagina iniziale del sito e sostituirà qualsiasi pagina "\r
+#~ "precedentemente imposta. Questa modalità comprende uno slide e delle "\r
+#~ "colonne per la presentazione\n"\r
+#~ "\t\ttesto ed immagini"\r
+\r
+#~ msgid "milliseconds (1000ms = 1 second) "\r
+#~ msgstr "millisecondi (1000ms = 1 secondo) "\r
+\r
+#~ msgid "Upload or select image from gallery"\r
+#~ msgstr "Caricare un immagine dal computer o selezionarne una dalla galleria"\r
+\r
+#~ msgid "The titles' color (Default value is 333333)."\r
+#~ msgstr "Colore del titolo ( Predefinito 333333)"\r
+\r
+#~ msgid ""\r
+#~ "Hide or show your blog's Title and Description in the header (recommended "\r
+#~ "if you have a custom header image with text)."\r
+#~ msgstr ""\r
+#~ "Mostra o nascondi Titolo e descrizione del Blog nella testata "\r
+#~ "( raccomandato se si ha un'immagine nella testata contenente del testo)"\r
+\r
+#~ msgid ""\r
+#~ "Make the site header into a clickable link that links to your index page."\r
+#~ msgstr ""\r
+#~ "Impostare l'header del sito come link verso la prima pagina del sito."\r
+\r
+#~ msgid "Upload or select favicon from gallery"\r
+#~ msgstr "Invia o seleziona una favicon dalla galleria"\r
+\r
+#~ msgid "Featured"\r
+#~ msgstr "Featured"\r
+\r
+#~ msgid "Archives"\r
+#~ msgstr "Archivi"\r
+\r
+#~ msgid "Meta"\r
+#~ msgstr "Meta"\r
+\r
+#~ msgid "Previous post link"\r
+#~ msgstr "Link articolo precedente"\r
+\r
+#~ msgid "Next post link"\r
+#~ msgstr "Link articolo successivo"\r
+\r
+#~ msgid "The size you want the thumbnails to have (in pixels)."\r
+#~ msgstr "Dimensione della miniatura (in pixel)"\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: mantra 197\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2013-01-30 17:12+0200\n"\r
+"PO-Revision-Date: 2013-06-14 15:07+0900\n"\r
+"Last-Translator: Yoshiki Osako <yosako.brainpro@gmail.com>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"\r
+"X-Poedit-Basepath: C:\\Users\\medicated\\Desktop\\mantra\n"\r
+"X-Generator: Poedit 1.5.5\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "見つかりません"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr "お探しのページは見つかりませんでした。"\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "日別アーカイブ: %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "月別アーカイブ: %s"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "年別アーカイブ: %s"\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "ブログアーカイブ"\r
+\r
+#: archive.php:57 author.php:74 category.php:50\r
+msgid "Nothing Found"\r
+msgstr "何も見つかりません"\r
+\r
+#: archive.php:61 author.php:78 category.php:54\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr "お探しのページは見つかりませんでした。"\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "%s へ戻る"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "By"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "発行"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "フルサイズ %s ピクセル"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "フルサイズイメージへリンク"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:49 content-gallery.php:65 content-image.php:42\r
+#: content-link.php:49 content-page.php:22 content-quote.php:46\r
+#: content-status.php:48 content.php:77\r
+msgid "Edit"\r
+msgstr "編集"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "続きを読む"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:38\r
+#: content-gallery.php:55 content-image.php:33 content-link.php:38\r
+#: content-page.php:21 content-quote.php:36 content-status.php:39\r
+#: content.php:49 content.php:66\r
+msgid "Pages:"\r
+msgstr "ページ:"\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "著者アーカイブ: %s"\r
+\r
+#: author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "%s について"\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "カテゴリアーカイブ: %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+"この投稿はパスワードで保護されています。コメントを表示するにはパスワードを入"\r
+"力してください。"\r
+\r
+#: content-aside.php:20\r
+msgid "Aside"\r
+msgstr "わき"\r
+\r
+#: content-aside.php:38 content-chat.php:37 content-gallery.php:33\r
+#: content-image.php:32 content-link.php:37 content-quote.php:35\r
+#: content-status.php:38\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "続きを読む <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:45 content-gallery.php:62\r
+#: content-image.php:39 content-link.php:45 content-quote.php:43\r
+#: content-status.php:46 content.php:75\r
+msgid "Tagged"\r
+msgstr "タグ付けされた"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "チャット"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "ギャラリー"\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr "画像"\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr "リンク"\r
+\r
+#: content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr "コメントは停止中です。"\r
+\r
+#: content-quote.php:18\r
+msgid "Quote"\r
+msgstr "引用"\r
+\r
+#: content-status.php:30\r
+msgid "Status"\r
+msgstr "ステータス"\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "%s の検索結果"\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "%s の検索結果がありません"\r
+\r
+#: searchform.php:1\r
+msgid "Search"\r
+msgstr "検索"\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr "すべての投稿を見る"\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "タグアーカイブ: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr ""\r
+"インポートファイルをアップロードする前に、以下のエラーを修正してください。"\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Mantra テーマオプションをインポート"\r
+\r
+#: admin/admin-functions.php:72\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"Mantra設定をインポートする場所です。<i> これはまだ試験中の機能です。</i>"\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "コンピュータからファイルを選択してください。"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "最大サイズ: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "そしてインポート!"\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Mantra テーマオプションをインポート"\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "オプションはインポートされました!"\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Mantra オプションページへ戻り、それらをチェックしてください!"\r
+\r
+#: admin/admin-functions.php:155 admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "小さな問題が見つかりました。"\r
+\r
+#: admin/admin-functions.php:156\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"アップロードされたファイルは、正当な Mantra オプションを含んでいません。"\r
+"Mantra オプションページからファイルがエクスポートされたことを確認してくださ"\r
+"い。"\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "アップロードされたファイルは読み込めません。"\r
+\r
+#: admin/admin-functions.php:168\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"アップロードされたファイルはサポートされていません。Mantra ページからテキスト"\r
+"ファイルとしてエクスポートされたことを確認してください。"\r
+\r
+#: admin/admin-functions.php:177\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"ファイルが空か、ファイルがありません。このエラーは、php.ini の設定で、アップ"\r
+"ロードが有効になっていないか、post_max_size の値が upload_max_filesize の値よ"\r
+"りも小さいことが原因かもしれません。"\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "ERROR: この機能を使用する権限がありません。"\r
+\r
+#: admin/main.php:93\r
+msgid "Layout Settings"\r
+msgstr "レイアウト設定"\r
+\r
+#: admin/main.php:94\r
+msgid "Presentation Page"\r
+msgstr "プレゼンテーションページ"\r
+\r
+#: admin/main.php:95\r
+msgid "Text Settings"\r
+msgstr "テキスト設定"\r
+\r
+#: admin/main.php:96\r
+msgid "Color Settings"\r
+msgstr "カラー設定"\r
+\r
+#: admin/main.php:97\r
+msgid "Graphics Settings"\r
+msgstr "グラフィックス設定"\r
+\r
+#: admin/main.php:98\r
+msgid "Post Information Settings"\r
+msgstr "投稿情報設定"\r
+\r
+#: admin/main.php:99\r
+msgid "Post Excerpt Settings"\r
+msgstr "投稿抜粋設定"\r
+\r
+#: admin/main.php:100\r
+msgid "Featured Image Settings"\r
+msgstr "お気に入り画像設定"\r
+\r
+#: admin/main.php:101\r
+msgid "Social Media Settings"\r
+msgstr "ソーシャルメディア設定"\r
+\r
+#: admin/main.php:102\r
+msgid "Miscellaneous Settings"\r
+msgstr "その他設定"\r
+\r
+#: admin/main.php:104\r
+msgid "Main Layout"\r
+msgstr "メインレイアウト"\r
+\r
+#: admin/main.php:105\r
+msgid "Content / Sidebar Width"\r
+msgstr "コンテンツ / サイドバーの幅"\r
+\r
+#: admin/main.php:106\r
+msgid "Header Image Height"\r
+msgstr "ヘッダー画像の高さ"\r
+\r
+#: admin/main.php:108\r
+msgid "Enable Presentation Page"\r
+msgstr "プレゼンテーションページの有効化"\r
+\r
+#: admin/main.php:109\r
+msgid "Slider Settings"\r
+msgstr "スライダー設定"\r
+\r
+#: admin/main.php:110\r
+msgid "Slides"\r
+msgstr "スライド"\r
+\r
+#: admin/main.php:111\r
+msgid "Presentation Page Columns"\r
+msgstr "プレゼンテーションページコラム"\r
+\r
+#: admin/main.php:112\r
+msgid "Extras"\r
+msgstr "エキストラ"\r
+\r
+#: admin/main.php:114\r
+msgid "General Font"\r
+msgstr "一般フォント"\r
+\r
+#: admin/main.php:115\r
+msgid "General Font Size"\r
+msgstr "一般フォントサイズ"\r
+\r
+#: admin/main.php:116\r
+msgid "Post Title Font "\r
+msgstr "投稿タイトルフォント"\r
+\r
+#: admin/main.php:117\r
+msgid "Post Title Font Size"\r
+msgstr "投稿タイトルフォントサイズ"\r
+\r
+#: admin/main.php:118\r
+msgid "Sidebar Font"\r
+msgstr "サイドバーフォント"\r
+\r
+#: admin/main.php:119\r
+msgid "SideBar Font Size"\r
+msgstr "サイドバーフォントサイズ"\r
+\r
+#: admin/main.php:120\r
+msgid "Sub-Headers Font"\r
+msgstr "サブヘッダフォント"\r
+\r
+#: admin/main.php:121\r
+msgid "Force Text Align"\r
+msgstr "強調テキスト整列"\r
+\r
+#: admin/main.php:122\r
+msgid "Paragraph indent"\r
+msgstr "段落インデント"\r
+\r
+#: admin/main.php:123\r
+msgid "Header indent"\r
+msgstr "ヘッダインデント"\r
+\r
+#: admin/main.php:124\r
+msgid "Line Height"\r
+msgstr "ラインの高さ"\r
+\r
+#: admin/main.php:125\r
+msgid "Word spacing"\r
+msgstr "単語間の幅"\r
+\r
+#: admin/main.php:126\r
+msgid "Letter spacing"\r
+msgstr "文字間の幅"\r
+\r
+#: admin/main.php:127\r
+msgid "Text shadow"\r
+msgstr "テキストシャドウ"\r
+\r
+#: admin/main.php:129\r
+msgid "Background Color"\r
+msgstr "背景色"\r
+\r
+#: admin/main.php:130\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "ヘッダ(バナー、メニュー)の背景色"\r
+\r
+#: admin/main.php:131\r
+msgid "Content Background Color"\r
+msgstr "コンテンツの背景色"\r
+\r
+#: admin/main.php:132\r
+msgid "Menu Background Color"\r
+msgstr "メニューの背景色"\r
+\r
+#: admin/main.php:133\r
+msgid "First Sidebar Background Color"\r
+msgstr "1st サイドバーの背景色"\r
+\r
+#: admin/main.php:134\r
+msgid "Second Sidebar Background Color"\r
+msgstr "2nd サイドバーの背景色"\r
+\r
+#: admin/main.php:136\r
+msgid "Site Title Color"\r
+msgstr "サイトタイトルカラー"\r
+\r
+#: admin/main.php:137\r
+msgid "Site Description Color"\r
+msgstr "サイトディスクリプションカラー"\r
+\r
+#: admin/main.php:139\r
+msgid "Content Text Color"\r
+msgstr "コンテンツテキストカラー"\r
+\r
+#: admin/main.php:140\r
+msgid "Links Color"\r
+msgstr "リンクカラー"\r
+\r
+#: admin/main.php:141\r
+msgid "Links Hover Color"\r
+msgstr "リンクホバーカラー"\r
+\r
+#: admin/main.php:142\r
+msgid "Post Title Color"\r
+msgstr "投稿タイトルカラー"\r
+\r
+#: admin/main.php:143\r
+msgid "Post Title Hover Color"\r
+msgstr "投稿タイトルホバーカラー"\r
+\r
+#: admin/main.php:144\r
+msgid "Sidebar Header Background Color"\r
+msgstr "サイドバーヘッダ背景色"\r
+\r
+#: admin/main.php:145\r
+msgid "Sidebar Header Text Color"\r
+msgstr "サイドバーヘッダテキストカラー"\r
+\r
+#: admin/main.php:146\r
+msgid "Footer Widget Background Color"\r
+msgstr "フッタウィジェット背景色"\r
+\r
+#: admin/main.php:147\r
+msgid "Footer Background Color"\r
+msgstr "フッタ背景色"\r
+\r
+#: admin/main.php:148\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "フッタウィジェットヘッダテキストカラー"\r
+\r
+#: admin/main.php:149\r
+msgid "Footer Widget Link Color"\r
+msgstr "フッタウィジェットリンクカラー"\r
+\r
+#: admin/main.php:150\r
+msgid "Footer Widget Hover Color"\r
+msgstr "フッタウィジェットホバーカラー"\r
+\r
+#: admin/main.php:152\r
+msgid "Caption Border"\r
+msgstr "キャプションボーダー"\r
+\r
+#: admin/main.php:153\r
+msgid "Post Images Border"\r
+msgstr "投稿画像ボーダー"\r
+\r
+#: admin/main.php:154\r
+msgid "Caption Pin"\r
+msgstr "キャプションピン"\r
+\r
+#: admin/main.php:155\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "サイドメニューブレット"\r
+\r
+#: admin/main.php:156\r
+msgid "Meta Area Background"\r
+msgstr "メタエリア背景"\r
+\r
+#: admin/main.php:157\r
+msgid "Post Separator"\r
+msgstr "投稿セパレータ"\r
+\r
+#: admin/main.php:158\r
+msgid "Content List Bullets"\r
+msgstr "コンテンツリストブレット"\r
+\r
+#: admin/main.php:159\r
+msgid "Title and Description"\r
+msgstr "タイトルと説明"\r
+\r
+#: admin/main.php:160\r
+msgid "Page Titles"\r
+msgstr "ページタイトル"\r
+\r
+#: admin/main.php:161\r
+msgid "Category Page Titles"\r
+msgstr "カテゴリページタイトル"\r
+\r
+#: admin/main.php:162\r
+msgid "Hide Tables"\r
+msgstr "テーブルを非表示にします"\r
+\r
+#: admin/main.php:163\r
+msgid "Back to Top button"\r
+msgstr "トップへ戻るボタン"\r
+\r
+#: admin/main.php:164\r
+msgid "Text Under Comments"\r
+msgstr "コメント下のテキスト"\r
+\r
+#: admin/main.php:165\r
+msgid "Comments are closed text"\r
+msgstr "コメント停止中テキスト"\r
+\r
+#: admin/main.php:166\r
+msgid "Comments off"\r
+msgstr "コメントオフ"\r
+\r
+#: admin/main.php:167\r
+msgid "Custom Footer Text"\r
+msgstr "カスタムフッタテキスト"\r
+\r
+#: admin/main.php:169\r
+msgid "Post Comments Link"\r
+msgstr "コメント投稿リンク"\r
+\r
+#: admin/main.php:170\r
+msgid "Post Date"\r
+msgstr "投稿日"\r
+\r
+#: admin/main.php:171\r
+msgid "Post Time"\r
+msgstr "投稿時刻"\r
+\r
+#: admin/main.php:172\r
+msgid "Post Author"\r
+msgstr "著者"\r
+\r
+#: admin/main.php:173\r
+msgid "Post Category"\r
+msgstr "投稿カテゴリ"\r
+\r
+#: admin/main.php:174\r
+msgid "Post Tags"\r
+msgstr "投稿タグ"\r
+\r
+#: admin/main.php:175\r
+msgid "Post Permalink"\r
+msgstr "投稿パーマリンク"\r
+\r
+#: admin/main.php:176\r
+msgid "All Post Metas"\r
+msgstr "すべての投稿メタ"\r
+\r
+#: admin/main.php:178\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "ホームページの投稿抜粋"\r
+\r
+#: admin/main.php:179\r
+msgid "Affect Sticky Posts"\r
+msgstr "メモ投稿へ影響"\r
+\r
+#: admin/main.php:180\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "アーカイブおよびカテゴリページの投稿抜粋"\r
+\r
+#: admin/main.php:181\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "投稿抜粋の単語数"\r
+\r
+#: admin/main.php:182\r
+msgid "Magazine Layout"\r
+msgstr "雑誌レイアウト"\r
+\r
+#: admin/main.php:183\r
+msgid "Excerpt suffix"\r
+msgstr "抜粋の接尾辞"\r
+\r
+#: admin/main.php:184\r
+msgid "Continue reading link text "\r
+msgstr "続きを読むリンクテキスト"\r
+\r
+#: admin/main.php:185\r
+msgid "HTML tags in Excerpts"\r
+msgstr "抜粋中のHTMLタグ"\r
+\r
+#: admin/main.php:187\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "投稿アイキャッチ画像としてのお気に入り画像"\r
+\r
+#: admin/main.php:188\r
+msgid "Auto Select Images From Posts "\r
+msgstr "投稿から自動的に画像を選択"\r
+\r
+#: admin/main.php:189\r
+msgid "Thumbnails Alignment "\r
+msgstr "アイキャッチ画像の整列"\r
+\r
+#: admin/main.php:190\r
+msgid "Thumbnails Size "\r
+msgstr "アイキャッチ画像サイズ"\r
+\r
+#: admin/main.php:191\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "ヘッダイメージとしてのお気に入り画像"\r
+\r
+#: admin/main.php:193\r
+msgid "Link nr. 1"\r
+msgstr "リンク nr. 1"\r
+\r
+#: admin/main.php:194\r
+msgid "Link nr. 2"\r
+msgstr "リンク nr. 2"\r
+\r
+#: admin/main.php:195\r
+msgid "Link nr. 3"\r
+msgstr "リンク nr. 3"\r
+\r
+#: admin/main.php:196\r
+msgid "Link nr. 4"\r
+msgstr "リンク nr. 4"\r
+\r
+#: admin/main.php:197\r
+msgid "Link nr. 5"\r
+msgstr "リンク nr. 5"\r
+\r
+#: admin/main.php:198\r
+msgid "Socials display"\r
+msgstr "ソーシャル表示"\r
+\r
+#: admin/main.php:200\r
+msgid "Make Site Header a Link"\r
+msgstr "サイトヘッダをリンクにします"\r
+\r
+#: admin/main.php:201\r
+msgid "Breadcrumbs"\r
+msgstr "パン屑リスト"\r
+\r
+#: admin/main.php:202\r
+msgid "Pagination"\r
+msgstr "ページ送り"\r
+\r
+#: admin/main.php:203\r
+msgid "Mobile view"\r
+msgstr "モバイルビュー"\r
+\r
+#: admin/main.php:204\r
+msgid "FavIcon"\r
+msgstr "FavIcon"\r
+\r
+#: admin/main.php:205\r
+msgid "Custom CSS"\r
+msgstr "カスタム CSS"\r
+\r
+#: admin/main.php:206\r
+msgid "Custom JavaScript"\r
+msgstr "カスタム JavaScript"\r
+\r
+#: admin/main.php:207\r
+msgid "SEO Settings"\r
+msgstr "SEO 設定"\r
+\r
+#: admin/main.php:224\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "このページにアクセスするパーミッションがありません。"\r
+\r
+#: admin/main.php:234\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Mantra 設定は更新されました。"\r
+\r
+#: admin/main.php:245\r
+msgid "Reset to Defaults"\r
+msgstr "既定値に戻す"\r
+\r
+#: admin/main.php:246\r
+msgid "Save Changes"\r
+msgstr "変更を保存"\r
+\r
+#: admin/main.php:260\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+"keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+"folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+"coffee. We love it! So if you want to help with the further development of "\r
+"the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Cryout Creations (Mantra テーマの開発者)では、常にMantra テーマの改善に努"\r
+"めています。今まで多くの不具合を直してきました; 多くのカスタマイズオプション"\r
+"を追加すると同時に、できるだけシンプルに保つよう努力してきました; そして...い"\r
+"つも皆さんのメールやコメントを読み、ノートを取り、将来のバージョンで実現する"\r
+"機能をリストアップしています。</p>\n"\r
+"\t\t\t<p><i>彼らはどうやっているの? どうやってテーマを良好に保ち続けているの?"\r
+"</i> と言うような疑問を持っているかもしれません。それは簡単なのでです。コー"\r
+"ヒーを飲んでいるだけです。それも熱いコーヒーを。私たちはそれが好きなのです! "\r
+"Mantra テーマの将来の開発に力を貸してください...</p>"\r
+\r
+#: admin/main.php:275\r
+msgid "Import/Export Settings"\r
+msgstr "インポート / エクスポート 設定"\r
+\r
+#: admin/main.php:281\r
+msgid "Export Theme options"\r
+msgstr "テーマオプションエクスポート"\r
+\r
+#: admin/main.php:282\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"簡単です。マウスをクリックしてMantra 設定をエクスポートし、PCに保存することが"\r
+"できます。"\r
+\r
+#: admin/main.php:287\r
+msgid "Import Theme options"\r
+msgstr "テーマオプションインポート"\r
+\r
+#: admin/main.php:288\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+"インポートがなければ、エクスポートもありません。エクスポートされたファイルが"\r
+"あることを確認してください。"\r
+\r
+#: admin/main.php:295\r
+msgid "Mantra Latest News"\r
+msgstr "Mantra 最新ニュース"\r
+\r
+#: admin/main.php:306\r
+msgid "No news items."\r
+msgstr "新しいアイテムはありません。"\r
+\r
+#: admin/main.php:320\r
+msgid "Mantra Help"\r
+msgstr "Mantra ヘルプ"\r
+\r
+#: admin/main.php:323\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "\r
+"version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+"expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "\r
+"your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+"Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Mantra か Wordpress のヘルプが必要ですか?</li>\n"\r
+"\t\t\t\t<li>- 新バージョンのテーマで何が変更されたか知りたいですか?</li>\n"\r
+"\t\t\t\t<li>- 不具合を見つけたり、思ったように動かないものを見つけましたか?</"\r
+"li>\n"\r
+"\t\t\t\t<li>- あなたのニーズに合うように Mantra テーマを改善するアイデアが浮"\r
+"かびましたか?</li>\n"\r
+"\t\t\t\t<li>- 設定を実行したいですか?</li>\n"\r
+"\t\t\t\t<li>- Mantra テーマの翻訳をしたいですか?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>そのような時は、Mantra サポートページを訪問してください。</p>\n"\r
+"\t"\r
+\r
+#: admin/main.php:334\r
+msgid "Mantra Support Page"\r
+msgstr "Mantra サポートページ"\r
+\r
+#: admin/settings.php:61\r
+msgid "One column (no sidebars)"\r
+msgstr "1 コラム、サイドバーなし"\r
+\r
+#: admin/settings.php:62\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "2 コラム、右サイドバー"\r
+\r
+#: admin/settings.php:63\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "2 コラム、左サイドバー"\r
+\r
+#: admin/settings.php:64\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "3 コラム、右サイドバー"\r
+\r
+#: admin/settings.php:65\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "3 コラム、左サイドバー"\r
+\r
+#: admin/settings.php:66\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "2 コラム、両側サイドバー"\r
+\r
+#: admin/settings.php:81\r
+msgid "Choose your layout "\r
+msgstr "レイアウトを選択"\r
+\r
+#: admin/settings.php:89\r
+msgid "Absolute"\r
+msgstr "絶対"\r
+\r
+#: admin/settings.php:89\r
+msgid "Relative"\r
+msgstr "相対"\r
+\r
+#: admin/settings.php:90\r
+msgid "Dimensions to use: "\r
+msgstr "使用する大きさ:"\r
+\r
+#: admin/settings.php:189 admin/settings.php:209\r
+msgid "Content ="\r
+msgstr "コンテンツ ="\r
+\r
+#: admin/settings.php:190 admin/settings.php:210\r
+msgid "Sidebar(s) ="\r
+msgstr "サイドバー ="\r
+\r
+#: admin/settings.php:191 admin/settings.php:211\r
+msgid "Total width ="\r
+msgstr "幅合計 ="\r
+\r
+#: admin/settings.php:200\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"<b>コンテンツ</b>と<b>サイドバー</b>の幅を選択してください。\n"\r
+" \t\tコンテンツは 500px 以上の幅、サイドバーは 220px 以上で800px 以下でなけれ"\r
+"ばなりません。<br />\n"\r
+"\tもし 3 コラムエリア(2サイドバー)を使用したい時は、それぞれの幅は選択した"\r
+"幅の半分です。"\r
+\r
+#: admin/settings.php:220\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"<b>コンテンツ</b>と<b>サイドバー</b>の幅を選択してください。\n"\r
+" \t\tユーザのブラウザに対して相対的な割合を選択することもできます。その場合は"\r
+"ブラウザの幅に対する % で設定します。<br />\n"\r
+"\t コンテンツは 40% 以上が必要で、サードバーは 20% 以上で 50% 以下でなければ"\r
+"なりません。<br />\n"\r
+"\tもし 3 コラムエリア(2サイドバー)を使用したい時は、それぞれの幅は選択した"\r
+"幅の半分です。"\r
+\r
+#: admin/settings.php:244\r
+msgid ""\r
+"Select the header's height. After saving the settings go and upload your new "\r
+"header image. The header's width will be = "\r
+msgstr ""\r
+"ヘッダの高さを指定してください。設定を保存した後で、新しいヘッダイメージを"\r
+"アップロードしてください。ヘッダの幅 ="\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1367 admin/settings.php:1429 admin/settings.php:1637\r
+#: admin/settings.php:1666 admin/settings.php:1689 admin/settings.php:1712\r
+#: admin/settings.php:1761 admin/settings.php:1890 admin/settings.php:1905\r
+#: admin/settings.php:1920 admin/settings.php:1935 admin/settings.php:1977\r
+msgid "Enable"\r
+msgstr "有効化"\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1367 admin/settings.php:1429 admin/settings.php:1637\r
+#: admin/settings.php:1666 admin/settings.php:1689 admin/settings.php:1712\r
+#: admin/settings.php:1761 admin/settings.php:1890 admin/settings.php:1905\r
+#: admin/settings.php:1920 admin/settings.php:1935 admin/settings.php:1977\r
+msgid "Disable"\r
+msgstr "無効化"\r
+\r
+#: admin/settings.php:265\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page. It "\r
+"has a slider and columns for presentation\n"\r
+"\t\ttext and images.<br>If you have this enabled but don't see a "\r
+"Presentation page then go to <a href='options-reading.php'> Settings » "\r
+"Reading </a> and make sure you have selected <strong>Front Page Displays</"\r
+"strong> as <Strong>Your Latest Posts</strong>."\r
+msgstr ""\r
+"プレゼンテーションフロントページを有効化します。これで、あなたの新しいホーム"\r
+"ページになります。ページには、プレゼンテーション\n"\r
+"\t\tテキストとイメージ付のプレゼンテーション用スライダーとコラムがあります。"\r
+"<br />有効化してもプレゼンテーションページが表示されない時は、<a "\r
+"href='options-reading.php'> 設定 » 読み込み</a>へ行き、<strong>あなたの"\r
+"最新の投稿</strong>が<strong>フロントページ表示</strong>に選択されているかど"\r
+"うかを確認してください。"\r
+\r
+#: admin/settings.php:275\r
+msgid "Slider Dimensions:"\r
+msgstr "スライダーの大きさ:"\r
+\r
+#: admin/settings.php:276\r
+msgid "width"\r
+msgstr "幅"\r
+\r
+#: admin/settings.php:277\r
+msgid "height"\r
+msgstr "高さ"\r
+\r
+#: admin/settings.php:278\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr "スライダーの大きさは、イメージと同じサイズです。"\r
+\r
+#: admin/settings.php:280\r
+msgid "Animation:"\r
+msgstr "アニメーション:"\r
+\r
+#: admin/settings.php:282\r
+msgid "Random"\r
+msgstr "ランダム"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fold"\r
+msgstr "折りたたみ"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fade"\r
+msgstr "フェード"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInRight"\r
+msgstr "右からスライドイン"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInLeft"\r
+msgstr "左からスライドイン"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDown"\r
+msgstr "スライドダウン"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDownLeft"\r
+msgstr "左からスライドダウン"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUp"\r
+msgstr "スライドアップ"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpLeft"\r
+msgstr "左へスライドアップ"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDown"\r
+msgstr "上下へスライス"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDownLeft"\r
+msgstr "左から上下へスライス"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRandom"\r
+msgstr "ボックスランダム"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRain"\r
+msgstr "ボックスレイン"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainReverse"\r
+msgstr "逆ボックスレイン"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrow"\r
+msgstr "ボックスレイングロウ"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrowReverse"\r
+msgstr "逆ボックスレイングロウ"\r
+\r
+#: admin/settings.php:290\r
+msgid "The transition effect your slider will have."\r
+msgstr "スライドのトランジション効果です。"\r
+\r
+#: admin/settings.php:292\r
+msgid "Border Settings:"\r
+msgstr "ボーダー設定:"\r
+\r
+#: admin/settings.php:293\r
+msgid "Width"\r
+msgstr "幅"\r
+\r
+#: admin/settings.php:294\r
+msgid "Color"\r
+msgstr "カラー"\r
+\r
+#: admin/settings.php:296\r
+msgid "The width and color of the slider's border."\r
+msgstr "スライダーボーダーの幅とカラー"\r
+\r
+#: admin/settings.php:298\r
+msgid "Animation Time:"\r
+msgstr "アニメーション時間:"\r
+\r
+#: admin/settings.php:299 admin/settings.php:303\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "ミリセカンド(1000ms = 1 秒)"\r
+\r
+#: admin/settings.php:300\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "トランジションアニメーションを継続する時間"\r
+\r
+#: admin/settings.php:302\r
+msgid "Pause Time:"\r
+msgstr "ポーズ時間:"\r
+\r
+#: admin/settings.php:304\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "スライドが静止し表示される時間。"\r
+\r
+#: admin/settings.php:307\r
+msgid "Slider navigation:"\r
+msgstr "スライダーナビゲーション:"\r
+\r
+#: admin/settings.php:309\r
+msgid "Numbers"\r
+msgstr "数"\r
+\r
+#: admin/settings.php:309\r
+msgid "Bullets"\r
+msgstr "ブレット"\r
+\r
+#: admin/settings.php:309 admin/settings.php:1273\r
+msgid "None"\r
+msgstr "なし"\r
+\r
+#: admin/settings.php:317\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "スライダーのナビゲーションタイプ。スライダーの下に表示されます。"\r
+\r
+#: admin/settings.php:319\r
+msgid "Slider arrows:"\r
+msgstr "スライダーの矢印:"\r
+\r
+#: admin/settings.php:321\r
+msgid "Always Visible"\r
+msgstr "常に表示"\r
+\r
+#: admin/settings.php:321\r
+msgid "Visible on Hover"\r
+msgstr "ホバー時に表示"\r
+\r
+#: admin/settings.php:321\r
+msgid "Hidden"\r
+msgstr "非表示"\r
+\r
+#: admin/settings.php:329\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "スライダーに右および左矢印"\r
+\r
+#: admin/settings.php:370 admin/settings.php:438\r
+msgid "Select Category"\r
+msgstr "カテゴリ選択"\r
+\r
+#: admin/settings.php:397\r
+msgid "Custom Slides"\r
+msgstr "カスタムスライド"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts"\r
+msgstr "最新の投稿"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts"\r
+msgstr "ランダム投稿"\r
+\r
+#: admin/settings.php:397\r
+msgid "Sticky Posts"\r
+msgstr "メモ投稿"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts from Category"\r
+msgstr "カテゴリからの最新の投稿"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts from Category"\r
+msgstr "カテゴリからのランダム投稿"\r
+\r
+#: admin/settings.php:397\r
+msgid "Specific Posts"\r
+msgstr "特定の投稿"\r
+\r
+#: admin/settings.php:410\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "最新の投稿がスライダーに表示されます。"\r
+\r
+#: admin/settings.php:414\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "ランダム投稿がスライダーに表示されます。"\r
+\r
+#: admin/settings.php:418\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "カテゴリからの最新の投稿がスライダーに表示されます。"\r
+\r
+#: admin/settings.php:423\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr "カテゴリからのランダム投稿がスライダーに表示されます。"\r
+\r
+#: admin/settings.php:427\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "メモ投稿だけがスライダーに表示されます。"\r
+\r
+#: admin/settings.php:431\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr "表示したい投稿IDリスト(コンマで区切る)"\r
+\r
+#: admin/settings.php:436\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br /> カテゴリ選択:"\r
+\r
+#: admin/settings.php:453\r
+msgid "Number of posts to show:"\r
+msgstr "表示する投稿数:"\r
+\r
+#: admin/settings.php:460\r
+msgid "Slide 1"\r
+msgstr "スライド 1"\r
+\r
+#: admin/settings.php:464 admin/settings.php:479 admin/settings.php:494\r
+#: admin/settings.php:509 admin/settings.php:524 admin/settings.php:567\r
+#: admin/settings.php:582 admin/settings.php:597 admin/settings.php:612\r
+msgid "Upload or select image from gallery"\r
+msgstr "アップロード、あるいは、ギャラリーから画像選択"\r
+\r
+#: admin/settings.php:465 admin/settings.php:480 admin/settings.php:495\r
+#: admin/settings.php:510 admin/settings.php:525 admin/settings.php:568\r
+#: admin/settings.php:583 admin/settings.php:613\r
+msgid "Title"\r
+msgstr "タイトル"\r
+\r
+#: admin/settings.php:467 admin/settings.php:482 admin/settings.php:497\r
+#: admin/settings.php:512 admin/settings.php:527 admin/settings.php:570\r
+#: admin/settings.php:585 admin/settings.php:600 admin/settings.php:615\r
+msgid "Text"\r
+msgstr "テキスト"\r
+\r
+#: admin/settings.php:475\r
+msgid "Slide 2"\r
+msgstr "スライド 2"\r
+\r
+#: admin/settings.php:490\r
+msgid "Slide 3"\r
+msgstr "スライド 3"\r
+\r
+#: admin/settings.php:505\r
+msgid "Slide 4"\r
+msgstr "スライド 4"\r
+\r
+#: admin/settings.php:520\r
+msgid "Slide 5"\r
+msgstr "スライド 5"\r
+\r
+#: admin/settings.php:533\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"スライドのコンテンツ。画像が必須です。他の項目はオプションです。画像が選択さ"\r
+"れているスライドだけがスライダーに表示されます。"\r
+\r
+#: admin/settings.php:543\r
+msgid "Number of columns:"\r
+msgstr "コラム数:"\r
+\r
+#: admin/settings.php:553\r
+msgid "Image Height:"\r
+msgstr "画像の高さ:"\r
+\r
+#: admin/settings.php:556\r
+msgid "Read more text:"\r
+msgstr "続きを読むテキスト:"\r
+\r
+#: admin/settings.php:559\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr "コラムの下部に表示されるリンクテキスト。削除することもできます。"\r
+\r
+#: admin/settings.php:563\r
+msgid "1st Column"\r
+msgstr "1st コラム"\r
+\r
+#: admin/settings.php:578\r
+msgid "2nd Column"\r
+msgstr "2nd コラム"\r
+\r
+#: admin/settings.php:593\r
+msgid "3rd Column"\r
+msgstr "3rd コラム"\r
+\r
+#: admin/settings.php:608\r
+msgid "4th Column"\r
+msgstr "4th コラム"\r
+\r
+#: admin/settings.php:630\r
+msgid "Extra Text"\r
+msgstr "拡張テキスト"\r
+\r
+#: admin/settings.php:630\r
+msgid "Top Title"\r
+msgstr "トップタイトル"\r
+\r
+#: admin/settings.php:632\r
+msgid "Second Title"\r
+msgstr "セカンドタイトル"\r
+\r
+#: admin/settings.php:635\r
+msgid "Title color"\r
+msgstr "タイトルカラー"\r
+\r
+#: admin/settings.php:638\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "タイトルカラー (既定値 333333)。"\r
+\r
+#: admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr "ボトムテキスト 1"\r
+\r
+#: admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr "ボトムテキスト 2"\r
+\r
+#: admin/settings.php:645\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"フロントページのテキスト。トップタイトルはスライダー上部、セカンドタイトルは"\r
+"スライダーとコラムの間、そして、コラム下部の2行のテキスト。\n"\r
+"\t\tすべてオプションですので、入力しなくても良いです。 "\r
+\r
+#: admin/settings.php:651\r
+msgid "Hide areas"\r
+msgstr "エリアを非表示にします"\r
+\r
+#: admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "ヘッダエリア(画像や背景色)を非表示にします。"\r
+\r
+#: admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "メインメニュー(トップナビゲーションタブ)を非表示にします。"\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr "フッタウィジェットを非表示にします。"\r
+\r
+#: admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "フッタ(コピーライトエリア)を非表示にします。"\r
+\r
+#: admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "白色を非表示にします。背景色のみが残ります。"\r
+\r
+#: admin/settings.php:684\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "最初のページの非表示エリアを選択してください。"\r
+\r
+#: admin/settings.php:703\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"ブログで使用するフォントサイズを選択してください。ページ、投稿、そして、コメ"\r
+"ントに適用されます。ボタン、ヘッダ、サイドメニューは変更しません。"\r
+\r
+#: admin/settings.php:747\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"ブログで使用するフォントファミリーを選択してください。すべてのコンテンツテキ"\r
+"ストに適用されます。ボタン、メニューも含まれます。"\r
+\r
+#: admin/settings.php:748 admin/settings.php:797 admin/settings.php:848\r
+#: admin/settings.php:899\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"あるいは、Googleフォントを下に挿入してください。フォントの<strong>名前</"\r
+"strong>だけを挿入してください。<br />例: Marko One。<a href='http://www."\r
+"google.com/webfonts' >Googleフォント</a>を参照してください。"\r
+\r
+#: admin/settings.php:795\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"タイトルに使用するフォントファミリーを選択してください。投稿と固定ページのタ"\r
+"イトルに適用されます。「既定値」のままにすると、一般フォントが適用されます。"\r
+\r
+#: admin/settings.php:846\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"サイドバーに使用するフォントファミリーを選択してください。ウィジェットを含み"\r
+"サイドバーのテキストに適用されます。「既定値」のままにすると、一般フォントが"\r
+"適用されます。"\r
+\r
+#: admin/settings.php:897\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"サブヘッダ(h2 - h6間でのタグ)に使用するフォントファミリーを選択してくださ"\r
+"い。「既定値」のままにすると、一般フォントが適用されます。"\r
+\r
+#: admin/settings.php:909 admin/settings.php:924 admin/settings.php:939\r
+#: admin/settings.php:984 admin/settings.php:999 admin/settings.php:1014\r
+msgid "Default"\r
+msgstr "既定値"\r
+\r
+#: admin/settings.php:917\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"投稿ヘッダフォントサイズ。「既定値」のままにすると、一般設定が適用されます"\r
+"(サイズ値はCSSで設定されます)。"\r
+\r
+#: admin/settings.php:932\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"サイドバーフォントサイズ。「既定値」のままにすると、一般設定が適用されます"\r
+"(サイズ値はCSSで設定されます)。"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Left"\r
+msgstr "左"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Right"\r
+msgstr "右"\r
+\r
+#: admin/settings.php:939\r
+msgid "Justify"\r
+msgstr "両端揃え"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Center"\r
+msgstr "中央"\r
+\r
+#: admin/settings.php:947\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"これは投稿とページのテキスト整列を変更します。「既定値」のままにすると、一般"\r
+"設定が適用されます(テキスト整列は投稿やコメントで設定されたものが使用されま"\r
+"す)。"\r
+\r
+#: admin/settings.php:961\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "段落のインデントを選択してください。"\r
+\r
+#: admin/settings.php:977\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "既定のヘッダとタイトルインデント(左マージン)を無効にします。"\r
+\r
+#: admin/settings.php:992\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"テキストの行の高さ。テキストの行間の高さ。「既定値」のままにすると、一般設定"\r
+"が適用されます(CSSで設定された値が使用されます)。"\r
+\r
+#: admin/settings.php:1007\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"<i>単語</i>間のスペース。「既定値」のままにすると、一般設定が適用されます"\r
+"(CSSで設定された値が使用されます)。"\r
+\r
+#: admin/settings.php:1022\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"<i>文字</i>間のスペース。「既定値」のままにすると、一般設定が適用されます"\r
+"(CSSで設定された値が使用されます)。"\r
+\r
+#: admin/settings.php:1039\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "ヘッダとタイトルのテキストシャドウを無効にします。"\r
+\r
+#: admin/settings.php:1051\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "背景色(既定値 444444)。"\r
+\r
+#: admin/settings.php:1059\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr "ヘッダ背景色(既定値 333333)。ブランクにすると背景色を無くします。"\r
+\r
+#: admin/settings.php:1066\r
+msgid ""\r
+"Content background color (Default value is FFFFFF). Works best with really "\r
+"light colors."\r
+msgstr "コンテンツ背景色(既定値 FFFFFF)。明るい色を設定した方が良いです。"\r
+\r
+#: admin/settings.php:1073\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"メインメニュー背景色(既定値 FAFAFA)。コンテンツの背景色と同色か明るい色が良"\r
+"いでしょう。"\r
+\r
+#: admin/settings.php:1080 admin/settings.php:1087\r
+msgid "First sidebar background color (Default value is FFFFFF)."\r
+msgstr "1st サイドバーの背景色(既定値 FFFFFF)。"\r
+\r
+#: admin/settings.php:1095\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "フッタウィジェットエリア背景色(既定値 171717)。"\r
+\r
+#: admin/settings.php:1103\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "フッタ背景色(既定値 222222)。"\r
+\r
+#: admin/settings.php:1111\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "ブログタイトルカラー(既定値 0D85CC)。"\r
+\r
+#: admin/settings.php:1119\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "ブログのデスクリプションカラー(既定値 222222)。"\r
+\r
+#: admin/settings.php:1127\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "コンテンツテキストカラー(既定値 333333)。"\r
+\r
+#: admin/settings.php:1135\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "リンクカラー(既定値 0D85CC)。"\r
+\r
+#: admin/settings.php:1143\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "マウスオーバー時リンクのカラー(既定値 333333)。"\r
+\r
+#: admin/settings.php:1151\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "投稿ヘッダテキストカラー(既定値 333333)。"\r
+\r
+#: admin/settings.php:1159\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr "マウスオーバー時の投稿ヘッダテキストカラー(既定値 000000)。"\r
+\r
+#: admin/settings.php:1167\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "サイドバーヘッダ背景色(既定値 444444)。"\r
+\r
+#: admin/settings.php:1176\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "サイドバーヘッダテキストカラー(既定値 2EA5FD)。"\r
+\r
+#: admin/settings.php:1184\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "フッタウィジェットテキストカラー(既定値 0D85CC)。"\r
+\r
+#: admin/settings.php:1192\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "フッタウィジェットリンクカラー(既定値 666666)。"\r
+\r
+#: admin/settings.php:1200\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr "マウスオーバー時のフッタウィジェットリンクカラー(既定値 888888)。"\r
+\r
+#: admin/settings.php:1212 admin/settings.php:1273\r
+msgid "White"\r
+msgstr "ホワイト"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Light"\r
+msgstr "淡色"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Light Gray"\r
+msgstr "淡いグレー"\r
+\r
+#: admin/settings.php:1212 admin/settings.php:1273\r
+msgid "Gray"\r
+msgstr "グレー"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Dark Gray"\r
+msgstr "暗いグレー"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Black"\r
+msgstr "ブラック"\r
+\r
+#: admin/settings.php:1220\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"この設定は、キャプションの見栄えを変更します。キャプションがない画像には影響"\r
+"しません。"\r
+\r
+#: admin/settings.php:1236\r
+msgid "The border around your inserted images. "\r
+msgstr "挿入した画像のボーダー。"\r
+\r
+#: admin/settings.php:1251\r
+msgid "The image on top of your captions. "\r
+msgstr "画像上部のキャプション。"\r
+\r
+#: admin/settings.php:1266\r
+msgid "The sidebar list bullets. "\r
+msgstr "サイドバーのリストブレット。"\r
+\r
+#: admin/settings.php:1281\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default.<"\r
+msgstr "投稿メタエリア(投稿タイトルの下)背景色。既定値はグレー。<"\r
+\r
+#: admin/settings.php:1289 admin/settings.php:1305 admin/settings.php:1322\r
+#: admin/settings.php:1337 admin/settings.php:1352 admin/settings.php:1382\r
+#: admin/settings.php:1397 admin/settings.php:1413 admin/settings.php:1456\r
+#: admin/settings.php:1471 admin/settings.php:1486 admin/settings.php:1501\r
+#: admin/settings.php:1516 admin/settings.php:1531 admin/settings.php:1546\r
+#: admin/settings.php:1561\r
+msgid "Show"\r
+msgstr "表示"\r
+\r
+#: admin/settings.php:1289 admin/settings.php:1305 admin/settings.php:1322\r
+#: admin/settings.php:1337 admin/settings.php:1352 admin/settings.php:1382\r
+#: admin/settings.php:1413 admin/settings.php:1456 admin/settings.php:1471\r
+#: admin/settings.php:1486 admin/settings.php:1501 admin/settings.php:1516\r
+#: admin/settings.php:1531 admin/settings.php:1546 admin/settings.php:1561\r
+msgid "Hide"\r
+msgstr "非表示"\r
+\r
+#: admin/settings.php:1297\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "投稿を分ける水平ルーラーを表示、非表示します。"\r
+\r
+#: admin/settings.php:1313\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"コンテンツエリア(投稿、ページなど)のリストブレットを表示、非表示します。"\r
+\r
+#: admin/settings.php:1330\r
+msgid ""\r
+"Hide or show your blog's Title and Description in the header (recommended if "\r
+"you have a custom header image with text)."\r
+msgstr ""\r
+"ヘッダ内のブログタイトルと説明(カスタムヘッダ画像を使用する場合、テキスト付"\r
+"の画像を推奨)を表示、非表示します。"\r
+\r
+#: admin/settings.php:1345\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "<i>作成された</i>ページのページタイトルを表示、非表示します。"\r
+\r
+#: admin/settings.php:1360\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "<i>カテゴリ</i>ページのページタイトルを表示、非表示します。"\r
+\r
+#: admin/settings.php:1375\r
+msgid "Hide table borders and background color."\r
+msgstr "テーブルボーダーと背景色を非表示にします。"\r
+\r
+#: admin/settings.php:1390\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"コメントフォーム下部の説明テキストを非表示にします。(<i>次のHTML タグと属性"\r
+"が使えます:...</i>で始まるテキスト)"\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide in posts"\r
+msgstr "投稿内を非表示にします。"\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide in pages"\r
+msgstr "ページ内を非表示にします。"\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide everywhere"\r
+msgstr "どこでも非表示にします。"\r
+\r
+#: admin/settings.php:1405\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"コメントを受け取らない設定をしている時に既定値として設定されているテキスト "\r
+"<b>コメントは停止中です</b> を非表示にします。"\r
+\r
+#: admin/settings.php:1421\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+"コメントを受け取らない投稿に表示されるテキスト <b>コメントオフ</b> を非表示に"\r
+"します。"\r
+\r
+#: admin/settings.php:1437\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"トップに戻るボタンを有効化します。ボタンはページをしたにスクロールすると表示"\r
+"されます。"\r
+\r
+#: admin/settings.php:1444\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"フッタの最後に表示されるカスタムテキストや HTML コードを挿入します。<br />リ"\r
+"ンク、画像、©などの特殊文字を含んだHTMLを使用することができます。"\r
+\r
+#: admin/settings.php:1464\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"投稿や抜粋の後に表示される<strong>コメントをどうぞ</strong>や<strong>x 件のコ"\r
+"メント</strong>を表示、非表示にします。"\r
+\r
+#: admin/settings.php:1479\r
+msgid "Hide or show the post date."\r
+msgstr "投稿日を表示、非表示にします。"\r
+\r
+#: admin/settings.php:1494\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"投稿時間付の投稿日を表示します。投稿時間は、投稿日が非表示の場合、表示されま"\r
+"せん。"\r
+\r
+#: admin/settings.php:1509\r
+msgid "Hide or show the post author."\r
+msgstr "著者を表示、非表示にします。"\r
+\r
+#: admin/settings.php:1524\r
+msgid "Hide the post category."\r
+msgstr "投稿カテゴリを非表示にします。"\r
+\r
+#: admin/settings.php:1539\r
+msgid "Hide the post tags."\r
+msgstr "投稿タグを非表示にします。"\r
+\r
+#: admin/settings.php:1554\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "'ブックマークパーマリンク'を非表示にします。"\r
+\r
+#: admin/settings.php:1569\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+"すべての投稿メタを非表示にします。すべてのメタ情報、メタエリアが非表示になり"\r
+"ます。"\r
+\r
+#: admin/settings.php:1582 admin/settings.php:1597 admin/settings.php:1613\r
+msgid "Excerpt"\r
+msgstr "抜粋"\r
+\r
+#: admin/settings.php:1582 admin/settings.php:1597 admin/settings.php:1613\r
+msgid "Full Post"\r
+msgstr "投稿全文"\r
+\r
+#: admin/settings.php:1590\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"メインページに表示される抜粋。標準投稿に適用されます。その他の投稿フォーマッ"\r
+"ト(アサイド、イメージ、チャット、引用など)は、それぞれ独自のフォーマットを"\r
+"持っています。"\r
+\r
+#: admin/settings.php:1605\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"ホームページのメモ投稿を全文表示するか、抜粋表示するかを選択してください。"\r
+\r
+#: admin/settings.php:1621\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"アーカイブ、カテゴリ、検索ページに表示される抜粋。上記と同様に、標準投稿に適"\r
+"用されます。"\r
+\r
+#: admin/settings.php:1629\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"抜粋に表示する単語数。上限に達すると全文ページにリンクする<i>続きを読む</i>リ"\r
+"ンクが表示されます。"\r
+\r
+#: admin/settings.php:1645\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"雑誌レイアウトを有効化します。このレイアウトは、投稿のある固定ページで、2段組"\r
+"で表示されます。"\r
+\r
+#: admin/settings.php:1652\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr "3ドット([...])を置換します。抜粋に自動的に追加されます。"\r
+\r
+#: admin/settings.php:1659\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "抜粋に追加される'続きを読む'リンクを編集します。"\r
+\r
+#: admin/settings.php:1674\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr "WordPressはデフォルトですべてのHTMLタグを取り除きます ("\r
+\r
+#: admin/settings.php:1705\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"投稿にアイキャッチ画像としてお気に入り画像を表示します。画像はお気に入りイ"\r
+"メージセクションで、投稿毎に選択しなければなりません。"\r
+\r
+#: admin/settings.php:1720\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"投稿に挿入されたイメージで最初の画像をアイキャッチ画像として表示します。"\r
+\r
+#: admin/settings.php:1736\r
+msgid "Thumbnail alignment."\r
+msgstr "アイキャッチ画像の整列"\r
+\r
+#: admin/settings.php:1753\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"アイキャッチ画像のサイズ(ピクセル単位)。デフォルトでは、画像のアスペクト比"\r
+"で調整されます。特定のサイズが必要な場合は、画像を切り取るなどしてください。"\r
+\r
+#: admin/settings.php:1769\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"ヘッダーにお気に入り画像を表示します。投稿のお気に入りイメージを選択し、\n"\r
+"\t\t\t\t\t\t\tその画像が現在のヘッダサイズと同等か大きい場合にヘッダがお気に"\r
+"入り画像に置き換わります。"\r
+\r
+#: admin/settings.php:1790\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"左のドロップダウンメニューからソーシャルネットワークを選択し、右の入力欄にそ"\r
+"のアドレスを挿入してください。(例: <i>http://www.facebook.com/yourname</i>)"\r
+\r
+#: admin/settings.php:1804\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "ソーシャルネットワークを最大5つ挿入することができます。"\r
+\r
+#: admin/settings.php:1818\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "全部で27のソーシャルネットワークから選択できます。"\r
+\r
+#: admin/settings.php:1832\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "入力欄はいくつでも空のままにしておいてもかまいません。"\r
+\r
+#: admin/settings.php:1846\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "同じソーシャルメディアを何度でも選択することができます。"\r
+\r
+#: admin/settings.php:1877\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr ""\r
+"ソーシャルネットワークアイコンを表示する<b>エリア</b>を選択してください。"\r
+\r
+#: admin/settings.php:1898\r
+msgid ""\r
+"Make the site header into a clickable link that links to your index page."\r
+msgstr ""\r
+"サイトヘッダをクリックしてインデックスページへリンクするように設定します。"\r
+\r
+#: admin/settings.php:1913\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"コンテンツエリアの最上部にパン屑リストを表示します。パン屑リストはサイト内で"\r
+"どこにいるかを示すナビゲーションです。"\r
+\r
+#: admin/settings.php:1928\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"ページネーションを表示します。2ページ以上存在する時は、ページ最下部の<b>古い"\r
+"投稿</b>と<b>新しい投稿</b>リンクがページを選択できるリンクに置き換わります。"\r
+\r
+#: admin/settings.php:1943\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in. "\r
+msgstr ""\r
+"モバイルビューを有効化し、Mantraをレスポンシブにします。レイアウトとブログの"\r
+"見え方は、デバイスの解像度によって変わります。"\r
+\r
+#: admin/settings.php:1953\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "アップロードするか、ギャラリーからfaviconを選択します。"\r
+\r
+#: admin/settings.php:1957\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+"制限: イメージが無ければなりません。イメージの大きさは、最大64 x 64 です。"\r
+"ファイルの形式は .ico と .png を推奨します。"\r
+\r
+#: admin/settings.php:1965\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br /> Your custom CSS will be preserved when updating the "\r
+"theme."\r
+msgstr ""\r
+"カスタムCSSを挿入します。設定されたCSSは、Mantra 標準CSS(Mantra 設定ページで"\r
+"設定したカスタムオプションを含む)より優先されます。<br /> カスタムCSSは、"\r
+"テーマを更新した場合でも保持されます。"\r
+\r
+#: admin/settings.php:1972\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software)."\r
+msgstr ""\r
+"カスタム Javascript コードを挿入します。(Google Analytcs やその他アクセス分"\r
+"析ソフトウェアなど)"\r
+\r
+#: admin/settings.php:1985\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Mantra のSEOを有効化します。最初から有効化されていますが、SEO プラグインを使"\r
+"用する場合に無効化することができます。"\r
+\r
+#: admin/settings.php:1997\r
+msgid "Auto"\r
+msgstr "自動"\r
+\r
+#: admin/settings.php:1997\r
+msgid "Manual"\r
+msgstr "手動"\r
+\r
+#: includes/theme-comments.php:28\r
+msgid "says:"\r
+msgstr "曰く:"\r
+\r
+#: includes/theme-comments.php:34\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "コメントは承認待ちです。"\r
+\r
+#: includes/theme-comments.php:41\r
+msgid "at"\r
+msgstr "at"\r
+\r
+#: includes/theme-comments.php:41 includes/theme-comments.php:58\r
+msgid "(Edit)"\r
+msgstr "(編集)"\r
+\r
+#: includes/theme-comments.php:58\r
+msgid "Pingback: "\r
+msgstr "ピンバック:"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "Leave a comment"\r
+msgstr "コメントをどうぞ"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b>件のコメント"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b>件のコメント"\r
+\r
+#: includes/theme-comments.php:107\r
+msgid "Older Comments"\r
+msgstr "古いコメント"\r
+\r
+#: includes/theme-comments.php:108\r
+msgid "Newer Comments"\r
+msgstr "新しいコメント"\r
+\r
+#: includes/theme-functions.php:233\r
+msgid "Home Page"\r
+msgstr "ホームページ"\r
+\r
+#: includes/theme-functions.php:297\r
+msgid "Powered by"\r
+msgstr "Powered by"\r
+\r
+#: includes/theme-loop.php:145\r
+msgid "By "\r
+msgstr "By "\r
+\r
+#: includes/theme-loop.php:185\r
+msgid " Bookmark the "\r
+msgstr " ブックマークする"\r
+\r
+#: includes/theme-loop.php:185 includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+msgid "Permalink to"\r
+msgstr "パーマリンク"\r
+\r
+#: includes/theme-loop.php:185 includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+msgid "permalink"\r
+msgstr "へのパーマリンク"\r
+\r
+#: includes/theme-loop.php:187 includes/theme-loop.php:189\r
+msgid "Bookmark the "\r
+msgstr "ブックマーク"\r
+\r
+#: includes/theme-loop.php:211\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> 古い投稿"\r
+\r
+#: includes/theme-loop.php:212\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "新しい投稿 <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "ページ %s"\r
+\r
+#: includes/theme-setup.php:90\r
+msgid "Primary Navigation"\r
+msgstr "プライマリーナビゲーション"\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Top Navigation"\r
+msgstr "トップナビゲーション"\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Footer Navigation"\r
+msgstr "フッタナビゲーション"\r
+\r
+#: includes/theme-setup.php:139\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:200\r
+msgid "Skip to content"\r
+msgstr "コンテンツへスキップ"\r
+\r
+#: includes/theme-setup.php:227\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "プライマリーウィジェットエリア - サイドバー 1"\r
+\r
+#: includes/theme-setup.php:229\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "プライマリーウィジェットエリア - サイドバー 1"\r
+\r
+#: includes/theme-setup.php:238\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "2nd ウィジェットエリア - サイドバー 1"\r
+\r
+#: includes/theme-setup.php:240\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "2nd ウィジェットエリア - サイドバー 1"\r
+\r
+#: includes/theme-setup.php:249\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "3rd ウィジェットエリア - サイドバー 2"\r
+\r
+#: includes/theme-setup.php:251\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "3rd ウィジェットエリア - サイドバー 2"\r
+\r
+#: includes/theme-setup.php:260\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "4th ウィジェットエリア - サイドバー 2"\r
+\r
+#: includes/theme-setup.php:262\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "4th ウィジェットエリア - サイドバー 2"\r
+\r
+#: includes/theme-setup.php:271\r
+msgid "First Footer Widget Area"\r
+msgstr "1st フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:273\r
+msgid "First footer widget area"\r
+msgstr "1st フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:282\r
+msgid "Second Footer Widget Area"\r
+msgstr "2nd フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:284\r
+msgid "Second footer widget area"\r
+msgstr "2nd フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:293\r
+msgid "Third Footer Widget Area"\r
+msgstr "3rd フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:295\r
+msgid "The third footer widget area"\r
+msgstr "3rd フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:304\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "4th フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:306\r
+msgid "The fourth footer widget area"\r
+msgstr "4th フッタウィジェットエリア"\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: mantra 197\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2013-01-30 17:12+0200\n"\r
+"PO-Revision-Date: 2013-06-14 15:07+0900\n"\r
+"Last-Translator: Yoshiki Osako <yosako.brainpro@gmail.com>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"\r
+"X-Poedit-Basepath: C:\\Users\\medicated\\Desktop\\mantra\n"\r
+"X-Generator: Poedit 1.5.5\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "見つかりません"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr "お探しのページは見つかりませんでした。"\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "日別アーカイブ: %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "月別アーカイブ: %s"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "年別アーカイブ: %s"\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "ブログアーカイブ"\r
+\r
+#: archive.php:57 author.php:74 category.php:50\r
+msgid "Nothing Found"\r
+msgstr "何も見つかりません"\r
+\r
+#: archive.php:61 author.php:78 category.php:54\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr "お探しのページは見つかりませんでした。"\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "%s へ戻る"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "By"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "発行"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "フルサイズ %s ピクセル"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "フルサイズイメージへリンク"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:49 content-gallery.php:65 content-image.php:42\r
+#: content-link.php:49 content-page.php:22 content-quote.php:46\r
+#: content-status.php:48 content.php:77\r
+msgid "Edit"\r
+msgstr "編集"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "続きを読む"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:38\r
+#: content-gallery.php:55 content-image.php:33 content-link.php:38\r
+#: content-page.php:21 content-quote.php:36 content-status.php:39\r
+#: content.php:49 content.php:66\r
+msgid "Pages:"\r
+msgstr "ページ:"\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "著者アーカイブ: %s"\r
+\r
+#: author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "%s について"\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "カテゴリアーカイブ: %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+"この投稿はパスワードで保護されています。コメントを表示するにはパスワードを入"\r
+"力してください。"\r
+\r
+#: content-aside.php:20\r
+msgid "Aside"\r
+msgstr "わき"\r
+\r
+#: content-aside.php:38 content-chat.php:37 content-gallery.php:33\r
+#: content-image.php:32 content-link.php:37 content-quote.php:35\r
+#: content-status.php:38\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "続きを読む <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:45 content-gallery.php:62\r
+#: content-image.php:39 content-link.php:45 content-quote.php:43\r
+#: content-status.php:46 content.php:75\r
+msgid "Tagged"\r
+msgstr "タグ付けされた"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "チャット"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "ギャラリー"\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr "画像"\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr "リンク"\r
+\r
+#: content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr "コメントは停止中です。"\r
+\r
+#: content-quote.php:18\r
+msgid "Quote"\r
+msgstr "引用"\r
+\r
+#: content-status.php:30\r
+msgid "Status"\r
+msgstr "ステータス"\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "%s の検索結果"\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "%s の検索結果がありません"\r
+\r
+#: searchform.php:1\r
+msgid "Search"\r
+msgstr "検索"\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr "すべての投稿を見る"\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "タグアーカイブ: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr ""\r
+"インポートファイルをアップロードする前に、以下のエラーを修正してください。"\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Mantra テーマオプションをインポート"\r
+\r
+#: admin/admin-functions.php:72\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"Mantra設定をインポートする場所です。<i> これはまだ試験中の機能です。</i>"\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "コンピュータからファイルを選択してください。"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "最大サイズ: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "そしてインポート!"\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Mantra テーマオプションをインポート"\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "オプションはインポートされました!"\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Mantra オプションページへ戻り、それらをチェックしてください!"\r
+\r
+#: admin/admin-functions.php:155 admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "小さな問題が見つかりました。"\r
+\r
+#: admin/admin-functions.php:156\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"アップロードされたファイルは、正当な Mantra オプションを含んでいません。"\r
+"Mantra オプションページからファイルがエクスポートされたことを確認してくださ"\r
+"い。"\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "アップロードされたファイルは読み込めません。"\r
+\r
+#: admin/admin-functions.php:168\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"アップロードされたファイルはサポートされていません。Mantra ページからテキスト"\r
+"ファイルとしてエクスポートされたことを確認してください。"\r
+\r
+#: admin/admin-functions.php:177\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"ファイルが空か、ファイルがありません。このエラーは、php.ini の設定で、アップ"\r
+"ロードが有効になっていないか、post_max_size の値が upload_max_filesize の値よ"\r
+"りも小さいことが原因かもしれません。"\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "ERROR: この機能を使用する権限がありません。"\r
+\r
+#: admin/main.php:93\r
+msgid "Layout Settings"\r
+msgstr "レイアウト設定"\r
+\r
+#: admin/main.php:94\r
+msgid "Presentation Page"\r
+msgstr "プレゼンテーションページ"\r
+\r
+#: admin/main.php:95\r
+msgid "Text Settings"\r
+msgstr "テキスト設定"\r
+\r
+#: admin/main.php:96\r
+msgid "Color Settings"\r
+msgstr "カラー設定"\r
+\r
+#: admin/main.php:97\r
+msgid "Graphics Settings"\r
+msgstr "グラフィックス設定"\r
+\r
+#: admin/main.php:98\r
+msgid "Post Information Settings"\r
+msgstr "投稿情報設定"\r
+\r
+#: admin/main.php:99\r
+msgid "Post Excerpt Settings"\r
+msgstr "投稿抜粋設定"\r
+\r
+#: admin/main.php:100\r
+msgid "Featured Image Settings"\r
+msgstr "お気に入り画像設定"\r
+\r
+#: admin/main.php:101\r
+msgid "Social Media Settings"\r
+msgstr "ソーシャルメディア設定"\r
+\r
+#: admin/main.php:102\r
+msgid "Miscellaneous Settings"\r
+msgstr "その他設定"\r
+\r
+#: admin/main.php:104\r
+msgid "Main Layout"\r
+msgstr "メインレイアウト"\r
+\r
+#: admin/main.php:105\r
+msgid "Content / Sidebar Width"\r
+msgstr "コンテンツ / サイドバーの幅"\r
+\r
+#: admin/main.php:106\r
+msgid "Header Image Height"\r
+msgstr "ヘッダー画像の高さ"\r
+\r
+#: admin/main.php:108\r
+msgid "Enable Presentation Page"\r
+msgstr "プレゼンテーションページの有効化"\r
+\r
+#: admin/main.php:109\r
+msgid "Slider Settings"\r
+msgstr "スライダー設定"\r
+\r
+#: admin/main.php:110\r
+msgid "Slides"\r
+msgstr "スライド"\r
+\r
+#: admin/main.php:111\r
+msgid "Presentation Page Columns"\r
+msgstr "プレゼンテーションページコラム"\r
+\r
+#: admin/main.php:112\r
+msgid "Extras"\r
+msgstr "エキストラ"\r
+\r
+#: admin/main.php:114\r
+msgid "General Font"\r
+msgstr "一般フォント"\r
+\r
+#: admin/main.php:115\r
+msgid "General Font Size"\r
+msgstr "一般フォントサイズ"\r
+\r
+#: admin/main.php:116\r
+msgid "Post Title Font "\r
+msgstr "投稿タイトルフォント"\r
+\r
+#: admin/main.php:117\r
+msgid "Post Title Font Size"\r
+msgstr "投稿タイトルフォントサイズ"\r
+\r
+#: admin/main.php:118\r
+msgid "Sidebar Font"\r
+msgstr "サイドバーフォント"\r
+\r
+#: admin/main.php:119\r
+msgid "SideBar Font Size"\r
+msgstr "サイドバーフォントサイズ"\r
+\r
+#: admin/main.php:120\r
+msgid "Sub-Headers Font"\r
+msgstr "サブヘッダフォント"\r
+\r
+#: admin/main.php:121\r
+msgid "Force Text Align"\r
+msgstr "強調テキスト整列"\r
+\r
+#: admin/main.php:122\r
+msgid "Paragraph indent"\r
+msgstr "段落インデント"\r
+\r
+#: admin/main.php:123\r
+msgid "Header indent"\r
+msgstr "ヘッダインデント"\r
+\r
+#: admin/main.php:124\r
+msgid "Line Height"\r
+msgstr "ラインの高さ"\r
+\r
+#: admin/main.php:125\r
+msgid "Word spacing"\r
+msgstr "単語間の幅"\r
+\r
+#: admin/main.php:126\r
+msgid "Letter spacing"\r
+msgstr "文字間の幅"\r
+\r
+#: admin/main.php:127\r
+msgid "Text shadow"\r
+msgstr "テキストシャドウ"\r
+\r
+#: admin/main.php:129\r
+msgid "Background Color"\r
+msgstr "背景色"\r
+\r
+#: admin/main.php:130\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "ヘッダ(バナー、メニュー)の背景色"\r
+\r
+#: admin/main.php:131\r
+msgid "Content Background Color"\r
+msgstr "コンテンツの背景色"\r
+\r
+#: admin/main.php:132\r
+msgid "Menu Background Color"\r
+msgstr "メニューの背景色"\r
+\r
+#: admin/main.php:133\r
+msgid "First Sidebar Background Color"\r
+msgstr "1st サイドバーの背景色"\r
+\r
+#: admin/main.php:134\r
+msgid "Second Sidebar Background Color"\r
+msgstr "2nd サイドバーの背景色"\r
+\r
+#: admin/main.php:136\r
+msgid "Site Title Color"\r
+msgstr "サイトタイトルカラー"\r
+\r
+#: admin/main.php:137\r
+msgid "Site Description Color"\r
+msgstr "サイトディスクリプションカラー"\r
+\r
+#: admin/main.php:139\r
+msgid "Content Text Color"\r
+msgstr "コンテンツテキストカラー"\r
+\r
+#: admin/main.php:140\r
+msgid "Links Color"\r
+msgstr "リンクカラー"\r
+\r
+#: admin/main.php:141\r
+msgid "Links Hover Color"\r
+msgstr "リンクホバーカラー"\r
+\r
+#: admin/main.php:142\r
+msgid "Post Title Color"\r
+msgstr "投稿タイトルカラー"\r
+\r
+#: admin/main.php:143\r
+msgid "Post Title Hover Color"\r
+msgstr "投稿タイトルホバーカラー"\r
+\r
+#: admin/main.php:144\r
+msgid "Sidebar Header Background Color"\r
+msgstr "サイドバーヘッダ背景色"\r
+\r
+#: admin/main.php:145\r
+msgid "Sidebar Header Text Color"\r
+msgstr "サイドバーヘッダテキストカラー"\r
+\r
+#: admin/main.php:146\r
+msgid "Footer Widget Background Color"\r
+msgstr "フッタウィジェット背景色"\r
+\r
+#: admin/main.php:147\r
+msgid "Footer Background Color"\r
+msgstr "フッタ背景色"\r
+\r
+#: admin/main.php:148\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "フッタウィジェットヘッダテキストカラー"\r
+\r
+#: admin/main.php:149\r
+msgid "Footer Widget Link Color"\r
+msgstr "フッタウィジェットリンクカラー"\r
+\r
+#: admin/main.php:150\r
+msgid "Footer Widget Hover Color"\r
+msgstr "フッタウィジェットホバーカラー"\r
+\r
+#: admin/main.php:152\r
+msgid "Caption Border"\r
+msgstr "キャプションボーダー"\r
+\r
+#: admin/main.php:153\r
+msgid "Post Images Border"\r
+msgstr "投稿画像ボーダー"\r
+\r
+#: admin/main.php:154\r
+msgid "Caption Pin"\r
+msgstr "キャプションピン"\r
+\r
+#: admin/main.php:155\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "サイドメニューブレット"\r
+\r
+#: admin/main.php:156\r
+msgid "Meta Area Background"\r
+msgstr "メタエリア背景"\r
+\r
+#: admin/main.php:157\r
+msgid "Post Separator"\r
+msgstr "投稿セパレータ"\r
+\r
+#: admin/main.php:158\r
+msgid "Content List Bullets"\r
+msgstr "コンテンツリストブレット"\r
+\r
+#: admin/main.php:159\r
+msgid "Title and Description"\r
+msgstr "タイトルと説明"\r
+\r
+#: admin/main.php:160\r
+msgid "Page Titles"\r
+msgstr "ページタイトル"\r
+\r
+#: admin/main.php:161\r
+msgid "Category Page Titles"\r
+msgstr "カテゴリページタイトル"\r
+\r
+#: admin/main.php:162\r
+msgid "Hide Tables"\r
+msgstr "テーブルを非表示にします"\r
+\r
+#: admin/main.php:163\r
+msgid "Back to Top button"\r
+msgstr "トップへ戻るボタン"\r
+\r
+#: admin/main.php:164\r
+msgid "Text Under Comments"\r
+msgstr "コメント下のテキスト"\r
+\r
+#: admin/main.php:165\r
+msgid "Comments are closed text"\r
+msgstr "コメント停止中テキスト"\r
+\r
+#: admin/main.php:166\r
+msgid "Comments off"\r
+msgstr "コメントオフ"\r
+\r
+#: admin/main.php:167\r
+msgid "Custom Footer Text"\r
+msgstr "カスタムフッタテキスト"\r
+\r
+#: admin/main.php:169\r
+msgid "Post Comments Link"\r
+msgstr "コメント投稿リンク"\r
+\r
+#: admin/main.php:170\r
+msgid "Post Date"\r
+msgstr "投稿日"\r
+\r
+#: admin/main.php:171\r
+msgid "Post Time"\r
+msgstr "投稿時刻"\r
+\r
+#: admin/main.php:172\r
+msgid "Post Author"\r
+msgstr "著者"\r
+\r
+#: admin/main.php:173\r
+msgid "Post Category"\r
+msgstr "投稿カテゴリ"\r
+\r
+#: admin/main.php:174\r
+msgid "Post Tags"\r
+msgstr "投稿タグ"\r
+\r
+#: admin/main.php:175\r
+msgid "Post Permalink"\r
+msgstr "投稿パーマリンク"\r
+\r
+#: admin/main.php:176\r
+msgid "All Post Metas"\r
+msgstr "すべての投稿メタ"\r
+\r
+#: admin/main.php:178\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "ホームページの投稿抜粋"\r
+\r
+#: admin/main.php:179\r
+msgid "Affect Sticky Posts"\r
+msgstr "メモ投稿へ影響"\r
+\r
+#: admin/main.php:180\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "アーカイブおよびカテゴリページの投稿抜粋"\r
+\r
+#: admin/main.php:181\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "投稿抜粋の単語数"\r
+\r
+#: admin/main.php:182\r
+msgid "Magazine Layout"\r
+msgstr "雑誌レイアウト"\r
+\r
+#: admin/main.php:183\r
+msgid "Excerpt suffix"\r
+msgstr "抜粋の接尾辞"\r
+\r
+#: admin/main.php:184\r
+msgid "Continue reading link text "\r
+msgstr "続きを読むリンクテキスト"\r
+\r
+#: admin/main.php:185\r
+msgid "HTML tags in Excerpts"\r
+msgstr "抜粋中のHTMLタグ"\r
+\r
+#: admin/main.php:187\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "投稿アイキャッチ画像としてのお気に入り画像"\r
+\r
+#: admin/main.php:188\r
+msgid "Auto Select Images From Posts "\r
+msgstr "投稿から自動的に画像を選択"\r
+\r
+#: admin/main.php:189\r
+msgid "Thumbnails Alignment "\r
+msgstr "アイキャッチ画像の整列"\r
+\r
+#: admin/main.php:190\r
+msgid "Thumbnails Size "\r
+msgstr "アイキャッチ画像サイズ"\r
+\r
+#: admin/main.php:191\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "ヘッダイメージとしてのお気に入り画像"\r
+\r
+#: admin/main.php:193\r
+msgid "Link nr. 1"\r
+msgstr "リンク nr. 1"\r
+\r
+#: admin/main.php:194\r
+msgid "Link nr. 2"\r
+msgstr "リンク nr. 2"\r
+\r
+#: admin/main.php:195\r
+msgid "Link nr. 3"\r
+msgstr "リンク nr. 3"\r
+\r
+#: admin/main.php:196\r
+msgid "Link nr. 4"\r
+msgstr "リンク nr. 4"\r
+\r
+#: admin/main.php:197\r
+msgid "Link nr. 5"\r
+msgstr "リンク nr. 5"\r
+\r
+#: admin/main.php:198\r
+msgid "Socials display"\r
+msgstr "ソーシャル表示"\r
+\r
+#: admin/main.php:200\r
+msgid "Make Site Header a Link"\r
+msgstr "サイトヘッダをリンクにします"\r
+\r
+#: admin/main.php:201\r
+msgid "Breadcrumbs"\r
+msgstr "パン屑リスト"\r
+\r
+#: admin/main.php:202\r
+msgid "Pagination"\r
+msgstr "ページ送り"\r
+\r
+#: admin/main.php:203\r
+msgid "Mobile view"\r
+msgstr "モバイルビュー"\r
+\r
+#: admin/main.php:204\r
+msgid "FavIcon"\r
+msgstr "FavIcon"\r
+\r
+#: admin/main.php:205\r
+msgid "Custom CSS"\r
+msgstr "カスタム CSS"\r
+\r
+#: admin/main.php:206\r
+msgid "Custom JavaScript"\r
+msgstr "カスタム JavaScript"\r
+\r
+#: admin/main.php:207\r
+msgid "SEO Settings"\r
+msgstr "SEO 設定"\r
+\r
+#: admin/main.php:224\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "このページにアクセスするパーミッションがありません。"\r
+\r
+#: admin/main.php:234\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Mantra 設定は更新されました。"\r
+\r
+#: admin/main.php:245\r
+msgid "Reset to Defaults"\r
+msgstr "既定値に戻す"\r
+\r
+#: admin/main.php:246\r
+msgid "Save Changes"\r
+msgstr "変更を保存"\r
+\r
+#: admin/main.php:260\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+"keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+"folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+"coffee. We love it! So if you want to help with the further development of "\r
+"the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Cryout Creations (Mantra テーマの開発者)では、常にMantra テーマの改善に努"\r
+"めています。今まで多くの不具合を直してきました; 多くのカスタマイズオプション"\r
+"を追加すると同時に、できるだけシンプルに保つよう努力してきました; そして...い"\r
+"つも皆さんのメールやコメントを読み、ノートを取り、将来のバージョンで実現する"\r
+"機能をリストアップしています。</p>\n"\r
+"\t\t\t<p><i>彼らはどうやっているの? どうやってテーマを良好に保ち続けているの?"\r
+"</i> と言うような疑問を持っているかもしれません。それは簡単なのでです。コー"\r
+"ヒーを飲んでいるだけです。それも熱いコーヒーを。私たちはそれが好きなのです! "\r
+"Mantra テーマの将来の開発に力を貸してください...</p>"\r
+\r
+#: admin/main.php:275\r
+msgid "Import/Export Settings"\r
+msgstr "インポート / エクスポート 設定"\r
+\r
+#: admin/main.php:281\r
+msgid "Export Theme options"\r
+msgstr "テーマオプションエクスポート"\r
+\r
+#: admin/main.php:282\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"簡単です。マウスをクリックしてMantra 設定をエクスポートし、PCに保存することが"\r
+"できます。"\r
+\r
+#: admin/main.php:287\r
+msgid "Import Theme options"\r
+msgstr "テーマオプションインポート"\r
+\r
+#: admin/main.php:288\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+"インポートがなければ、エクスポートもありません。エクスポートされたファイルが"\r
+"あることを確認してください。"\r
+\r
+#: admin/main.php:295\r
+msgid "Mantra Latest News"\r
+msgstr "Mantra 最新ニュース"\r
+\r
+#: admin/main.php:306\r
+msgid "No news items."\r
+msgstr "新しいアイテムはありません。"\r
+\r
+#: admin/main.php:320\r
+msgid "Mantra Help"\r
+msgstr "Mantra ヘルプ"\r
+\r
+#: admin/main.php:323\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "\r
+"version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+"expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "\r
+"your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+"Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Mantra か Wordpress のヘルプが必要ですか?</li>\n"\r
+"\t\t\t\t<li>- 新バージョンのテーマで何が変更されたか知りたいですか?</li>\n"\r
+"\t\t\t\t<li>- 不具合を見つけたり、思ったように動かないものを見つけましたか?</"\r
+"li>\n"\r
+"\t\t\t\t<li>- あなたのニーズに合うように Mantra テーマを改善するアイデアが浮"\r
+"かびましたか?</li>\n"\r
+"\t\t\t\t<li>- 設定を実行したいですか?</li>\n"\r
+"\t\t\t\t<li>- Mantra テーマの翻訳をしたいですか?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>そのような時は、Mantra サポートページを訪問してください。</p>\n"\r
+"\t"\r
+\r
+#: admin/main.php:334\r
+msgid "Mantra Support Page"\r
+msgstr "Mantra サポートページ"\r
+\r
+#: admin/settings.php:61\r
+msgid "One column (no sidebars)"\r
+msgstr "1 コラム、サイドバーなし"\r
+\r
+#: admin/settings.php:62\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "2 コラム、右サイドバー"\r
+\r
+#: admin/settings.php:63\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "2 コラム、左サイドバー"\r
+\r
+#: admin/settings.php:64\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "3 コラム、右サイドバー"\r
+\r
+#: admin/settings.php:65\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "3 コラム、左サイドバー"\r
+\r
+#: admin/settings.php:66\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "2 コラム、両側サイドバー"\r
+\r
+#: admin/settings.php:81\r
+msgid "Choose your layout "\r
+msgstr "レイアウトを選択"\r
+\r
+#: admin/settings.php:89\r
+msgid "Absolute"\r
+msgstr "絶対"\r
+\r
+#: admin/settings.php:89\r
+msgid "Relative"\r
+msgstr "相対"\r
+\r
+#: admin/settings.php:90\r
+msgid "Dimensions to use: "\r
+msgstr "使用する大きさ:"\r
+\r
+#: admin/settings.php:189 admin/settings.php:209\r
+msgid "Content ="\r
+msgstr "コンテンツ ="\r
+\r
+#: admin/settings.php:190 admin/settings.php:210\r
+msgid "Sidebar(s) ="\r
+msgstr "サイドバー ="\r
+\r
+#: admin/settings.php:191 admin/settings.php:211\r
+msgid "Total width ="\r
+msgstr "幅合計 ="\r
+\r
+#: admin/settings.php:200\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"<b>コンテンツ</b>と<b>サイドバー</b>の幅を選択してください。\n"\r
+" \t\tコンテンツは 500px 以上の幅、サイドバーは 220px 以上で800px 以下でなけれ"\r
+"ばなりません。<br />\n"\r
+"\tもし 3 コラムエリア(2サイドバー)を使用したい時は、それぞれの幅は選択した"\r
+"幅の半分です。"\r
+\r
+#: admin/settings.php:220\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"<b>コンテンツ</b>と<b>サイドバー</b>の幅を選択してください。\n"\r
+" \t\tユーザのブラウザに対して相対的な割合を選択することもできます。その場合は"\r
+"ブラウザの幅に対する % で設定します。<br />\n"\r
+"\t コンテンツは 40% 以上が必要で、サードバーは 20% 以上で 50% 以下でなければ"\r
+"なりません。<br />\n"\r
+"\tもし 3 コラムエリア(2サイドバー)を使用したい時は、それぞれの幅は選択した"\r
+"幅の半分です。"\r
+\r
+#: admin/settings.php:244\r
+msgid ""\r
+"Select the header's height. After saving the settings go and upload your new "\r
+"header image. The header's width will be = "\r
+msgstr ""\r
+"ヘッダの高さを指定してください。設定を保存した後で、新しいヘッダイメージを"\r
+"アップロードしてください。ヘッダの幅 ="\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1367 admin/settings.php:1429 admin/settings.php:1637\r
+#: admin/settings.php:1666 admin/settings.php:1689 admin/settings.php:1712\r
+#: admin/settings.php:1761 admin/settings.php:1890 admin/settings.php:1905\r
+#: admin/settings.php:1920 admin/settings.php:1935 admin/settings.php:1977\r
+msgid "Enable"\r
+msgstr "有効化"\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1367 admin/settings.php:1429 admin/settings.php:1637\r
+#: admin/settings.php:1666 admin/settings.php:1689 admin/settings.php:1712\r
+#: admin/settings.php:1761 admin/settings.php:1890 admin/settings.php:1905\r
+#: admin/settings.php:1920 admin/settings.php:1935 admin/settings.php:1977\r
+msgid "Disable"\r
+msgstr "無効化"\r
+\r
+#: admin/settings.php:265\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page. It "\r
+"has a slider and columns for presentation\n"\r
+"\t\ttext and images.<br>If you have this enabled but don't see a "\r
+"Presentation page then go to <a href='options-reading.php'> Settings » "\r
+"Reading </a> and make sure you have selected <strong>Front Page Displays</"\r
+"strong> as <Strong>Your Latest Posts</strong>."\r
+msgstr ""\r
+"プレゼンテーションフロントページを有効化します。これで、あなたの新しいホーム"\r
+"ページになります。ページには、プレゼンテーション\n"\r
+"\t\tテキストとイメージ付のプレゼンテーション用スライダーとコラムがあります。"\r
+"<br />有効化してもプレゼンテーションページが表示されない時は、<a "\r
+"href='options-reading.php'> 設定 » 読み込み</a>へ行き、<strong>あなたの"\r
+"最新の投稿</strong>が<strong>フロントページ表示</strong>に選択されているかど"\r
+"うかを確認してください。"\r
+\r
+#: admin/settings.php:275\r
+msgid "Slider Dimensions:"\r
+msgstr "スライダーの大きさ:"\r
+\r
+#: admin/settings.php:276\r
+msgid "width"\r
+msgstr "幅"\r
+\r
+#: admin/settings.php:277\r
+msgid "height"\r
+msgstr "高さ"\r
+\r
+#: admin/settings.php:278\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr "スライダーの大きさは、イメージと同じサイズです。"\r
+\r
+#: admin/settings.php:280\r
+msgid "Animation:"\r
+msgstr "アニメーション:"\r
+\r
+#: admin/settings.php:282\r
+msgid "Random"\r
+msgstr "ランダム"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fold"\r
+msgstr "折りたたみ"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fade"\r
+msgstr "フェード"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInRight"\r
+msgstr "右からスライドイン"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInLeft"\r
+msgstr "左からスライドイン"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDown"\r
+msgstr "スライドダウン"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDownLeft"\r
+msgstr "左からスライドダウン"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUp"\r
+msgstr "スライドアップ"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpLeft"\r
+msgstr "左へスライドアップ"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDown"\r
+msgstr "上下へスライス"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDownLeft"\r
+msgstr "左から上下へスライス"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRandom"\r
+msgstr "ボックスランダム"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRain"\r
+msgstr "ボックスレイン"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainReverse"\r
+msgstr "逆ボックスレイン"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrow"\r
+msgstr "ボックスレイングロウ"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrowReverse"\r
+msgstr "逆ボックスレイングロウ"\r
+\r
+#: admin/settings.php:290\r
+msgid "The transition effect your slider will have."\r
+msgstr "スライドのトランジション効果です。"\r
+\r
+#: admin/settings.php:292\r
+msgid "Border Settings:"\r
+msgstr "ボーダー設定:"\r
+\r
+#: admin/settings.php:293\r
+msgid "Width"\r
+msgstr "幅"\r
+\r
+#: admin/settings.php:294\r
+msgid "Color"\r
+msgstr "カラー"\r
+\r
+#: admin/settings.php:296\r
+msgid "The width and color of the slider's border."\r
+msgstr "スライダーボーダーの幅とカラー"\r
+\r
+#: admin/settings.php:298\r
+msgid "Animation Time:"\r
+msgstr "アニメーション時間:"\r
+\r
+#: admin/settings.php:299 admin/settings.php:303\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "ミリセカンド(1000ms = 1 秒)"\r
+\r
+#: admin/settings.php:300\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "トランジションアニメーションを継続する時間"\r
+\r
+#: admin/settings.php:302\r
+msgid "Pause Time:"\r
+msgstr "ポーズ時間:"\r
+\r
+#: admin/settings.php:304\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "スライドが静止し表示される時間。"\r
+\r
+#: admin/settings.php:307\r
+msgid "Slider navigation:"\r
+msgstr "スライダーナビゲーション:"\r
+\r
+#: admin/settings.php:309\r
+msgid "Numbers"\r
+msgstr "数"\r
+\r
+#: admin/settings.php:309\r
+msgid "Bullets"\r
+msgstr "ブレット"\r
+\r
+#: admin/settings.php:309 admin/settings.php:1273\r
+msgid "None"\r
+msgstr "なし"\r
+\r
+#: admin/settings.php:317\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "スライダーのナビゲーションタイプ。スライダーの下に表示されます。"\r
+\r
+#: admin/settings.php:319\r
+msgid "Slider arrows:"\r
+msgstr "スライダーの矢印:"\r
+\r
+#: admin/settings.php:321\r
+msgid "Always Visible"\r
+msgstr "常に表示"\r
+\r
+#: admin/settings.php:321\r
+msgid "Visible on Hover"\r
+msgstr "ホバー時に表示"\r
+\r
+#: admin/settings.php:321\r
+msgid "Hidden"\r
+msgstr "非表示"\r
+\r
+#: admin/settings.php:329\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "スライダーに右および左矢印"\r
+\r
+#: admin/settings.php:370 admin/settings.php:438\r
+msgid "Select Category"\r
+msgstr "カテゴリ選択"\r
+\r
+#: admin/settings.php:397\r
+msgid "Custom Slides"\r
+msgstr "カスタムスライド"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts"\r
+msgstr "最新の投稿"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts"\r
+msgstr "ランダム投稿"\r
+\r
+#: admin/settings.php:397\r
+msgid "Sticky Posts"\r
+msgstr "メモ投稿"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts from Category"\r
+msgstr "カテゴリからの最新の投稿"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts from Category"\r
+msgstr "カテゴリからのランダム投稿"\r
+\r
+#: admin/settings.php:397\r
+msgid "Specific Posts"\r
+msgstr "特定の投稿"\r
+\r
+#: admin/settings.php:410\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "最新の投稿がスライダーに表示されます。"\r
+\r
+#: admin/settings.php:414\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "ランダム投稿がスライダーに表示されます。"\r
+\r
+#: admin/settings.php:418\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "カテゴリからの最新の投稿がスライダーに表示されます。"\r
+\r
+#: admin/settings.php:423\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr "カテゴリからのランダム投稿がスライダーに表示されます。"\r
+\r
+#: admin/settings.php:427\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "メモ投稿だけがスライダーに表示されます。"\r
+\r
+#: admin/settings.php:431\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr "表示したい投稿IDリスト(コンマで区切る)"\r
+\r
+#: admin/settings.php:436\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br /> カテゴリ選択:"\r
+\r
+#: admin/settings.php:453\r
+msgid "Number of posts to show:"\r
+msgstr "表示する投稿数:"\r
+\r
+#: admin/settings.php:460\r
+msgid "Slide 1"\r
+msgstr "スライド 1"\r
+\r
+#: admin/settings.php:464 admin/settings.php:479 admin/settings.php:494\r
+#: admin/settings.php:509 admin/settings.php:524 admin/settings.php:567\r
+#: admin/settings.php:582 admin/settings.php:597 admin/settings.php:612\r
+msgid "Upload or select image from gallery"\r
+msgstr "アップロード、あるいは、ギャラリーから画像選択"\r
+\r
+#: admin/settings.php:465 admin/settings.php:480 admin/settings.php:495\r
+#: admin/settings.php:510 admin/settings.php:525 admin/settings.php:568\r
+#: admin/settings.php:583 admin/settings.php:613\r
+msgid "Title"\r
+msgstr "タイトル"\r
+\r
+#: admin/settings.php:467 admin/settings.php:482 admin/settings.php:497\r
+#: admin/settings.php:512 admin/settings.php:527 admin/settings.php:570\r
+#: admin/settings.php:585 admin/settings.php:600 admin/settings.php:615\r
+msgid "Text"\r
+msgstr "テキスト"\r
+\r
+#: admin/settings.php:475\r
+msgid "Slide 2"\r
+msgstr "スライド 2"\r
+\r
+#: admin/settings.php:490\r
+msgid "Slide 3"\r
+msgstr "スライド 3"\r
+\r
+#: admin/settings.php:505\r
+msgid "Slide 4"\r
+msgstr "スライド 4"\r
+\r
+#: admin/settings.php:520\r
+msgid "Slide 5"\r
+msgstr "スライド 5"\r
+\r
+#: admin/settings.php:533\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"スライドのコンテンツ。画像が必須です。他の項目はオプションです。画像が選択さ"\r
+"れているスライドだけがスライダーに表示されます。"\r
+\r
+#: admin/settings.php:543\r
+msgid "Number of columns:"\r
+msgstr "コラム数:"\r
+\r
+#: admin/settings.php:553\r
+msgid "Image Height:"\r
+msgstr "画像の高さ:"\r
+\r
+#: admin/settings.php:556\r
+msgid "Read more text:"\r
+msgstr "続きを読むテキスト:"\r
+\r
+#: admin/settings.php:559\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr "コラムの下部に表示されるリンクテキスト。削除することもできます。"\r
+\r
+#: admin/settings.php:563\r
+msgid "1st Column"\r
+msgstr "1st コラム"\r
+\r
+#: admin/settings.php:578\r
+msgid "2nd Column"\r
+msgstr "2nd コラム"\r
+\r
+#: admin/settings.php:593\r
+msgid "3rd Column"\r
+msgstr "3rd コラム"\r
+\r
+#: admin/settings.php:608\r
+msgid "4th Column"\r
+msgstr "4th コラム"\r
+\r
+#: admin/settings.php:630\r
+msgid "Extra Text"\r
+msgstr "拡張テキスト"\r
+\r
+#: admin/settings.php:630\r
+msgid "Top Title"\r
+msgstr "トップタイトル"\r
+\r
+#: admin/settings.php:632\r
+msgid "Second Title"\r
+msgstr "セカンドタイトル"\r
+\r
+#: admin/settings.php:635\r
+msgid "Title color"\r
+msgstr "タイトルカラー"\r
+\r
+#: admin/settings.php:638\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "タイトルカラー (既定値 333333)。"\r
+\r
+#: admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr "ボトムテキスト 1"\r
+\r
+#: admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr "ボトムテキスト 2"\r
+\r
+#: admin/settings.php:645\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"フロントページのテキスト。トップタイトルはスライダー上部、セカンドタイトルは"\r
+"スライダーとコラムの間、そして、コラム下部の2行のテキスト。\n"\r
+"\t\tすべてオプションですので、入力しなくても良いです。 "\r
+\r
+#: admin/settings.php:651\r
+msgid "Hide areas"\r
+msgstr "エリアを非表示にします"\r
+\r
+#: admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "ヘッダエリア(画像や背景色)を非表示にします。"\r
+\r
+#: admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "メインメニュー(トップナビゲーションタブ)を非表示にします。"\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr "フッタウィジェットを非表示にします。"\r
+\r
+#: admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "フッタ(コピーライトエリア)を非表示にします。"\r
+\r
+#: admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "白色を非表示にします。背景色のみが残ります。"\r
+\r
+#: admin/settings.php:684\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "最初のページの非表示エリアを選択してください。"\r
+\r
+#: admin/settings.php:703\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"ブログで使用するフォントサイズを選択してください。ページ、投稿、そして、コメ"\r
+"ントに適用されます。ボタン、ヘッダ、サイドメニューは変更しません。"\r
+\r
+#: admin/settings.php:747\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"ブログで使用するフォントファミリーを選択してください。すべてのコンテンツテキ"\r
+"ストに適用されます。ボタン、メニューも含まれます。"\r
+\r
+#: admin/settings.php:748 admin/settings.php:797 admin/settings.php:848\r
+#: admin/settings.php:899\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"あるいは、Googleフォントを下に挿入してください。フォントの<strong>名前</"\r
+"strong>だけを挿入してください。<br />例: Marko One。<a href='http://www."\r
+"google.com/webfonts' >Googleフォント</a>を参照してください。"\r
+\r
+#: admin/settings.php:795\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"タイトルに使用するフォントファミリーを選択してください。投稿と固定ページのタ"\r
+"イトルに適用されます。「既定値」のままにすると、一般フォントが適用されます。"\r
+\r
+#: admin/settings.php:846\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"サイドバーに使用するフォントファミリーを選択してください。ウィジェットを含み"\r
+"サイドバーのテキストに適用されます。「既定値」のままにすると、一般フォントが"\r
+"適用されます。"\r
+\r
+#: admin/settings.php:897\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"サブヘッダ(h2 - h6間でのタグ)に使用するフォントファミリーを選択してくださ"\r
+"い。「既定値」のままにすると、一般フォントが適用されます。"\r
+\r
+#: admin/settings.php:909 admin/settings.php:924 admin/settings.php:939\r
+#: admin/settings.php:984 admin/settings.php:999 admin/settings.php:1014\r
+msgid "Default"\r
+msgstr "既定値"\r
+\r
+#: admin/settings.php:917\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"投稿ヘッダフォントサイズ。「既定値」のままにすると、一般設定が適用されます"\r
+"(サイズ値はCSSで設定されます)。"\r
+\r
+#: admin/settings.php:932\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"サイドバーフォントサイズ。「既定値」のままにすると、一般設定が適用されます"\r
+"(サイズ値はCSSで設定されます)。"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Left"\r
+msgstr "左"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Right"\r
+msgstr "右"\r
+\r
+#: admin/settings.php:939\r
+msgid "Justify"\r
+msgstr "両端揃え"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Center"\r
+msgstr "中央"\r
+\r
+#: admin/settings.php:947\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"これは投稿とページのテキスト整列を変更します。「既定値」のままにすると、一般"\r
+"設定が適用されます(テキスト整列は投稿やコメントで設定されたものが使用されま"\r
+"す)。"\r
+\r
+#: admin/settings.php:961\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "段落のインデントを選択してください。"\r
+\r
+#: admin/settings.php:977\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "既定のヘッダとタイトルインデント(左マージン)を無効にします。"\r
+\r
+#: admin/settings.php:992\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"テキストの行の高さ。テキストの行間の高さ。「既定値」のままにすると、一般設定"\r
+"が適用されます(CSSで設定された値が使用されます)。"\r
+\r
+#: admin/settings.php:1007\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"<i>単語</i>間のスペース。「既定値」のままにすると、一般設定が適用されます"\r
+"(CSSで設定された値が使用されます)。"\r
+\r
+#: admin/settings.php:1022\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"<i>文字</i>間のスペース。「既定値」のままにすると、一般設定が適用されます"\r
+"(CSSで設定された値が使用されます)。"\r
+\r
+#: admin/settings.php:1039\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "ヘッダとタイトルのテキストシャドウを無効にします。"\r
+\r
+#: admin/settings.php:1051\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "背景色(既定値 444444)。"\r
+\r
+#: admin/settings.php:1059\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr "ヘッダ背景色(既定値 333333)。ブランクにすると背景色を無くします。"\r
+\r
+#: admin/settings.php:1066\r
+msgid ""\r
+"Content background color (Default value is FFFFFF). Works best with really "\r
+"light colors."\r
+msgstr "コンテンツ背景色(既定値 FFFFFF)。明るい色を設定した方が良いです。"\r
+\r
+#: admin/settings.php:1073\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"メインメニュー背景色(既定値 FAFAFA)。コンテンツの背景色と同色か明るい色が良"\r
+"いでしょう。"\r
+\r
+#: admin/settings.php:1080 admin/settings.php:1087\r
+msgid "First sidebar background color (Default value is FFFFFF)."\r
+msgstr "1st サイドバーの背景色(既定値 FFFFFF)。"\r
+\r
+#: admin/settings.php:1095\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "フッタウィジェットエリア背景色(既定値 171717)。"\r
+\r
+#: admin/settings.php:1103\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "フッタ背景色(既定値 222222)。"\r
+\r
+#: admin/settings.php:1111\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "ブログタイトルカラー(既定値 0D85CC)。"\r
+\r
+#: admin/settings.php:1119\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "ブログのデスクリプションカラー(既定値 222222)。"\r
+\r
+#: admin/settings.php:1127\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "コンテンツテキストカラー(既定値 333333)。"\r
+\r
+#: admin/settings.php:1135\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "リンクカラー(既定値 0D85CC)。"\r
+\r
+#: admin/settings.php:1143\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "マウスオーバー時リンクのカラー(既定値 333333)。"\r
+\r
+#: admin/settings.php:1151\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "投稿ヘッダテキストカラー(既定値 333333)。"\r
+\r
+#: admin/settings.php:1159\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr "マウスオーバー時の投稿ヘッダテキストカラー(既定値 000000)。"\r
+\r
+#: admin/settings.php:1167\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "サイドバーヘッダ背景色(既定値 444444)。"\r
+\r
+#: admin/settings.php:1176\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "サイドバーヘッダテキストカラー(既定値 2EA5FD)。"\r
+\r
+#: admin/settings.php:1184\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "フッタウィジェットテキストカラー(既定値 0D85CC)。"\r
+\r
+#: admin/settings.php:1192\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "フッタウィジェットリンクカラー(既定値 666666)。"\r
+\r
+#: admin/settings.php:1200\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr "マウスオーバー時のフッタウィジェットリンクカラー(既定値 888888)。"\r
+\r
+#: admin/settings.php:1212 admin/settings.php:1273\r
+msgid "White"\r
+msgstr "ホワイト"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Light"\r
+msgstr "淡色"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Light Gray"\r
+msgstr "淡いグレー"\r
+\r
+#: admin/settings.php:1212 admin/settings.php:1273\r
+msgid "Gray"\r
+msgstr "グレー"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Dark Gray"\r
+msgstr "暗いグレー"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Black"\r
+msgstr "ブラック"\r
+\r
+#: admin/settings.php:1220\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"この設定は、キャプションの見栄えを変更します。キャプションがない画像には影響"\r
+"しません。"\r
+\r
+#: admin/settings.php:1236\r
+msgid "The border around your inserted images. "\r
+msgstr "挿入した画像のボーダー。"\r
+\r
+#: admin/settings.php:1251\r
+msgid "The image on top of your captions. "\r
+msgstr "画像上部のキャプション。"\r
+\r
+#: admin/settings.php:1266\r
+msgid "The sidebar list bullets. "\r
+msgstr "サイドバーのリストブレット。"\r
+\r
+#: admin/settings.php:1281\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default.<"\r
+msgstr "投稿メタエリア(投稿タイトルの下)背景色。既定値はグレー。<"\r
+\r
+#: admin/settings.php:1289 admin/settings.php:1305 admin/settings.php:1322\r
+#: admin/settings.php:1337 admin/settings.php:1352 admin/settings.php:1382\r
+#: admin/settings.php:1397 admin/settings.php:1413 admin/settings.php:1456\r
+#: admin/settings.php:1471 admin/settings.php:1486 admin/settings.php:1501\r
+#: admin/settings.php:1516 admin/settings.php:1531 admin/settings.php:1546\r
+#: admin/settings.php:1561\r
+msgid "Show"\r
+msgstr "表示"\r
+\r
+#: admin/settings.php:1289 admin/settings.php:1305 admin/settings.php:1322\r
+#: admin/settings.php:1337 admin/settings.php:1352 admin/settings.php:1382\r
+#: admin/settings.php:1413 admin/settings.php:1456 admin/settings.php:1471\r
+#: admin/settings.php:1486 admin/settings.php:1501 admin/settings.php:1516\r
+#: admin/settings.php:1531 admin/settings.php:1546 admin/settings.php:1561\r
+msgid "Hide"\r
+msgstr "非表示"\r
+\r
+#: admin/settings.php:1297\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "投稿を分ける水平ルーラーを表示、非表示します。"\r
+\r
+#: admin/settings.php:1313\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"コンテンツエリア(投稿、ページなど)のリストブレットを表示、非表示します。"\r
+\r
+#: admin/settings.php:1330\r
+msgid ""\r
+"Hide or show your blog's Title and Description in the header (recommended if "\r
+"you have a custom header image with text)."\r
+msgstr ""\r
+"ヘッダ内のブログタイトルと説明(カスタムヘッダ画像を使用する場合、テキスト付"\r
+"の画像を推奨)を表示、非表示します。"\r
+\r
+#: admin/settings.php:1345\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "<i>作成された</i>ページのページタイトルを表示、非表示します。"\r
+\r
+#: admin/settings.php:1360\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "<i>カテゴリ</i>ページのページタイトルを表示、非表示します。"\r
+\r
+#: admin/settings.php:1375\r
+msgid "Hide table borders and background color."\r
+msgstr "テーブルボーダーと背景色を非表示にします。"\r
+\r
+#: admin/settings.php:1390\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"コメントフォーム下部の説明テキストを非表示にします。(<i>次のHTML タグと属性"\r
+"が使えます:...</i>で始まるテキスト)"\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide in posts"\r
+msgstr "投稿内を非表示にします。"\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide in pages"\r
+msgstr "ページ内を非表示にします。"\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide everywhere"\r
+msgstr "どこでも非表示にします。"\r
+\r
+#: admin/settings.php:1405\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"コメントを受け取らない設定をしている時に既定値として設定されているテキスト "\r
+"<b>コメントは停止中です</b> を非表示にします。"\r
+\r
+#: admin/settings.php:1421\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+"コメントを受け取らない投稿に表示されるテキスト <b>コメントオフ</b> を非表示に"\r
+"します。"\r
+\r
+#: admin/settings.php:1437\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"トップに戻るボタンを有効化します。ボタンはページをしたにスクロールすると表示"\r
+"されます。"\r
+\r
+#: admin/settings.php:1444\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"フッタの最後に表示されるカスタムテキストや HTML コードを挿入します。<br />リ"\r
+"ンク、画像、©などの特殊文字を含んだHTMLを使用することができます。"\r
+\r
+#: admin/settings.php:1464\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"投稿や抜粋の後に表示される<strong>コメントをどうぞ</strong>や<strong>x 件のコ"\r
+"メント</strong>を表示、非表示にします。"\r
+\r
+#: admin/settings.php:1479\r
+msgid "Hide or show the post date."\r
+msgstr "投稿日を表示、非表示にします。"\r
+\r
+#: admin/settings.php:1494\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"投稿時間付の投稿日を表示します。投稿時間は、投稿日が非表示の場合、表示されま"\r
+"せん。"\r
+\r
+#: admin/settings.php:1509\r
+msgid "Hide or show the post author."\r
+msgstr "著者を表示、非表示にします。"\r
+\r
+#: admin/settings.php:1524\r
+msgid "Hide the post category."\r
+msgstr "投稿カテゴリを非表示にします。"\r
+\r
+#: admin/settings.php:1539\r
+msgid "Hide the post tags."\r
+msgstr "投稿タグを非表示にします。"\r
+\r
+#: admin/settings.php:1554\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "'ブックマークパーマリンク'を非表示にします。"\r
+\r
+#: admin/settings.php:1569\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+"すべての投稿メタを非表示にします。すべてのメタ情報、メタエリアが非表示になり"\r
+"ます。"\r
+\r
+#: admin/settings.php:1582 admin/settings.php:1597 admin/settings.php:1613\r
+msgid "Excerpt"\r
+msgstr "抜粋"\r
+\r
+#: admin/settings.php:1582 admin/settings.php:1597 admin/settings.php:1613\r
+msgid "Full Post"\r
+msgstr "投稿全文"\r
+\r
+#: admin/settings.php:1590\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"メインページに表示される抜粋。標準投稿に適用されます。その他の投稿フォーマッ"\r
+"ト(アサイド、イメージ、チャット、引用など)は、それぞれ独自のフォーマットを"\r
+"持っています。"\r
+\r
+#: admin/settings.php:1605\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"ホームページのメモ投稿を全文表示するか、抜粋表示するかを選択してください。"\r
+\r
+#: admin/settings.php:1621\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"アーカイブ、カテゴリ、検索ページに表示される抜粋。上記と同様に、標準投稿に適"\r
+"用されます。"\r
+\r
+#: admin/settings.php:1629\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"抜粋に表示する単語数。上限に達すると全文ページにリンクする<i>続きを読む</i>リ"\r
+"ンクが表示されます。"\r
+\r
+#: admin/settings.php:1645\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"雑誌レイアウトを有効化します。このレイアウトは、投稿のある固定ページで、2段組"\r
+"で表示されます。"\r
+\r
+#: admin/settings.php:1652\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr "3ドット([...])を置換します。抜粋に自動的に追加されます。"\r
+\r
+#: admin/settings.php:1659\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "抜粋に追加される'続きを読む'リンクを編集します。"\r
+\r
+#: admin/settings.php:1674\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr "WordPressはデフォルトですべてのHTMLタグを取り除きます ("\r
+\r
+#: admin/settings.php:1705\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"投稿にアイキャッチ画像としてお気に入り画像を表示します。画像はお気に入りイ"\r
+"メージセクションで、投稿毎に選択しなければなりません。"\r
+\r
+#: admin/settings.php:1720\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"投稿に挿入されたイメージで最初の画像をアイキャッチ画像として表示します。"\r
+\r
+#: admin/settings.php:1736\r
+msgid "Thumbnail alignment."\r
+msgstr "アイキャッチ画像の整列"\r
+\r
+#: admin/settings.php:1753\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"アイキャッチ画像のサイズ(ピクセル単位)。デフォルトでは、画像のアスペクト比"\r
+"で調整されます。特定のサイズが必要な場合は、画像を切り取るなどしてください。"\r
+\r
+#: admin/settings.php:1769\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"ヘッダーにお気に入り画像を表示します。投稿のお気に入りイメージを選択し、\n"\r
+"\t\t\t\t\t\t\tその画像が現在のヘッダサイズと同等か大きい場合にヘッダがお気に"\r
+"入り画像に置き換わります。"\r
+\r
+#: admin/settings.php:1790\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"左のドロップダウンメニューからソーシャルネットワークを選択し、右の入力欄にそ"\r
+"のアドレスを挿入してください。(例: <i>http://www.facebook.com/yourname</i>)"\r
+\r
+#: admin/settings.php:1804\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "ソーシャルネットワークを最大5つ挿入することができます。"\r
+\r
+#: admin/settings.php:1818\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "全部で27のソーシャルネットワークから選択できます。"\r
+\r
+#: admin/settings.php:1832\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "入力欄はいくつでも空のままにしておいてもかまいません。"\r
+\r
+#: admin/settings.php:1846\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "同じソーシャルメディアを何度でも選択することができます。"\r
+\r
+#: admin/settings.php:1877\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr ""\r
+"ソーシャルネットワークアイコンを表示する<b>エリア</b>を選択してください。"\r
+\r
+#: admin/settings.php:1898\r
+msgid ""\r
+"Make the site header into a clickable link that links to your index page."\r
+msgstr ""\r
+"サイトヘッダをクリックしてインデックスページへリンクするように設定します。"\r
+\r
+#: admin/settings.php:1913\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"コンテンツエリアの最上部にパン屑リストを表示します。パン屑リストはサイト内で"\r
+"どこにいるかを示すナビゲーションです。"\r
+\r
+#: admin/settings.php:1928\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"ページネーションを表示します。2ページ以上存在する時は、ページ最下部の<b>古い"\r
+"投稿</b>と<b>新しい投稿</b>リンクがページを選択できるリンクに置き換わります。"\r
+\r
+#: admin/settings.php:1943\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in. "\r
+msgstr ""\r
+"モバイルビューを有効化し、Mantraをレスポンシブにします。レイアウトとブログの"\r
+"見え方は、デバイスの解像度によって変わります。"\r
+\r
+#: admin/settings.php:1953\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "アップロードするか、ギャラリーからfaviconを選択します。"\r
+\r
+#: admin/settings.php:1957\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+"制限: イメージが無ければなりません。イメージの大きさは、最大64 x 64 です。"\r
+"ファイルの形式は .ico と .png を推奨します。"\r
+\r
+#: admin/settings.php:1965\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br /> Your custom CSS will be preserved when updating the "\r
+"theme."\r
+msgstr ""\r
+"カスタムCSSを挿入します。設定されたCSSは、Mantra 標準CSS(Mantra 設定ページで"\r
+"設定したカスタムオプションを含む)より優先されます。<br /> カスタムCSSは、"\r
+"テーマを更新した場合でも保持されます。"\r
+\r
+#: admin/settings.php:1972\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software)."\r
+msgstr ""\r
+"カスタム Javascript コードを挿入します。(Google Analytcs やその他アクセス分"\r
+"析ソフトウェアなど)"\r
+\r
+#: admin/settings.php:1985\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Mantra のSEOを有効化します。最初から有効化されていますが、SEO プラグインを使"\r
+"用する場合に無効化することができます。"\r
+\r
+#: admin/settings.php:1997\r
+msgid "Auto"\r
+msgstr "自動"\r
+\r
+#: admin/settings.php:1997\r
+msgid "Manual"\r
+msgstr "手動"\r
+\r
+#: includes/theme-comments.php:28\r
+msgid "says:"\r
+msgstr "曰く:"\r
+\r
+#: includes/theme-comments.php:34\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "コメントは承認待ちです。"\r
+\r
+#: includes/theme-comments.php:41\r
+msgid "at"\r
+msgstr "at"\r
+\r
+#: includes/theme-comments.php:41 includes/theme-comments.php:58\r
+msgid "(Edit)"\r
+msgstr "(編集)"\r
+\r
+#: includes/theme-comments.php:58\r
+msgid "Pingback: "\r
+msgstr "ピンバック:"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "Leave a comment"\r
+msgstr "コメントをどうぞ"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b>件のコメント"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b>件のコメント"\r
+\r
+#: includes/theme-comments.php:107\r
+msgid "Older Comments"\r
+msgstr "古いコメント"\r
+\r
+#: includes/theme-comments.php:108\r
+msgid "Newer Comments"\r
+msgstr "新しいコメント"\r
+\r
+#: includes/theme-functions.php:233\r
+msgid "Home Page"\r
+msgstr "ホームページ"\r
+\r
+#: includes/theme-functions.php:297\r
+msgid "Powered by"\r
+msgstr "Powered by"\r
+\r
+#: includes/theme-loop.php:145\r
+msgid "By "\r
+msgstr "By "\r
+\r
+#: includes/theme-loop.php:185\r
+msgid " Bookmark the "\r
+msgstr " ブックマークする"\r
+\r
+#: includes/theme-loop.php:185 includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+msgid "Permalink to"\r
+msgstr "パーマリンク"\r
+\r
+#: includes/theme-loop.php:185 includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+msgid "permalink"\r
+msgstr "へのパーマリンク"\r
+\r
+#: includes/theme-loop.php:187 includes/theme-loop.php:189\r
+msgid "Bookmark the "\r
+msgstr "ブックマーク"\r
+\r
+#: includes/theme-loop.php:211\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> 古い投稿"\r
+\r
+#: includes/theme-loop.php:212\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "新しい投稿 <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "ページ %s"\r
+\r
+#: includes/theme-setup.php:90\r
+msgid "Primary Navigation"\r
+msgstr "プライマリーナビゲーション"\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Top Navigation"\r
+msgstr "トップナビゲーション"\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Footer Navigation"\r
+msgstr "フッタナビゲーション"\r
+\r
+#: includes/theme-setup.php:139\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:200\r
+msgid "Skip to content"\r
+msgstr "コンテンツへスキップ"\r
+\r
+#: includes/theme-setup.php:227\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "プライマリーウィジェットエリア - サイドバー 1"\r
+\r
+#: includes/theme-setup.php:229\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "プライマリーウィジェットエリア - サイドバー 1"\r
+\r
+#: includes/theme-setup.php:238\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "2nd ウィジェットエリア - サイドバー 1"\r
+\r
+#: includes/theme-setup.php:240\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "2nd ウィジェットエリア - サイドバー 1"\r
+\r
+#: includes/theme-setup.php:249\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "3rd ウィジェットエリア - サイドバー 2"\r
+\r
+#: includes/theme-setup.php:251\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "3rd ウィジェットエリア - サイドバー 2"\r
+\r
+#: includes/theme-setup.php:260\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "4th ウィジェットエリア - サイドバー 2"\r
+\r
+#: includes/theme-setup.php:262\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "4th ウィジェットエリア - サイドバー 2"\r
+\r
+#: includes/theme-setup.php:271\r
+msgid "First Footer Widget Area"\r
+msgstr "1st フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:273\r
+msgid "First footer widget area"\r
+msgstr "1st フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:282\r
+msgid "Second Footer Widget Area"\r
+msgstr "2nd フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:284\r
+msgid "Second footer widget area"\r
+msgstr "2nd フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:293\r
+msgid "Third Footer Widget Area"\r
+msgstr "3rd フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:295\r
+msgid "The third footer widget area"\r
+msgstr "3rd フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:304\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "4th フッタウィジェットエリア"\r
+\r
+#: includes/theme-setup.php:306\r
+msgid "The fourth footer widget area"\r
+msgstr "4th フッタウィジェットエリア"\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra International\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-06-12 12:46+0200\n"\r
+"PO-Revision-Date: 2012-09-10 16:54+0100\n"\r
+"Last-Translator: kandasa <kandasa@gmail.com>\n"\r
+"Language-Team: Norwegian front-end by kandasa <kandasa@gmail.com>\n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=utf-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"Language: \n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;_x;_ex;_nx;esc_attr__;esc_attr_e;_n_noop;_nx_noop\n"\r
+"X-Poedit-Basepath: ..\n"\r
+"Plural-Forms: nplurals=2;plural=n>1\n"\r
+"X-Poedit-Language: Norwegian Bokmal\n"\r
+"X-Poedit-Country: NORWAY\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "Ikke funnet"\r
+\r
+#: 404.php:19\r
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."\r
+msgstr "Beklager, men siden du prøvde å åpne ble ikke funnet. Kanskje et søk kan hjelpe."\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Dagsarkiv: %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Månedsarkiv: %s"\r
+\r
+#: archive.php:27\r
+msgid "F Y"\r
+msgstr ""\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Årsarkiv: %s"\r
+\r
+#: archive.php:29\r
+msgid "Y"\r
+msgstr ""\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "Blogarkiv"\r
+\r
+#: archive.php:57\r
+#: author.php:74\r
+#: category.php:50\r
+#: front-page.php:83\r
+msgid "Nothing Found"\r
+msgstr "Ingenting funnet"\r
+\r
+#: archive.php:61\r
+#: author.php:78\r
+#: category.php:54\r
+#: front-page.php:87\r
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."\r
+msgstr "Beklager, men det ble ikke funnet noe på det forespurte arkivet. Kanskje et søk vil hjelpe for å finne en relatert innlegg/side."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Gå tilbake til %s"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "Av"\r
+\r
+#: attachment.php:33\r
+#, php-format\r
+msgid "View all posts by %s"\r
+msgstr "Vis alle innleggene til %s"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "Publisert"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "Full størrelse er %s piksler"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "Link til bilde i full størrelse"\r
+\r
+#: attachment.php:60\r
+#: attachment.php:107\r
+#: content-aside.php:48\r
+#: content-chat.php:48\r
+#: content-gallery.php:64\r
+#: content-image.php:41\r
+#: content-link.php:48\r
+#: content-quote.php:46\r
+#: content-status.php:47\r
+#: content.php:85\r
+#: front-page.php:42\r
+msgid "Edit"\r
+msgstr "Redigér"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "Les videre"\r
+\r
+#: attachment.php:101\r
+#: content-aside.php:39\r
+#: content-chat.php:37\r
+#: content-gallery.php:54\r
+#: content-image.php:32\r
+#: content-link.php:37\r
+#: content-quote.php:36\r
+#: content-status.php:38\r
+#: content.php:57\r
+#: content.php:74\r
+#: front-page.php:41\r
+msgid "Pages:"\r
+msgstr "Sider:"\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Forfatterarkiv: %s"\r
+\r
+#: author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "Om %s"\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Kategoriarkiv: %s"\r
+\r
+#: comments.php:18\r
+msgid "This post is password protected. Enter the password to view any comments."\r
+msgstr "Dette innlegget er passordbeskyttet. Skriv inn passord for å se kommentarene."\r
+\r
+#: comments.php:35\r
+#, php-format\r
+msgid "One Response to %2$s"\r
+msgid_plural "%1$s Responses to %2$s"\r
+msgstr[0] "En kommentar til %2$s"\r
+msgstr[1] "%1$s kommentarer til %2$s"\r
+\r
+#: comments.php:41\r
+#: comments.php:60\r
+msgid "Older Comments"\r
+msgstr "Eldre kommentarer"\r
+\r
+#: comments.php:42\r
+#: comments.php:61\r
+msgid "Newer Comments"\r
+msgstr "Nyere kommentarer"\r
+\r
+#: comments.php:72\r
+#: front-page.php:47\r
+msgid "Comments are closed."\r
+msgstr "Kommentarer er stengt."\r
+\r
+#: content-aside.php:16\r
+#: content-chat.php:16\r
+#: content-gallery.php:16\r
+#: content-gallery.php:48\r
+#: content-image.php:15\r
+#: content-link.php:16\r
+#: content-quote.php:14\r
+#: content-status.php:15\r
+#: content.php:24\r
+#: content.php:28\r
+#, php-format\r
+msgid "Permalink to %s"\r
+msgstr "Permalink til %s"\r
+\r
+#: content-aside.php:21\r
+msgid "Aside"\r
+msgstr "En side"\r
+\r
+#: content-aside.php:38\r
+#: content-chat.php:36\r
+#: content-gallery.php:32\r
+#: content-image.php:31\r
+#: content-link.php:36\r
+#: content-quote.php:35\r
+#: content-status.php:37\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Les videre <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46\r
+#: content-chat.php:44\r
+#: content-gallery.php:61\r
+#: content-image.php:38\r
+#: content-link.php:44\r
+#: content-quote.php:43\r
+#: content-status.php:45\r
+#: content.php:83\r
+msgid "Tagged"\r
+msgstr "Tagged"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr ""\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "Galleri"\r
+\r
+#: content-gallery.php:47\r
+#, php-format\r
+msgid "This gallery contains <a %1$s>%2$s photo</a>."\r
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."\r
+msgstr[0] "Dette galleriet inneholder <a %1$s>%2$s bilde</a>."\r
+msgstr[1] "Dette galleriet inneholder <a %1$s>%2$s bilder</a>."\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr "Bilde"\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr ""\r
+\r
+#: content-quote.php:19\r
+msgid "Quote"\r
+msgstr "Sitér"\r
+\r
+#: content-status.php:29\r
+msgid "Status"\r
+msgstr ""\r
+\r
+#: content.php:33\r
+msgid "Featured"\r
+msgstr ""\r
+\r
+#: footer.php:43\r
+msgid "Semantic Personal Publishing Platform"\r
+msgstr ""\r
+\r
+#: functions.php:193\r
+msgid "Primary Navigation"\r
+msgstr ""\r
+\r
+#: functions.php:194\r
+msgid "Top Navigation"\r
+msgstr ""\r
+\r
+#: functions.php:195\r
+msgid "Footer Navigation"\r
+msgstr ""\r
+\r
+#: functions.php:236\r
+msgid "mantra"\r
+msgstr ""\r
+\r
+#: functions.php:414\r
+msgid "says:"\r
+msgstr "sier:"\r
+\r
+#: functions.php:420\r
+msgid "Your comment is awaiting moderation."\r
+msgstr " - Din kommentar venter på godkjennelse av en moderator."\r
+\r
+#: functions.php:427\r
+msgid "at"\r
+msgstr "på"\r
+\r
+#: functions.php:427\r
+#: functions.php:444\r
+msgid "(Edit)"\r
+msgstr "(Redigér)"\r
+\r
+#: functions.php:444\r
+msgid "Pingback: "\r
+msgstr ""\r
+\r
+#: functions.php:463\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: functions.php:465\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: functions.php:474\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: functions.php:476\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: functions.php:485\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: functions.php:487\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: functions.php:496\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: functions.php:498\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: functions.php:507\r
+msgid "First Footer Widget Area"\r
+msgstr ""\r
+\r
+#: functions.php:509\r
+msgid "First footer widget area"\r
+msgstr ""\r
+\r
+#: functions.php:518\r
+msgid "Second Footer Widget Area"\r
+msgstr ""\r
+\r
+#: functions.php:520\r
+msgid "Second footer widget area"\r
+msgstr ""\r
+\r
+#: functions.php:529\r
+msgid "Third Footer Widget Area"\r
+msgstr ""\r
+\r
+#: functions.php:531\r
+msgid "The third footer widget area"\r
+msgstr ""\r
+\r
+#: functions.php:540\r
+msgid "Fourth Footer Widget Area"\r
+msgstr ""\r
+\r
+#: functions.php:542\r
+msgid "The fourth footer widget area"\r
+msgstr ""\r
+\r
+#: functions.php:582\r
+msgid "By "\r
+msgstr "Av "\r
+\r
+#: functions.php:593\r
+msgid "Leave a comment"\r
+msgstr " Kommentér "\r
+\r
+#: functions.php:593\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Kommentar"\r
+\r
+#: functions.php:593\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Kommentarer"\r
+\r
+#: functions.php:613\r
+msgid " Bookmark the "\r
+msgstr "Bokmerk"\r
+\r
+#: functions.php:613\r
+#: functions.php:615\r
+#: functions.php:617\r
+msgid "Permalink to"\r
+msgstr ""\r
+\r
+#: functions.php:613\r
+#: functions.php:615\r
+#: functions.php:617\r
+msgid "permalink"\r
+msgstr ""\r
+\r
+#: functions.php:615\r
+#: functions.php:617\r
+msgid "Bookmark the "\r
+msgstr "Bokmerk "\r
+\r
+#: functions.php:639\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Eldre innlegg"\r
+\r
+#: functions.php:640\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Nyere innlegg <span class=\"meta-nav\">»</span>"\r
+\r
+#: functions.php:836\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Side %s"\r
+\r
+#: functions.php:972\r
+msgid "Before you can upload your import file, you will need to fix the following error:"\r
+msgstr ""\r
+\r
+#: functions.php:980\r
+msgid "Import Mantra Theme Options"\r
+msgstr ""\r
+\r
+#: functions.php:982\r
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"\r
+msgstr ""\r
+\r
+#: functions.php:984\r
+msgid "Just choose a file from your computer:"\r
+msgstr ""\r
+\r
+#: functions.php:986\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr ""\r
+\r
+#: functions.php:992\r
+msgid "And import!"\r
+msgstr ""\r
+\r
+#: functions.php:1054\r
+msgid "Import Mantra Theme Options "\r
+msgstr ""\r
+\r
+#: functions.php:1057\r
+msgid "Great! The options have been imported!"\r
+msgstr ""\r
+\r
+#: functions.php:1058\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr ""\r
+\r
+#: functions.php:1061\r
+#: functions.php:1067\r
+#: functions.php:1073\r
+msgid "Oops, there's a small problem."\r
+msgstr ""\r
+\r
+#: functions.php:1062\r
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."\r
+msgstr ""\r
+\r
+#: functions.php:1068\r
+msgid "The uploaded file could not be read."\r
+msgstr ""\r
+\r
+#: functions.php:1074\r
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."\r
+msgstr ""\r
+\r
+#: functions.php:1083\r
+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."\r
+msgstr ""\r
+\r
+#: functions.php:1089\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr ""\r
+\r
+#: header.php:104\r
+msgid "Skip to content"\r
+msgstr "Gå til innhold"\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Søkeresultat for: %s"\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "Ikke noe søkeresultat for: %s"\r
+\r
+#: sidebar.php:34\r
+msgid "Archives"\r
+msgstr "Arkiv"\r
+\r
+#: sidebar.php:41\r
+msgid "Meta"\r
+msgstr ""\r
+\r
+#: single.php:18\r
+#: single.php:58\r
+msgid "Previous post link"\r
+msgstr "Neste innleggs lenke"\r
+\r
+#: single.php:19\r
+#: single.php:59\r
+msgid "Next post link"\r
+msgstr "Forrige innleggs lenke"\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr "Vis alle innlegg fra "\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Tag arkiv: %s"\r
+\r
+#: admin/mantra-admin-functions.php:31\r
+msgid "Layout Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:32\r
+msgid "Presentation Page"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:33\r
+msgid "Text Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:34\r
+msgid "Color Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:35\r
+msgid "Graphics Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:36\r
+msgid "Post Information Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:37\r
+msgid "Post Excerpt Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:38\r
+msgid "Featured Image Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:39\r
+msgid "Social Media Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:40\r
+msgid "Miscellaneous Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:42\r
+msgid "Main Layout"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:43\r
+msgid "Content / Sidebar Width"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:44\r
+msgid "Header Image Height"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:46\r
+msgid "Enable Presentation Page"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:47\r
+msgid "Slider Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:48\r
+msgid "Slides"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:49\r
+msgid "Presentation Page Columns"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:50\r
+msgid "Extras"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:52\r
+msgid "General Font"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:53\r
+msgid "General Font Size"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:54\r
+msgid "Post Title Font "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:55\r
+msgid "Post Title Font Size"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:56\r
+msgid "Sidebar Font"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:57\r
+msgid "SideBar Font Size"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:58\r
+msgid "Sub-Headers Font"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:59\r
+msgid "Force Text Align"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:60\r
+msgid "Paragraph indent"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:61\r
+msgid "Header indent"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:62\r
+msgid "Line Height"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:63\r
+msgid "Word spacing"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:64\r
+msgid "Letter spacing"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:65\r
+msgid "Text shadow"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:67\r
+msgid "Background Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:68\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:70\r
+msgid "Site Title Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:71\r
+msgid "Site Description Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:73\r
+msgid "Content Text Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:74\r
+msgid "Links Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:75\r
+msgid "Links Hover Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:76\r
+msgid "Post Title Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:77\r
+msgid "Post Title Hover Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:78\r
+msgid "Sidebar Header Background Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:79\r
+msgid "Sidebar Header Text Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:80\r
+msgid "Footer Widget Background Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:81\r
+msgid "Footer Background Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:82\r
+msgid "Footer Widget Header Text Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:83\r
+msgid "Footer Widget Link Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:84\r
+msgid "Footer Widget Hover Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:86\r
+msgid "Caption Border"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:87\r
+msgid "Post Images Border"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:88\r
+msgid "Caption Pin"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:89\r
+msgid "Sidebar Menu Bullets"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:90\r
+msgid "Meta Area Background"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:91\r
+msgid "Post Separator"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:92\r
+msgid "Content List Bullets"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:93\r
+msgid "Title and Description"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:94\r
+msgid "Page Titles"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:95\r
+msgid "Category Page Titles"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:96\r
+msgid "Hide Tables"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:97\r
+msgid "Back to Top button"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:98\r
+msgid "Text Under Comments"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:99\r
+msgid "Comments are closed text"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:100\r
+msgid "Comments off"\r
+msgstr "Kommentarer av"\r
+\r
+#: admin/mantra-admin-functions.php:101\r
+msgid "Insert footer copyright"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:103\r
+msgid "Post Date"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:104\r
+msgid "Post Time"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:105\r
+msgid "Post Author"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:106\r
+msgid "Post Category"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:107\r
+msgid "Post Tags"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:108\r
+msgid "Post Permalink"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:109\r
+msgid "All Post Metas"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:111\r
+msgid "Post Excerpts on Home Page"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:112\r
+msgid "Affect Sticky Posts"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:113\r
+msgid "Post Excerpts on Arhive and Category Pages"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:114\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:115\r
+msgid "Magazine Layout"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:116\r
+msgid "Excerpt suffix"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:117\r
+msgid "Continue reading link text "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:118\r
+msgid "HTML tags in Excerpts"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:120\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:121\r
+msgid "Auto Select Images From Posts "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:122\r
+msgid "Thumbnails Alignment "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:123\r
+msgid "Thumbnails Size "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:124\r
+msgid "Featured Images as HEADER Images "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:126\r
+msgid "Link nr. 1"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:127\r
+msgid "Link nr. 2"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:128\r
+msgid "Link nr. 3"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:129\r
+msgid "Link nr. 4"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:130\r
+msgid "Link nr. 5"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:131\r
+msgid "Socials display"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:133\r
+msgid "Make Site Header a Link"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:134\r
+msgid "Breadcrumbs"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:135\r
+msgid "Pagination"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:136\r
+msgid "Mobile view"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:137\r
+msgid "FavIcon"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:138\r
+msgid "Custom CSS"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:228\r
+msgid "One column (no sidebars)"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:229\r
+msgid "Two columns, sidebar on the right"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:230\r
+msgid "Two columns, sidebar on the left"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:231\r
+msgid "Three columns, sidebars on the right"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:232\r
+msgid "Three columns, sidebars on the left"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:233\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:248\r
+msgid "Choose your layout "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:258\r
+msgid "Absolute"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:258\r
+msgid "Relative"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:259\r
+msgid "Dimensions to use: "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:358\r
+#: admin/mantra-admin-functions.php:378\r
+msgid "Content ="\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:359\r
+#: admin/mantra-admin-functions.php:379\r
+msgid "Sidebar(s) ="\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:360\r
+#: admin/mantra-admin-functions.php:380\r
+msgid "Total width ="\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:369\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:389\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:413\r
+msgid "Select the header's height. After saving the settings go and upload your new header image. The header's width will be equal to the Total Site Width = "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:426\r
+#: admin/mantra-admin-functions.php:1117\r
+#: admin/mantra-admin-functions.php:1179\r
+#: admin/mantra-admin-functions.php:1487\r
+#: admin/mantra-admin-functions.php:1549\r
+#: admin/mantra-admin-functions.php:1742\r
+#: admin/mantra-admin-functions.php:1771\r
+#: admin/mantra-admin-functions.php:1794\r
+#: admin/mantra-admin-functions.php:1809\r
+#: admin/mantra-admin-functions.php:1850\r
+#: admin/mantra-admin-functions.php:1982\r
+#: admin/mantra-admin-functions.php:1997\r
+#: admin/mantra-admin-functions.php:2012\r
+#: admin/mantra-admin-functions.php:2027\r
+msgid "Enable"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:426\r
+#: admin/mantra-admin-functions.php:1117\r
+#: admin/mantra-admin-functions.php:1179\r
+#: admin/mantra-admin-functions.php:1487\r
+#: admin/mantra-admin-functions.php:1549\r
+#: admin/mantra-admin-functions.php:1742\r
+#: admin/mantra-admin-functions.php:1771\r
+#: admin/mantra-admin-functions.php:1794\r
+#: admin/mantra-admin-functions.php:1809\r
+#: admin/mantra-admin-functions.php:1850\r
+#: admin/mantra-admin-functions.php:1982\r
+#: admin/mantra-admin-functions.php:1997\r
+#: admin/mantra-admin-functions.php:2012\r
+#: admin/mantra-admin-functions.php:2027\r
+msgid "Disable"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:434\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page and it will replace whatever page you have selected as homepage. It has a slider and columns for presentation\n"\r
+"\t\ttext and images."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:443\r
+msgid "Slider Dimensions:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:444\r
+msgid "width"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:445\r
+msgid "height"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:446\r
+msgid "The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:449\r
+msgid "Animation:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "Random"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "Fold"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "Fade"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SlideInRight"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SlideInLeft"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceDown"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceDownLeft"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceUp"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceUpLeft"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceUpDown"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceUpDownLeft"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "BoxRandom"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "BoxRain"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "BoxRainReverse"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "BoxRainGrow"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "BoxRainGrowReverse"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:459\r
+msgid "The transition effect your slider will have."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:461\r
+msgid "Animation Time:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:462\r
+#: admin/mantra-admin-functions.php:466\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:463\r
+msgid "The time in which the transition animation will take place."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:465\r
+msgid "Pause Time:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:467\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:470\r
+msgid "Slider navigation:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:472\r
+msgid "Numbers"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:472\r
+msgid "Bullets"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:472\r
+#: admin/mantra-admin-functions.php:1393\r
+msgid "None"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:480\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:482\r
+msgid "Slider arrows:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:484\r
+msgid "Always Visible"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:484\r
+msgid "Visible on Hover"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:484\r
+msgid "Hidden"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:492\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:536\r
+msgid "Select Category"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:594\r
+msgid "Slide 1"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:598\r
+#: admin/mantra-admin-functions.php:613\r
+#: admin/mantra-admin-functions.php:628\r
+#: admin/mantra-admin-functions.php:643\r
+#: admin/mantra-admin-functions.php:658\r
+#: admin/mantra-admin-functions.php:702\r
+#: admin/mantra-admin-functions.php:717\r
+#: admin/mantra-admin-functions.php:732\r
+#: admin/mantra-admin-functions.php:747\r
+msgid "Upload or select image from gallery"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:599\r
+#: admin/mantra-admin-functions.php:614\r
+#: admin/mantra-admin-functions.php:629\r
+#: admin/mantra-admin-functions.php:644\r
+#: admin/mantra-admin-functions.php:659\r
+#: admin/mantra-admin-functions.php:703\r
+#: admin/mantra-admin-functions.php:718\r
+#: admin/mantra-admin-functions.php:748\r
+msgid "Title"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:601\r
+#: admin/mantra-admin-functions.php:616\r
+#: admin/mantra-admin-functions.php:631\r
+#: admin/mantra-admin-functions.php:646\r
+#: admin/mantra-admin-functions.php:661\r
+#: admin/mantra-admin-functions.php:705\r
+#: admin/mantra-admin-functions.php:720\r
+#: admin/mantra-admin-functions.php:735\r
+#: admin/mantra-admin-functions.php:750\r
+msgid "Text"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:609\r
+msgid "Slide 2"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:624\r
+msgid "Slide 3"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:639\r
+msgid "Slide 4"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:654\r
+msgid "Slide 5"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:667\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:678\r
+msgid "Number of columns:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:688\r
+msgid "Image Height:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:691\r
+msgid "Read more text:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:694\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:698\r
+msgid "1st Column"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:713\r
+msgid "2nd Column"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:728\r
+msgid "3rd Column"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:743\r
+msgid "4th Column"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:766\r
+msgid "Extra Text"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:766\r
+msgid "Top Title"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:768\r
+msgid "Second Title"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:771\r
+msgid "Title color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:774\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:776\r
+msgid "Bottom Text 1"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:778\r
+msgid "Bottom Text 2"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:781\r
+msgid ""\r
+"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"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:787\r
+msgid "Hide areas"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:800\r
+msgid "Hide the header area (image or background color)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:804\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:808\r
+msgid "Hide the footer widgets. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:812\r
+msgid "Hide the footer (copyright area)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:816\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:820\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:851\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:895\r
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:896\r
+#: admin/mantra-admin-functions.php:945\r
+#: admin/mantra-admin-functions.php:996\r
+#: admin/mantra-admin-functions.php:1047\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:943\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:994\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1045\r
+msgid "Select the font family you want your subheaders to have (h2 - h6 tags will be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1057\r
+#: admin/mantra-admin-functions.php:1072\r
+#: admin/mantra-admin-functions.php:1087\r
+#: admin/mantra-admin-functions.php:1132\r
+#: admin/mantra-admin-functions.php:1147\r
+#: admin/mantra-admin-functions.php:1162\r
+msgid "Default"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1065\r
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1080\r
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1087\r
+#: admin/mantra-admin-functions.php:1825\r
+msgid "Left"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1087\r
+#: admin/mantra-admin-functions.php:1825\r
+msgid "Right"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1087\r
+msgid "Justify"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1087\r
+#: admin/mantra-admin-functions.php:1825\r
+msgid "Center"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1095\r
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1109\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1125\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1140\r
+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)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1155\r
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1170\r
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1187\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1199\r
+msgid "Background color (Default value is 444444)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1207\r
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1215\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1223\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1231\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1239\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1247\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1255\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1263\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1271\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1279\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1287\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1296\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1304\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1312\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1320\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332\r
+#: admin/mantra-admin-functions.php:1393\r
+msgid "White"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332\r
+msgid "Light"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332\r
+msgid "Light Gray"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332\r
+#: admin/mantra-admin-functions.php:1393\r
+msgid "Gray"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332\r
+msgid "Dark Gray"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332\r
+msgid "Black"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1340\r
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1356\r
+msgid "The border around your inserted images. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1371\r
+msgid "The image on top of your captions. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1386\r
+msgid "The sidebar list bullets. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1401\r
+msgid "The background for your post-metas area (under your post tiltes). Gray by default.<"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1409\r
+#: admin/mantra-admin-functions.php:1425\r
+#: admin/mantra-admin-functions.php:1442\r
+#: admin/mantra-admin-functions.php:1457\r
+#: admin/mantra-admin-functions.php:1472\r
+#: admin/mantra-admin-functions.php:1502\r
+#: admin/mantra-admin-functions.php:1517\r
+#: admin/mantra-admin-functions.php:1533\r
+#: admin/mantra-admin-functions.php:1576\r
+#: admin/mantra-admin-functions.php:1591\r
+#: admin/mantra-admin-functions.php:1606\r
+#: admin/mantra-admin-functions.php:1621\r
+#: admin/mantra-admin-functions.php:1636\r
+#: admin/mantra-admin-functions.php:1651\r
+#: admin/mantra-admin-functions.php:1666\r
+msgid "Show"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1409\r
+#: admin/mantra-admin-functions.php:1425\r
+#: admin/mantra-admin-functions.php:1442\r
+#: admin/mantra-admin-functions.php:1457\r
+#: admin/mantra-admin-functions.php:1472\r
+#: admin/mantra-admin-functions.php:1502\r
+#: admin/mantra-admin-functions.php:1533\r
+#: admin/mantra-admin-functions.php:1576\r
+#: admin/mantra-admin-functions.php:1591\r
+#: admin/mantra-admin-functions.php:1606\r
+#: admin/mantra-admin-functions.php:1621\r
+#: admin/mantra-admin-functions.php:1636\r
+#: admin/mantra-admin-functions.php:1651\r
+#: admin/mantra-admin-functions.php:1666\r
+msgid "Hide"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1417\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1433\r
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1450\r
+msgid "Hide or show your blog's Title and Description in the header (recommended if you have a custom header image with text)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1465\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1480\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1495\r
+msgid "Hide table borders and background color."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1510\r
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1517\r
+msgid "Hide in posts"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1517\r
+msgid "Hide in pages"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1517\r
+msgid "Hide everywhere"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1525\r
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1541\r
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1557\r
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1564\r
+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 © ."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1584\r
+msgid "Hide or show the post date."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1599\r
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1614\r
+msgid "Hide or show the post author."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1629\r
+msgid "Hide the post category."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1644\r
+msgid "Hide the post tags."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1659\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1674\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1687\r
+#: admin/mantra-admin-functions.php:1702\r
+#: admin/mantra-admin-functions.php:1718\r
+msgid "Excerpt"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1687\r
+#: admin/mantra-admin-functions.php:1702\r
+#: admin/mantra-admin-functions.php:1718\r
+msgid "Full Post"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1695\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1710\r
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1726\r
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1734\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1750\r
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1757\r
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1764\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1779\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1802\r
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1817\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1833\r
+msgid "Thumbnail alignment."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1842\r
+msgid "The size you want the thumbnails to have (in pixels)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1858\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1882\r
+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> )"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1896\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1910\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1924\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1938\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1969\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1990\r
+msgid "Make the site header into a clickable link that links to your index page."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2005\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2020\r
+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. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2035\r
+msgid "Enable the mobile view and make Mantra responsive. The layout and look of your blog will change depending on what device and what resolution it is viewed in. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2045\r
+msgid "Upload or select favicon from gallery"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2049\r
+msgid "Limitations: It has to be an image. It should be max 64x64 pixels in dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2057\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2075\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2085\r
+msgid "Mantra settings updated successfully."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2099\r
+msgid "Reset to Defaults"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2100\r
+msgid "Save Changes"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2114\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we spend night after night improving the Mantra Theme. We fix a lot of bugs (that we previously created); we add more and more customization options while also trying to keep things as simple as possible; then... we might play a game or two but rest assured that we return to read and (in most cases) reply to your late night emails and comments, take notes and draw dashboards of things to implement in future versions.</p>\n"\r
+"<p>So you might ask yourselves: <i>How do they do it? How can they keep so fresh after all that hard labor for that darned theme? </i> Well folks, it's simple. We drink coffee. Industrial quantities of hot boiling coffee. We love it! So if you want to help with the further development of the Mantra Theme...</p> "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2131\r
+msgid "Import/Export Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2137\r
+msgid "Export Theme options"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2138\r
+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!"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2143\r
+msgid "Import Theme options"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2144\r
+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."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2152\r
+msgid "Mantra Latest News"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2163\r
+msgid "No news items."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2177\r
+msgid "Mantra Help"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2180\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2191\r
+msgid "Mantra Support Page"\r
+msgstr ""\r
+\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra v2.0.1\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-09-08 18:32+0200\n"\r
+"PO-Revision-Date: 2013-04-06 22:05:45+0000\n"\r
+"Last-Translator: Tim De Keyser <tim.sia@telenet.be>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"Plural-Forms: nplurals=2; plural=n != 1;\n"\r
+"X-Poedit-Language: \n"\r
+"X-Poedit-Country: \n"\r
+"X-Poedit-SourceCharset: utf-8\n"\r
+"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"\r
+"X-Poedit-Basepath: C:/Users/medicated/Desktop/mantra\n"\r
+"X-Poedit-Bookmarks: \n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+"X-Textdomain-Support: yes"\r
+\r
+#: 404.php:17\r
+#@ mantra\r
+msgid "Not Found"\r
+msgstr "Niet gevonden"\r
+\r
+#: 404.php:19\r
+#@ mantra\r
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."\r
+msgstr "Sorry, maar deze pagina is niet gevonden. Misschien dat zoeken helpt."\r
+\r
+#: archive.php:26\r
+#, php-format\r
+#@ mantra\r
+msgid "Daily Archives: %s"\r
+msgstr "Dagelijkse Archieven: %s"\r
+\r
+#: archive.php:28\r
+#, php-format\r
+#@ mantra\r
+msgid "Monthly Archives: %s"\r
+msgstr "Maandelijkse archieven: %s"\r
+\r
+#: archive.php:30\r
+#, php-format\r
+#@ mantra\r
+msgid "Yearly Archives: %s"\r
+msgstr "Jaarlijkse archieven: %s"\r
+\r
+#: archive.php:32\r
+#@ mantra\r
+msgid "Blog Archives"\r
+msgstr "Blog archieven"\r
+\r
+#: archive.php:58\r
+#: author.php:75\r
+#: category.php:51\r
+#: index.php:41\r
+#: search.php:41\r
+#: tag.php:52\r
+#: template-blog.php:36\r
+#@ mantra\r
+msgid "Nothing Found"\r
+msgstr "Niets gevonden"\r
+\r
+#: archive.php:62\r
+#: author.php:79\r
+#: category.php:55\r
+#: index.php:45\r
+#: tag.php:56\r
+#: template-blog.php:40\r
+#@ mantra\r
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."\r
+msgstr "Sorry, er zijn geen resultaten in het gevraagde archief. Misschien kunt een zoeken naar een soortgelijke post."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+#@ mantra\r
+msgid "Return to %s"\r
+msgstr "Teruggaan naar %s"\r
+\r
+#. translators: %s - title of parent post\r
+#: attachment.php:29\r
+#@ mantra\r
+msgid "By"\r
+msgstr "Door"\r
+\r
+#: attachment.php:40\r
+#@ mantra\r
+msgid "Published"\r
+msgstr "Gepubliceerd"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+#@ mantra\r
+msgid "Full size is %s pixels"\r
+msgstr "Volledige groote is %s pixels"\r
+\r
+#: attachment.php:53\r
+#@ mantra\r
+msgid "Link to full-size image"\r
+msgstr "Link naar afbeeling op ware groote"\r
+\r
+#: attachment.php:60\r
+#: attachment.php:107\r
+#: content-aside.php:48\r
+#: content-chat.php:49\r
+#: content-gallery.php:65\r
+#: content-image.php:42\r
+#: content-link.php:49\r
+#: content-page.php:22\r
+#: content-quote.php:46\r
+#: content-status.php:48\r
+#: content.php:76\r
+#: single.php:54\r
+#: template-onecolumn.php:27\r
+#@ mantra\r
+msgid "Edit"\r
+msgstr "Bewerken"\r
+\r
+#: attachment.php:100\r
+#@ mantra\r
+msgid "Continue reading"\r
+msgstr "Verder lezen"\r
+\r
+#: attachment.php:101\r
+#: content-aside.php:39\r
+#: content-chat.php:38\r
+#: content-gallery.php:55\r
+#: content-image.php:33\r
+#: content-link.php:38\r
+#: content-page.php:21\r
+#: content-quote.php:36\r
+#: content-status.php:39\r
+#: content.php:49\r
+#: content.php:65\r
+#: single.php:32\r
+#: template-onecolumn.php:26\r
+#@ mantra\r
+msgid "Pages:"\r
+msgstr "Pagina's:"\r
+\r
+#: author.php:29\r
+#, php-format\r
+#@ mantra\r
+msgid "Author Archives: %s"\r
+msgstr "Auteur archieven: %s"\r
+\r
+#: author.php:50\r
+#: single.php:41\r
+#, php-format\r
+#@ mantra\r
+msgid "About %s"\r
+msgstr "Over %s"\r
+\r
+#: category.php:20\r
+#, php-format\r
+#@ mantra\r
+msgid "Category Archives: %s"\r
+msgstr "Categorie archieven: %s"\r
+\r
+#: comments.php:18\r
+#@ mantra\r
+msgid "This post is password protected. Enter the password to view any comments."\r
+msgstr "Dit bericht is beveiligd met een wachtwoord. Geef het wachtwoord op om door te gaan."\r
+\r
+#: includes/theme-comments.php:107\r
+#@ mantra\r
+msgid "Older Comments"\r
+msgstr "Oudere reacties"\r
+\r
+#: includes/theme-comments.php:108\r
+#@ mantra\r
+msgid "Newer Comments"\r
+msgstr "Nieuwere reacties"\r
+\r
+#: content-page.php:27\r
+#: includes/theme-comments.php:136\r
+#@ mantra\r
+msgid "Comments are closed."\r
+msgstr "Reacties zijn uitgeschakeld."\r
+\r
+#: content-aside.php:20\r
+#@ mantra\r
+msgid "Aside"\r
+msgstr "Naast"\r
+\r
+#: content-aside.php:38\r
+#: content-chat.php:37\r
+#: content-gallery.php:33\r
+#: content-image.php:32\r
+#: content-link.php:37\r
+#: content-quote.php:35\r
+#: content-status.php:38\r
+#@ mantra\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Verder lezeen <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46\r
+#: content-chat.php:45\r
+#: content-gallery.php:62\r
+#: content-image.php:39\r
+#: content-link.php:45\r
+#: content-quote.php:43\r
+#: content-status.php:46\r
+#: content.php:74\r
+#: includes/theme-loop.php:185\r
+#@ mantra\r
+msgid "Tagged"\r
+msgstr "Tagged"\r
+\r
+#: content-chat.php:20\r
+#@ mantra\r
+msgid "Chat"\r
+msgstr "Chat"\r
+\r
+#: content-gallery.php:20\r
+#@ mantra\r
+msgid "Gallery"\r
+msgstr "Galerij"\r
+\r
+#: admin/settings.php:470\r
+#: admin/settings.php:485\r
+#: admin/settings.php:500\r
+#: admin/settings.php:515\r
+#: admin/settings.php:530\r
+#: admin/settings.php:572\r
+#: admin/settings.php:587\r
+#: admin/settings.php:602\r
+#: admin/settings.php:617\r
+#: content-image.php:19\r
+#@ mantra\r
+msgid "Image"\r
+msgstr "Afbeelding"\r
+\r
+#: admin/settings.php:477\r
+#: admin/settings.php:492\r
+#: admin/settings.php:507\r
+#: admin/settings.php:522\r
+#: admin/settings.php:537\r
+#: admin/settings.php:579\r
+#: admin/settings.php:594\r
+#: admin/settings.php:609\r
+#: admin/settings.php:624\r
+#: content-link.php:20\r
+#@ mantra\r
+msgid "Link"\r
+msgstr "Link"\r
+\r
+#: content-quote.php:18\r
+#@ mantra\r
+msgid "Quote"\r
+msgstr "Citaat"\r
+\r
+#: content-status.php:30\r
+#@ mantra\r
+msgid "Status"\r
+msgstr "Status"\r
+\r
+#: search.php:20\r
+#, php-format\r
+#@ mantra\r
+msgid "Search Results for: %s"\r
+msgstr "Zoekresultaten voor: %s"\r
+\r
+#: search.php:39\r
+#, php-format\r
+#@ mantra\r
+msgid "No search results for: %s"\r
+msgstr "Geen zoekresultaten voor: %s"\r
+\r
+#: single.php:45\r
+#@ mantra\r
+msgid "View all posts by "\r
+msgstr "Bekijk alle berichten van"\r
+\r
+#: tag.php:21\r
+#, php-format\r
+#@ mantra\r
+msgid "Tag Archives: %s"\r
+msgstr "Tag archieven: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+#@ mantra\r
+msgid "Before you can upload your import file, you will need to fix the following error:"\r
+msgstr "Voordat je jouw bestand kunt uploaden of importeren moet eers de volgende eror oplossen:"\r
+\r
+#: admin/admin-functions.php:70\r
+#@ mantra\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Mantra thema opties importeren"\r
+\r
+#: admin/admin-functions.php:72\r
+#@ mantra\r
+msgid "Hi! This is where you import the Mantra settings.<i> Please remember that this is still an experimental feature.</i>"\r
+msgstr "Hallo! Dit is waar je de Mantra instellingen kunt importeren.<i> Gelieve te onthouden dat dit nog altijd een experimentele functie is.</i>"\r
+\r
+#: admin/admin-functions.php:74\r
+#@ mantra\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Kies gewoon een bestand van je computer:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+#@ mantra\r
+msgid "Maximum size: %s"\r
+msgstr "Maximum groote: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+#@ mantra\r
+msgid "And import!"\r
+msgstr "Importeren!"\r
+\r
+#: admin/admin-functions.php:148\r
+#@ mantra\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Mantra thema opties importeren"\r
+\r
+#: admin/admin-functions.php:151\r
+#@ mantra\r
+msgid "Great! The options have been imported!"\r
+msgstr "Geweldig! De opties zijn geïmporteerd!"\r
+\r
+#: admin/admin-functions.php:152\r
+#@ mantra\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Ga terug naar de Mantra opties pagina en ga aan de slag!"\r
+\r
+#: admin/admin-functions.php:155\r
+#: admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+#@ mantra\r
+msgid "Oops, there's a small problem."\r
+msgstr "Oeps, er is een klein probleem."\r
+\r
+#: admin/admin-functions.php:156\r
+#@ mantra\r
+msgid "The uploaded file does not contain valid Mantra options. Make sure the file is exported from the Mantra Options page."\r
+msgstr "Het geüploade bestand bevat geen geldige Mantra opties. Controleer dat het bestand geëxporteerd is van de Mantra opties pagina."\r
+\r
+#: admin/admin-functions.php:162\r
+#@ mantra\r
+msgid "The uploaded file could not be read."\r
+msgstr "Het geüploade bestand kon niet gelezen worden."\r
+\r
+#: admin/admin-functions.php:168\r
+#@ mantra\r
+msgid "The uploaded file is not supported. Make sure the file was exported from the Mantra page and that it is a text file."\r
+msgstr "Het geüploade bestandstype is niet ondersteund. Controleer dat het bestand was geëxporteerd van de Mantra opties pagina en dat een tekstbestand is."\r
+\r
+#: admin/admin-functions.php:177\r
+#@ mantra\r
+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."\r
+msgstr "Oeps! Het bestand is leeg of er was geen bestand. Deze fout kan ook veroorzaakt zijn doordat uploads uigeschakeld zijn in je php.ini or doordat post_max_size gedifiniëerd is als kleiner dan upload_max filesize in php.ini"\r
+\r
+#: admin/admin-functions.php:183\r
+#@ mantra\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "FOUT: Je bent niet bevoegd om die actie uit te voeren"\r
+\r
+#: admin/main.php:95\r
+#@ mantra\r
+msgid "Layout Settings"\r
+msgstr "Layout instellingen"\r
+\r
+#: admin/main.php:97\r
+#@ mantra\r
+msgid "Presentation Page"\r
+msgstr "Presentatie pagina"\r
+\r
+#: admin/main.php:98\r
+#@ mantra\r
+msgid "Text Settings"\r
+msgstr "Tekst instellingen"\r
+\r
+#: admin/main.php:99\r
+#@ mantra\r
+msgid "Color Settings"\r
+msgstr "Kleurschema's"\r
+\r
+#: admin/main.php:100\r
+#@ mantra\r
+msgid "Graphics Settings"\r
+msgstr "Grafische instellingen"\r
+\r
+#: admin/main.php:101\r
+#@ mantra\r
+msgid "Post Information Settings"\r
+msgstr "Bericht informatie instellingen"\r
+\r
+#: admin/main.php:102\r
+#@ mantra\r
+msgid "Post Excerpt Settings"\r
+msgstr "Bericht fragment instellingen"\r
+\r
+#: admin/main.php:103\r
+#@ mantra\r
+msgid "Featured Image Settings"\r
+msgstr "Uitgelichte afbeeldingen instellingen"\r
+\r
+#: admin/main.php:104\r
+#@ mantra\r
+msgid "Social Media Settings"\r
+msgstr "Sociale netwerken instellingen"\r
+\r
+#: admin/main.php:105\r
+#@ mantra\r
+msgid "Miscellaneous Settings"\r
+msgstr "Diverse instellingen"\r
+\r
+#: admin/main.php:107\r
+#@ mantra\r
+msgid "Main Layout"\r
+msgstr "Belangrijkste layout"\r
+\r
+#: admin/main.php:108\r
+#@ mantra\r
+msgid "Content / Sidebar Width"\r
+msgstr "Inhoud / Sidebar breedte"\r
+\r
+#: admin/main.php:111\r
+#@ mantra\r
+msgid "Enable Presentation Page"\r
+msgstr "Presentatie pagina inschakelen"\r
+\r
+#: admin/main.php:112\r
+#@ mantra\r
+msgid "Slider Settings"\r
+msgstr "Dia instellingen"\r
+\r
+#: admin/main.php:113\r
+#@ mantra\r
+msgid "Slides"\r
+msgstr "Dia's"\r
+\r
+#: admin/main.php:114\r
+#@ mantra\r
+msgid "Presentation Page Columns"\r
+msgstr "Presentatie pagina kolomen"\r
+\r
+#: admin/main.php:115\r
+#@ mantra\r
+msgid "Extras"\r
+msgstr "Extra's"\r
+\r
+#: admin/main.php:124\r
+#@ mantra\r
+msgid "General Font"\r
+msgstr "Algemeen lettertype"\r
+\r
+#: admin/main.php:125\r
+#@ mantra\r
+msgid "General Font Size"\r
+msgstr "Algemene tekengroote"\r
+\r
+#: admin/main.php:126\r
+#@ mantra\r
+msgid "Post Title Font "\r
+msgstr "Berichttitel lettertype"\r
+\r
+#: admin/main.php:127\r
+#@ mantra\r
+msgid "Post Title Font Size"\r
+msgstr "Berichttitel tekengroote"\r
+\r
+#: admin/main.php:128\r
+#@ mantra\r
+msgid "Sidebar Font"\r
+msgstr "Sidebar lettertype"\r
+\r
+#: admin/main.php:129\r
+#@ mantra\r
+msgid "SideBar Font Size"\r
+msgstr "Sidebar tekengroote"\r
+\r
+#: admin/main.php:130\r
+#@ mantra\r
+msgid "Sub-Headers Font"\r
+msgstr "Ondertitel lettertype"\r
+\r
+#: admin/main.php:131\r
+#@ mantra\r
+msgid "Force Text Align"\r
+msgstr "Forceer tekstuitlijning"\r
+\r
+#: admin/main.php:132\r
+#@ mantra\r
+msgid "Paragraph indent"\r
+msgstr "Paragraaf inspringing"\r
+\r
+#: admin/main.php:133\r
+#@ mantra\r
+msgid "Header indent"\r
+msgstr "Koptekst inspringing"\r
+\r
+#: admin/main.php:134\r
+#@ mantra\r
+msgid "Line Height"\r
+msgstr "Regelhoogte"\r
+\r
+#: admin/main.php:135\r
+#@ mantra\r
+msgid "Word spacing"\r
+msgstr "Woordafstand"\r
+\r
+#: admin/main.php:136\r
+#@ mantra\r
+msgid "Letter spacing"\r
+msgstr "Tekenafstand"\r
+\r
+#: admin/main.php:137\r
+#@ mantra\r
+msgid "Text shadow"\r
+msgstr "Tekstschaduw"\r
+\r
+#: admin/main.php:139\r
+#@ mantra\r
+msgid "Background Color"\r
+msgstr "Achtergrondkleur"\r
+\r
+#: admin/main.php:140\r
+#@ mantra\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Koptekst (Afbeelding en Menu) achtergrondkleur"\r
+\r
+#: admin/main.php:141\r
+#@ mantra\r
+msgid "Content Background Color"\r
+msgstr "Inhoud achtergrondkleur"\r
+\r
+#: admin/main.php:146\r
+#@ mantra\r
+msgid "Site Title Color"\r
+msgstr "Kleur sitetitel"\r
+\r
+#: admin/main.php:147\r
+#@ mantra\r
+msgid "Site Description Color"\r
+msgstr "Kleur siteomschrijving"\r
+\r
+#: admin/main.php:149\r
+#@ mantra\r
+msgid "Content Text Color"\r
+msgstr "Kleur inhoudstekts"\r
+\r
+#: admin/main.php:150\r
+#@ mantra\r
+msgid "Links Color"\r
+msgstr "Kleur links"\r
+\r
+#: admin/main.php:151\r
+#@ mantra\r
+msgid "Links Hover Color"\r
+msgstr "Kleur links bij muisover"\r
+\r
+#: admin/main.php:152\r
+#@ mantra\r
+msgid "Post Title Color"\r
+msgstr "Kleur berichtentitel"\r
+\r
+#: admin/main.php:153\r
+#@ mantra\r
+msgid "Post Title Hover Color"\r
+msgstr "Kleur berichtentitel bij muisover"\r
+\r
+#: admin/main.php:154\r
+#@ mantra\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Achtergrondkleur sidebar kop"\r
+\r
+#: admin/main.php:155\r
+#@ mantra\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Kleur sidebar koptekst"\r
+\r
+#: admin/main.php:156\r
+#@ mantra\r
+msgid "Footer Widget Background Color"\r
+msgstr "Achtergrondkleur voetnootgadget"\r
+\r
+#: admin/main.php:157\r
+#@ mantra\r
+msgid "Footer Background Color"\r
+msgstr "Achtergrondkleur voetnoot"\r
+\r
+#: admin/main.php:158\r
+#@ mantra\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Tekstkleur koptekst voetnootgadget"\r
+\r
+#: admin/main.php:159\r
+#@ mantra\r
+msgid "Footer Widget Link Color"\r
+msgstr "Linkkleur voetnootgadget"\r
+\r
+#: admin/main.php:160\r
+#@ mantra\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Kleur voetnootgadget bij muisover"\r
+\r
+#: admin/main.php:165\r
+#@ mantra\r
+msgid "Caption Border"\r
+msgstr "Bijschriftrand"\r
+\r
+#: admin/main.php:164\r
+#@ mantra\r
+msgid "Post Images Border"\r
+msgstr "Rand berichtafbeeldingen"\r
+\r
+#: admin/main.php:166\r
+#@ mantra\r
+msgid "Caption Pin"\r
+msgstr "Cation Pin"\r
+\r
+#: admin/main.php:167\r
+#@ mantra\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Sidebar menu opsommingstekens"\r
+\r
+#: admin/main.php:168\r
+#@ mantra\r
+msgid "Meta Area Background"\r
+msgstr "Achtergrond Meta zone"\r
+\r
+#: admin/main.php:169\r
+#@ mantra\r
+msgid "Post Separator"\r
+msgstr "Berichtschijding"\r
+\r
+#: admin/main.php:170\r
+#@ mantra\r
+msgid "Content List Bullets"\r
+msgstr "Opsommingstekens inhoudslijst"\r
+\r
+#: admin/main.php:171\r
+#@ mantra\r
+msgid "Page Titles"\r
+msgstr "Pagina titels"\r
+\r
+#: admin/main.php:172\r
+#@ mantra\r
+msgid "Category Page Titles"\r
+msgstr "Titels categoriepagina's"\r
+\r
+#: admin/main.php:173\r
+#@ mantra\r
+msgid "Hide Tables"\r
+msgstr "Verberg tabellen"\r
+\r
+#: admin/main.php:174\r
+#@ mantra\r
+msgid "Back to Top button"\r
+msgstr "Terug naar boven knop"\r
+\r
+#: admin/main.php:175\r
+#@ mantra\r
+msgid "Text Under Comments"\r
+msgstr "Tekst onder reacties"\r
+\r
+#: admin/main.php:176\r
+#@ mantra\r
+msgid "Comments are closed text"\r
+msgstr "Reacties zijn uitgeschakeld tekst"\r
+\r
+#: admin/main.php:177\r
+#@ mantra\r
+msgid "Comments off"\r
+msgstr "Reacties uitgeschakeld"\r
+\r
+#: admin/main.php:179\r
+#@ mantra\r
+msgid "Post Comments Link"\r
+msgstr "Berichtreacties link"\r
+\r
+#: admin/main.php:180\r
+#@ mantra\r
+msgid "Post Date"\r
+msgstr "Berichtdatum"\r
+\r
+#: admin/main.php:181\r
+#@ mantra\r
+msgid "Post Time"\r
+msgstr "Berichttijd"\r
+\r
+#: admin/main.php:182\r
+#@ mantra\r
+msgid "Post Author"\r
+msgstr "Berichtauteur"\r
+\r
+#: admin/main.php:183\r
+#@ mantra\r
+msgid "Post Category"\r
+msgstr "Berichtcatagorie"\r
+\r
+#: admin/main.php:184\r
+#@ mantra\r
+msgid "Post Tags"\r
+msgstr "Berichttags"\r
+\r
+#: admin/main.php:185\r
+#@ mantra\r
+msgid "Post Permalink"\r
+msgstr "Permanente link bericht"\r
+\r
+#: admin/main.php:186\r
+#@ mantra\r
+msgid "All Post Metas"\r
+msgstr "Alle berichtmeta's"\r
+\r
+#: admin/main.php:188\r
+#@ mantra\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Berichtfragment op startpagina"\r
+\r
+#: admin/main.php:189\r
+#@ mantra\r
+msgid "Affect Sticky Posts"\r
+msgstr "Beïnvloed gepinde berichten"\r
+\r
+#: admin/main.php:190\r
+#@ mantra\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Berichtfragment op archief- en categoriepagina's"\r
+\r
+#: admin/main.php:191\r
+#@ mantra\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Aantal woorden voor berichtframgenen"\r
+\r
+#: admin/main.php:192\r
+#@ mantra\r
+msgid "Magazine Layout"\r
+msgstr "Magazinelay-out"\r
+\r
+#: admin/main.php:193\r
+#@ mantra\r
+msgid "Excerpt suffix"\r
+msgstr "Achtervoegsel fragment"\r
+\r
+#: admin/main.php:194\r
+#@ mantra\r
+msgid "Continue reading link text "\r
+msgstr "Verder lezen link tekst"\r
+\r
+#: admin/main.php:195\r
+#@ mantra\r
+msgid "HTML tags in Excerpts"\r
+msgstr "HTML tags in fragmenten"\r
+\r
+#: admin/main.php:197\r
+#@ mantra\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Uitgelichte afbeeldingen als BERICHT-miniaturen"\r
+\r
+#: admin/main.php:198\r
+#@ mantra\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Selecteer automatisch berichtafbeeldingen"\r
+\r
+#: admin/main.php:199\r
+#@ mantra\r
+msgid "Thumbnails Alignment "\r
+msgstr "Uitlijning miniaturen"\r
+\r
+#: admin/main.php:200\r
+#@ mantra\r
+msgid "Thumbnails Size "\r
+msgstr "Groote miniaturen"\r
+\r
+#: admin/main.php:201\r
+#@ mantra\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Uitgelichte afbeeldingen als KOPTEKST afbeeldingen"\r
+\r
+#: admin/main.php:203\r
+#@ mantra\r
+msgid "Link nr. 1"\r
+msgstr "Link nr. 1"\r
+\r
+#: admin/main.php:204\r
+#@ mantra\r
+msgid "Link nr. 2"\r
+msgstr "Link nr. 2"\r
+\r
+#: admin/main.php:205\r
+#@ mantra\r
+msgid "Link nr. 3"\r
+msgstr "Link nr. 3"\r
+\r
+#: admin/main.php:206\r
+#@ mantra\r
+msgid "Link nr. 4"\r
+msgstr "Link nr. 4"\r
+\r
+#: admin/main.php:207\r
+#@ mantra\r
+msgid "Link nr. 5"\r
+msgstr "Link nr. 5"\r
+\r
+#: admin/main.php:208\r
+#@ mantra\r
+msgid "Socials display"\r
+msgstr "Weergave sociale netwerken"\r
+\r
+#: admin/main.php:162\r
+#@ mantra\r
+msgid "Breadcrumbs"\r
+msgstr "Broodkruimels"\r
+\r
+#: admin/main.php:163\r
+#@ mantra\r
+msgid "Pagination"\r
+msgstr "Pagina overslaan"\r
+\r
+#: admin/main.php:109\r
+#@ mantra\r
+msgid "Mobile view"\r
+msgstr "Mobiele look"\r
+\r
+#: admin/main.php:212\r
+#@ mantra\r
+msgid "Custom CSS"\r
+msgstr "Aangepaste CSS"\r
+\r
+#: admin/main.php:213\r
+#@ mantra\r
+msgid "Custom JavaScript"\r
+msgstr "Aangepaste JavaScrips"\r
+\r
+#: admin/main.php:210\r
+#@ mantra\r
+msgid "SEO Settings"\r
+msgstr "SEO instellingen"\r
+\r
+#: admin/main.php:230\r
+#@ mantra\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Sorry, je hebt niet geen toestemming om deze pagina te bekijken."\r
+\r
+#: admin/main.php:249\r
+#@ mantra\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Mantra instelling zijn succesvol bijgewerkt."\r
+\r
+#: admin/main.php:262\r
+#@ mantra\r
+msgid "Reset to Defaults"\r
+msgstr "Standaardinstellingen herstellen"\r
+\r
+#: admin/main.php:261\r
+#@ mantra\r
+msgid "Save Changes"\r
+msgstr "Wijzigingen opslaan"\r
+\r
+#: admin/main.php:276\r
+#@ mantra\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we spend night after night improving the Mantra Theme. We fix a lot of bugs (that we previously created); we add more and more customization options while also trying to keep things as simple as possible; then... we might play a game or two but rest assured that we return to read and (in most cases) reply to your late night emails and comments, take notes and draw dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they keep so fresh after all that hard labor for that darned theme? </i> Well folks, it's simple. We drink coffee. Industrial quantities of hot boiling coffee. We love it! So if you want to help with the further development of the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p> Hier bij Cryout Creatins (de ontwikkelaars van het enige echte Mantra Thema), werken we de hele nacht door om het Mantra Thema te verbeteren. We reperaren problemen (die we er zelf ingestoken hebben); we voegen meer aanpassingsopties toe terwijl we ook proberen om het zo simpel mogelijk te houden; daarna... spelen we misschien een spelletje of twee maar wees gerust dat we daarna verderdoen om (in de meeste gevallen) je nachtelijke mails en berichten lezen en beantwoorden, notities maken van dingen om toe te voegen in volgende versies. </p>\n"\r
+"/t/t/t<p>Misschien vraag je jezelf af: <i>Hoe doen ze het? Hoe blijven ze fris achter al dat herde werk voor dat verdomde thema?<i/> Wel mensen, het is simpel. We drinken koffie. Industriële hoeveelheden van dampendhete koffie. We zijn er gek op!Dus als je wilt helpen met de verdere ontwikkeling van het Mantra Thme...</p>"\r
+\r
+#: admin/main.php:291\r
+#@ mantra\r
+msgid "Import/Export Settings"\r
+msgstr "Importeer/exporteer instellingen"\r
+\r
+#: admin/main.php:297\r
+#@ mantra\r
+msgid "Export Theme options"\r
+msgstr "Exporteer de thema instellingen"\r
+\r
+#: admin/main.php:298\r
+#@ mantra\r
+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!"\r
+msgstr "Het is gemakkelijk: een muisklik verder - de mogelijkhied om je Mantra instellingen te exporteren en om je computer te beweren. Voel je je veiliger? Dat is de bedoeling!"\r
+\r
+#: admin/main.php:303\r
+#@ mantra\r
+msgid "Import Theme options"\r
+msgstr "Importeer thema instellingen"\r
+\r
+#: admin/main.php:304\r
+#@ mantra\r
+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."\r
+msgstr "Zonder importeren zou het exporteren zinloos zijn. Zorg ervoor dat je het geëxporteerde bestand klaar voor gebruik hebt en we zien je terug na de muisklik."\r
+\r
+#: admin/main.php:312\r
+#@ mantra\r
+msgid "Mantra Latest News"\r
+msgstr "Nieuw bij Mantra"\r
+\r
+#: admin/main.php:323\r
+#@ mantra\r
+msgid "No news items."\r
+msgstr "Geen nieuws is goed nieuws."\r
+\r
+#: admin/settings.php:66\r
+#@ mantra\r
+msgid "One column (no sidebars)"\r
+msgstr "Eén kolom (geen sidebars)"\r
+\r
+#: admin/settings.php:67\r
+#@ mantra\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Twee kolomen, sideber aan de rechterkant"\r
+\r
+#: admin/settings.php:68\r
+#@ mantra\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Twee kolomen, sideber aan de linkerkant"\r
+\r
+#: admin/settings.php:69\r
+#@ mantra\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Drie kolomen, sidebars aan de rechterkand"\r
+\r
+#: admin/settings.php:70\r
+#@ mantra\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Drie kolomen, sidebars aan de linkerkant"\r
+\r
+#: admin/settings.php:71\r
+#@ mantra\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Drie kolomen, één sidebar aan elke kant"\r
+\r
+#: admin/settings.php:95\r
+#@ mantra\r
+msgid "Absolute"\r
+msgstr "Absoluut"\r
+\r
+#: admin/settings.php:95\r
+#@ mantra\r
+msgid "Relative"\r
+msgstr "Relatief"\r
+\r
+#: admin/settings.php:96\r
+#@ mantra\r
+msgid "Dimensions to use: "\r
+msgstr "Afmetingen te gebruiken:"\r
+\r
+#: admin/settings.php:194\r
+#: admin/settings.php:214\r
+#@ mantra\r
+msgid "Content ="\r
+msgstr "Inhoud = "\r
+\r
+#: admin/settings.php:195\r
+#: admin/settings.php:215\r
+#@ mantra\r
+msgid "Sidebar(s) ="\r
+msgstr "Sidebar(s) = "\r
+\r
+#: admin/settings.php:196\r
+#: admin/settings.php:216\r
+#@ mantra\r
+msgid "Total width ="\r
+msgstr "Totale breedte = "\r
+\r
+#: admin/settings.php:205\r
+#@ mantra\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+"Selecteer de breedte van je<b>inhoud</b> en <b>sidebar(s)</b>. \n"\r
+" \t\tTerwijl de inhoud niet minder dan 500px breed kan zijn is de sidebar minstens 220px en maximum 800px.<br />\n"\r
+"\tAls je voor drie kolomen hebt gekozen (met 2 sidebars) zullen ze elkd de helft van de geselecteerde breedte hebben."\r
+\r
+#: admin/settings.php:225\r
+#@ mantra\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have half the selected width."\r
+msgstr ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at least 20% and no more than 50%.<br />\n"\r
+"\tAls je voor drie kolomen hebt gekozen (met 2 sidebars) zullen ze elkd de helft van de geselecteerde breedte hebben."\r
+\r
+#: admin/settings.php:239\r
+#: admin/settings.php:264\r
+#: admin/settings.php:724\r
+#: admin/settings.php:1071\r
+#: admin/settings.php:1133\r
+#: admin/settings.php:1316\r
+#: admin/settings.php:1331\r
+#: admin/settings.php:1488\r
+#: admin/settings.php:1550\r
+#: admin/settings.php:1751\r
+#: admin/settings.php:1780\r
+#: admin/settings.php:1803\r
+#: admin/settings.php:1826\r
+#: admin/settings.php:1875\r
+#: admin/settings.php:2024\r
+#@ mantra\r
+msgid "Enable"\r
+msgstr "Ingeschakeld"\r
+\r
+#: admin/settings.php:239\r
+#: admin/settings.php:264\r
+#: admin/settings.php:724\r
+#: admin/settings.php:1071\r
+#: admin/settings.php:1133\r
+#: admin/settings.php:1316\r
+#: admin/settings.php:1331\r
+#: admin/settings.php:1488\r
+#: admin/settings.php:1550\r
+#: admin/settings.php:1751\r
+#: admin/settings.php:1780\r
+#: admin/settings.php:1803\r
+#: admin/settings.php:1826\r
+#: admin/settings.php:1875\r
+#: admin/settings.php:2024\r
+#@ mantra\r
+msgid "Disable"\r
+msgstr "Uitgeschakeld"\r
+\r
+#: admin/settings.php:282\r
+#@ mantra\r
+msgid "Slider Dimensions:"\r
+msgstr "Diavoorstelling afmetingen:"\r
+\r
+#: admin/settings.php:283\r
+#@ mantra\r
+msgid "width"\r
+msgstr "Breedte"\r
+\r
+#: admin/settings.php:284\r
+#@ mantra\r
+msgid "height"\r
+msgstr "Hoogte"\r
+\r
+#: admin/settings.php:285\r
+#@ mantra\r
+msgid "The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr "De afmetingen van je diashow. Zorg ervoor dat da afbeeldingen dezelfde groote hebben."\r
+\r
+#: admin/settings.php:287\r
+#@ mantra\r
+msgid "Animation:"\r
+msgstr "Animatie:"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "Random"\r
+msgstr "Willekeurig"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "Fold"\r
+msgstr "Vouwen"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "Fade"\r
+msgstr "Vervagen"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SlideInRight"\r
+msgstr "Rechts inschuiven"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SlideInLeft"\r
+msgstr "Links inschuiven"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceDown"\r
+msgstr "Naar beneden schuiven"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceDownLeft"\r
+msgstr "Naar links schuiven"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceUp"\r
+msgstr "Naar boven schuiven"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceUpLeft"\r
+msgstr "Naar links schuiven"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceUpDown"\r
+msgstr "Naar beneden inschuiven"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "SliceUpDownLeft"\r
+msgstr "Naar linksonder inschuiven"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "BoxRandom"\r
+msgstr "Willekeurige doos"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "BoxRain"\r
+msgstr "Regendoos"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "BoxRainReverse"\r
+msgstr "Omgedeerde regendoos"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "BoxRainGrow"\r
+msgstr "Groeiende regenboogdoos"\r
+\r
+#: admin/settings.php:289\r
+#@ mantra\r
+msgid "BoxRainGrowReverse"\r
+msgstr "Omgekeerde groeiende regenboogdoos"\r
+\r
+#: admin/settings.php:297\r
+#@ mantra\r
+msgid "The transition effect your slider will have."\r
+msgstr "Het overganseffect voor je diaschow."\r
+\r
+#: admin/settings.php:299\r
+#@ mantra\r
+msgid "Border Settings:"\r
+msgstr "Rand instellingen:"\r
+\r
+#: admin/settings.php:300\r
+#@ mantra\r
+msgid "Width"\r
+msgstr "Breedte"\r
+\r
+#: admin/settings.php:301\r
+#@ mantra\r
+msgid "Color"\r
+msgstr "Kleur"\r
+\r
+#: admin/settings.php:303\r
+#@ mantra\r
+msgid "The width and color of the slider's border."\r
+msgstr "De breedte en kleur van de diashow-rand"\r
+\r
+#: admin/settings.php:305\r
+#@ mantra\r
+msgid "Animation Time:"\r
+msgstr "Antimatietijd:"\r
+\r
+#: admin/settings.php:307\r
+#@ mantra\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "Hoelang de overgang zal duren."\r
+\r
+#: admin/settings.php:309\r
+#@ mantra\r
+msgid "Pause Time:"\r
+msgstr "Pausetijd: "\r
+\r
+#: admin/settings.php:311\r
+#@ mantra\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "De tijd waarin de dia zal stilstaan en zichtbaar zal zijn."\r
+\r
+#: admin/settings.php:314\r
+#@ mantra\r
+msgid "Slider navigation:"\r
+msgstr "Diashow navigatie:"\r
+\r
+#: admin/settings.php:316\r
+#@ mantra\r
+msgid "Numbers"\r
+msgstr "Nummers"\r
+\r
+#: admin/settings.php:316\r
+#@ mantra\r
+msgid "Bullets"\r
+msgstr "Bolletjes"\r
+\r
+#: admin/settings.php:316\r
+#: admin/settings.php:1409\r
+#@ mantra\r
+msgid "None"\r
+msgstr "Geen"\r
+\r
+#: admin/settings.php:324\r
+#@ mantra\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Je diaschow type. Getoond onder de diashow"\r
+\r
+#: admin/settings.php:326\r
+#@ mantra\r
+msgid "Slider arrows:"\r
+msgstr "Diashowpijlen:"\r
+\r
+#: admin/settings.php:328\r
+#@ mantra\r
+msgid "Always Visible"\r
+msgstr "Altijd zichtbaar"\r
+\r
+#: admin/settings.php:328\r
+#@ mantra\r
+msgid "Visible on Hover"\r
+msgstr "Zichtbaar bij muisover"\r
+\r
+#: admin/settings.php:328\r
+#@ mantra\r
+msgid "Hidden"\r
+msgstr "Verborgen"\r
+\r
+#: admin/settings.php:336\r
+#@ mantra\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "De linker- en rechterpijl op je diashow"\r
+\r
+#: admin/settings.php:377\r
+#: admin/settings.php:446\r
+#@ mantra\r
+msgid "Select Category"\r
+msgstr "Selecteer categorie"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Custom Slides"\r
+msgstr "Aangepaste dia's"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Latest Posts"\r
+msgstr "Recentste berichten"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Random Posts"\r
+msgstr "Willekeurige berichten"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Sticky Posts"\r
+msgstr "Gepinde Berichten"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Latest Posts from Category"\r
+msgstr "Recentste berichten uit een Ccatagorie"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Random Posts from Category"\r
+msgstr "Willekeurige berichten uit een categorie"\r
+\r
+#: admin/settings.php:404\r
+#@ mantra\r
+msgid "Specific Posts"\r
+msgstr "Specifieke berichten"\r
+\r
+#: admin/settings.php:418\r
+#@ mantra\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Recentste berichten zullen in de diashow geladen worden."\r
+\r
+#: admin/settings.php:422\r
+#@ mantra\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Willekeurige berichten zullen in de diashow geladen worden."\r
+\r
+#: admin/settings.php:426\r
+#@ mantra\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "Recentste berichten uit de gekozen categorie zullen in de diashow geladen worden."\r
+\r
+#: admin/settings.php:431\r
+#@ mantra\r
+msgid "Random posts from the category you choose will be loaded into the slider."\r
+msgstr "Willekeurige berichten uit de gekozen categorie zullen in de diashow geladen worden."\r
+\r
+#: admin/settings.php:435\r
+#@ mantra\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Enkel gepinde berichten zullen in de diashow geladen worden."\r
+\r
+#: admin/settings.php:439\r
+#@ mantra\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr "Typ de ID's van de berichten die je wilt tonen (geschijden door een komma): "\r
+\r
+#: admin/settings.php:444\r
+#@ mantra\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Kies de categorie: "\r
+\r
+#: admin/settings.php:461\r
+#@ mantra\r
+msgid "Number of posts to show:"\r
+msgstr "Aantal berichten weer te geven:"\r
+\r
+#: admin/settings.php:468\r
+#@ mantra\r
+msgid "Slide 1"\r
+msgstr "Dia 1"\r
+\r
+#: admin/settings.php:473\r
+#: admin/settings.php:488\r
+#: admin/settings.php:503\r
+#: admin/settings.php:518\r
+#: admin/settings.php:533\r
+#: admin/settings.php:575\r
+#: admin/settings.php:590\r
+#: admin/settings.php:620\r
+#@ mantra\r
+msgid "Title"\r
+msgstr "Titel"\r
+\r
+#: admin/settings.php:475\r
+#: admin/settings.php:490\r
+#: admin/settings.php:505\r
+#: admin/settings.php:520\r
+#: admin/settings.php:535\r
+#: admin/settings.php:577\r
+#: admin/settings.php:592\r
+#: admin/settings.php:607\r
+#: admin/settings.php:622\r
+#@ mantra\r
+msgid "Text"\r
+msgstr "Tekst"\r
+\r
+#: admin/settings.php:483\r
+#@ mantra\r
+msgid "Slide 2"\r
+msgstr "Dia 2"\r
+\r
+#: admin/settings.php:498\r
+#@ mantra\r
+msgid "Slide 3"\r
+msgstr "Dia 3"\r
+\r
+#: admin/settings.php:513\r
+#@ mantra\r
+msgid "Slide 4"\r
+msgstr "Dia 4"\r
+\r
+#: admin/settings.php:528\r
+#@ mantra\r
+msgid "Slide 5"\r
+msgstr "Dia 5"\r
+\r
+#: admin/settings.php:413\r
+#@ mantra\r
+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."\r
+msgstr "De inhoud van je dia's. Enkel de afbeelding is vereist, alle andere velden zijn optitioneel. Enkel de dia's waarbij een afbeelding is geselecteerd zullen actief zijn en zichtbaar in de diashow."\r
+\r
+#: admin/settings.php:550\r
+#@ mantra\r
+msgid "Number of columns:"\r
+msgstr "Aantal kolomen:"\r
+\r
+#: admin/settings.php:560\r
+#@ mantra\r
+msgid "Image Height:"\r
+msgstr "Afbeeldinghoogte:"\r
+\r
+#: admin/settings.php:563\r
+#@ mantra\r
+msgid "Read more text:"\r
+msgstr "Verder lezen tekst:"\r
+\r
+#: admin/settings.php:566\r
+#@ mantra\r
+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."\r
+msgstr "De gelinkte tekst die onderaan de kolomen verschijnt. Je kunt alle tekst erin verwijderen als je ze niet wilt."\r
+\r
+#: admin/settings.php:570\r
+#@ mantra\r
+msgid "1st Column"\r
+msgstr "1ste kolom"\r
+\r
+#: admin/settings.php:585\r
+#@ mantra\r
+msgid "2nd Column"\r
+msgstr "2de kolom"\r
+\r
+#: admin/settings.php:600\r
+#@ mantra\r
+msgid "3rd Column"\r
+msgstr "3de kolom"\r
+\r
+#: admin/settings.php:615\r
+#@ mantra\r
+msgid "4th Column"\r
+msgstr "4de kolom"\r
+\r
+#: admin/settings.php:637\r
+#@ mantra\r
+msgid "Extra Text"\r
+msgstr "Extra tekst"\r
+\r
+#: admin/settings.php:642\r
+#@ mantra\r
+msgid "Top Title"\r
+msgstr "Titel"\r
+\r
+#: admin/settings.php:643\r
+#@ mantra\r
+msgid "Second Title"\r
+msgstr "Ondertitel"\r
+\r
+#: admin/settings.php:646\r
+#@ mantra\r
+msgid "Title color"\r
+msgstr "Titelkleur"\r
+\r
+#: admin/settings.php:650\r
+#@ mantra\r
+msgid "Bottom Text 1"\r
+msgstr "Ondertekst 1"\r
+\r
+#: admin/settings.php:652\r
+#@ mantra\r
+msgid "Bottom Text 2"\r
+msgstr "Ondertekst 2"\r
+\r
+#: admin/settings.php:639\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Meer tekst voor je startpagina. De titel staat boven de diashow, de ondertitel tussen de diashow en de kolom en er staan nog 2 tekstrijen onder de kolomen.\n"\r
+"/t/t Dit is allemaal optitioneel dus laat alle invoervelden leek als het niet vereist is."\r
+\r
+#: admin/settings.php:660\r
+#@ mantra\r
+msgid "Hide areas"\r
+msgstr "Meer gebieden"\r
+\r
+#: admin/settings.php:674\r
+#@ mantra\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Verberg de koptekstzone (afbeelding of achtergronkleur)."\r
+\r
+#: admin/settings.php:678\r
+#@ mantra\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Verberg het hoofdmenu (de navigatietabladen bovenaan)."\r
+\r
+#: admin/settings.php:682\r
+#@ mantra\r
+msgid "Hide the footer widgets. "\r
+msgstr "Verberg de voetnootwidgets."\r
+\r
+#: admin/settings.php:686\r
+#@ mantra\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Verberg de voetnoot (copyright verwijzingen)."\r
+\r
+#: admin/settings.php:690\r
+#@ mantra\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Verberg de witte kleur. Enkel de achtergrondkleur blijft."\r
+\r
+#: admin/settings.php:662\r
+#@ mantra\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Kies de gebieden om te verbergen op de startpagina."\r
+\r
+#: admin/settings.php:803\r
+#@ mantra\r
+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."\r
+msgstr "Selecteer de tekengroote die je wilt gebruiken in de blog. Pagina's, berichten en reacties zullen gewijzigd worden. Knoppen, kopteksten en menu's zullen hetzelfde blijfen."\r
+\r
+#: admin/settings.php:847\r
+#@ mantra\r
+msgid "Select the font family you'll use in your blog. All content text will be affected (including menu buttons). "\r
+msgstr "Selecteer het lettertype dat je wilt gebruiken in de blog. Alle tekst zal gewijzigd worden (inclusief menuknoppen)."\r
+\r
+#: admin/settings.php:849\r
+#: admin/settings.php:899\r
+#: admin/settings.php:950\r
+#: admin/settings.php:1002\r
+#@ mantra\r
+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."\r
+msgstr "Of voeg je Google-lettertype hieronder in. Gelieve enkel de <strong>name</strong> van het lettertype in te voegen.<br/> Voorbeeld: Marco One. Ga naar <a href=\"'http://www.google.com/webfonts' > google fonts </a> voor inspiratie."\r
+\r
+#: admin/settings.php:896\r
+#@ mantra\r
+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."\r
+msgstr "Selecteer het lettertype dat je voor je titels wilt gebruiken. Dit heeft enkel invloed op berichttitels en paginatitels. Laat 'Standaard' staan om het standaardlettertype dat je geselecteerd hebt te gebruiken."\r
+\r
+#: admin/settings.php:948\r
+#@ mantra\r
+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."\r
+msgstr "Selecteer het lettertype dat je wilt gebruiken in je sidebar(s). Tekst in de sidebars wordt gewijzigd, inclusief eventuele gadgets. Laat 'Standaard' staan om het standaardlettertype dat je geselecteerd hebt te gebruiken."\r
+\r
+#: admin/settings.php:999\r
+#@ mantra\r
+msgid "Select the font family you want your subheaders to have (h2 - h6 tags will be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr "Selecteer het lettertype dat je wilt gebruiken voor je ondertitels (h2 - h6 tags zullen worden gewijzigd). Laat 'Standaard' staan om het standaardlettertype dat je geselecteerd hebt te gebruiken."\r
+\r
+#: admin/settings.php:1011\r
+#: admin/settings.php:1026\r
+#: admin/settings.php:1041\r
+#: admin/settings.php:1086\r
+#: admin/settings.php:1101\r
+#: admin/settings.php:1116\r
+#@ mantra\r
+msgid "Default"\r
+msgstr "Standaard"\r
+\r
+#: admin/settings.php:1019\r
+#@ mantra\r
+msgid "Post Header Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Berichtkop lettergrope. Laat 'Standaard' staan om de standaardgroote te gebruken (zoals ingesteld in de CSS)."\r
+\r
+#: admin/settings.php:1034\r
+#@ mantra\r
+msgid "Sidebar Font size. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "Sidebar tekengroote. Laat 'Standaard' staan om de standaardgroote te bruiken (zoals ingesteld in de CSS)."\r
+\r
+#: admin/settings.php:1041\r
+#: admin/settings.php:1842\r
+#@ mantra\r
+msgid "Left"\r
+msgstr "Links"\r
+\r
+#: admin/settings.php:1041\r
+#: admin/settings.php:1842\r
+#@ mantra\r
+msgid "Right"\r
+msgstr "Rechts"\r
+\r
+#: admin/settings.php:1041\r
+#@ mantra\r
+msgid "Justify"\r
+msgstr "Verantwoorden"\r
+\r
+#: admin/settings.php:1041\r
+#: admin/settings.php:1842\r
+#@ mantra\r
+msgid "Center"\r
+msgstr "Centreren"\r
+\r
+#: admin/settings.php:1049\r
+#@ mantra\r
+msgid "This overwrites the text alignment in posts and pages. Leave 'Default' for normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr "Dit overschrijft de tekstuitlijning in berichten en pagina's. Laat 'Standaard' staan voor normale instellingen (uitlijning zal blijven zoals ingesteld in berichten, reacties, ...)."\r
+\r
+#: admin/settings.php:1063\r
+#@ mantra\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Kies de inspringing voor je alinea's."\r
+\r
+#: admin/settings.php:1079\r
+#@ mantra\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "Schakelt de standaard kop en titel inspringing uit (linker marge)."\r
+\r
+#: admin/settings.php:1094\r
+#@ mantra\r
+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)."\r
+msgstr "Tekstlijn hoogte. De hoogte tussen 2 rijen tekst. Laat 'Standaard' staan voor normale instellingen (hoogte zal zijn zoals ingesteld in de CSS)."\r
+\r
+#: admin/settings.php:1109\r
+#@ mantra\r
+msgid "The space between <i>words</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "De ruimte tussen <i>woorden</i>. Laat 'Standaard' staan voor normale instelling (de afstand zal zijn zoals ingesteld in de CSS)."\r
+\r
+#: admin/settings.php:1124\r
+#@ mantra\r
+msgid "The space between <i>letters</i>. Leave 'Default' for normal settings (size value will be as set in the CSS)."\r
+msgstr "De ruimte tussen <i>letters</i>. Laat 'Standaard' staan voor normale instellingen (de afstand zal zijn zoals ingesteld in de CSS)."\r
+\r
+#: admin/settings.php:1141\r
+#@ mantra\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "Schakelt de standaard tekstschaduw op koppen en titels uit."\r
+\r
+#: admin/settings.php:1153\r
+#@ mantra\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Achtergrondkleur (Standaardwaarde is 444444)."\r
+\r
+#: admin/settings.php:1161\r
+#@ mantra\r
+msgid "Header background color (Default value is 333333). You can delete all inside text for no background color."\r
+msgstr "Kop achtergronkleur (Standaardwaarde is 333333). Je kunt de tekst hierin verwijderen om geen achtergrondkleur te hebben."\r
+\r
+#: admin/settings.php:1175\r
+#@ mantra\r
+msgid "Main menu background color (Default value is FAFAFA). Should be the same color as the content bg or something just as light."\r
+msgstr "Hoofdmenu achtergrondkleur (Standaardwaarde is FAFAFA). Moet dezelfde kleur zijn als de inhoud achtergrondkleur of iets minstens zo licht."\r
+\r
+#: admin/settings.php:1197\r
+#@ mantra\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "Achtergrondkleur voetnootgadgets gebied (Standaardwaarde is 171717)."\r
+\r
+#: admin/settings.php:1205\r
+#@ mantra\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Voettekst achtergrondkleur (Standaardwaarde is 222222)."\r
+\r
+#: admin/settings.php:1213\r
+#@ mantra\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Kleur van je blogtitel (Standaardwaarde is 0D85CC)."\r
+\r
+#: admin/settings.php:1221\r
+#@ mantra\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Kleur van je blogbeschrijven (Standaardwaarde is 222222)."\r
+\r
+#: admin/settings.php:1229\r
+#@ mantra\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Tekstkleur van de inhoud (Standaardwaarde is 333333)."\r
+\r
+#: admin/settings.php:1237\r
+#@ mantra\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Tekstkleur van de links (Standaardwaarde is 0D85CC)."\r
+\r
+#: admin/settings.php:1245\r
+#@ mantra\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "Tekstkleur van de links bij muisover (Standaardwaarde is 333333)."\r
+\r
+#: admin/settings.php:1253\r
+#@ mantra\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Tekstkleur van de berichtkop (Standaardwaarde is 333333)."\r
+\r
+#: admin/settings.php:1261\r
+#@ mantra\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr "Kleur berichttekst bij muisover (Standaardwaarde is 000000)."\r
+\r
+#: admin/settings.php:1269\r
+#@ mantra\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Achtergrondkleur sidebar kop (Standaardwaarde is 444444)."\r
+\r
+#: admin/settings.php:1278\r
+#@ mantra\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Tekstkleur sidebar kop (Standaardwaarde is 2EA5FD)."\r
+\r
+#: admin/settings.php:1286\r
+#@ mantra\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Tekstkleur voetgadgets (Standaardwaarde is 0D85CC)."\r
+\r
+#: admin/settings.php:1294\r
+#@ mantra\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Tekstkleur links in voetgadgets (Standaardwaarde is 666666)."\r
+\r
+#: admin/settings.php:1302\r
+#@ mantra\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr "Tekstkleur links in voetgadgets bij muisover (Standaardwaarde is 888888)."\r
+\r
+#: admin/settings.php:1346\r
+#: admin/settings.php:1409\r
+#@ mantra\r
+msgid "White"\r
+msgstr "Wit"\r
+\r
+#: admin/settings.php:1346\r
+#@ mantra\r
+msgid "Light"\r
+msgstr "Licht"\r
+\r
+#: admin/settings.php:1346\r
+#@ mantra\r
+msgid "Light Gray"\r
+msgstr "Lichtgrijs"\r
+\r
+#: admin/settings.php:1346\r
+#: admin/settings.php:1409\r
+#@ mantra\r
+msgid "Gray"\r
+msgstr "Grijs"\r
+\r
+#: admin/settings.php:1346\r
+#@ mantra\r
+msgid "Dark Gray"\r
+msgstr "Donkergrijs"\r
+\r
+#: admin/settings.php:1346\r
+#@ mantra\r
+msgid "Black"\r
+msgstr "Zwart"\r
+\r
+#: admin/settings.php:1354\r
+#@ mantra\r
+msgid "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."\r
+msgstr "This setting changes the look of your captions. Images that are not inserted through captions will not be affected."\r
+\r
+#: admin/settings.php:1370\r
+#@ mantra\r
+msgid "The border around your inserted images. "\r
+msgstr "De rand rond de ingevoegde afbeeldingen."\r
+\r
+#: admin/settings.php:1385\r
+#@ mantra\r
+msgid "The image on top of your captions. "\r
+msgstr "De afbeelding bovenop uw invoegsels."\r
+\r
+#: admin/settings.php:1400\r
+#@ mantra\r
+msgid "The sidebar list bullets. "\r
+msgstr "De sidebar opsommingstekens."\r
+\r
+#: admin/settings.php:1425\r
+#: admin/settings.php:1441\r
+#: admin/settings.php:1458\r
+#: admin/settings.php:1473\r
+#: admin/settings.php:1503\r
+#: admin/settings.php:1518\r
+#: admin/settings.php:1534\r
+#: admin/settings.php:1570\r
+#: admin/settings.php:1585\r
+#: admin/settings.php:1600\r
+#: admin/settings.php:1615\r
+#: admin/settings.php:1630\r
+#: admin/settings.php:1645\r
+#: admin/settings.php:1660\r
+#: admin/settings.php:1675\r
+#@ mantra\r
+msgid "Show"\r
+msgstr "Weergeven"\r
+\r
+#: admin/settings.php:1425\r
+#: admin/settings.php:1441\r
+#: admin/settings.php:1458\r
+#: admin/settings.php:1473\r
+#: admin/settings.php:1503\r
+#: admin/settings.php:1534\r
+#: admin/settings.php:1570\r
+#: admin/settings.php:1585\r
+#: admin/settings.php:1600\r
+#: admin/settings.php:1615\r
+#: admin/settings.php:1630\r
+#: admin/settings.php:1645\r
+#: admin/settings.php:1660\r
+#: admin/settings.php:1675\r
+#@ mantra\r
+msgid "Hide"\r
+msgstr "Verbergen"\r
+\r
+#: admin/settings.php:1433\r
+#@ mantra\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Verberg of toon een horizontale lijn om berichten te scheiden."\r
+\r
+#: admin/settings.php:1449\r
+#@ mantra\r
+msgid "Hide or show bullets next to lists that are in your content area (posts, pages etc.)."\r
+msgstr "Verberg of toon opsommingstekens naast lijsten die in je inhoudsgebied staan (berichten, pagina's, ...)."\r
+\r
+#: admin/settings.php:1466\r
+#@ mantra\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "Verberg of tooon paginatitels op gelijk welke <i>gemaake</i> pagina."\r
+\r
+#: admin/settings.php:1481\r
+#@ mantra\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Verberg of toon paginatitels op <i>categorie</i> pagina's."\r
+\r
+#: admin/settings.php:1496\r
+#@ mantra\r
+msgid "Hide table borders and background color."\r
+msgstr "Verberg tabelranden en achtergrondkleur."\r
+\r
+#: admin/settings.php:1511\r
+#@ mantra\r
+msgid "Hide the explanatory text under the comments form. (starts with <i>You may use these HTML tags and attributes:...</i>)."\r
+msgstr "Verberg de uitleg onder het reactiesformulier. (begint met <i> Je mag deze HTML tags en attributen gebruiken: ...</i>)."\r
+\r
+#: admin/settings.php:1518\r
+#@ mantra\r
+msgid "Hide in posts"\r
+msgstr "Verberg in berichten"\r
+\r
+#: admin/settings.php:1518\r
+#@ mantra\r
+msgid "Hide in pages"\r
+msgstr "Verberg in pagina's"\r
+\r
+#: admin/settings.php:1518\r
+#@ mantra\r
+msgid "Hide everywhere"\r
+msgstr "Overal verbergen."\r
+\r
+#: admin/settings.php:1526\r
+#@ mantra\r
+msgid "Hide the <b>Comments are closed</b> text that by default shows up on pages or posts with the comments disabled."\r
+msgstr "Verberg de <b>Reacties zijn uitgeschakels</b> tekst die standaard weergegeven wordt op pagina's of berichten waarbij de reacties zijn uitgeschakeld."\r
+\r
+#: admin/settings.php:1542\r
+#@ mantra\r
+msgid "Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr "Verberg de <b>Reacties zijn uitgeschakeld</b> tekst naast berichten waarbij de reacties zijn uitgeschakeld."\r
+\r
+#: admin/settings.php:1558\r
+#@ mantra\r
+msgid "Enable the Back to Top button. The button appears after scrolling the page down."\r
+msgstr "Schakelt de terug naar boven knop in. De knop verschijn als je naar beneden scrolt."\r
+\r
+#: admin/settings.php:2004\r
+#@ mantra\r
+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 © ."\r
+msgstr "Voeg aangepaste tekst of HTML-code in die wordt weergegeven in je voetnoot.<br/> Je kunt HTML gebruiken om links, afbeeldingen en speciale tekens in te voegen."\r
+\r
+#: admin/settings.php:1578\r
+#@ mantra\r
+msgid "Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</strong> next to posts or post excerpts."\r
+msgstr "Verberg of toon de <strong>Plaats een reacht</strong> of <strong>x Reacties</strong> naast berichtfragmenten."\r
+\r
+#: admin/settings.php:1593\r
+#@ mantra\r
+msgid "Hide or show the post date."\r
+msgstr "Verberg of toon de berichtdatum."\r
+\r
+#: admin/settings.php:1608\r
+#@ mantra\r
+msgid "Show the post time with the date. Time will not be visible if the Post Date is hidden."\r
+msgstr "Toon de berichttijd met de datum. Tijd zal niet zichtbaar zijn als de berichtdatum is verborgen."\r
+\r
+#: admin/settings.php:1623\r
+#@ mantra\r
+msgid "Hide or show the post author."\r
+msgstr "Verberg of toon de auteur van het bericht."\r
+\r
+#: admin/settings.php:1638\r
+#@ mantra\r
+msgid "Hide the post category."\r
+msgstr "Verberg de berichtcategorie."\r
+\r
+#: admin/settings.php:1653\r
+#@ mantra\r
+msgid "Hide the post tags."\r
+msgstr "Verberg de berichttags."\r
+\r
+#: admin/settings.php:1668\r
+#@ mantra\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "Verberg de 'Voeg permalink toe aan je favorieten'."\r
+\r
+#: admin/settings.php:1683\r
+#@ mantra\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr "Verberg alle berichtmeta's. Alle meta-informatie en meta-gebieden zullen worden verborgen."\r
+\r
+#: admin/settings.php:1696\r
+#: admin/settings.php:1711\r
+#: admin/settings.php:1727\r
+#@ mantra\r
+msgid "Excerpt"\r
+msgstr "Fragment"\r
+\r
+#: admin/settings.php:1696\r
+#: admin/settings.php:1711\r
+#: admin/settings.php:1727\r
+#@ mantra\r
+msgid "Full Post"\r
+msgstr "Volledig bericht."\r
+\r
+#: admin/settings.php:1704\r
+#@ mantra\r
+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."\r
+msgstr "Fragment op startpagina. Alleen standaardberichten zullen worden aangepast. Alle andere berichtformaten hebben hun eigen specifieke inspringing."\r
+\r
+#: admin/settings.php:1719\r
+#@ mantra\r
+msgid "Choose if you want the sticky posts on your home page to be visible in full or just the excerpts. "\r
+msgstr "Kies of je wilt de gepinde berichten op je startpagina volledig zichtbaar wilt hebben of enkel een fragment."\r
+\r
+#: admin/settings.php:1735\r
+#@ mantra\r
+msgid "Excerpts on archive, categroy and search pages. Same as above, only standard posts will be affected."\r
+msgstr "Fragmenten op archief, categorie en zoekpagina's. Hetzelfde als herboven, enkel standaardpagina's worden beïnvloed."\r
+\r
+#: admin/settings.php:1743\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"Het aantal woorden dat een fragment zal hebben. Als dat aantal is bereikt zal het bericht onderbroken worden door een <i>Verder lezen</i> link die\n"\r
+"\t\t\t\t\t\t\tde lezer naar de bladzijde met de het volledige bericht brengt"\r
+\r
+#: admin/settings.php:1759\r
+#@ mantra\r
+msgid "Enable the Magazine Layout. This layout applies to pages with posts and shows 2 posts per row."\r
+msgstr "Schakelt de magazine lay-out in. Deze lay-out is voor pagina's met berichten and twee berichten per rij."\r
+\r
+#: admin/settings.php:1766\r
+#@ mantra\r
+msgid "Replaces the three dots ('[...])' that are appended automatically to excerpts."\r
+msgstr "Vevant de drie puntjes ('[...])' die automatishc worden toegevoegd aan de fragmenten."\r
+\r
+#: admin/settings.php:1773\r
+#@ mantra\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "Pas de 'Verder lezen' link aan die fragmenten wordt toegevoegd."\r
+\r
+#: admin/settings.php:1819\r
+#@ mantra\r
+msgid "Show featured images as thumbnails on posts. The images must be selected for each post in the Featured Image section."\r
+msgstr "Toont uitgelichte afbeeldingen bij berichten. De afbeelding moet voor elk bericht geselecteerd worden in het uigelichte afbeeldingen gedeelte."\r
+\r
+#: admin/settings.php:1834\r
+#@ mantra\r
+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."\r
+msgstr "Toon de eerste afbeelding die je in het bericht ingevoegd hebt als miniatuur. Als je deze optie inschakelt zal de eerste afbeelding gebruikt worden, zelfs als je een uitgelichte afbeelding hebt geselecteert in je bericht."\r
+\r
+#: admin/settings.php:1850\r
+#@ mantra\r
+msgid "Thumbnail alignment."\r
+msgstr "Miniatuur uitlijning."\r
+\r
+#: admin/settings.php:1867\r
+#@ mantra\r
+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."\r
+msgstr "De groote die je wilt voor je miniaturen (in pixels). Standaard worden afbeeldingen geschaald, waarbij de verhoudingen behouden blijven. Kies knippen als je de exacte afmetingen wilt."\r
+\r
+#: admin/settings.php:1883\r
+#@ mantra\r
+msgid ""\r
+"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"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header size."\r
+msgstr ""\r
+"Toon de uitgelichte afbeeldingen in de kopteksten. De koptekst zal worden vervangen door een uigelichte afbeelding als je die als uitgelichte afbeelding hebt geselecteerd in het bericht en\n"\r
+"\t\t\t\t\t\t\tals het groter of even groot is als de huidige koptekst."\r
+\r
+#: admin/settings.php:1904\r
+#@ mantra\r
+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> )"\r
+msgstr "Selecteer het gewenste sociale netwerk van het uitvalmenu links en voeg je bijhorende webadres in in het bijhoren invoerveld. (ex: <i>http://www.facebook.com/yourname</i> )"\r
+\r
+#: admin/settings.php:1918\r
+#@ mantra\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Je kan tot 5 verschillende sociale netwersites en adressen invoeren."\r
+\r
+#: admin/settings.php:1932\r
+#@ mantra\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Er zijn in totaal 27 sociale netwerken om uit te kiezen."\r
+\r
+#: admin/settings.php:1946\r
+#@ mantra\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Je kan er zoveel leeg laten als je wilt."\r
+\r
+#: admin/settings.php:1960\r
+#@ mantra\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Je kan hetzelfde sociale netwerk meerdere keren kiezen."\r
+\r
+#: admin/settings.php:1991\r
+#@ mantra\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "Kies het <b>gebied</b> waar je wilt dat het sociale netwerk wordt weergegeven."\r
+\r
+#: admin/settings.php:1324\r
+#@ mantra\r
+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."\r
+msgstr "Toont broodkruimels aan de bovenkant van elke inhoudsgebied. Broodkruimels zijn een vorm van navigatie dat je locatie binnen de site toont."\r
+\r
+#: admin/settings.php:1339\r
+#@ mantra\r
+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. "\r
+msgstr "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."\r
+\r
+#: admin/settings.php:780\r
+#@ mantra\r
+msgid "Limitations: It has to be an image. It should be max 64x64 pixels in dimensions. Recommended file extensions .ico and .png . "\r
+msgstr "Beperkingen: Het moet een afbeelding zijn. Niet groter dan 64x64 pixels in afmetingen. Aanbevolen bestandstypen zijn .ico en and .png ."\r
+\r
+#: admin/settings.php:2032\r
+#@ mantra\r
+msgid "Enable Mantra's Search Engine Optimization. This is enabled by default and should only be disabled if you are using a SEO plugin."\r
+msgstr "Schakelt Mantra's zoekmachinve verbereraar in. Standaard is dit ingeschakeld en zou enkel uitgeschakeld zijn als je een SEO plugin gebruikt."\r
+\r
+#: admin/settings.php:2044\r
+#@ mantra\r
+msgid "Auto"\r
+msgstr "Automatisch"\r
+\r
+#: admin/settings.php:2044\r
+#@ mantra\r
+msgid "Manual"\r
+msgstr "Handmatig"\r
+\r
+#: includes/theme-functions.php:275\r
+#@ mantra\r
+msgid "Home Page"\r
+msgstr "Startpagina"\r
+\r
+#: includes/theme-comments.php:28\r
+#@ mantra\r
+msgid "says:"\r
+msgstr "zegt:"\r
+\r
+#: includes/theme-comments.php:34\r
+#@ mantra\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Je reactie wacht op goedkeuring."\r
+\r
+#. translators: 1: date, 2: time\r
+#: includes/theme-comments.php:41\r
+#@ mantra\r
+msgid "at"\r
+msgstr "om"\r
+\r
+#: includes/theme-comments.php:41\r
+#: includes/theme-comments.php:58\r
+#@ mantra\r
+msgid "(Edit)"\r
+msgstr "(Bewerken)"\r
+\r
+#: includes/theme-comments.php:58\r
+#@ mantra\r
+msgid "Pingback: "\r
+msgstr "Pingback: "\r
+\r
+#: includes/theme-loop.php:145\r
+#@ mantra\r
+msgid "By "\r
+msgstr "Door"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "Leave a comment"\r
+msgstr "Laat een reactie achter"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> reactie"\r
+\r
+#: includes/theme-comments.php:85\r
+#@ mantra\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> reacties"\r
+\r
+#: includes/theme-loop.php:185\r
+#@ mantra\r
+msgid " Bookmark the "\r
+msgstr "Voeg toe aan je favorieten: "\r
+\r
+#: includes/theme-loop.php:185\r
+#: includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+#@ mantra\r
+msgid "Permalink to"\r
+msgstr "Permalink naar"\r
+\r
+#: includes/theme-loop.php:185\r
+#: includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+#@ mantra\r
+msgid "permalink"\r
+msgstr "permalink"\r
+\r
+#: includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+#@ mantra\r
+msgid "Bookmark the "\r
+msgstr "Voeg toe aan je favorieten: "\r
+\r
+#: includes/theme-loop.php:211\r
+#@ mantra\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Oudere berichten"\r
+\r
+#: includes/theme-loop.php:212\r
+#@ mantra\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Nieuwere berichten <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+#@ mantra\r
+msgid "Page %s"\r
+msgstr "Pagina %s"\r
+\r
+#: includes/theme-setup.php:90\r
+#@ mantra\r
+msgid "Primary Navigation"\r
+msgstr "Primaire navigatie"\r
+\r
+#: includes/theme-setup.php:91\r
+#@ mantra\r
+msgid "Top Navigation"\r
+msgstr "Koptekstnavigatie"\r
+\r
+#: includes/theme-setup.php:92\r
+#@ mantra\r
+msgid "Footer Navigation"\r
+msgstr "Voettekstnavigatie"\r
+\r
+#: includes/theme-setup.php:139\r
+#@ mantra\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:200\r
+#@ mantra\r
+msgid "Skip to content"\r
+msgstr "Doorgaan naar inhoud"\r
+\r
+#: includes/theme-setup.php:227\r
+#@ mantra\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Primaire gadgetzone - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:229\r
+#@ mantra\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Primaire gadgetzone - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:238\r
+#@ mantra\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Secundaire gadgetzone - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:240\r
+#@ mantra\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Secudaire gadgetzone - Sidebar 1"\r
+\r
+#: includes/theme-setup.php:249\r
+#@ mantra\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Derde gadgetzone - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:251\r
+#@ mantra\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Derde gadgetzone - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:260\r
+#@ mantra\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Vierde gadgetzone - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:262\r
+#@ mantra\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Vierde gadgetzone - Sidebar 2"\r
+\r
+#: includes/theme-setup.php:271\r
+#@ mantra\r
+msgid "First Footer Widget Area"\r
+msgstr "Eerste voetnoot gadgetzone"\r
+\r
+#: includes/theme-setup.php:273\r
+#@ mantra\r
+msgid "First footer widget area"\r
+msgstr "Eerste voetnoot gadgetzone"\r
+\r
+#: includes/theme-setup.php:282\r
+#@ mantra\r
+msgid "Second Footer Widget Area"\r
+msgstr "Tweede voetnoot gadgetzone"\r
+\r
+#: includes/theme-setup.php:284\r
+#@ mantra\r
+msgid "Second footer widget area"\r
+msgstr "Tweede voetnoot gadgetzone"\r
+\r
+#: includes/theme-setup.php:293\r
+#@ mantra\r
+msgid "Third Footer Widget Area"\r
+msgstr "Derde voetnoot gadgetzone"\r
+\r
+#: includes/theme-setup.php:295\r
+#@ mantra\r
+msgid "The third footer widget area"\r
+msgstr "De derde voetnoot gadgetzone"\r
+\r
+#: includes/theme-setup.php:304\r
+#@ mantra\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Vierde voetnoot gadgetzone"\r
+\r
+#: includes/theme-setup.php:306\r
+#@ mantra\r
+msgid "The fourth footer widget area"\r
+msgstr "De vierde voetnoot gadgetzone"\r
+\r
+#: admin/main.php:96\r
+#@ mantra\r
+msgid "Header Settings"\r
+msgstr ""\r
+\r
+#: admin/main.php:117\r
+#@ mantra\r
+msgid "Header Height"\r
+msgstr ""\r
+\r
+#: admin/main.php:118\r
+#@ mantra\r
+msgid "Site Header"\r
+msgstr ""\r
+\r
+#: admin/main.php:119\r
+#@ mantra\r
+msgid "Custom Logo Upload"\r
+msgstr ""\r
+\r
+#: admin/main.php:120\r
+#@ mantra\r
+msgid "Header Top Spacing"\r
+msgstr ""\r
+\r
+#: admin/main.php:121\r
+#@ mantra\r
+msgid "Rounded Menu Corners"\r
+msgstr ""\r
+\r
+#: admin/main.php:122\r
+#@ mantra\r
+msgid "FavIcon Upload"\r
+msgstr ""\r
+\r
+#: admin/main.php:142\r
+#@ mantra\r
+msgid "Menu Items Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:143\r
+#@ mantra\r
+msgid "First Sidebar Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:144\r
+#@ mantra\r
+msgid "Second Sidebar Background Color"\r
+msgstr ""\r
+\r
+#: admin/main.php:211\r
+#@ mantra\r
+msgid "Custom Footer Text"\r
+msgstr ""\r
+\r
+#: admin/settings.php:86\r
+#@ mantra\r
+msgid ""\r
+"Choose your layout. Possible options are: <br> No sidebar, a single sidebar on either left of right, two sidebars on either left or \n"\r
+"\t\tright and two sidebars on each side."\r
+msgstr ""\r
+\r
+#: admin/settings.php:250\r
+#@ mantra\r
+msgid "Enable the mobile view and make Mantra responsive. The layout and look of your blog will change depending on what device and what resolution it is viewed in."\r
+msgstr ""\r
+\r
+#: admin/settings.php:272\r
+#@ mantra\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page. It has a slider and columns for presentation\n"\r
+"\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 » Reading </a> and make sure you have selected <strong>Front Page Displays</strong> as <Strong>Your Latest Posts</strong>."\r
+msgstr ""\r
+\r
+#: admin/settings.php:306\r
+#: admin/settings.php:310\r
+#@ mantra\r
+msgid "milliseconds"\r
+msgstr ""\r
+\r
+#: admin/settings.php:472\r
+#: admin/settings.php:487\r
+#: admin/settings.php:502\r
+#: admin/settings.php:517\r
+#: admin/settings.php:532\r
+#: admin/settings.php:574\r
+#: admin/settings.php:589\r
+#: admin/settings.php:604\r
+#: admin/settings.php:619\r
+#: admin/settings.php:759\r
+#: admin/settings.php:781\r
+#@ mantra\r
+msgid "Select / Upload Image"\r
+msgstr ""\r
+\r
+#: admin/settings.php:714\r
+#@ mantra\r
+msgid "Center the header image horizontally"\r
+msgstr ""\r
+\r
+#: admin/settings.php:717\r
+#@ mantra\r
+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 = "\r
+msgstr ""\r
+\r
+#: admin/settings.php:732\r
+#@ mantra\r
+msgid "Enable or disable the round corners for the main menu items."\r
+msgstr ""\r
+\r
+#: admin/settings.php:740\r
+#@ mantra\r
+msgid "Site Title and Description"\r
+msgstr ""\r
+\r
+#: admin/settings.php:740\r
+#@ mantra\r
+msgid "Custom Logo"\r
+msgstr ""\r
+\r
+#: admin/settings.php:740\r
+#@ mantra\r
+msgid "Clickable header image"\r
+msgstr ""\r
+\r
+#: admin/settings.php:740\r
+#@ mantra\r
+msgid "Empty"\r
+msgstr ""\r
+\r
+#: admin/settings.php:748\r
+#@ mantra\r
+msgid "Choose what to display inside your header area."\r
+msgstr ""\r
+\r
+#: admin/settings.php:758\r
+#@ mantra\r
+msgid "Custom Logo upload. The logo will appear over the heder image if you have used one."\r
+msgstr ""\r
+\r
+#: admin/settings.php:770\r
+#@ mantra\r
+msgid "Select the top spacing for the header. Use it to better position your site title and description or custom logo inside the header. "\r
+msgstr ""\r
+\r
+#: admin/settings.php:1168\r
+#@ mantra\r
+msgid "Content background color (Default value is FFFFFF). Works best with really light colors."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1182\r
+#@ mantra\r
+msgid "First sidebar background color (Default is no color for a transparent sidebar)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1189\r
+#@ mantra\r
+msgid "Second sidebar background color (Default is no color for a transparent sidebar)."\r
+msgstr ""\r
+\r
+#: admin/settings.php:1417\r
+#@ mantra\r
+msgid "The background for your post-metas area (under your post tiltes). Gray by default."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2012\r
+#@ mantra\r
+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 <style> tags are not needed."\r
+msgstr ""\r
+\r
+#: admin/settings.php:2019\r
+#@ mantra\r
+msgid "Insert your custom Javascript code here. (Google Analytics and any other forms of Analytic software).<br> The <script> tags are not needed."\r
+msgstr ""\r
+\r
+#: archive.php:28\r
+#@ mantra\r
+msgctxt "monthly archives date format"\r
+msgid "F Y"\r
+msgstr ""\r
+\r
+#: archive.php:30\r
+#@ mantra\r
+msgctxt "yearly archives date format"\r
+msgid "Y"\r
+msgstr ""\r
+\r
+#: attachment.php:33\r
+#: includes/theme-loop.php:147\r
+#, php-format\r
+#@ mantra\r
+msgid "View all posts by %s"\r
+msgstr ""\r
+\r
+#: content-aside.php:16\r
+#: content-chat.php:16\r
+#: content-gallery.php:16\r
+#: content-gallery.php:49\r
+#: content-image.php:15\r
+#: content-link.php:16\r
+#: content-quote.php:14\r
+#: content-status.php:15\r
+#: content.php:20\r
+#, php-format\r
+#@ mantra\r
+msgid "Permalink to %s"\r
+msgstr ""\r
+\r
+#: content-gallery.php:48\r
+#, php-format\r
+#@ mantra\r
+msgid "This gallery contains <a %1$s>%2$s photo</a>."\r
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."\r
+msgstr[0] ""\r
+msgstr[1] ""\r
+\r
+#: includes/theme-comments.php:94\r
+#, php-format\r
+#@ mantra\r
+msgid "One Response to %2$s"\r
+msgid_plural "%1$s Responses to %2$s"\r
+msgstr[0] ""\r
+msgstr[1] ""\r
+\r
+#: includes/theme-functions.php:339\r
+#@ mantra\r
+msgid "Powered by"\r
+msgstr ""\r
+\r
+#: includes/theme-functions.php:341\r
+#@ mantra\r
+msgid "Semantic Personal Publishing Platform"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:315\r
+#: includes/theme-setup.php:317\r
+#@ mantra\r
+msgid "Above content Widget Area"\r
+msgstr ""\r
+\r
+#: includes/theme-setup.php:326\r
+#: includes/theme-setup.php:328\r
+#@ mantra\r
+msgid "Below Content Widget Area"\r
+msgstr ""\r
+\r
+#: searchform.php:1\r
+#@ mantra\r
+msgid "Search"\r
+msgstr ""\r
+\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: mantra 197\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2013-01-30 17:12+0200\n"\r
+"PO-Revision-Date: 2013-04-24 21:33+0100\n"\r
+"Last-Translator: Paweł Przytuła <pprzytula@gmail.com>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"\r
+"X-Poedit-Basepath: C:\\Users\\medicated\\Desktop\\mantra\n"\r
+"X-Generator: Poedit 1.5.5\n"\r
+"Language: polish\n"\r
+"X-Poedit-SourceCharset: UTF-8\n"\r
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "\r
+"|| n%100>=20) ? 1 : 2);\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "Nie znaleziono"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr ""\r
+"Przepraszamy, strona nie może być znaleziona. Być może wyszukiwanie pomoże."\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Dzienne archiwa: %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Miesięczne archiwa: %s"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Roczne archiwa: %s"\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "Archiwa bloga"\r
+\r
+#: archive.php:57 author.php:74 category.php:50\r
+msgid "Nothing Found"\r
+msgstr "Nic nie znaleziono"\r
+\r
+#: archive.php:61 author.php:78 category.php:54\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr "Przepraszamy, ale nic nie znaleziono"\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Powróć do %s"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "Przez"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "Opublikowany"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "Pełny rozmiar ma %s pikseli"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "Link do pełnego rozmiaru obrazu"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:49 content-gallery.php:65 content-image.php:42\r
+#: content-link.php:49 content-page.php:22 content-quote.php:46\r
+#: content-status.php:48 content.php:77\r
+msgid "Edit"\r
+msgstr "Edytuj"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "Czytaj więcej"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:38\r
+#: content-gallery.php:55 content-image.php:33 content-link.php:38\r
+#: content-page.php:21 content-quote.php:36 content-status.php:39\r
+#: content.php:49 content.php:66\r
+msgid "Pages:"\r
+msgstr "Strony:"\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Archiwa Autora %s"\r
+\r
+#: author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "O Autorze%s"\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Kategorie Archiwów: %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+"Ten post jest zabezpieczony hasłem. Wprowadź hasło aby wyświetlić komentarze."\r
+\r
+#: content-aside.php:20\r
+msgid "Aside"\r
+msgstr "Z boku"\r
+\r
+#: content-aside.php:38 content-chat.php:37 content-gallery.php:33\r
+#: content-image.php:32 content-link.php:37 content-quote.php:35\r
+#: content-status.php:38\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Czytaj dalej <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:45 content-gallery.php:62\r
+#: content-image.php:39 content-link.php:45 content-quote.php:43\r
+#: content-status.php:46 content.php:75\r
+msgid "Tagged"\r
+msgstr "Otagowany"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "Chat"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "Galeria"\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr "Obrazek"\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr "Link"\r
+\r
+#: content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr "Komentarze są wyłączone."\r
+\r
+#: content-quote.php:18\r
+msgid "Quote"\r
+msgstr "Cytat"\r
+\r
+#: content-status.php:30\r
+msgid "Status"\r
+msgstr "Status"\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Wyniki wyszukiwania dla: %s"\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "Brak wyników wyszukiwania dla: %s"\r
+\r
+#: searchform.php:1\r
+msgid "Search"\r
+msgstr "Szukaj"\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr "Pokaż wszystkie posty napisane przez"\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Taguj archiwa: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr ""\r
+"Zanim wyślesz swój importowany plik, potrzebujesz naprawić następujący błąd:"\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Opcje importu motywu Mantra"\r
+\r
+#: admin/admin-functions.php:72\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"Cześć! To jest miejsce, gdzie importujesz ustawienia Mantry.<i>Proszę "\r
+"pamiętaj, że to jest wciąż eksperymentalna opcja.</i>"\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Po prostu wybierz plik ze swojego komputera:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "Maksymalny rozmiar: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "I importuj!"\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Importuj opcje motywu Mantra"\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "Wspaniale! Opcje zostały zaimportowane!"\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Powróć do strony opcji motywu Mantra i sprawdź je!"\r
+\r
+#: admin/admin-functions.php:155 admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "Ups, jest mały problem."\r
+\r
+#: admin/admin-functions.php:156\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"Wysłany plik nie zawiera prawidłowych opcji motywu Mantra. Upewnij się, że "\r
+"plik jest wysłany ze strony opcji motywu Mantra."\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "Wgrany plik nie może zostać odczytany."\r
+\r
+#: admin/admin-functions.php:168\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"Wgrany plik nie jest wspierany. Upewnij się, że plik był wysłany ze strony "\r
+"Mantra i jest plikiem tekstowym."\r
+\r
+#: admin/admin-functions.php:177\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"Ups! Plik jest pusty lub nie istnieje. Ten błąd może być także spowodowany "\r
+"przez wyłączenie uploadu w Twoim pliku php.ini albo post_max_size jest "\r
+"określony na mniejszy niż upload_max_filesize w php.ini."\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "BŁĄD: Nie masz uprawnień do wykonania tej operacji"\r
+\r
+#: admin/main.php:93\r
+msgid "Layout Settings"\r
+msgstr "Ustawienia wyglądu"\r
+\r
+#: admin/main.php:94\r
+msgid "Presentation Page"\r
+msgstr "Strona prezentacji"\r
+\r
+#: admin/main.php:95\r
+msgid "Text Settings"\r
+msgstr "Ustawienia tekstu"\r
+\r
+#: admin/main.php:96\r
+msgid "Color Settings"\r
+msgstr "Ustawienia koloru"\r
+\r
+#: admin/main.php:97\r
+msgid "Graphics Settings"\r
+msgstr "Ustawienia grafiki"\r
+\r
+#: admin/main.php:98\r
+msgid "Post Information Settings"\r
+msgstr "Ustawienia informacji o poście"\r
+\r
+#: admin/main.php:99\r
+msgid "Post Excerpt Settings"\r
+msgstr "Ustawienia wycinków postów"\r
+\r
+#: admin/main.php:100\r
+msgid "Featured Image Settings"\r
+msgstr "Ustawienia polecanych obrazów"\r
+\r
+#: admin/main.php:101\r
+msgid "Social Media Settings"\r
+msgstr "Ustawienia Social Media"\r
+\r
+#: admin/main.php:102\r
+msgid "Miscellaneous Settings"\r
+msgstr "Ustawienia pozostałe"\r
+\r
+#: admin/main.php:104\r
+msgid "Main Layout"\r
+msgstr "Główny wygląd"\r
+\r
+#: admin/main.php:105\r
+msgid "Content / Sidebar Width"\r
+msgstr "Zawartość / szerokość paska bocznego"\r
+\r
+#: admin/main.php:106\r
+msgid "Header Image Height"\r
+msgstr "Wysokość obrazu Nagłówka"\r
+\r
+#: admin/main.php:108\r
+msgid "Enable Presentation Page"\r
+msgstr "Włącz stronę prezentacji"\r
+\r
+#: admin/main.php:109\r
+msgid "Slider Settings"\r
+msgstr "Ustawienia slajdów"\r
+\r
+#: admin/main.php:110\r
+msgid "Slides"\r
+msgstr "Slajdy"\r
+\r
+#: admin/main.php:111\r
+msgid "Presentation Page Columns"\r
+msgstr "Kolumny strony prezentacji"\r
+\r
+#: admin/main.php:112\r
+msgid "Extras"\r
+msgstr "Dodatki"\r
+\r
+#: admin/main.php:114\r
+msgid "General Font"\r
+msgstr "Główna czcionka"\r
+\r
+#: admin/main.php:115\r
+msgid "General Font Size"\r
+msgstr "Rozmiar głównej czcionki"\r
+\r
+#: admin/main.php:116\r
+msgid "Post Title Font "\r
+msgstr "Czcionka tytułu postu"\r
+\r
+#: admin/main.php:117\r
+msgid "Post Title Font Size"\r
+msgstr "Rozmiar czcionki tytułu postu"\r
+\r
+#: admin/main.php:118\r
+msgid "Sidebar Font"\r
+msgstr "Czcionka paska bocznego"\r
+\r
+#: admin/main.php:119\r
+msgid "SideBar Font Size"\r
+msgstr "Rozmiar czcionki paska bocznego"\r
+\r
+#: admin/main.php:120\r
+msgid "Sub-Headers Font"\r
+msgstr "Czcionka pomniejszych nagłówków"\r
+\r
+#: admin/main.php:121\r
+msgid "Force Text Align"\r
+msgstr "Wymuś wyrównanie czcionki"\r
+\r
+#: admin/main.php:122\r
+msgid "Paragraph indent"\r
+msgstr "Wcięcie akapitu"\r
+\r
+#: admin/main.php:123\r
+msgid "Header indent"\r
+msgstr "Wcięcie nagłówka"\r
+\r
+#: admin/main.php:124\r
+msgid "Line Height"\r
+msgstr "Wysokość linii"\r
+\r
+#: admin/main.php:125\r
+msgid "Word spacing"\r
+msgstr "Odstępy między wyrazami"\r
+\r
+#: admin/main.php:126\r
+msgid "Letter spacing"\r
+msgstr "Odstępy między literami"\r
+\r
+#: admin/main.php:127\r
+msgid "Text shadow"\r
+msgstr "Cień tekstu"\r
+\r
+#: admin/main.php:129\r
+msgid "Background Color"\r
+msgstr "Kolor tła"\r
+\r
+#: admin/main.php:130\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Kolor Nagłówka (Baner i Menu)"\r
+\r
+#: admin/main.php:131\r
+msgid "Content Background Color"\r
+msgstr "Kolor tła zawartości"\r
+\r
+#: admin/main.php:132\r
+msgid "Menu Background Color"\r
+msgstr "Kolor tła Menu"\r
+\r
+#: admin/main.php:133\r
+msgid "First Sidebar Background Color"\r
+msgstr "Kolor tła pierwszego paska bocznego"\r
+\r
+#: admin/main.php:134\r
+msgid "Second Sidebar Background Color"\r
+msgstr "Kolor tła drugiego paska bocznego"\r
+\r
+#: admin/main.php:136\r
+msgid "Site Title Color"\r
+msgstr "Kolor tytułu strony"\r
+\r
+#: admin/main.php:137\r
+msgid "Site Description Color"\r
+msgstr "Kolor opisu strony"\r
+\r
+#: admin/main.php:139\r
+msgid "Content Text Color"\r
+msgstr "Kolor tekstu zawartości"\r
+\r
+#: admin/main.php:140\r
+msgid "Links Color"\r
+msgstr "Kolor linków"\r
+\r
+#: admin/main.php:141\r
+msgid "Links Hover Color"\r
+msgstr "Kolor zawieszonych linków"\r
+\r
+#: admin/main.php:142\r
+msgid "Post Title Color"\r
+msgstr "Kolor tytułu posta"\r
+\r
+#: admin/main.php:143\r
+msgid "Post Title Hover Color"\r
+msgstr "Kolor zawieszonego tytułu posta"\r
+\r
+#: admin/main.php:144\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Kolor tła nagłówka paska bocznego"\r
+\r
+#: admin/main.php:145\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Kolor nagłówka paska bocznego"\r
+\r
+#: admin/main.php:146\r
+msgid "Footer Widget Background Color"\r
+msgstr "Kolor tła widgetu stopki"\r
+\r
+#: admin/main.php:147\r
+msgid "Footer Background Color"\r
+msgstr "Kolor tła stopki"\r
+\r
+#: admin/main.php:148\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Kolor tekstu nagłówka widgetu stopki"\r
+\r
+#: admin/main.php:149\r
+msgid "Footer Widget Link Color"\r
+msgstr "Kolor linku widgetu stopki"\r
+\r
+#: admin/main.php:150\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Kolor zawieszonego widgetu stopki"\r
+\r
+#: admin/main.php:152\r
+msgid "Caption Border"\r
+msgstr "Granica podpisu"\r
+\r
+#: admin/main.php:153\r
+msgid "Post Images Border"\r
+msgstr "Granica obrazków postów"\r
+\r
+#: admin/main.php:154\r
+msgid "Caption Pin"\r
+msgstr "Przypięcie podpisu"\r
+\r
+#: admin/main.php:155\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Punktory menu paska bocznego"\r
+\r
+#: admin/main.php:156\r
+msgid "Meta Area Background"\r
+msgstr "Tło przestrzeni meta"\r
+\r
+#: admin/main.php:157\r
+msgid "Post Separator"\r
+msgstr "Separator postu"\r
+\r
+#: admin/main.php:158\r
+msgid "Content List Bullets"\r
+msgstr "Punktory listy zawartości"\r
+\r
+#: admin/main.php:159\r
+msgid "Title and Description"\r
+msgstr "Tytuł i opis"\r
+\r
+#: admin/main.php:160\r
+msgid "Page Titles"\r
+msgstr "Tytuły stron"\r
+\r
+#: admin/main.php:161\r
+msgid "Category Page Titles"\r
+msgstr "Tytuły stron kategorii"\r
+\r
+#: admin/main.php:162\r
+msgid "Hide Tables"\r
+msgstr "Ukryj tabele"\r
+\r
+#: admin/main.php:163\r
+msgid "Back to Top button"\r
+msgstr "Przycisk powrotu do góry"\r
+\r
+#: admin/main.php:164\r
+msgid "Text Under Comments"\r
+msgstr "Tekst pod komentarzami"\r
+\r
+#: admin/main.php:165\r
+msgid "Comments are closed text"\r
+msgstr "Tekst komentarze są zamknięte"\r
+\r
+#: admin/main.php:166\r
+msgid "Comments off"\r
+msgstr "Komentarze wyłączone"\r
+\r
+#: admin/main.php:167\r
+msgid "Custom Footer Text"\r
+msgstr "Tekst stopki niestandardowej"\r
+\r
+#: admin/main.php:169\r
+msgid "Post Comments Link"\r
+msgstr "Link komentarzy postu"\r
+\r
+#: admin/main.php:170\r
+msgid "Post Date"\r
+msgstr "Data postu"\r
+\r
+#: admin/main.php:171\r
+msgid "Post Time"\r
+msgstr "Czas postu"\r
+\r
+#: admin/main.php:172\r
+msgid "Post Author"\r
+msgstr "Autor postu"\r
+\r
+#: admin/main.php:173\r
+msgid "Post Category"\r
+msgstr "Kategoria postu"\r
+\r
+#: admin/main.php:174\r
+msgid "Post Tags"\r
+msgstr "Tagi postu"\r
+\r
+#: admin/main.php:175\r
+msgid "Post Permalink"\r
+msgstr "Permalink postu"\r
+\r
+#: admin/main.php:176\r
+msgid "All Post Metas"\r
+msgstr "Meta wszystkich postów"\r
+\r
+#: admin/main.php:178\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Wycinki na stronie głównej"\r
+\r
+#: admin/main.php:179\r
+msgid "Affect Sticky Posts"\r
+msgstr "Zastosuj do przyklejonych postów"\r
+\r
+#: admin/main.php:180\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Wycinki postów w archiwach i stronach kategorii"\r
+\r
+#: admin/main.php:181\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Liczba słów w wycinkach postów"\r
+\r
+#: admin/main.php:182\r
+msgid "Magazine Layout"\r
+msgstr "Wygląd gazety"\r
+\r
+#: admin/main.php:183\r
+msgid "Excerpt suffix"\r
+msgstr "Przyrostek wycinka"\r
+\r
+#: admin/main.php:184\r
+msgid "Continue reading link text "\r
+msgstr "Tekst linku czytaj dalej"\r
+\r
+#: admin/main.php:185\r
+msgid "HTML tags in Excerpts"\r
+msgstr "Tagi HTML w wycinkach"\r
+\r
+#: admin/main.php:187\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Polecane Obrazki jako miniatury POSTU"\r
+\r
+#: admin/main.php:188\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Automatycznie wybierz Obrazki z postów"\r
+\r
+#: admin/main.php:189\r
+msgid "Thumbnails Alignment "\r
+msgstr "Wyrównanie miniatur"\r
+\r
+#: admin/main.php:190\r
+msgid "Thumbnails Size "\r
+msgstr "Rozmiar miniatur"\r
+\r
+#: admin/main.php:191\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Polecane obrazki jako obrazki NAGŁÓWKA"\r
+\r
+#: admin/main.php:193\r
+msgid "Link nr. 1"\r
+msgstr "Link nr. 1"\r
+\r
+#: admin/main.php:194\r
+msgid "Link nr. 2"\r
+msgstr "Link nr. 2"\r
+\r
+#: admin/main.php:195\r
+msgid "Link nr. 3"\r
+msgstr "Link nr. 3"\r
+\r
+#: admin/main.php:196\r
+msgid "Link nr. 4"\r
+msgstr "Link nr. 4"\r
+\r
+#: admin/main.php:197\r
+msgid "Link nr. 5"\r
+msgstr "Link nr. 5"\r
+\r
+#: admin/main.php:198\r
+msgid "Socials display"\r
+msgstr "Wyświetl społecznościowe"\r
+\r
+#: admin/main.php:200\r
+msgid "Make Site Header a Link"\r
+msgstr "Zrób nagłówek strony linkiem"\r
+\r
+#: admin/main.php:201\r
+msgid "Breadcrumbs"\r
+msgstr "Okruchy chleba"\r
+\r
+#: admin/main.php:202\r
+msgid "Pagination"\r
+msgstr "Podział strony"\r
+\r
+#: admin/main.php:203\r
+msgid "Mobile view"\r
+msgstr "Wygląd dla urządzeń mobilnych"\r
+\r
+#: admin/main.php:204\r
+msgid "FavIcon"\r
+msgstr "FavIcon"\r
+\r
+#: admin/main.php:205\r
+msgid "Custom CSS"\r
+msgstr "Niestandardowy CSS"\r
+\r
+#: admin/main.php:206\r
+msgid "Custom JavaScript"\r
+msgstr "Niestandardowy JavaScript"\r
+\r
+#: admin/main.php:207\r
+msgid "SEO Settings"\r
+msgstr "Ustawienia SEO"\r
+\r
+#: admin/main.php:224\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr ""\r
+"Przepraszamy, ale nie masz wystarczających uprawnień dostępu do strony."\r
+\r
+#: admin/main.php:234\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Aktualizacja ustawień Mantry zakończona sukcesem."\r
+\r
+#: admin/main.php:245\r
+msgid "Reset to Defaults"\r
+msgstr "Resetuj do ustawień domyślnych"\r
+\r
+#: admin/main.php:246\r
+msgid "Save Changes"\r
+msgstr "Zapisz zmiany"\r
+\r
+#: admin/main.php:260\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+"keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+"folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+"coffee. We love it! So if you want to help with the further development of "\r
+"the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Tutaj w Cryout Creations (producenci Twojego motywu Mantra), spędzamy noc "\r
+"za nocą nad ulepszaniem motywu Mantra. Naprawiamy błędy (które wcześniej "\r
+"stworzyliśmy); dodajemy coraz więcej opcji modyfikacji zarazem próbując "\r
+"utrzymać je w prostej formie; póżniej... możemy grać w grę albo dwie ale "\r
+"zapewniamy że wrócimy do czytania i (w większości przypadków) odpowiadaniana "\r
+"Wasze późnonocne emaile i komentarze, robimy notatki, rysujemy plany rzeczy "\r
+"do zaimplementowania w przyszłych wersjach.</p>\n"\r
+"\t\t\t<p>Możecie się pytać: <i>Jak oni to robią? Jak oni mogą zachować "\r
+"świeżość po tych wszystkich zmaganiach z tym przeklętym motywem? </i> No "\r
+"ludzie, to proste. Pijemy kawę. Przemysłowe ilości gorącej wrzącej kawy. "\r
+"Kochamy to! Więc jeśli chcecie pomóc w dalszym rozwoju motywu Mantra...</p>"\r
+\r
+#: admin/main.php:275\r
+msgid "Import/Export Settings"\r
+msgstr "Importuj/eksportuj ustawienia"\r
+\r
+#: admin/main.php:281\r
+msgid "Export Theme options"\r
+msgstr "Eksportuj ustawienia motywu"\r
+\r
+#: admin/main.php:282\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"To jest proste: kliknięcie myszą - zdolność do eksportu Twoich ustawień "\r
+"Mantry i zapisania ich na Twoim komputerze. Czujesz się bezpieczniej? To "\r
+"dobrze!"\r
+\r
+#: admin/main.php:287\r
+msgid "Import Theme options"\r
+msgstr "Importuj opcje motywu"\r
+\r
+#: admin/main.php:288\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+"Bez importu, eksport byłby robotą głupiego. Upewnij się, że masz "\r
+"przygotowany eksportowany plik i do zobaczenia po kliknięciu myszy."\r
+\r
+#: admin/main.php:295\r
+msgid "Mantra Latest News"\r
+msgstr "Najnowsze wiadomości Mantry"\r
+\r
+#: admin/main.php:306\r
+msgid "No news items."\r
+msgstr "Brak nowych ogłoszeń."\r
+\r
+#: admin/main.php:320\r
+msgid "Mantra Help"\r
+msgstr "Pomoc Mantry"\r
+\r
+#: admin/main.php:323\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "\r
+"version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+"expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "\r
+"your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+"Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>-Potrzebujesz pomocy z Mantrą albo WordPress?</li>\n"\r
+"\t\t\t\t<li>- Chcesz wiedzieć jakie zmiany są wproadzone do motywu w każdej "\r
+"nowej wersji?</li>\n"\r
+"\t\t\t\t<li>- Znalazłeś/aś błąd albo coś nie działa dokładnie jak powinno?</"\r
+"li>\n"\r
+"\t\t\t\t<li>- Masz pomysł jak ulepszyć motyw Mantra aby bardziej odpowiadał "\r
+"Twoim potrzebom?</li>\n"\r
+"\t\t\t\t<li>- Chcesz aby było coś dodane?</li>\n"\r
+"\t\t\t\t<li>-Masz albo chcesz przetłumaczyć motyw Mantra?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>W takim razie odwiedź nas na naszej stronie wsparcia.</p>\n"\r
+"\t"\r
+\r
+#: admin/main.php:334\r
+msgid "Mantra Support Page"\r
+msgstr "Strona Wsparcia Mantra"\r
+\r
+#: admin/settings.php:61\r
+msgid "One column (no sidebars)"\r
+msgstr "Jedna kolumna (bez pasków bocznych)"\r
+\r
+#: admin/settings.php:62\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Dwie kolumny, pasek boczny po prawej"\r
+\r
+#: admin/settings.php:63\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Dwie kolumny, pasek boczny po lewej"\r
+\r
+#: admin/settings.php:64\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Trzy kolumny, paski boczne po prawej"\r
+\r
+#: admin/settings.php:65\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Trzy kolumny, paski boczne po lewej"\r
+\r
+#: admin/settings.php:66\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Trzy kolumny, jeden pasek boczny na każdej stronie"\r
+\r
+#: admin/settings.php:81\r
+msgid "Choose your layout "\r
+msgstr "Wybierz swój wygląd"\r
+\r
+#: admin/settings.php:89\r
+msgid "Absolute"\r
+msgstr "Całkowity"\r
+\r
+#: admin/settings.php:89\r
+msgid "Relative"\r
+msgstr "Względny"\r
+\r
+#: admin/settings.php:90\r
+msgid "Dimensions to use: "\r
+msgstr "Wymiary do użycia:"\r
+\r
+#: admin/settings.php:189 admin/settings.php:209\r
+msgid "Content ="\r
+msgstr "Zawartość ="\r
+\r
+#: admin/settings.php:190 admin/settings.php:210\r
+msgid "Sidebar(s) ="\r
+msgstr "Pasek/ki boczny/ne ="\r
+\r
+#: admin/settings.php:191 admin/settings.php:211\r
+msgid "Total width ="\r
+msgstr "Całkowita szerokość ="\r
+\r
+#: admin/settings.php:200\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Wybierz szerokość twoich <b>zawartości> i <b>pasków bocznych</b>. \n"\r
+" \t\t Kiedy zawartość nie może być mniejsza niż 500px w szerokości, "\r
+"przestrzeń paska bocznego ma przynajmniej 220px i nie więcej niż 800px.<br/"\r
+">\n"\r
+"\t Jeśli ustawisz przestrzeń dla 3 kolumn (z 2 paskami bocznymi) każdy z "\r
+"nich będzie miał połowę wybranej szerokośści."\r
+\r
+#: admin/settings.php:220\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Wybierz szerokość Twoich <b>zawartości</b> i <b>pasków bocznych(paska)</b> \n"\r
+" \t\t To są względne wymiary - relatywne wobec przeglądarki użytkownika. "\r
+"Całkowita szerokość jest procentem szerokości przeglądarki. <br />\n"\r
+"\t Kiedy zawartość nie może być mniejsza niż 40% szerokości, przestrzeń "\r
+"pasków bocznych ma przynajmniej 20% i nie więcej niż 50%. <br />\n"\r
+"\t Jeśli potrzebujesz przestrzeni trzech kolumn (z 2 paskami bocznymi) każdy "\r
+"z nich będzie miał połowę szerokości."\r
+\r
+#: admin/settings.php:244\r
+msgid ""\r
+"Select the header's height. After saving the settings go and upload your new "\r
+"header image. The header's width will be = "\r
+msgstr ""\r
+"Wysokość wybranego nagłówka. Po zapisaniu ustawień Wgraj tutaj nowy obrazek "\r
+"nagłówka. Wysokość nagłówka będzie ="\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1367 admin/settings.php:1429 admin/settings.php:1637\r
+#: admin/settings.php:1666 admin/settings.php:1689 admin/settings.php:1712\r
+#: admin/settings.php:1761 admin/settings.php:1890 admin/settings.php:1905\r
+#: admin/settings.php:1920 admin/settings.php:1935 admin/settings.php:1977\r
+msgid "Enable"\r
+msgstr "Włączona"\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1367 admin/settings.php:1429 admin/settings.php:1637\r
+#: admin/settings.php:1666 admin/settings.php:1689 admin/settings.php:1712\r
+#: admin/settings.php:1761 admin/settings.php:1890 admin/settings.php:1905\r
+#: admin/settings.php:1920 admin/settings.php:1935 admin/settings.php:1977\r
+msgid "Disable"\r
+msgstr "Wyłączona"\r
+\r
+#: admin/settings.php:265\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page. It "\r
+"has a slider and columns for presentation\n"\r
+"\t\ttext and images.<br>If you have this enabled but don't see a "\r
+"Presentation page then go to <a href='options-reading.php'> Settings » "\r
+"Reading </a> and make sure you have selected <strong>Front Page Displays</"\r
+"strong> as <Strong>Your Latest Posts</strong>."\r
+msgstr ""\r
+"Włącz prezentację strony głównej. To będzie Twoją nową stroną główną. "\r
+"Posiada slajder i kolumny do prezentacji\n"\r
+"\t\t tekst i obrazki. <br>Jeśli masz włączoną tę opcję ale nie widzisz "\r
+"strony prezentacji, wtedy idź do <a href='options-reading.php'>Ustawienia "\r
+"» Czytanie </a> i upewnij się, że masz wybrane <strong>Wyświetlanie "\r
+"strony głównej</strong> jako <Strong>Najnowsze wpisy</strong>."\r
+\r
+#: admin/settings.php:275\r
+msgid "Slider Dimensions:"\r
+msgstr "Wymiary slajdu:"\r
+\r
+#: admin/settings.php:276\r
+msgid "width"\r
+msgstr "szerokość"\r
+\r
+#: admin/settings.php:277\r
+msgid "height"\r
+msgstr "wysokość"\r
+\r
+#: admin/settings.php:278\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+"Wymiary Twojego slajdu. Upewnij się, że Twoje obrazki są tego samego "\r
+"rozmiaru."\r
+\r
+#: admin/settings.php:280\r
+msgid "Animation:"\r
+msgstr "Animacja:"\r
+\r
+#: admin/settings.php:282\r
+msgid "Random"\r
+msgstr "Losowa"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fold"\r
+msgstr "Składanie"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fade"\r
+msgstr "Opadanie"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInRight"\r
+msgstr "Slajd w prawo"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInLeft"\r
+msgstr "Slajd w lewo"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDown"\r
+msgstr "Cięcie w dół"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDownLeft"\r
+msgstr "Cięcie w dolne lewo"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUp"\r
+msgstr "Cięcie w górę"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpLeft"\r
+msgstr "Cięcie w górne lewo"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDown"\r
+msgstr "Cięcie góra-dół"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDownLeft"\r
+msgstr "Cięcie góra-dół-lewo"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRandom"\r
+msgstr "Pudło losowo"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRain"\r
+msgstr "Pudło deszcz"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainReverse"\r
+msgstr "Pudło deszcz odwrócony"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrow"\r
+msgstr "Pudło deszcz rosnący"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrowReverse"\r
+msgstr "Pudło deszcz odwrócony rosnący"\r
+\r
+#: admin/settings.php:290\r
+msgid "The transition effect your slider will have."\r
+msgstr "Przejście, jakie będzie miał slajder."\r
+\r
+#: admin/settings.php:292\r
+msgid "Border Settings:"\r
+msgstr "Ustawienia granic:"\r
+\r
+#: admin/settings.php:293\r
+msgid "Width"\r
+msgstr "Szerokość"\r
+\r
+#: admin/settings.php:294\r
+msgid "Color"\r
+msgstr "Kolor"\r
+\r
+#: admin/settings.php:296\r
+msgid "The width and color of the slider's border."\r
+msgstr "Szerokość i kolor granicy slajdu."\r
+\r
+#: admin/settings.php:298\r
+msgid "Animation Time:"\r
+msgstr "Czas animacji:"\r
+\r
+#: admin/settings.php:299 admin/settings.php:303\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "milisekundy (1000ms = 1 sekunda)"\r
+\r
+#: admin/settings.php:300\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "Czas, w którym animacja będzie miała miejsce."\r
+\r
+#: admin/settings.php:302\r
+msgid "Pause Time:"\r
+msgstr "Czas pauzy:"\r
+\r
+#: admin/settings.php:304\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Czas, w którym animacja będzie nieruchoma i widoczna"\r
+\r
+#: admin/settings.php:307\r
+msgid "Slider navigation:"\r
+msgstr "Nawigacja slajdera:"\r
+\r
+#: admin/settings.php:309\r
+msgid "Numbers"\r
+msgstr "Numery"\r
+\r
+#: admin/settings.php:309\r
+msgid "Bullets"\r
+msgstr "Punktory"\r
+\r
+#: admin/settings.php:309 admin/settings.php:1273\r
+msgid "None"\r
+msgstr "Nic"\r
+\r
+#: admin/settings.php:317\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Rodzaj nawigacji Twojego slajdera. Pokazany pod slajderem."\r
+\r
+#: admin/settings.php:319\r
+msgid "Slider arrows:"\r
+msgstr "Strzałki slajdera:"\r
+\r
+#: admin/settings.php:321\r
+msgid "Always Visible"\r
+msgstr "Zawsze widoczne"\r
+\r
+#: admin/settings.php:321\r
+msgid "Visible on Hover"\r
+msgstr "Widoczne po najechaniu kursorem"\r
+\r
+#: admin/settings.php:321\r
+msgid "Hidden"\r
+msgstr "Ukryte"\r
+\r
+#: admin/settings.php:329\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Prawa i lewa strzałka na Twoim slajderze"\r
+\r
+#: admin/settings.php:370 admin/settings.php:438\r
+msgid "Select Category"\r
+msgstr "Wybierz kategorię"\r
+\r
+#: admin/settings.php:397\r
+msgid "Custom Slides"\r
+msgstr "Niestandardowe slajdy"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts"\r
+msgstr "Ostatnie posty"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts"\r
+msgstr "Losowe posty"\r
+\r
+#: admin/settings.php:397\r
+msgid "Sticky Posts"\r
+msgstr "Przyklejone posty"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts from Category"\r
+msgstr "Ostatnie posty z kategorii"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts from Category"\r
+msgstr "Losowe posty z kategorii"\r
+\r
+#: admin/settings.php:397\r
+msgid "Specific Posts"\r
+msgstr "Specyficzne posty"\r
+\r
+#: admin/settings.php:410\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Ostatnie posty będą wczytane do slajdera."\r
+\r
+#: admin/settings.php:414\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Losowe posty będą wczytane do slajdera."\r
+\r
+#: admin/settings.php:418\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "Ostatnie posty z kategorii którą wybierzesz będą wczytane do slajdera."\r
+\r
+#: admin/settings.php:423\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr "Losowe posty z kategorii którą wybierzesz będą wczytane do slajdera."\r
+\r
+#: admin/settings.php:427\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Tylko przyklejone posty będą wczytane do slajdera."\r
+\r
+#: admin/settings.php:431\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr "Lista ID postów które chcesz wyświetlić (oddzielone przecinkami):"\r
+\r
+#: admin/settings.php:436\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Wybierz kategorię:"\r
+\r
+#: admin/settings.php:453\r
+msgid "Number of posts to show:"\r
+msgstr "Liczba postów do wyświetlenia:"\r
+\r
+#: admin/settings.php:460\r
+msgid "Slide 1"\r
+msgstr "Slajd 1"\r
+\r
+#: admin/settings.php:464 admin/settings.php:479 admin/settings.php:494\r
+#: admin/settings.php:509 admin/settings.php:524 admin/settings.php:567\r
+#: admin/settings.php:582 admin/settings.php:597 admin/settings.php:612\r
+msgid "Upload or select image from gallery"\r
+msgstr "Wyślij obrazek lub wybierz z galerii"\r
+\r
+#: admin/settings.php:465 admin/settings.php:480 admin/settings.php:495\r
+#: admin/settings.php:510 admin/settings.php:525 admin/settings.php:568\r
+#: admin/settings.php:583 admin/settings.php:613\r
+msgid "Title"\r
+msgstr "Tytuł"\r
+\r
+#: admin/settings.php:467 admin/settings.php:482 admin/settings.php:497\r
+#: admin/settings.php:512 admin/settings.php:527 admin/settings.php:570\r
+#: admin/settings.php:585 admin/settings.php:600 admin/settings.php:615\r
+msgid "Text"\r
+msgstr "Tekst"\r
+\r
+#: admin/settings.php:475\r
+msgid "Slide 2"\r
+msgstr "Slajd 2"\r
+\r
+#: admin/settings.php:490\r
+msgid "Slide 3"\r
+msgstr "Slajd 3"\r
+\r
+#: admin/settings.php:505\r
+msgid "Slide 4"\r
+msgstr "Slajd 4"\r
+\r
+#: admin/settings.php:520\r
+msgid "Slide 5"\r
+msgstr "Slajd 5"\r
+\r
+#: admin/settings.php:533\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"Zawartość Twoich slajdów. Wymagany jest tylko obrazek, pozostałe pola są "\r
+"opcjonalne. Tylko slajdy z wybranym obrazkiem będą aktywne w slajderze."\r
+\r
+#: admin/settings.php:543\r
+msgid "Number of columns:"\r
+msgstr "Liczba kolumn:"\r
+\r
+#: admin/settings.php:553\r
+msgid "Image Height:"\r
+msgstr "Wysokość obrazka:"\r
+\r
+#: admin/settings.php:556\r
+msgid "Read more text:"\r
+msgstr "Tekst czytaj więcej:"\r
+\r
+#: admin/settings.php:559\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr ""\r
+"Podłączony tekst który pojawia się na górze wszystkich kolumn. Możesz usunąć "\r
+"cały tekst wewnątrz jeśli go nie chcesz."\r
+\r
+#: admin/settings.php:563\r
+msgid "1st Column"\r
+msgstr "Pierwsza kolumna"\r
+\r
+#: admin/settings.php:578\r
+msgid "2nd Column"\r
+msgstr "Druga kolumna"\r
+\r
+#: admin/settings.php:593\r
+msgid "3rd Column"\r
+msgstr "Trzecia kolumna"\r
+\r
+#: admin/settings.php:608\r
+msgid "4th Column"\r
+msgstr "Czwarta kolumna"\r
+\r
+#: admin/settings.php:630\r
+msgid "Extra Text"\r
+msgstr "Dodatkowy tekst"\r
+\r
+#: admin/settings.php:630\r
+msgid "Top Title"\r
+msgstr "Górny tytuł"\r
+\r
+#: admin/settings.php:632\r
+msgid "Second Title"\r
+msgstr "Drugi tytuł"\r
+\r
+#: admin/settings.php:635\r
+msgid "Title color"\r
+msgstr "Kolor tytułu"\r
+\r
+#: admin/settings.php:638\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "Kolor tytułów (Domyślnyą wartością jest 333333)."\r
+\r
+#: admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr "Górny tekst 1"\r
+\r
+#: admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr "Górny tekst 2"\r
+\r
+#: admin/settings.php:645\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Więcej tekstu na Twojej głównej stronie. Górny tytuł jest powyżej slajdera, "\r
+"drugi tytuł pomiędzy slajderem i kolumnami oraz 2 rzędy tekstu pod "\r
+"kolumnami..\n"\r
+"\t\t To wszystko jest opcjonalne, więc pozostaw pola puste jeśli nie są "\r
+"wymagane."\r
+\r
+#: admin/settings.php:651\r
+msgid "Hide areas"\r
+msgstr "Ukryj przestrzenie"\r
+\r
+#: admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Ukryj przestrzeń nagłówka (obrazek albo kolor tła)"\r
+\r
+#: admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Ukryj główne menu (zakładki górnej nawigacji)."\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr "Ukryj widgety stopki."\r
+\r
+#: admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Ukryj stopkę (strefa copyright)."\r
+\r
+#: admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Ukryj biały kolor. Pozostanie tylko kolor tła."\r
+\r
+#: admin/settings.php:684\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Wybierz przestrzenie do ukrycia na pierwszej stronie."\r
+\r
+#: admin/settings.php:703\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"Wybierz rozmiar czcionki, która będzie używana na Twoim blogu. Dotyczy "\r
+"stron, postów i komentarzy. Przyciski, nagłówki i menu boczne pozostaną bez "\r
+"zmian."\r
+\r
+#: admin/settings.php:747\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"Wybierz rodzinę czcionek, której użyjesz na blogu. Dotyczy całego tekstu "\r
+"zawartości (włącznie z przyciskami menu)."\r
+\r
+#: admin/settings.php:748 admin/settings.php:797 admin/settings.php:848\r
+#: admin/settings.php:899\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"Albo wstaw swoją czcionkę Google poniżej. Proszę wstaw tylko<strong>nazwę</"\r
+"strong> czcionki.<br /> Np.: Makro One. Zajrzyj na <a href='http://www."\r
+"google.com/webfonts' > google fonts </a> po trochę inspiracji."\r
+\r
+#: admin/settings.php:795\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"Wybierz rodzinę czcionek, której chcesz użyć w swoich tytułach. Dotyczy "\r
+"tytułów postów i stron. Zostaw 'Domyślne' i zostanie użyta czcionka ogólna."\r
+\r
+#: admin/settings.php:846\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"Wybierz rodzinę czcionek, której użyjesz w Twoich paskach bocznych. Dotyczy "\r
+"tekstu w paskach bocznych, wliczając wszystkie widgety. ZZostaw 'Domyślne' i "\r
+"zostanie użyta ogólna czcionka."\r
+\r
+#: admin/settings.php:897\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"Wybierz rodzinę czcionek, której użyjesz w opisach nagłówków (dotyczy tagów "\r
+"h2 - h6) Zostaw 'Domyślne' i zostanie użyta czcionka ogólna."\r
+\r
+#: admin/settings.php:909 admin/settings.php:924 admin/settings.php:939\r
+#: admin/settings.php:984 admin/settings.php:999 admin/settings.php:1014\r
+msgid "Default"\r
+msgstr "Domyślne"\r
+\r
+#: admin/settings.php:917\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"Rozmiar czcionki nagłówka postu. Zostaw 'Domyślne' dla normalnych ustawień "\r
+"(watość rozmiaru będzie taka jak ustawiona w CSS)."\r
+\r
+#: admin/settings.php:932\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"Rozmiar czcionki paska bocznego. Zostaw 'Domyślne' dla normalnych ustawień "\r
+"(watość rozmiaru będzie taka jak ustawiona w CSS)."\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Left"\r
+msgstr "W lewo"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Right"\r
+msgstr "W prawo"\r
+\r
+#: admin/settings.php:939\r
+msgid "Justify"\r
+msgstr "Wyjustuj"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1728\r
+msgid "Center"\r
+msgstr "Do środka"\r
+\r
+#: admin/settings.php:947\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"To nadpisuje wyrównanie w postach i na stronach. Zostaw 'Domyślne' dla "\r
+"normalnych ustawień (wyrównanie pozostanie takie jak ustawione w postach, "\r
+"komentarzach itp.)"\r
+\r
+#: admin/settings.php:961\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Wybierz wcięcie dla Twoich akapitów"\r
+\r
+#: admin/settings.php:977\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "Wyłącz domyślny nagłówek i wcięcie tytułu (lewy margines)."\r
+\r
+#: admin/settings.php:992\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"Wysokość linii tekstu. Wysokość pomiędzy 2 zędami tekstu. Zostaw 'Domyślne' "\r
+"dla normalnych ustawień (watość rozmiaru będzie taka jak ustawiona w CSS)."\r
+\r
+#: admin/settings.php:1007\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Przestrzeń pomiędzy <i>wyrazami</i>. Zostaw 'Domyślne' dla normalnych "\r
+"ustawień (watość rozmiaru będzie taka jak ustawiona w CSS)."\r
+\r
+#: admin/settings.php:1022\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Przestrzeń między <i>literami</i>. Zostaw 'Domyślne' dla normalnych ustawień "\r
+"(watość rozmiaru będzie taka jak ustawiona w CSS)."\r
+\r
+#: admin/settings.php:1039\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "Wyłącz domyślny cień tekstu w nagłówkach i tytułach."\r
+\r
+#: admin/settings.php:1051\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Kolor tła (Domyślną wartością jest 444444)."\r
+\r
+#: admin/settings.php:1059\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr ""\r
+"Kolor tła nagłówka (Domyślną wartością jest 333333). Możesz usunąć wszystko "\r
+"ze środka aby usunąć kolor tła."\r
+\r
+#: admin/settings.php:1066\r
+msgid ""\r
+"Content background color (Default value is FFFFFF). Works best with really "\r
+"light colors."\r
+msgstr ""\r
+"Kolor tła zawartości (DDomyślną wartością jest FFFFFF). Działa świetnie z "\r
+"bardzo jasnymi kolorami."\r
+\r
+#: admin/settings.php:1073\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"Kolor tła menu głównego (Domyślną wartością jest FAFAFA). Powinien być taki "\r
+"sam jak kolor zawartości tła lub tak samo jasny."\r
+\r
+#: admin/settings.php:1080 admin/settings.php:1087\r
+msgid "First sidebar background color (Default value is FFFFFF)."\r
+msgstr "Kolor tła pierwszego paska bocznego (Domyślną wartością jest FFFFFF)."\r
+\r
+#: admin/settings.php:1095\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr ""\r
+"Kolor tła przestrzeni stopki widgetu. (Domyślną wartością jest 171717)."\r
+\r
+#: admin/settings.php:1103\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Kolor tła stopki (Domyślną wartością jest 222222)."\r
+\r
+#: admin/settings.php:1111\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Kolor tytułu Twojego bloga (Domyślną wartością jest 0D85CC)."\r
+\r
+#: admin/settings.php:1119\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Kolor opisu Twojego bloga Domyślną wartością jest 222222)."\r
+\r
+#: admin/settings.php:1127\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Kolor tekstu zawartości (Domyślną wartością jest 333333)."\r
+\r
+#: admin/settings.php:1135\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Kolor linków (Domyślną wartością jest 0D85CC)."\r
+\r
+#: admin/settings.php:1143\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "Kolor linków po najechaniu myszą (Domyślną wartością jest 333333)."\r
+\r
+#: admin/settings.php:1151\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Kolor tekstu nagłówka (Domyślną wartością jest 333333)."\r
+\r
+#: admin/settings.php:1159\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+"Kolor tekstu nagłówka po najechaniu na niego (Domyślną wartością jest "\r
+"000000)."\r
+\r
+#: admin/settings.php:1167\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Kolor tła nagłówka paska bocznego (Domyślną wartością jest 444444)."\r
+\r
+#: admin/settings.php:1176\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Kolor tekstu nagłówka paska bocznego (Domyślną wartością jest 2EA5FD)."\r
+\r
+#: admin/settings.php:1184\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Kolor tekstu widgetu (Domyślną wartością jest 0D85CC)."\r
+\r
+#: admin/settings.php:1192\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Kolor linku stopki widgetu (Domyślną wartością jest 666666)."\r
+\r
+#: admin/settings.php:1200\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+"Kolor linku stopki po najechaniu na widget (Domyślną wartością jest 888888)."\r
+\r
+#: admin/settings.php:1212 admin/settings.php:1273\r
+msgid "White"\r
+msgstr "Biały"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Light"\r
+msgstr "Jasny"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Light Gray"\r
+msgstr "Jasny szary"\r
+\r
+#: admin/settings.php:1212 admin/settings.php:1273\r
+msgid "Gray"\r
+msgstr "Szary"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Dark Gray"\r
+msgstr "Ciemny szary"\r
+\r
+#: admin/settings.php:1212\r
+msgid "Black"\r
+msgstr "Czarny"\r
+\r
+#: admin/settings.php:1220\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"To ustawienie zmienia wygląd Twoich podpisów. Obrazki które nie są wstawione "\r
+"przez podpisy nie będą narażone."\r
+\r
+#: admin/settings.php:1236\r
+msgid "The border around your inserted images. "\r
+msgstr "Granica dookoła Twoich wstawionych obrazków"\r
+\r
+#: admin/settings.php:1251\r
+msgid "The image on top of your captions. "\r
+msgstr "Obrazek na górze Twoich podpisów."\r
+\r
+#: admin/settings.php:1266\r
+msgid "The sidebar list bullets. "\r
+msgstr "Punktory paska bocznego."\r
+\r
+#: admin/settings.php:1281\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default.<"\r
+msgstr ""\r
+"Tło dla Twoich postów-przestrzeń meta (pod tytułami postów). Domyślnie szara."\r
+"<"\r
+\r
+#: admin/settings.php:1289 admin/settings.php:1305 admin/settings.php:1322\r
+#: admin/settings.php:1337 admin/settings.php:1352 admin/settings.php:1382\r
+#: admin/settings.php:1397 admin/settings.php:1413 admin/settings.php:1456\r
+#: admin/settings.php:1471 admin/settings.php:1486 admin/settings.php:1501\r
+#: admin/settings.php:1516 admin/settings.php:1531 admin/settings.php:1546\r
+#: admin/settings.php:1561\r
+msgid "Show"\r
+msgstr "Pokaż"\r
+\r
+#: admin/settings.php:1289 admin/settings.php:1305 admin/settings.php:1322\r
+#: admin/settings.php:1337 admin/settings.php:1352 admin/settings.php:1382\r
+#: admin/settings.php:1413 admin/settings.php:1456 admin/settings.php:1471\r
+#: admin/settings.php:1486 admin/settings.php:1501 admin/settings.php:1516\r
+#: admin/settings.php:1531 admin/settings.php:1546 admin/settings.php:1561\r
+msgid "Hide"\r
+msgstr "Ukryj"\r
+\r
+#: admin/settings.php:1297\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Ukryj lub pokaż poziomą linię rozdzielającą pojedyńcze posty."\r
+\r
+#: admin/settings.php:1313\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"Ukryj lub pokaż punktory przy listach które są w strefie zawartości (posty, "\r
+"strony itp.)."\r
+\r
+#: admin/settings.php:1330\r
+msgid ""\r
+"Hide or show your blog's Title and Description in the header (recommended if "\r
+"you have a custom header image with text)."\r
+msgstr ""\r
+"Ukryj lub pokaż tytuł i opis w nagłówku (zalecane jeśli masz niestandardowy "\r
+"obrazek nagłówka z tekstem)."\r
+\r
+#: admin/settings.php:1345\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "Ukryj lub pokaż tytuły na stronach <i>stworzony</i>."\r
+\r
+#: admin/settings.php:1360\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Ukryj lub pokaż tytuły na stronach <i>Kategorie</i>."\r
+\r
+#: admin/settings.php:1375\r
+msgid "Hide table borders and background color."\r
+msgstr "Ukryj obramowania tabel i kolor tła."\r
+\r
+#: admin/settings.php:1390\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"Ukryj wyjaśnienie pod formularzem komentarzy. (zaczyna się od <i> Możesz "\r
+"użyć tagów HTML i atrybutów:...</i>"\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide in posts"\r
+msgstr "Ukryj w postach"\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide in pages"\r
+msgstr "Ukryj na stronach"\r
+\r
+#: admin/settings.php:1397\r
+msgid "Hide everywhere"\r
+msgstr "Ukryj wszędzie"\r
+\r
+#: admin/settings.php:1405\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"Ukryj tekst<b>Komentarze są wyłączone</b> który domyślnie się pokazuje na "\r
+"stronach, gdzie komentarze są wyłączone."\r
+\r
+#: admin/settings.php:1421\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+"Ukryj tekst <b> Komentarze wyłączone </b> przy postach, które mają wyłączoną "\r
+"opcję komentowania."\r
+\r
+#: admin/settings.php:1437\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"Włącz przycisk Powrót do góry. Przycisk pojawi się po przewinięciu strony w "\r
+"dół."\r
+\r
+#: admin/settings.php:1444\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"Wstaw własny tekst lub kod HTML, który pojawi się jako ostatni w stopce. "\r
+"<br /> Możesz użyć HTML do wstawienia linków, obrazków i specjalnych znaków "\r
+"jak ©."\r
+\r
+#: admin/settings.php:1464\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"Ukryj lub pokaż <strong>Komentuj</strong> \" albo <strong>x Komentarze</"\r
+"strong> obok postów lub wycinków."\r
+\r
+#: admin/settings.php:1479\r
+msgid "Hide or show the post date."\r
+msgstr "Ukryj datę postu."\r
+\r
+#: admin/settings.php:1494\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"Pokaż datę i godzinę postu. Czas nie będzi widoczny, jeśli data będzie "\r
+"ukryta."\r
+\r
+#: admin/settings.php:1509\r
+msgid "Hide or show the post author."\r
+msgstr "Ukryj albo pokaż autora postu."\r
+\r
+#: admin/settings.php:1524\r
+msgid "Hide the post category."\r
+msgstr "Ukryj kategorię postu."\r
+\r
+#: admin/settings.php:1539\r
+msgid "Hide the post tags."\r
+msgstr "Ukryj tagi postu."\r
+\r
+#: admin/settings.php:1554\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "Ukryj 'Dodaj link do zakładek'."\r
+\r
+#: admin/settings.php:1569\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+"Ukryj wszystkie meta postów. Wszystkie informacje i obszary meta będą ukryte."\r
+\r
+#: admin/settings.php:1582 admin/settings.php:1597 admin/settings.php:1613\r
+msgid "Excerpt"\r
+msgstr "Wycinek"\r
+\r
+#: admin/settings.php:1582 admin/settings.php:1597 admin/settings.php:1613\r
+msgid "Full Post"\r
+msgstr "Cały post"\r
+\r
+#: admin/settings.php:1590\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"Tworzy wycinek na głównej stronie. Tylko standardowe posty będą naruszone. "\r
+"Wszystkie inne formaty (boczne, obrazek, chat, cytat itd.) będą miały swoje "\r
+"odrębne formatowanie."\r
+\r
+#: admin/settings.php:1605\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"Wybierz, czy chcesz aby przyklejone posty były wyświetlane na Twojej stronie "\r
+"głównej jako całość, czy wycinki."\r
+\r
+#: admin/settings.php:1621\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"Tworzy wycinki archiwum, kategorii i stron wyszukiwania. To samo co powyżej, "\r
+"tylko standardowe posty zostaną naruszone."\r
+\r
+#: admin/settings.php:1629\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"Liczba słów, ile będzie miał wycinek. Kiedy ta liczba zostanie osiągnięta, "\r
+"post będzie przerwany przez link <i>Czytaj dalej</i> połącz to\n"\r
+"\t\t\t\t\t\t\t który odeśle czytelnika do strony z całym postem."\r
+\r
+#: admin/settings.php:1645\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"Włącz wygląd gazety. Ten wygląd stosuje się do stron z postami i pokazuje 2 "\r
+"posty pod rząd."\r
+\r
+#: admin/settings.php:1652\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr ""\r
+"Zamienia wielokropek ('[...])' który pojawia się automatycznie przy wycinku."\r
+\r
+#: admin/settings.php:1659\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "Edytuj link 'Czytaj dalej' dodany do Twojego wycinku"\r
+\r
+#: admin/settings.php:1674\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr "Domyślnie wycinki WordPress usuwają całe tagi HTML ("\r
+\r
+#: admin/settings.php:1705\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"Pokaż polecane obrazki jako miniatury w postach. Obrazki muszą być wybrane "\r
+"dla każdego postu jako polecane."\r
+\r
+#: admin/settings.php:1720\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"Pokaż pierwszy obraz, który został wprowadzony w poście jako miniaturę. "\r
+"Jeśli włączysz tę opcję, pierwszy obrazek w Twoim poście będzie użyty nawet "\r
+"jeśli wybierzesz polecany obrazek w poście."\r
+\r
+#: admin/settings.php:1736\r
+msgid "Thumbnail alignment."\r
+msgstr "Dostosowanie miniatury."\r
+\r
+#: admin/settings.php:1753\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"Rozmiar, jaki ma mieć miniatura (w pikselach). Domyślnie obrazki będą "\r
+"przeskalowane proporcjonalnie. Wybierz przycięcie obrazka jeśli chcesz "\r
+"dokładny rozmiar."\r
+\r
+#: admin/settings.php:1769\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"Pokaż wybrane obrazy w nagłówkach. Obrazek zostanie zastąpiony polecanym, "\r
+"jeśli wybrano go jako polecany obrazek w poście and\n"\r
+"\t\t\t\t\t\t\t jeśli jest większy lub co najmniej równy rozmiarowi bieżącego "\r
+"nagłówka."\r
+\r
+#: admin/settings.php:1790\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"Wybierz Twoją sieć społecznościową z lewego menu rozwijanego i wstaw "\r
+"odpowiedni adres w odpowiednim polu.(na przykład: <i>http://www.facebook.com/"\r
+"yourname</i> )"\r
+\r
+#: admin/settings.php:1804\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Możesz wprowadzić do 5 różnych stron społecznościowych i adresów."\r
+\r
+#: admin/settings.php:1818\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Łącznie jest 27 sieci społecznościowych do wyboru."\r
+\r
+#: admin/settings.php:1832\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Możesz zostawić ile chcesz pustych miejsc na dane wejściowe."\r
+\r
+#: admin/settings.php:1846\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Możesz wybrać te same portale społecznościowe niezliczoną ilość razy"\r
+\r
+#: admin/settings.php:1877\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "Wybierz <b>Przestrzenie</b> w których umieścić ikony społeczności."\r
+\r
+#: admin/settings.php:1898\r
+msgid ""\r
+"Make the site header into a clickable link that links to your index page."\r
+msgstr "Spraw aby tytuł strony był klikalnym linkiem do strony głównej."\r
+\r
+#: admin/settings.php:1913\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"Pokaż Okruszki chleba na górze zawartości. Okruszki chleba są formą "\r
+"nawigacji która przedstawia Twoją lokalizację na stronie w postaci ścieżki."\r
+\r
+#: admin/settings.php:1928\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"Pokaż numerowanie stron. Gdzie jest więcej niż jedna strona, zamiast linków "\r
+"<b>Starsze posty</b> i <b>Nowsze posty</b> pojawią się linki z numerami "\r
+"stron."\r
+\r
+#: admin/settings.php:1943\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in. "\r
+msgstr ""\r
+"Włącz opcję widoku dla urządzeń przenośnych. Wygląd Twojego bloga ulegnie "\r
+"zmianie w zależności od użytego urządzenia na którym będzie wyświetlany. "\r
+\r
+#: admin/settings.php:1953\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "Wyślij albo wybierz favicon z galerii"\r
+\r
+#: admin/settings.php:1957\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+"Ograniczenia: To musi być obrazek. Powinien mieć wymiary max 64x64 pikseli. "\r
+"Zalecane rozszerzenia plików to .ico i .png ."\r
+\r
+#: admin/settings.php:1965\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br /> Your custom CSS will be preserved when updating the "\r
+"theme."\r
+msgstr ""\r
+"Tutaj wprowadź własny CSS. Każde deklaracje CSS dodane tutaj zastąpią te z "\r
+"Mantry. (nawet niestandardowe opcje określone tutaj na stronie ustawień "\r
+"Mantry).<br /> Twój niestandardowy CSS będzie zachowany w przypadku "\r
+"aktualizacji motywu."\r
+\r
+#: admin/settings.php:1972\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software)."\r
+msgstr ""\r
+"Tutaj wprowadź swój kod Javascript. (Google Analytics i jakiekolwiek inne "\r
+"formy oprogramowania tego typu)."\r
+\r
+#: admin/settings.php:1985\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Włącz optymalizację silnika wyszukiwania Mantry. Funkcja jest uruchomiona "\r
+"domyślnie i powinna być wyłączona tylko jeśli używasz pluginu SEO."\r
+\r
+#: admin/settings.php:1997\r
+msgid "Auto"\r
+msgstr "Auto"\r
+\r
+#: admin/settings.php:1997\r
+msgid "Manual"\r
+msgstr "Ręczne"\r
+\r
+#: includes/theme-comments.php:28\r
+msgid "says:"\r
+msgstr "mówi:"\r
+\r
+#: includes/theme-comments.php:34\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Twój komentarz oczekuje na moderację."\r
+\r
+#: includes/theme-comments.php:41\r
+msgid "at"\r
+msgstr "na"\r
+\r
+#: includes/theme-comments.php:41 includes/theme-comments.php:58\r
+msgid "(Edit)"\r
+msgstr "(Edytuj)"\r
+\r
+#: includes/theme-comments.php:58\r
+msgid "Pingback: "\r
+msgstr "Pingback:"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "Leave a comment"\r
+msgstr "Skomentuj"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Komentarz"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Komentarze"\r
+\r
+#: includes/theme-comments.php:107\r
+msgid "Older Comments"\r
+msgstr "Starsze komentarze"\r
+\r
+#: includes/theme-comments.php:108\r
+msgid "Newer Comments"\r
+msgstr "Nowsze komentarze"\r
+\r
+#: includes/theme-functions.php:233\r
+msgid "Home Page"\r
+msgstr "Strona Startowa"\r
+\r
+#: includes/theme-functions.php:297\r
+msgid "Powered by"\r
+msgstr "Powered by"\r
+\r
+#: includes/theme-loop.php:145\r
+msgid "By "\r
+msgstr "Przez"\r
+\r
+#: includes/theme-loop.php:185\r
+msgid " Bookmark the "\r
+msgstr "Dodaj do zakładek"\r
+\r
+#: includes/theme-loop.php:185 includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+msgid "Permalink to"\r
+msgstr "Permalink z"\r
+\r
+#: includes/theme-loop.php:185 includes/theme-loop.php:187\r
+#: includes/theme-loop.php:189\r
+msgid "permalink"\r
+msgstr "permalink"\r
+\r
+#: includes/theme-loop.php:187 includes/theme-loop.php:189\r
+msgid "Bookmark the "\r
+msgstr "Dodaj do zakładek"\r
+\r
+#: includes/theme-loop.php:211\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Starsze posty"\r
+\r
+#: includes/theme-loop.php:212\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Nowsze posty <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Strona %s"\r
+\r
+#: includes/theme-setup.php:90\r
+msgid "Primary Navigation"\r
+msgstr "Podstawowa nawigacja"\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Top Navigation"\r
+msgstr "Górna nawigacja"\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Footer Navigation"\r
+msgstr "Nawigacja stopki"\r
+\r
+#: includes/theme-setup.php:139\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:200\r
+msgid "Skip to content"\r
+msgstr "Przewiń do zawartości"\r
+\r
+#: includes/theme-setup.php:227\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Przestrzeń pierwszego widgetu - Pasek boczny 1"\r
+\r
+#: includes/theme-setup.php:229\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Przestrzeń pierwszego widgetu - Pasek boczny 1"\r
+\r
+#: includes/theme-setup.php:238\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Przestrzeń drugiego widgetu - Pasek boczny 1"\r
+\r
+#: includes/theme-setup.php:240\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Przestrzeń drugiego widgetu - Pasek boczny 1"\r
+\r
+#: includes/theme-setup.php:249\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Przestrzeń trzeciego widgetu - Pasek boczny 2"\r
+\r
+#: includes/theme-setup.php:251\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Przestrzeń trzeciego widgetu - Pasek boczny 2"\r
+\r
+#: includes/theme-setup.php:260\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Przestrzeń czwartego widgetu - Pasek boczny 2"\r
+\r
+#: includes/theme-setup.php:262\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Przestrzeń czwartego widgetu - Pasek boczny 2"\r
+\r
+#: includes/theme-setup.php:271\r
+msgid "First Footer Widget Area"\r
+msgstr "Przestrzeń widgetu pierwszej stopki"\r
+\r
+#: includes/theme-setup.php:273\r
+msgid "First footer widget area"\r
+msgstr "Przestrzeń widgetu pierwszej stopki"\r
+\r
+#: includes/theme-setup.php:282\r
+msgid "Second Footer Widget Area"\r
+msgstr "Przestrzeń widgetu drugiej stopki"\r
+\r
+#: includes/theme-setup.php:284\r
+msgid "Second footer widget area"\r
+msgstr "Przestrzeń widgetu drugiej stopki"\r
+\r
+#: includes/theme-setup.php:293\r
+msgid "Third Footer Widget Area"\r
+msgstr "Przestrzeń widgetu trzeciej stopki"\r
+\r
+#: includes/theme-setup.php:295\r
+msgid "The third footer widget area"\r
+msgstr "Przestrzeń widgetu trzeciej stopki"\r
+\r
+#: includes/theme-setup.php:304\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Przestrzeń widgetu czwartej stopki"\r
+\r
+#: includes/theme-setup.php:306\r
+msgid "The fourth footer widget area"\r
+msgstr "Przestrzeń widgetu czwartej stopki"\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: mantra 197\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-09-08 18:32+0200\n"\r
+"PO-Revision-Date: 2013-02-10 21:15-0300\n"\r
+"Last-Translator: Ivar P. Junior <ivarjr@gmail.com>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"\r
+"X-Poedit-Basepath: C:\\Users\\medicated\\Desktop\\mantra\n"\r
+"X-Generator: Poedit 1.5.4\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "Não encontrado"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr ""\r
+"Desculpe, mas a página que você requisitou não pôde ser encontrada. Talvez a "\r
+"função \"procurar\" ajude. "\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Arquivos Diários: %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Arquivos Mensais: %s"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Arquivos Anuais: %s"\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "Arquivos do Blog"\r
+\r
+#: archive.php:57 author.php:74 category.php:50\r
+msgid "Nothing Found"\r
+msgstr "Nada foi encontrado"\r
+\r
+#: archive.php:61 author.php:78 category.php:54\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr ""\r
+"Desculpe, mas nenhum resultado foi encontrado para o arquivo selecionado. "\r
+"Talvez a função \"procurar\" ajude a encontrar um post relacionado. "\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Voltar para %s"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "Por"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "Publicado"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "O tamanho Integral é de %s pixels"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "Link para a imagem em tamanho integral"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:48 content-gallery.php:64 content-image.php:41\r
+#: content-link.php:48 content-page.php:22 content-quote.php:46\r
+#: content-status.php:49 content.php:80\r
+msgid "Edit"\r
+msgstr "Editar"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "Continue a leitura"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:37\r
+#: content-gallery.php:54 content-image.php:32 content-link.php:37\r
+#: content-page.php:21 content-quote.php:36 content-status.php:40\r
+#: content.php:52 content.php:69\r
+msgid "Pages:"\r
+msgstr "Páginas:"\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Arquivos do Autor: %s"\r
+\r
+#: author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "Sobre %s"\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Arquivos da Categoria: %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+"Este post é protegido por uma senha. Digite a senha para visualizar os "\r
+"comentários."\r
+\r
+#: comments.php:41 comments.php:60\r
+msgid "Older Comments"\r
+msgstr "Comentários mais antigos"\r
+\r
+#: comments.php:42 comments.php:61\r
+msgid "Newer Comments"\r
+msgstr "Comentários mais recentes"\r
+\r
+#: comments.php:72 content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr "Os comentários estão encerrados. "\r
+\r
+#: content-aside.php:21\r
+msgid "Aside"\r
+msgstr "Além disso"\r
+\r
+#: content-aside.php:38 content-chat.php:36 content-gallery.php:32\r
+#: content-image.php:31 content-link.php:36 content-quote.php:35\r
+#: content-status.php:39\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Continue a leitura <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:44 content-gallery.php:61\r
+#: content-image.php:38 content-link.php:44 content-quote.php:43\r
+#: content-status.php:47 content.php:78\r
+msgid "Tagged"\r
+msgstr "Marcado"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "Bate-papo"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "Galeria"\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr "Imagem"\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr "Link"\r
+\r
+#: content-quote.php:19\r
+msgid "Quote"\r
+msgstr "Citação"\r
+\r
+#: content-status.php:31\r
+msgid "Status"\r
+msgstr "Status"\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Resultados da busca por: %s"\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "Nenhum resultado encontrado para: %s"\r
+\r
+#: sidebar.php:35 sidebar.php:92\r
+msgid "Archives"\r
+msgstr "Arquivos"\r
+\r
+#: sidebar.php:42 sidebar.php:99\r
+msgid "Meta"\r
+msgstr "Meta"\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr "Ver todos os posts escritos por"\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Marcar Arquivos: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr ""\r
+"Antes de enviar o arquivo para importação, você precisa verificar o seguinte "\r
+"erro: "\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Opções de importação do Mantra Theme"\r
+\r
+#: admin/admin-functions.php:72\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"Olá! Este é o lugar onde você importa as configurações do Mantra. <i> Por "\r
+"favor, lembre-se de que esta função ainda está em fase experimental. <i>"\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Basta selecionar um arquivo do seu computador:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "Tamanho máximo: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "E importe!"\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Opções de importação do Mantra Theme"\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "Excelente! As opções foram importadas com sucesso!"\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Volte à página de opções do Mantra e confira!"\r
+\r
+#: admin/admin-functions.php:155 admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "Opa! Houve um pequeno problema. "\r
+\r
+#: admin/admin-functions.php:156\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"O arquivo enviado não contêm opções válidas para o Mantra. Certifique-se que "\r
+"o arquivo seja exportado a partir da página de Opções do Mantra. "\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "Não foi possível ler o arquivo enviado. "\r
+\r
+#: admin/admin-functions.php:168\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"O arquivo enviado não é suportado. Certifique-se que o arquivo foi exportado "\r
+"a partir da página do Mantra e que seja um arquivo de texto. "\r
+\r
+#: admin/admin-functions.php:177\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"Opa! O arquivo está vazio, ou não havia nenhum arquivo. Este erro também "\r
+"pode ser causado porque os uploads estão desabilitados no seu arquivo php."\r
+"ini ou porque a variável post_max_size está definida com um tamanho menor do "\r
+"que upload_max_filesize no php.ini."\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "ERRO : Você não tem autorização para executar essa operação."\r
+\r
+#: admin/main.php:93\r
+msgid "Layout Settings"\r
+msgstr "Configurações do Layout"\r
+\r
+#: admin/main.php:94\r
+msgid "Presentation Page"\r
+msgstr "Página de Apresentação"\r
+\r
+#: admin/main.php:95\r
+msgid "Text Settings"\r
+msgstr "Configurações de Texto"\r
+\r
+#: admin/main.php:96\r
+msgid "Color Settings"\r
+msgstr "Configurações de Cor"\r
+\r
+#: admin/main.php:97\r
+msgid "Graphics Settings"\r
+msgstr "Configurações dos Gráficos"\r
+\r
+#: admin/main.php:98\r
+msgid "Post Information Settings"\r
+msgstr "Configurações de Informações do Post"\r
+\r
+#: admin/main.php:99\r
+msgid "Post Excerpt Settings"\r
+msgstr "Configurações do Resumo do Post"\r
+\r
+#: admin/main.php:100\r
+msgid "Featured Image Settings"\r
+msgstr "Configurações da Imagem de Apresentação"\r
+\r
+#: admin/main.php:101\r
+msgid "Social Media Settings"\r
+msgstr "Configurações de Mídia Social"\r
+\r
+#: admin/main.php:102\r
+msgid "Miscellaneous Settings"\r
+msgstr "Outras Configurações"\r
+\r
+#: admin/main.php:104\r
+msgid "Main Layout"\r
+msgstr "Layout Principal"\r
+\r
+#: admin/main.php:105\r
+msgid "Content / Sidebar Width"\r
+msgstr "Largura do Conteúdo / Barra Lateral"\r
+\r
+#: admin/main.php:106\r
+msgid "Header Image Height"\r
+msgstr "Altura da Imagem do Cabeçalho"\r
+\r
+#: admin/main.php:108\r
+msgid "Enable Presentation Page"\r
+msgstr "Habilitar Página de Apresentação"\r
+\r
+#: admin/main.php:109\r
+msgid "Slider Settings"\r
+msgstr "Configurações do Slider"\r
+\r
+#: admin/main.php:110\r
+msgid "Slides"\r
+msgstr "Slides"\r
+\r
+#: admin/main.php:111\r
+msgid "Presentation Page Columns"\r
+msgstr "Colunas da Página de Apresentação"\r
+\r
+#: admin/main.php:112\r
+msgid "Extras"\r
+msgstr "Extras"\r
+\r
+#: admin/main.php:114\r
+msgid "General Font"\r
+msgstr "Fonte Geral"\r
+\r
+#: admin/main.php:115\r
+msgid "General Font Size"\r
+msgstr "Tamanho da Fonte Geral"\r
+\r
+#: admin/main.php:116\r
+msgid "Post Title Font "\r
+msgstr "Fonte do Título do Post"\r
+\r
+#: admin/main.php:117\r
+msgid "Post Title Font Size"\r
+msgstr "Tamanho da Fonte do Título do Post"\r
+\r
+#: admin/main.php:118\r
+msgid "Sidebar Font"\r
+msgstr "Fonte da Barra Lateral"\r
+\r
+#: admin/main.php:119\r
+msgid "SideBar Font Size"\r
+msgstr "Tamanho da Fonte da Barra Lateral"\r
+\r
+#: admin/main.php:120\r
+msgid "Sub-Headers Font"\r
+msgstr "Fonte dos Subtítulos"\r
+\r
+#: admin/main.php:121\r
+msgid "Force Text Align"\r
+msgstr "Forçar o Alinhamento do Texto"\r
+\r
+#: admin/main.php:122\r
+msgid "Paragraph indent"\r
+msgstr "Recuo do parágrafo"\r
+\r
+#: admin/main.php:123\r
+msgid "Header indent"\r
+msgstr "Recuo do cabeçalho"\r
+\r
+#: admin/main.php:124\r
+msgid "Line Height"\r
+msgstr "Altura da Linha"\r
+\r
+#: admin/main.php:125\r
+msgid "Word spacing"\r
+msgstr "Espaçamento das palavras"\r
+\r
+#: admin/main.php:126\r
+msgid "Letter spacing"\r
+msgstr "Espaçamento das letras"\r
+\r
+#: admin/main.php:127\r
+msgid "Text shadow"\r
+msgstr "Sombreamento do texto"\r
+\r
+#: admin/main.php:129\r
+msgid "Background Color"\r
+msgstr "Cor do fundo"\r
+\r
+#: admin/main.php:130\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Cor de Fundo do Cabeçalho (Banner e Menu)"\r
+\r
+#: admin/main.php:131\r
+msgid "Content Background Color"\r
+msgstr "Cor de fundo do Conteúdo"\r
+\r
+#: admin/main.php:132\r
+msgid "Menu background color"\r
+msgstr "Cor de fundo do Menu"\r
+\r
+#: admin/main.php:134\r
+msgid "Site Title Color"\r
+msgstr "Cor do título do site"\r
+\r
+#: admin/main.php:135\r
+msgid "Site Description Color"\r
+msgstr "Cor da Descrição do Site"\r
+\r
+#: admin/main.php:137\r
+msgid "Content Text Color"\r
+msgstr "Cor do Texto do Conteúdo"\r
+\r
+#: admin/main.php:138\r
+msgid "Links Color"\r
+msgstr "Cor dos Links"\r
+\r
+#: admin/main.php:139\r
+msgid "Links Hover Color"\r
+msgstr "Cor dos Links quando o ponteiro estiver sobreposto"\r
+\r
+#: admin/main.php:140\r
+msgid "Post Title Color"\r
+msgstr "Cor do Título do Post"\r
+\r
+#: admin/main.php:141\r
+msgid "Post Title Hover Color"\r
+msgstr "Cor do Título do Post quando o ponteiro estiver sobreposto"\r
+\r
+#: admin/main.php:142\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Cor do Fundo do Cabeçalho da Barra Lateral"\r
+\r
+#: admin/main.php:143\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Cor do Texto do Cabeçalho da Barra Lateral"\r
+\r
+#: admin/main.php:144\r
+msgid "Footer Widget Background Color"\r
+msgstr "Cor do Fundo do Widget do Rodapé"\r
+\r
+#: admin/main.php:145\r
+msgid "Footer Background Color"\r
+msgstr "Cor do Fundo do Rodapé"\r
+\r
+#: admin/main.php:146\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Cor do Texto do Cabeçalho do Widget do Rodapé"\r
+\r
+#: admin/main.php:147\r
+msgid "Footer Widget Link Color"\r
+msgstr "Cor do Link no Widget do Rodapé"\r
+\r
+#: admin/main.php:148\r
+msgid "Footer Widget Hover Color"\r
+msgstr ""\r
+"Cor do Texto do Cabeçalho do Widget do Rodapé quando o ponteiro estiver "\r
+"sobreposto"\r
+\r
+#: admin/main.php:150\r
+msgid "Caption Border"\r
+msgstr "Borda da legenda da foto"\r
+\r
+#: admin/main.php:151\r
+msgid "Post Images Border"\r
+msgstr "Borda das imagens do Post"\r
+\r
+#: admin/main.php:152\r
+msgid "Caption Pin"\r
+msgstr "Alfinete da legenda"\r
+\r
+#: admin/main.php:153\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Marcador do Menu da Barra Lateral"\r
+\r
+#: admin/main.php:154\r
+msgid "Meta Area Background"\r
+msgstr "Fundo da Área de Meta"\r
+\r
+#: admin/main.php:155\r
+msgid "Post Separator"\r
+msgstr "Separador de Posts"\r
+\r
+#: admin/main.php:156\r
+msgid "Content List Bullets"\r
+msgstr "Marcadores da Lista de Conteúdo"\r
+\r
+#: admin/main.php:157\r
+msgid "Title and Description"\r
+msgstr "Título e Descrição"\r
+\r
+#: admin/main.php:158\r
+msgid "Page Titles"\r
+msgstr "Títulos das Páginas"\r
+\r
+#: admin/main.php:159\r
+msgid "Category Page Titles"\r
+msgstr "Títulos da Página de Categorias"\r
+\r
+#: admin/main.php:160\r
+msgid "Hide Tables"\r
+msgstr "Ocultar Tabelas"\r
+\r
+#: admin/main.php:161\r
+msgid "Back to Top button"\r
+msgstr "Botão Voltar ao Topo"\r
+\r
+#: admin/main.php:162\r
+msgid "Text Under Comments"\r
+msgstr "Texto abaixo dos comentários"\r
+\r
+#: admin/main.php:163\r
+msgid "Comments are closed text"\r
+msgstr "Texto mostrando que os Comentários estão encerrados"\r
+\r
+#: admin/main.php:164\r
+msgid "Comments off"\r
+msgstr "Comentários desativados"\r
+\r
+#: admin/main.php:165\r
+msgid "Insert footer copyright"\r
+msgstr "Inserir informações sobre direitos autorais no rodapé"\r
+\r
+#: admin/main.php:167\r
+msgid "Post Comments Link"\r
+msgstr "Link para Comentários nos Posts"\r
+\r
+#: admin/main.php:168\r
+msgid "Post Date"\r
+msgstr "Data do Post"\r
+\r
+#: admin/main.php:169\r
+msgid "Post Time"\r
+msgstr "Horário do Post"\r
+\r
+#: admin/main.php:170\r
+msgid "Post Author"\r
+msgstr "Autor do Post"\r
+\r
+#: admin/main.php:171\r
+msgid "Post Category"\r
+msgstr "Categoria do Post"\r
+\r
+#: admin/main.php:172\r
+msgid "Post Tags"\r
+msgstr "Palavras-chave do Post"\r
+\r
+#: admin/main.php:173\r
+msgid "Post Permalink"\r
+msgstr "Permalink do Post"\r
+\r
+#: admin/main.php:174\r
+msgid "All Post Metas"\r
+msgstr "Todas as Meta-Informações dos Posts"\r
+\r
+#: admin/main.php:176\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Resumo dos Posts na Página Principal"\r
+\r
+#: admin/main.php:177\r
+msgid "Affect Sticky Posts"\r
+msgstr "Afeta Posts Permanentes"\r
+\r
+#: admin/main.php:178\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Resumo dos Posts em páginas de Arquivo e Categorias"\r
+\r
+#: admin/main.php:179\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Número de Palavras no Resumo dos Posts "\r
+\r
+#: admin/main.php:180\r
+msgid "Magazine Layout"\r
+msgstr "Layout de Revista"\r
+\r
+#: admin/main.php:181\r
+msgid "Excerpt suffix"\r
+msgstr "Sufixo após o Resumo dos Posts"\r
+\r
+#: admin/main.php:182\r
+msgid "Continue reading link text "\r
+msgstr "Texto para o link de \"Continue a leitura\""\r
+\r
+#: admin/main.php:183\r
+msgid "HTML tags in Excerpts"\r
+msgstr "Tags HTML nos Resumo dos Posts"\r
+\r
+#: admin/main.php:185\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Definir Imagens de Apresentação como imagens em miniatura dos POSTs"\r
+\r
+#: admin/main.php:186\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Auto-selecionar as imagens de cada Post"\r
+\r
+#: admin/main.php:187\r
+msgid "Thumbnails Alignment "\r
+msgstr "Alinhamento das imagens em miniatura"\r
+\r
+#: admin/main.php:188\r
+msgid "Thumbnails Size "\r
+msgstr "Tamanho das imagens em miniatura"\r
+\r
+#: admin/main.php:189\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Imagens de Apresentaao como imagens de CABEÇALHO"\r
+\r
+#: admin/main.php:191\r
+msgid "Link nr. 1"\r
+msgstr "Link nº 1"\r
+\r
+#: admin/main.php:192\r
+msgid "Link nr. 2"\r
+msgstr "Link nº 2"\r
+\r
+#: admin/main.php:193\r
+msgid "Link nr. 3"\r
+msgstr "Link nº 3"\r
+\r
+#: admin/main.php:194\r
+msgid "Link nr. 4"\r
+msgstr "Link nº 4"\r
+\r
+#: admin/main.php:195\r
+msgid "Link nr. 5"\r
+msgstr "Link nº 5"\r
+\r
+#: admin/main.php:196\r
+msgid "Socials display"\r
+msgstr "Mostrar ícones sociais"\r
+\r
+#: admin/main.php:198\r
+msgid "Make Site Header a Link"\r
+msgstr "Transformar Cabeçalho do Site em Link"\r
+\r
+#: admin/main.php:199\r
+msgid "Breadcrumbs"\r
+msgstr "Navegação estrutural"\r
+\r
+#: admin/main.php:200\r
+msgid "Pagination"\r
+msgstr "Paginação"\r
+\r
+#: admin/main.php:201\r
+msgid "Mobile view"\r
+msgstr "Visualizar em aparelhos móveis"\r
+\r
+#: admin/main.php:202\r
+msgid "FavIcon"\r
+msgstr "FavIcon"\r
+\r
+#: admin/main.php:203\r
+msgid "Custom CSS"\r
+msgstr "CSS Personalizados"\r
+\r
+#: admin/main.php:204\r
+msgid "Custom JavaScript"\r
+msgstr "JavaScript Personalizado"\r
+\r
+#: admin/main.php:205\r
+msgid "SEO Settings"\r
+msgstr "Configurações de SEO"\r
+\r
+#: admin/main.php:222\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr ""\r
+"Desculpe, mas você não tem o nível de permissões necessário para acessar "\r
+"esta página. "\r
+\r
+#: admin/main.php:232\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Configurações do Mantra atualizadas com sucesso."\r
+\r
+#: admin/main.php:243\r
+msgid "Reset to Defaults"\r
+msgstr "Reset para as configurações Default"\r
+\r
+#: admin/main.php:244\r
+msgid "Save Changes"\r
+msgstr "Salvar Alterações"\r
+\r
+#: admin/main.php:258\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+"keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+"folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+"coffee. We love it! So if you want to help with the further development of "\r
+"the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p> Aqui na Cryout Creations (os desenvolvedores do Mantra Theme), nós "\r
+"passamos noite após noite melhorando o Mantra Theme. Consertamos vários "\r
+"erros (que foram criados anteriormente por nós mesmos); acrescentamos cada "\r
+"vez mais opções de personalização, ao mesmo tempo que tentamos deixar as "\r
+"coisas o mais simples possível; em seguida... podemos jogar um jogo ou dois, "\r
+"mas tenha a certeza de que retornaremos para ler e (na maioria dos casos) "\r
+"responder aos e-mails e comentários enviados tarde da noite, tomar notas e "\r
+"criar diagramas com coisas para implementar em versões futuras. <p>\n"\r
+"\t\t\t<p>Portanto, você deve estar se perguntando: <i>Como eles conseguem? "\r
+"Como são capazes de continuar a ser tão inofadores depois de todo esse "\r
+"trabalho com esse maldito tema? </i> Bem, pessoal, é simples. Quantidades "\r
+"imensas de café quente e fumegante. Nós adoramos! Assim, se você quiser "\r
+"ajudar com o desenvolvimento das versões futuras do Mantra theme... </p>"\r
+\r
+#: admin/main.php:273\r
+msgid "Import/Export Settings"\r
+msgstr "Configurações de Importação/Exportação"\r
+\r
+#: admin/main.php:279\r
+msgid "Export Theme options"\r
+msgstr "Opções de Exportação do Tema"\r
+\r
+#: admin/main.php:280\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"É muito fácil, basta apenas um clique do mouse — a possibilidade de exportar "\r
+"seus parâmetros de configuração do Mantra e salvá-los em seu computador. "\r
+"Está se sentindo mais seguro? Pois deveria!"\r
+\r
+#: admin/main.php:285\r
+msgid "Import Theme options"\r
+msgstr "Opções de Importação do Tema"\r
+\r
+#: admin/main.php:286\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+"Sem a Importação, a Exportação seria apenas um exercício fútil. Certifique-"\r
+"se de que você está com o arquivo exportado a postos. Nos vemos depois que "\r
+"você clicar com o mouse. "\r
+\r
+#: admin/main.php:293\r
+msgid "Mantra Latest News"\r
+msgstr "As últimas do Mantra"\r
+\r
+#: admin/main.php:304\r
+msgid "No news items."\r
+msgstr "Sem notícias."\r
+\r
+#: admin/main.php:318\r
+msgid "Mantra Help"\r
+msgstr "Ajuda do Mantra"\r
+\r
+#: admin/main.php:321\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "\r
+"version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+"expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "\r
+"your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+"Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Quer saber quais mudanças são feitas no tema a cada nova "\r
+"versão? </li>\n"\r
+"\t\t\t\t<li>- Encontrou um bug, ou talvez algo que não funcione exatamente "\r
+"como deveria?</li>\n"\r
+"\t\t\t\t<li>- Tem uma ideia para melhorar o Mantra Theme para que ele atenda "\r
+"melhor às suas necessidades? </li>\n"\r
+"\t\t\t\t<li>- Gostaria que implementássemos alguma configuração?</li>\n"\r
+"\t\t\t\t<li>- Traduziu ou gostaria de traduzir o Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Então, venha nos visitar na página de suporte do Mantra.</p>\n"\r
+"\t"\r
+\r
+#: admin/main.php:332\r
+msgid "Mantra Support Page"\r
+msgstr "Página de Suporte do Mantra"\r
+\r
+#: admin/settings.php:61\r
+msgid "One column (no sidebars)"\r
+msgstr "Uma coluna (Sem barras laterais)"\r
+\r
+#: admin/settings.php:62\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Duas colunas, barra lateral à direita"\r
+\r
+#: admin/settings.php:63\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Duas colunas, barra lateral à esquerda"\r
+\r
+#: admin/settings.php:64\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Três colunas, barras lateral à direita"\r
+\r
+#: admin/settings.php:65\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Três colunas, barras lateral à direita"\r
+\r
+#: admin/settings.php:66\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Três colunas, com uma barra lateral de cada lado"\r
+\r
+#: admin/settings.php:81\r
+msgid "Choose your layout "\r
+msgstr "Escolha o seu Layout"\r
+\r
+#: admin/settings.php:89\r
+msgid "Absolute"\r
+msgstr "Absoluta"\r
+\r
+#: admin/settings.php:89\r
+msgid "Relative"\r
+msgstr "Relativa"\r
+\r
+#: admin/settings.php:90\r
+msgid "Dimensions to use: "\r
+msgstr "Dimensões a serem utilizadas:"\r
+\r
+#: admin/settings.php:189 admin/settings.php:209\r
+msgid "Content ="\r
+msgstr "Conteúdo ="\r
+\r
+#: admin/settings.php:190 admin/settings.php:210\r
+msgid "Sidebar(s) ="\r
+msgstr "Barra(s) lateral(is)"\r
+\r
+#: admin/settings.php:191 admin/settings.php:211\r
+msgid "Total width ="\r
+msgstr "Largura total ="\r
+\r
+#: admin/settings.php:200\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Selecione a largura do seu <b>conteúdo</b> e <b>barra(s) lateral(is)</b>. \n"\r
+"\t\tEmbora o conteúdo não possa ter uma largura menor de 500px, a área da "\r
+"barra lateral tem pelo menos 220px e não mais do que 800px.<br />\n"\r
+"\t Se você selecionar uma área com três colunas (2 barras laterais), cada "\r
+"uma delas terá metade da largura selecionada. "\r
+\r
+#: admin/settings.php:220\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Selecione a largura do seu <b>conteúdo</b> e <b>barra(s) lateral(is)</b>. \n"\r
+" \t\t Essas são as dimensões relativas — relativas ao navegador do usuário. "\r
+"A largura total é uma porcentagem da largura do navegador. <br />\n"\r
+"\t Embora a largura do conteúdo não possa ser menor do que 40%, a área da "\r
+"barra lateral tem pelo menos 20% e não mais do que 50%.<br />\n"\r
+"\t Se você selecionar uma área com três colunas (2 barras laterais), cada "\r
+"uma delas terá metade da largura selecionada. "\r
+\r
+#: admin/settings.php:244\r
+msgid ""\r
+"Select the header's height. After saving the settings go and upload your new "\r
+"header image. The header's width will be = "\r
+msgstr ""\r
+"Selecione a altura do cabeçalho. Após salvar as configurações, faça o upload "\r
+"da sua nova imagem para o cabeçalho. A largura do cabeçalho será ="\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1353 admin/settings.php:1415 admin/settings.php:1623\r
+#: admin/settings.php:1652 admin/settings.php:1675 admin/settings.php:1698\r
+#: admin/settings.php:1747 admin/settings.php:1876 admin/settings.php:1891\r
+#: admin/settings.php:1906 admin/settings.php:1921 admin/settings.php:1963\r
+msgid "Enable"\r
+msgstr "Habilitar"\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1353 admin/settings.php:1415 admin/settings.php:1623\r
+#: admin/settings.php:1652 admin/settings.php:1675 admin/settings.php:1698\r
+#: admin/settings.php:1747 admin/settings.php:1876 admin/settings.php:1891\r
+#: admin/settings.php:1906 admin/settings.php:1921 admin/settings.php:1963\r
+msgid "Disable"\r
+msgstr "Desabilitar"\r
+\r
+#: admin/settings.php:265\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page and "\r
+"it will replace whatever page you have selected as homepage. It has a slider "\r
+"and columns for presentation\n"\r
+"\t\ttext and images."\r
+msgstr ""\r
+"Habilitar a página inicial de apresentação. Ela se tornará a sua nova página "\r
+"inicial e substituirá qualquer outra página que você tenha designado como "\r
+"página inicial. Ela tem um slider e colunas para apresentações\n"\r
+"\t\ttexto e imagens."\r
+\r
+#: admin/settings.php:275\r
+msgid "Slider Dimensions:"\r
+msgstr "Dimensões do Slider:"\r
+\r
+#: admin/settings.php:276\r
+msgid "width"\r
+msgstr "largura"\r
+\r
+#: admin/settings.php:277\r
+msgid "height"\r
+msgstr "altura"\r
+\r
+#: admin/settings.php:278\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+"Dimensões do seu slider. Certifique-se de que suas imagens têm o mesmo "\r
+"tamanho."\r
+\r
+#: admin/settings.php:280\r
+msgid "Animation:"\r
+msgstr "Animação:"\r
+\r
+#: admin/settings.php:282\r
+msgid "Random"\r
+msgstr "Aleatório"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fold"\r
+msgstr "Dobrar"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fade"\r
+msgstr "Esmaecer"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInRight"\r
+msgstr "Deslizar para a Direita"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInLeft"\r
+msgstr "Deslizar para a Esquerda"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDown"\r
+msgstr "Fatiar para Baixo"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDownLeft"\r
+msgstr "Fatiar para Baixo e Esquerda"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUp"\r
+msgstr "Fatiar para Cima"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpLeft"\r
+msgstr "Fatiar para Cima e Esquerda"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDown"\r
+msgstr "Fatiar para Cima e para Baixo"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDownLeft"\r
+msgstr "Fatiar para Cima, para Baixo e Esquerda"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRandom"\r
+msgstr "Caixa Aleatória"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRain"\r
+msgstr "Caixa e Chuva"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainReverse"\r
+msgstr "Caixa e Chuva Invertida"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrow"\r
+msgstr "Caixa e Chuva, Crescendo"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrowReverse"\r
+msgstr "Caixa e Chuva, Crescendo, Invertido"\r
+\r
+#: admin/settings.php:290\r
+msgid "The transition effect your slider will have."\r
+msgstr "O efeito de transição que o seu slider vai ter."\r
+\r
+#: admin/settings.php:292\r
+msgid "Border Settings:"\r
+msgstr "Configurações da Borda:"\r
+\r
+#: admin/settings.php:293\r
+msgid "Width"\r
+msgstr "Largura"\r
+\r
+#: admin/settings.php:294\r
+msgid "Color"\r
+msgstr "Cor"\r
+\r
+#: admin/settings.php:296\r
+msgid "The width and color of the slider's border."\r
+msgstr "A largura e a cor da borda do slider. "\r
+\r
+#: admin/settings.php:298\r
+msgid "Animation Time:"\r
+msgstr "Intervalo da Animação:"\r
+\r
+#: admin/settings.php:299 admin/settings.php:303\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "milissegundos (1000ms = 1 segundo)"\r
+\r
+#: admin/settings.php:300\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "O tempo durante o qual a animação de transição será exibida. "\r
+\r
+#: admin/settings.php:302\r
+msgid "Pause Time:"\r
+msgstr "Tempo de Pausa:"\r
+\r
+#: admin/settings.php:304\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "O intervalo no qual um slide ficará imóvel e visível."\r
+\r
+#: admin/settings.php:307\r
+msgid "Slider navigation:"\r
+msgstr "Navegação do Slider:"\r
+\r
+#: admin/settings.php:309\r
+msgid "Numbers"\r
+msgstr "Números"\r
+\r
+#: admin/settings.php:309\r
+msgid "Bullets"\r
+msgstr "Marcadores"\r
+\r
+#: admin/settings.php:309 admin/settings.php:1259\r
+msgid "None"\r
+msgstr "Nenhum"\r
+\r
+#: admin/settings.php:317\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "O estilo de navegação do seu slider. Exibido abaixo do slider. "\r
+\r
+#: admin/settings.php:319\r
+msgid "Slider arrows:"\r
+msgstr "Setas do slider:"\r
+\r
+#: admin/settings.php:321\r
+msgid "Always Visible"\r
+msgstr "Sempre Visíveis"\r
+\r
+#: admin/settings.php:321\r
+msgid "Visible on Hover"\r
+msgstr "Visíveis quando o ponteiro estiver sobre o slider"\r
+\r
+#: admin/settings.php:321\r
+msgid "Hidden"\r
+msgstr "Ocultas"\r
+\r
+#: admin/settings.php:329\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "As setas para a direita e para a esquerda do seu slider"\r
+\r
+#: admin/settings.php:370 admin/settings.php:438\r
+msgid "Select Category"\r
+msgstr "Selecione a Categoria"\r
+\r
+#: admin/settings.php:397\r
+msgid "Custom Slides"\r
+msgstr "Slides Personalizados"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts"\r
+msgstr "Posts mais recentes"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts"\r
+msgstr "Posts aleatórios"\r
+\r
+#: admin/settings.php:397\r
+msgid "Sticky Posts"\r
+msgstr "Posts fixos"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts from Category"\r
+msgstr "Posts mais recentes da Categoria"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts from Category"\r
+msgstr "Posts aleatórios da Categoria"\r
+\r
+#: admin/settings.php:397\r
+msgid "Specific Posts"\r
+msgstr "Posts específicos "\r
+\r
+#: admin/settings.php:410\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Os posts mais recentes serão carregados no slider."\r
+\r
+#: admin/settings.php:414\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Posts aleatórios serão carregados no slider."\r
+\r
+#: admin/settings.php:418\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr ""\r
+"Os posts mais recentes da categoria que você escolher serão carregados no "\r
+"slider."\r
+\r
+#: admin/settings.php:423\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr ""\r
+"Posts aleatórios da categoria que você escolher serão carregados no slider."\r
+\r
+#: admin/settings.php:427\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Somente os posts fixos serão carregados no slider."\r
+\r
+#: admin/settings.php:431\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr "Digite as IDs dos posts que você quer exibir (separadas por vírgulas)"\r
+\r
+#: admin/settings.php:436\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Escolha a categoria:"\r
+\r
+#: admin/settings.php:453\r
+msgid "Number of posts to show:"\r
+msgstr "Numero de posts para exibir: "\r
+\r
+#: admin/settings.php:460\r
+msgid "Slide 1"\r
+msgstr "Slide 1"\r
+\r
+#: admin/settings.php:464 admin/settings.php:479 admin/settings.php:494\r
+#: admin/settings.php:509 admin/settings.php:524 admin/settings.php:567\r
+#: admin/settings.php:582 admin/settings.php:597 admin/settings.php:612\r
+msgid "Upload or select image from gallery"\r
+msgstr "Fazer upload ou selecionar uma imagem da galeria"\r
+\r
+#: admin/settings.php:465 admin/settings.php:480 admin/settings.php:495\r
+#: admin/settings.php:510 admin/settings.php:525 admin/settings.php:568\r
+#: admin/settings.php:583 admin/settings.php:613\r
+msgid "Title"\r
+msgstr "Título"\r
+\r
+#: admin/settings.php:467 admin/settings.php:482 admin/settings.php:497\r
+#: admin/settings.php:512 admin/settings.php:527 admin/settings.php:570\r
+#: admin/settings.php:585 admin/settings.php:600 admin/settings.php:615\r
+msgid "Text"\r
+msgstr "Texto"\r
+\r
+#: admin/settings.php:475\r
+msgid "Slide 2"\r
+msgstr "Slide 2"\r
+\r
+#: admin/settings.php:490\r
+msgid "Slide 3"\r
+msgstr "Slide 3"\r
+\r
+#: admin/settings.php:505\r
+msgid "Slide 4"\r
+msgstr "Slide 4"\r
+\r
+#: admin/settings.php:520\r
+msgid "Slide 5"\r
+msgstr "Slide 5"\r
+\r
+#: admin/settings.php:533\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"O conteúdo dos seus slides. Somente a imagem é necessária, todos os outros "\r
+"campos são opcionais. Somente os slides com imagens selecionadas se tornarão "\r
+"ativos e visíveis no slide principal. "\r
+\r
+#: admin/settings.php:543\r
+msgid "Number of columns:"\r
+msgstr "Número de colunas:"\r
+\r
+#: admin/settings.php:553\r
+msgid "Image Height:"\r
+msgstr "Altura da Imagem:"\r
+\r
+#: admin/settings.php:556\r
+msgid "Read more text:"\r
+msgstr "Texto \"Leia mais\":"\r
+\r
+#: admin/settings.php:559\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr ""\r
+"O texto com link que aparece no final de cada coluna. Você pode deletar todo "\r
+"o texto dentro dele se não o quiser. "\r
+\r
+#: admin/settings.php:563\r
+msgid "1st Column"\r
+msgstr "1ª Coluna"\r
+\r
+#: admin/settings.php:578\r
+msgid "2nd Column"\r
+msgstr "2ª Coluna"\r
+\r
+#: admin/settings.php:593\r
+msgid "3rd Column"\r
+msgstr "3ª Coluna"\r
+\r
+#: admin/settings.php:608\r
+msgid "4th Column"\r
+msgstr "4ª Coluna"\r
+\r
+#: admin/settings.php:630\r
+msgid "Extra Text"\r
+msgstr "Texto Extra"\r
+\r
+#: admin/settings.php:630\r
+msgid "Top Title"\r
+msgstr "Título Superior"\r
+\r
+#: admin/settings.php:632\r
+msgid "Second Title"\r
+msgstr "Segundo título"\r
+\r
+#: admin/settings.php:635\r
+msgid "Title color"\r
+msgstr "Cor do título"\r
+\r
+#: admin/settings.php:638\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "A cor dos títulos (O valor default é 333333)."\r
+\r
+#: admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr "Texto inferior 1"\r
+\r
+#: admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr "Texto inferior 2"\r
+\r
+#: admin/settings.php:645\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Mais texto para a sua página principal. O título superior fica acima do "\r
+"slider; o segundo título fica entre o slider e as colunas e 2 outras linhas "\r
+"de texto abaixo das colunas.\n"\r
+"\t\t Tudo é opcional, por isso, deixe qualquer campo de dados vazio se não "\r
+"for necessário preenchê-lo. "\r
+\r
+#: admin/settings.php:651\r
+msgid "Hide areas"\r
+msgstr "Ocultar áreas"\r
+\r
+#: admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Ocultar a área do cabeçalho (imagem ou cor de fundo)"\r
+\r
+#: admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Ocultar o menu principal (as abas de navegação do topo da página)."\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr "Ocultar os widgets do rodapé. "\r
+\r
+#: admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Ocultar o rodapé (área de copyright)."\r
+\r
+#: admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Ocultar a cor branca. Somente a cor de fundo aparece. "\r
+\r
+#: admin/settings.php:684\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Escolha as áreas a ocultar na primeira página. "\r
+\r
+#: admin/settings.php:703\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"Selecione o tamanho da fonte que você usará no seu blog. Páginas, posts e "\r
+"comentários serão afetados. Botões, Cabeçalhos e Menus Laterais continuarão "\r
+"como estavam. "\r
+\r
+#: admin/settings.php:747\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"Selecione a família de fontes que você usará em seu blog. Todo o conteúdo "\r
+"será afetado (incluindo os botões dos menus)"\r
+\r
+#: admin/settings.php:748 admin/settings.php:797 admin/settings.php:848\r
+#: admin/settings.php:899\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"Ou insira a sua Google Font abaixo. Por favor, insira somente o "\r
+"<strong>nome</strong> da fonte. <br /> Ex: Marko One. Vá para <a "\r
+"href='http://www.google.com/webfonts' > google fonts </a> para mais "\r
+"sugestões de fontes. "\r
+\r
+#: admin/settings.php:795\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"Selecione a família de fontes que você quer para os seus títulos. A escolha "\r
+"afetará os títulos de posts e títulos de páginas. Selecionando 'Default', a "\r
+"fonte geral que você selecionou será utilizada. "\r
+\r
+#: admin/settings.php:846\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"Selecione a família de fontes que você quer para a(s) sua(s) barra(s) lateral"\r
+"(ais). A escolha afetará os textos nas barras laterais, incluindo quaisquer "\r
+"widgets. Selecionando 'Default', a fonte geral que você selecionou será "\r
+"utilizada. "\r
+\r
+#: admin/settings.php:897\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"Selecione a família de fontes que você quer para os seus subtítulos e "\r
+"cabeçalhos. A escolha afetará os marcadores h2 - h6. Selecionando 'Default', "\r
+"a fonte geral que você selecionou será utilizada. "\r
+\r
+#: admin/settings.php:909 admin/settings.php:924 admin/settings.php:939\r
+#: admin/settings.php:984 admin/settings.php:999 admin/settings.php:1014\r
+msgid "Default"\r
+msgstr "Default"\r
+\r
+#: admin/settings.php:917\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"Tamanho da fonte do cabeçalho do post. Escolha 'Default' para configurações "\r
+"normais (o tamanho será o mesmo que foi definido pelo CSS). "\r
+\r
+#: admin/settings.php:932\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"Tamanho da fonte da barra lateral. Escolha 'Default' para configurações "\r
+"normais (o tamanho será o mesmo que foi definido pelo CSS). "\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Left"\r
+msgstr "Esquerda"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Right"\r
+msgstr "Direita"\r
+\r
+#: admin/settings.php:939\r
+msgid "Justify"\r
+msgstr "Justificar"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Center"\r
+msgstr "Centralizar"\r
+\r
+#: admin/settings.php:947\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"Este parâmetro indica o alinhamento do texto nos posts e páginas. Escolha "\r
+"'Default' para configurações normais (o alinhamento será o mesmo que for "\r
+"definido nos posts, comentários, etc). "\r
+\r
+#: admin/settings.php:961\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Escolha o valor do recuo para os seus parágrafos. "\r
+\r
+#: admin/settings.php:977\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "Desabilitar o cabeçalho default e o recuo do título (margem esquerda)"\r
+\r
+#: admin/settings.php:992\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"Altura da linha de texto. A altura entre duas linhas de texto. Escolha "\r
+"'Default' para configurações normais (o tamanho será o mesmo que foi "\r
+"definido pelo CSS). "\r
+\r
+#: admin/settings.php:1007\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"O espaço entre as <i>palavras</i>. Escolha 'Default' para configurações "\r
+"normais (o valor será o mesmo que foi definido pelo CSS). "\r
+\r
+#: admin/settings.php:1022\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"O espaço entre as <i>letras</i>. Escolha 'Default' para configurações "\r
+"normais (o valor será o mesmo que foi definido pelo CSS). "\r
+\r
+#: admin/settings.php:1039\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "Desabilitar a sombra default do texto em cabeçalhos e títulos. "\r
+\r
+#: admin/settings.php:1051\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Cor de fundo (O valor Default é 444444)."\r
+\r
+#: admin/settings.php:1059\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr ""\r
+"Cor do fundo do cabeçalho (O valor Default é 333333). Você pode apagar todo "\r
+"o texto da caixa para não exibir uma cor de fundo. "\r
+\r
+#: admin/settings.php:1066\r
+msgid ""\r
+"Content background color (Default value is FAFAFA). Works best with really "\r
+"light colors."\r
+msgstr ""\r
+"Cor do fundo do conteúdo (O valor Default é FAFAFA). Funciona melhor com "\r
+"cores bem claras. "\r
+\r
+#: admin/settings.php:1073\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"Cor do fundo do menu principal (O valor Default é FAFAFA). Deve ser a mesma "\r
+"cor utilizada no fundo do conteúdo, ou tão claro quanto ela. "\r
+\r
+#: admin/settings.php:1081\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "Cor do fundo da área dos widgets no rodapé (O valor Default é 171717)."\r
+\r
+#: admin/settings.php:1089\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Cor do fundo do rodapé (O valor Default é 222222)."\r
+\r
+#: admin/settings.php:1097\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Cor do título do seu blog (O valor Default é 0D85CC)."\r
+\r
+#: admin/settings.php:1105\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Cor da descrição do seu blog (O valor Default é 222222)."\r
+\r
+#: admin/settings.php:1113\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Cor texto de conteúdo (O valor Default é 333333)."\r
+\r
+#: admin/settings.php:1121\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Cor dos links (O valor Default é 0D85CC)."\r
+\r
+#: admin/settings.php:1129\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr ""\r
+"Cor dos links quando o ponteiro estiver sobreposto (O valor Default é "\r
+"333333)."\r
+\r
+#: admin/settings.php:1137\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Cor do texto do cabeçalho do post (O valor Default é 333333)."\r
+\r
+#: admin/settings.php:1145\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+"Cor do texto do cabeçalho do post quando o ponteiro estiver sobreposto (O "\r
+"valor Default é 000000)."\r
+\r
+#: admin/settings.php:1153\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Cor fundo do cabeçalho da Barra Lateral (O valor Default é 444444)."\r
+\r
+#: admin/settings.php:1162\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Cor do Texto do Cabeçalho da Barra Lateral (o valor Default é 2EA5FD)."\r
+\r
+#: admin/settings.php:1170\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Cor do Texto dos Widgets do Rodapé (o valor Default é 0D85CC)"\r
+\r
+#: admin/settings.php:1178\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Cor dos Links dos Widgets do Rodapé (o valor Default é 666666)."\r
+\r
+#: admin/settings.php:1186\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+"Cor dos Links dos Widgets do Rodapé quando o mouse estiver sobreposto (o "\r
+"valor Default é 888888)."\r
+\r
+#: admin/settings.php:1198 admin/settings.php:1259\r
+msgid "White"\r
+msgstr "Branco"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Light"\r
+msgstr "Claro"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Light Gray"\r
+msgstr "Cinza Claro"\r
+\r
+#: admin/settings.php:1198 admin/settings.php:1259\r
+msgid "Gray"\r
+msgstr "Cinza"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Dark Gray"\r
+msgstr "Cinza Escuro"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Black"\r
+msgstr "Preto"\r
+\r
+#: admin/settings.php:1206\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"Este parâmetro muda a configuração das suas legendas. Imagens que não forem "\r
+"inseridas por meio de legendas não serão afetadas. "\r
+\r
+#: admin/settings.php:1222\r
+msgid "The border around your inserted images. "\r
+msgstr "A borda ao redor das imagens inseridas."\r
+\r
+#: admin/settings.php:1237\r
+msgid "The image on top of your captions. "\r
+msgstr "A imagem em cima das suas legendas. "\r
+\r
+#: admin/settings.php:1252\r
+msgid "The sidebar list bullets. "\r
+msgstr "Os marcadores das listas na barra lateral."\r
+\r
+#: admin/settings.php:1267\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default.<"\r
+msgstr ""\r
+"O fundo da sua área de meta-tags para os posts (abaixo dos títulos dos "\r
+"posts). A cor default é cinza.<"\r
+\r
+#: admin/settings.php:1275 admin/settings.php:1291 admin/settings.php:1308\r
+#: admin/settings.php:1323 admin/settings.php:1338 admin/settings.php:1368\r
+#: admin/settings.php:1383 admin/settings.php:1399 admin/settings.php:1442\r
+#: admin/settings.php:1457 admin/settings.php:1472 admin/settings.php:1487\r
+#: admin/settings.php:1502 admin/settings.php:1517 admin/settings.php:1532\r
+#: admin/settings.php:1547\r
+msgid "Show"\r
+msgstr "Exibir"\r
+\r
+#: admin/settings.php:1275 admin/settings.php:1291 admin/settings.php:1308\r
+#: admin/settings.php:1323 admin/settings.php:1338 admin/settings.php:1368\r
+#: admin/settings.php:1399 admin/settings.php:1442 admin/settings.php:1457\r
+#: admin/settings.php:1472 admin/settings.php:1487 admin/settings.php:1502\r
+#: admin/settings.php:1517 admin/settings.php:1532 admin/settings.php:1547\r
+msgid "Hide"\r
+msgstr "Ocultar"\r
+\r
+#: admin/settings.php:1283\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Oculta ou exibe uma barra horizontal para separar os posts. "\r
+\r
+#: admin/settings.php:1299\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"Oculta ou exibe marcadores ao lado das listas que estão na sua área de "\r
+"conteúdo (posts, páginas, etc). "\r
+\r
+#: admin/settings.php:1316\r
+msgid ""\r
+"Hide or show your blog's Title and Description in the header (recommended if "\r
+"you have a custom header image with text)."\r
+msgstr ""\r
+"Oculta ou exibe o Título e a Descrição no cabeçalho do seu blog (recomendado "\r
+"se você tiver uma imagem personalizada para o cabeçalho com texto). "\r
+\r
+#: admin/settings.php:1331\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr ""\r
+"Oculta ou exibe títulos de páginas em quaisquer páginas <i>criadas</i>."\r
+\r
+#: admin/settings.php:1346\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Oculta ou exibe títulos de páginas em páginas de <i>Categorias</i>."\r
+\r
+#: admin/settings.php:1361\r
+msgid "Hide table borders and background color."\r
+msgstr "Oculta as bordas das tabelas e a cor de fundo"\r
+\r
+#: admin/settings.php:1376\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"Ocultar o texto explicativo sob o formulário de comentários. (Inicia com "\r
+"<i>Você pode utilizar estas tags HTML e atributos:... <i>)."\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide in posts"\r
+msgstr "Ocultar nos posts"\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide in pages"\r
+msgstr "Ocultar nas páginas"\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide everywhere"\r
+msgstr "Ocultar em todo o site"\r
+\r
+#: admin/settings.php:1391\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"Ocultar o texto <b>Os comentários estão encerrados</b> que é exibido por "\r
+"default em páginas ou postagens com os comentários desabilitados. "\r
+\r
+#: admin/settings.php:1407\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+"Ocultar o texto <b>Comentários desativados</b> ao lado de posts onde não é "\r
+"permitido acrescentar comentários. "\r
+\r
+#: admin/settings.php:1423\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"Habilitar o botão Voltar ao Topo. O botão aparece depois de rolar a página "\r
+"para baixo. "\r
+\r
+#: admin/settings.php:1430\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"Insira textos personalizados ou códigos HTML que aparecerçao por último no "\r
+"seu rodapé. <br/> Você pode usar HTML para inserir links, imagens e "\r
+"caracteres especiais como ©. "\r
+\r
+#: admin/settings.php:1450\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"Ocultar ou exibir a mensagem <strong>Deixe um comentário</strong> ou "\r
+"<strong>x Comentários</strong> ao lado dos posts ou dos resumos dos posts. "\r
+\r
+#: admin/settings.php:1465\r
+msgid "Hide or show the post date."\r
+msgstr "Oculta ou exibe a data do post."\r
+\r
+#: admin/settings.php:1480\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"Mostra o horário do post com a data. O horário não será visível se a data do "\r
+"post estiver oculta. "\r
+\r
+#: admin/settings.php:1495\r
+msgid "Hide or show the post author."\r
+msgstr "Oculta ou exibe o autor do post."\r
+\r
+#: admin/settings.php:1510\r
+msgid "Hide the post category."\r
+msgstr "Oculta a categoria do post."\r
+\r
+#: admin/settings.php:1525\r
+msgid "Hide the post tags."\r
+msgstr "Oculta as palavras-chave do post. "\r
+\r
+#: admin/settings.php:1540\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "Ocultar a mensagem \"Marcar permalink\". "\r
+\r
+#: admin/settings.php:1555\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+"Ocultar todas as meta-tags do post. Todas as meta-informações e meta-áreas "\r
+"ficarão ocultas."\r
+\r
+#: admin/settings.php:1568 admin/settings.php:1583 admin/settings.php:1599\r
+msgid "Excerpt"\r
+msgstr "Resumo"\r
+\r
+#: admin/settings.php:1568 admin/settings.php:1583 admin/settings.php:1599\r
+msgid "Full Post"\r
+msgstr "Post na íntegra"\r
+\r
+#: admin/settings.php:1576\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"Resumos na página principal. Somente os posts padrão serão afetados. Todos "\r
+"os outros formatos de post (aparte, imagem, bate-papo, citação, etc.) tem "\r
+"sua formatação específica."\r
+\r
+#: admin/settings.php:1591\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"Escolha se você quer que os posts permanentes na sua página principal sejam "\r
+"visíveis, ou apenas os resumos. "\r
+\r
+#: admin/settings.php:1607\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"Resumos do arquivo, categoria e páginas de busca. Assim como mencionado "\r
+"acima, somente os posts padrão serão afetados. "\r
+\r
+#: admin/settings.php:1615\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"O número de palavras que um resumo terá. Quando este número for alcançado, o "\r
+"post será interrompido por um link <i>Continue a leitura</i> que \n"\r
+"\t\t\t\t\t\t\t levará o leitor à página com o post na íntegra. "\r
+\r
+#: admin/settings.php:1631\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"Habilitar o Layout de Revista. Este layout é aplicado a paginas com posts, e "\r
+"mostra dois posts por linha. "\r
+\r
+#: admin/settings.php:1638\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr ""\r
+"Substitui os três pontos ('[...]') que são acrescentados automaticamente aos "\r
+"resumos."\r
+\r
+#: admin/settings.php:1645\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr ""\r
+"Editar o link \"Continue a Leitura\" acrescentado aos resumos dos seus "\r
+"posts. "\r
+\r
+#: admin/settings.php:1660\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr "Por default, os resumos do Wordpress removem todas as tags HTML ("\r
+\r
+#: admin/settings.php:1691\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"Mostra as imagens de apresentação como miniaturas nos posts. As imagens "\r
+"devem ser selecionadas para cada post na seção de Imagem de Apresentação. "\r
+\r
+#: admin/settings.php:1706\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"Mostra a primeira imagem que você inseriu em um post como miniatura. Se você "\r
+"habilitar esta opção, a primeira imagem no seu post será usada, mesmo que "\r
+"você selecione uma Imagem de Apresentação para o seu post. "\r
+\r
+#: admin/settings.php:1722\r
+msgid "Thumbnail alignment."\r
+msgstr "Alinhamento das miniaturas."\r
+\r
+#: admin/settings.php:1739\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"O tamanho que você quer que as miniaturas tenham (em pixels). Por default, "\r
+"as imagens serão redimensionadas proporcionalmente às dimensões originais. "\r
+"Selecione cortar as imagens se quiser o tamanho exato. "\r
+\r
+#: admin/settings.php:1755\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"Mostrar imagens de apresentação nos cabeçalhos. O cabeçalho será substituído "\r
+"por uma imagem de apresentação se você a selecionar como Imagem de "\r
+"Apresentação no post e \n"\r
+"\t\t\t\t\t\t\t se ela for maior ou igual ao tamanho atual do cabeçalho."\r
+\r
+#: admin/settings.php:1776\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"Selecione sua Rede Social desejada a partir do menu à esquerda e insira o "\r
+"endereço correspondente na área à direita. (ex: <i>http://www.facebook.com/"\r
+"yourname</i> )"\r
+\r
+#: admin/settings.php:1790\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Você pode inserir até 5 sites diferentes de redes sociais e endereços."\r
+\r
+#: admin/settings.php:1804\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Há um total de 27 redes sociais para escolher. "\r
+\r
+#: admin/settings.php:1818\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Você pode deixar quaisquer entradas vazias. "\r
+\r
+#: admin/settings.php:1832\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Você pode escolher a mesma mídia social qualquer número de vezes. "\r
+\r
+#: admin/settings.php:1863\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "Escolha as <b>áreas</> onde os ícones sociais serão exibidos. "\r
+\r
+#: admin/settings.php:1884\r
+msgid ""\r
+"Make the site header into a clickable link that links to your index page."\r
+msgstr ""\r
+"Transforme o cabeçalho em um link clicável que leva à página inicial do "\r
+"site. "\r
+\r
+#: admin/settings.php:1899\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"Mostrar a navegação estrutural no topo da área de conteúdo. A navegação "\r
+"estrutural é uma forma de navegação que mantém o registro da sua localização "\r
+"dentro do site."\r
+\r
+#: admin/settings.php:1914\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"Mostrar a paginação numerada. Onde houver mais do que uma página, ao invés "\r
+"dos links de <b>Posts mais antigos</b> e <b>Posts mais recentes</b>que você "\r
+"tem em uma paginação numerada. "\r
+\r
+#: admin/settings.php:1929\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in. "\r
+msgstr ""\r
+"Habilitar o layout móvel e fazer com que o Mantra se adapte à tela de "\r
+"dispositivos móveis. O layout e o visual do seu blog mudarão dependendo do "\r
+"aparelho e da resolução em que ele for visualizado. "\r
+\r
+#: admin/settings.php:1939\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "Enviar ou selecionar um favicon da galeria."\r
+\r
+#: admin/settings.php:1943\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+"Limitações: Deve obrigatoriamente ser uma imagem. Deve ter dimensões de no "\r
+"máximo 64x64 pixels. Extensões recomendadas para o arquivo são .ico e .png ."\r
+\r
+#: admin/settings.php:1951\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br /> Your custom CSS will be preserved when updating the "\r
+"theme."\r
+msgstr ""\r
+"Insira o seu CSS personalizado aqui. Quaisquer declarações de CSS feitas "\r
+"aqui irão se sobrepor às do Mantra (até mesmo as opções personalizadas "\r
+"especificadas aqui mesmo na página de Configurações do Mantra). <br /> Seus "\r
+"CSS personalizados serão preservados quando o tema for atualizado."\r
+\r
+#: admin/settings.php:1958\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software)."\r
+msgstr ""\r
+"Insira o seu código Javascripto personalizado aqui. (Google Analytics e "\r
+"outras formas de software analítico). "\r
+\r
+#: admin/settings.php:1971\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Habilitar o SEO (Search Engine Optimization) do Mantra. Por default, está "\r
+"habilitado, e só deve ser desativado se você estiver utilizando um plug-in "\r
+"para SEO. "\r
+\r
+#: admin/settings.php:1983\r
+msgid "Auto"\r
+msgstr "Automático"\r
+\r
+#: admin/settings.php:1983\r
+msgid "Manual"\r
+msgstr "Manual"\r
+\r
+#: includes/theme-functions.php:213\r
+msgid "Home Page"\r
+msgstr "Página Inicial"\r
+\r
+#: includes/theme-loop.php:146\r
+msgid "says:"\r
+msgstr "diz:"\r
+\r
+#: includes/theme-loop.php:152\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Seu comentário está aguardando o processo de moderação."\r
+\r
+#: includes/theme-loop.php:159\r
+msgid "at"\r
+msgstr "em"\r
+\r
+#: includes/theme-loop.php:159 includes/theme-loop.php:176\r
+msgid "(Edit)"\r
+msgstr "(Editar)"\r
+\r
+#: includes/theme-loop.php:176\r
+msgid "Pingback: "\r
+msgstr "Pingback: "\r
+\r
+#: includes/theme-loop.php:213\r
+msgid "By "\r
+msgstr "Por "\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "Leave a comment"\r
+msgstr "Deixe um comentário"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Comentário"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Comentários"\r
+\r
+#: includes/theme-loop.php:247\r
+msgid " Bookmark the "\r
+msgstr "Adicionar aos favoritos o "\r
+\r
+#: includes/theme-loop.php:247 includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "Permalink to"\r
+msgstr "Permalink para"\r
+\r
+#: includes/theme-loop.php:247 includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "permalink"\r
+msgstr "permalink"\r
+\r
+#: includes/theme-loop.php:249 includes/theme-loop.php:251\r
+msgid "Bookmark the "\r
+msgstr "Adicionar aos favoritos o "\r
+\r
+#: includes/theme-loop.php:273\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Posts mais antigos"\r
+\r
+#: includes/theme-loop.php:274\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Posts mais recentes <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Página %s"\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Primary Navigation"\r
+msgstr "Navegação Primária"\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Top Navigation"\r
+msgstr "Navegação no Cabeçalho "\r
+\r
+#: includes/theme-setup.php:93\r
+msgid "Footer Navigation"\r
+msgstr "Navegação no Rodapé"\r
+\r
+#: includes/theme-setup.php:137\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:198\r
+msgid "Skip to content"\r
+msgstr "Ir direto ao conteúdo"\r
+\r
+#: includes/theme-setup.php:224\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Área primária de Widgets - Barra Lateral 1"\r
+\r
+#: includes/theme-setup.php:226\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Área primária de widgets - Barra Lateral 1"\r
+\r
+#: includes/theme-setup.php:235\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Área Secundária de Widgets - Barra Lateral 1"\r
+\r
+#: includes/theme-setup.php:237\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Área secundária de widgets - Barra Lateral 1"\r
+\r
+#: includes/theme-setup.php:246\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Terceira Área de Widgets - Barra Lateral 2"\r
+\r
+#: includes/theme-setup.php:248\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Terceira área de widgets - Barra Lateral 2"\r
+\r
+#: includes/theme-setup.php:257\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Quarta Área de Widgets - Barra Lateral 2"\r
+\r
+#: includes/theme-setup.php:259\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Quarta área de widgets - Barra Lateral 2"\r
+\r
+#: includes/theme-setup.php:268\r
+msgid "First Footer Widget Area"\r
+msgstr "Primeira Área de Widgets no Rodapé"\r
+\r
+#: includes/theme-setup.php:270\r
+msgid "First footer widget area"\r
+msgstr "Primeira área de widgets no Rodapé"\r
+\r
+#: includes/theme-setup.php:279\r
+msgid "Second Footer Widget Area"\r
+msgstr "Segunda Área de Widgets no Rodapé"\r
+\r
+#: includes/theme-setup.php:281\r
+msgid "Second footer widget area"\r
+msgstr "Segunda área de widgets no Rodapé"\r
+\r
+#: includes/theme-setup.php:290\r
+msgid "Third Footer Widget Area"\r
+msgstr "Terceira Área de Widgets no Rodapé"\r
+\r
+#: includes/theme-setup.php:292\r
+msgid "The third footer widget area"\r
+msgstr "A terceira área de widgets no rodapé"\r
+\r
+#: includes/theme-setup.php:301\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Quarta Área de Widgets no Rodapé"\r
+\r
+#: includes/theme-setup.php:303\r
+msgid "The fourth footer widget area"\r
+msgstr "A quarta area de widgets no rodapé"\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: mantra 197\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2013-08-23 14:29+0200\n"\r
+"PO-Revision-Date: 2013-09-06 13:28+0400\n"\r
+"Last-Translator: Дмитрий Кирьянов <dmitry.kirjanov@gmail.com>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"\r
+"X-Poedit-Basepath: C:\\Users\\medicated\\Desktop\\mantra\n"\r
+"X-Generator: Poedit 1.5.5\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "Не найдено"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr ""\r
+"Приносим извинения, но запрашиваемая страница не найдена. Попробуйте "\r
+"воспользоваться поиском."\r
+\r
+#: archive.php:26\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Архив по дням: %s"\r
+\r
+#: archive.php:28\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Архив по месяцам: %s"\r
+\r
+#: archive.php:28\r
+msgid "F Y"\r
+msgstr "F Y"\r
+\r
+#: archive.php:30\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Годовой архив: %s"\r
+\r
+#: archive.php:30\r
+msgid "Y"\r
+msgstr "Y"\r
+\r
+#: archive.php:32\r
+msgid "Blog Archives"\r
+msgstr "Записи блога"\r
+\r
+#: archive.php:58 author.php:75 category.php:51 index.php:41 search.php:41\r
+#: tag.php:52 template-blog.php:36\r
+msgid "Nothing Found"\r
+msgstr "Ничего не найдено"\r
+\r
+#: archive.php:62 author.php:79 category.php:55 index.php:45 tag.php:56\r
+#: template-blog.php:40\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr ""\r
+"Приносим извинения, но для запрашиваемого архива ничего не найдено. "\r
+"Попробуйте воспользоваться поиском."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Переход к %s"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "Автор"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "Опубликовано"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "Полный размер в %s пикселях"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "Ссылка к полному изображению"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:49 content-gallery.php:65 content-image.php:42\r
+#: content-link.php:49 content-page.php:22 content-quote.php:46\r
+#: content-status.php:48 content.php:76 single.php:54\r
+#: template-onecolumn.php:27 template-page-with-intro.php:17\r
+msgid "Edit"\r
+msgstr "Изменить"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "Продолжить чтение"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:38\r
+#: content-gallery.php:55 content-image.php:33 content-link.php:38\r
+#: content-page.php:21 content-quote.php:36 content-status.php:39\r
+#: content.php:49 content.php:65 single.php:32 template-onecolumn.php:26\r
+#: template-page-with-intro.php:16\r
+msgid "Pages:"\r
+msgstr "Страницы:"\r
+\r
+#: author.php:29\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Архив по автору: %s"\r
+\r
+#: author.php:50\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "О %s"\r
+\r
+#: category.php:20\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Архив по рубрикам: %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr ""\r
+"Эта запись защищена паролем. Пожалуйста, введите пароль для просмотра "\r
+"комментариев."\r
+\r
+#: content-aside.php:20\r
+msgid "Aside"\r
+msgstr "Отступление"\r
+\r
+#: content-aside.php:38 content-chat.php:37 content-gallery.php:33\r
+#: content-image.php:32 content-link.php:37 content-quote.php:35\r
+#: content-status.php:38\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Продолжить чтение <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:45 content-gallery.php:62\r
+#: content-image.php:39 content-link.php:45 content-quote.php:43\r
+#: content-status.php:46 content.php:74 includes/theme-loop.php:206\r
+msgid "Tagged"\r
+msgstr "Метки"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "Чат"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "Галерея"\r
+\r
+#: content-image.php:19 admin/settings.php:452 admin/settings.php:467\r
+#: admin/settings.php:482 admin/settings.php:497 admin/settings.php:512\r
+#: admin/settings.php:554 admin/settings.php:569 admin/settings.php:584\r
+#: admin/settings.php:599\r
+msgid "Image"\r
+msgstr "Изображение"\r
+\r
+#: content-link.php:20 admin/settings.php:459 admin/settings.php:474\r
+#: admin/settings.php:489 admin/settings.php:504 admin/settings.php:519\r
+#: admin/settings.php:561 admin/settings.php:576 admin/settings.php:591\r
+#: admin/settings.php:606\r
+msgid "Link"\r
+msgstr "Ссылка"\r
+\r
+#: content-page.php:27 includes/theme-comments.php:136\r
+msgid "Comments are closed."\r
+msgstr "Возможность комментирования заблокирована."\r
+\r
+#: content-quote.php:18\r
+msgid "Quote"\r
+msgstr "Цитировать"\r
+\r
+#: content-status.php:30\r
+msgid "Status"\r
+msgstr "Статус"\r
+\r
+#: search.php:20\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Искомые результаты к: %s"\r
+\r
+#: search.php:39\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "Нет результатов поиска к: %s"\r
+\r
+#: searchform.php:1\r
+msgid "Search"\r
+msgstr "Искать"\r
+\r
+#: single.php:45\r
+msgid "View all posts by "\r
+msgstr "Просмотреть все записи за авторством"\r
+\r
+#: tag.php:21\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Архив меток: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr "Перед загрузкой файла Вам следует устранить возможную ошибку:"\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Импорт настроек темы"\r
+\r
+#: admin/admin-functions.php:72\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"Здесь импортируются настройки темы Mantra.<i> Пожалуйста помните, эта "\r
+"возможность до сих пор экспериментальная.</i>"\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Выберите файл с Вашего компьютера:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "Максимальный размер: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "Импорт!"\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Импорт настроек темы"\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "Превосходно! Настройки импортированы!"\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Вернитесь к странице настроек Mantra и проверьте их!"\r
+\r
+#: admin/admin-functions.php:155 admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "Oops, похоже есть небольшая проблема."\r
+\r
+#: admin/admin-functions.php:156\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"Загруженный файл не содержит требуемых настроек темы. Пожалуйста убедитесь, "\r
+"что файл экспортирован из настроек Mantra."\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "Не удаётся прочесть загруженный файл."\r
+\r
+#: admin/admin-functions.php:168\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"Загруженный файл не поддерживается. Пожалуйста убедитесь, что файл "\r
+"экспортирован из настроек Mantra и имеет расширение .txt."\r
+\r
+#: admin/admin-functions.php:177\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"Oops! Файл пустой или отсутствует. Такая ошибка может возникнуть если в "\r
+"настройках php.ini отключена возможность загрузки или значение post_max_size "\r
+"определено меньше, чем upload_max_filesize всё в том же php.ini."\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "ОШИБКА: Вы не авторизованы для проведения данной операции."\r
+\r
+#: admin/main.php:100\r
+msgid "Layout Settings"\r
+msgstr "Настройки схемы расположения"\r
+\r
+#: admin/main.php:101\r
+msgid "Header Settings"\r
+msgstr "Настройки заголовка"\r
+\r
+#: admin/main.php:102\r
+msgid "Presentation Page"\r
+msgstr "Страничка презентаций"\r
+\r
+#: admin/main.php:103\r
+msgid "Text Settings"\r
+msgstr "Настройки текста"\r
+\r
+#: admin/main.php:104\r
+msgid "Color Settings"\r
+msgstr "Настройки цвета"\r
+\r
+#: admin/main.php:105\r
+msgid "Graphics Settings"\r
+msgstr "Настройки графического оформления"\r
+\r
+#: admin/main.php:106\r
+msgid "Post Information Settings"\r
+msgstr "Настройки записей"\r
+\r
+#: admin/main.php:107\r
+msgid "Post Excerpt Settings"\r
+msgstr "Настройки краткого содержания"\r
+\r
+#: admin/main.php:108\r
+msgid "Featured Image Settings"\r
+msgstr "Настройки миниатюр"\r
+\r
+#: admin/main.php:109\r
+msgid "Social Media Settings"\r
+msgstr "Настройки интеграции социальных сетей"\r
+\r
+#: admin/main.php:110\r
+msgid "Miscellaneous Settings"\r
+msgstr "Остальные настройки"\r
+\r
+#: admin/main.php:113\r
+msgid "Main Layout"\r
+msgstr "Основная схема расположения"\r
+\r
+#: admin/main.php:114\r
+msgid "Content / Sidebar Width"\r
+msgstr "Ширина: Контента / Боковой панели"\r
+\r
+#: admin/main.php:115\r
+msgid "Responsiveness"\r
+msgstr "Автоподстройка ширины и разрешения"\r
+\r
+#: admin/main.php:118\r
+msgid "Enable Presentation Page"\r
+msgstr "Включение странички презентаций"\r
+\r
+#: admin/main.php:119\r
+msgid "Slider Settings"\r
+msgstr "Настройки слайдера"\r
+\r
+#: admin/main.php:120\r
+msgid "Slides"\r
+msgstr "Слайды"\r
+\r
+#: admin/main.php:121\r
+msgid "Presentation Page Columns"\r
+msgstr "Колонки странички презентаций"\r
+\r
+#: admin/main.php:122\r
+msgid "Extras"\r
+msgstr "Дополнения"\r
+\r
+#: admin/main.php:125\r
+msgid "Header Height"\r
+msgstr "Высота заголовка"\r
+\r
+#: admin/main.php:126\r
+msgid "Header Image"\r
+msgstr "Изображение заголовка"\r
+\r
+#: admin/main.php:127\r
+msgid "Site Header"\r
+msgstr "Заголовок сайта"\r
+\r
+#: admin/main.php:128\r
+msgid "Custom Logo Upload"\r
+msgstr "Загрузка своего логотипа"\r
+\r
+#: admin/main.php:129\r
+msgid "Header Spacing"\r
+msgstr "Отступ заголовка"\r
+\r
+#: admin/main.php:130\r
+msgid "Rounded Menu Corners"\r
+msgstr "Закруглённые углы меню"\r
+\r
+#: admin/main.php:131\r
+msgid "FavIcon Upload"\r
+msgstr "Загрузка иконки сайта (фав-иконки)"\r
+\r
+#: admin/main.php:133\r
+msgid "General Font"\r
+msgstr "Основной шрифт"\r
+\r
+#: admin/main.php:134\r
+msgid "General Font Size"\r
+msgstr "Размер основного шрифта"\r
+\r
+#: admin/main.php:135\r
+msgid "Post Title Font "\r
+msgstr "Шрифт заголовка записи"\r
+\r
+#: admin/main.php:136\r
+msgid "Post Title Font Size"\r
+msgstr "Размер шрифта заголовка записи"\r
+\r
+#: admin/main.php:137\r
+msgid "Sidebar Font"\r
+msgstr "Шрифт бокового меню"\r
+\r
+#: admin/main.php:138\r
+msgid "SideBar Font Size"\r
+msgstr "Размер шрифта бокового меню"\r
+\r
+#: admin/main.php:139\r
+msgid "Headings Font"\r
+msgstr "Шрифт подзаголовков"\r
+\r
+#: admin/main.php:140\r
+msgid "Force Text Align"\r
+msgstr "Принудительное выравнивание текста"\r
+\r
+#: admin/main.php:141\r
+msgid "Paragraph spacing"\r
+msgstr "Отступ абзаца"\r
+\r
+#: admin/main.php:142\r
+msgid "Paragraph indent"\r
+msgstr "Отступ абзаца"\r
+\r
+#: admin/main.php:143\r
+msgid "Header indent"\r
+msgstr "Отступ заголовка"\r
+\r
+#: admin/main.php:144\r
+msgid "Line Height"\r
+msgstr "Межстрочный интервал"\r
+\r
+#: admin/main.php:145\r
+msgid "Word spacing"\r
+msgstr "Интервал между словами"\r
+\r
+#: admin/main.php:146\r
+msgid "Letter spacing"\r
+msgstr "Межбуквенный интервал"\r
+\r
+#: admin/main.php:147\r
+msgid "Text shadow"\r
+msgstr "Отбрасывание тени в тексте"\r
+\r
+#: admin/main.php:149\r
+msgid "Background Image"\r
+msgstr "Цвета фона"\r
+\r
+#: admin/main.php:150\r
+msgid "Background Color"\r
+msgstr "Цвета фона"\r
+\r
+#: admin/main.php:151\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Фоновый цвет заголовка (баннер и меню)"\r
+\r
+#: admin/main.php:152\r
+msgid "Content Background Color"\r
+msgstr "Цвет фона основного содержимого"\r
+\r
+#: admin/main.php:153\r
+msgid "Menu Items Background Color"\r
+msgstr "Цвет фона меню элементов"\r
+\r
+#: admin/main.php:154\r
+msgid "First Sidebar Background Color"\r
+msgstr "Цвет фона первого бокового меню"\r
+\r
+#: admin/main.php:155\r
+msgid "Second Sidebar Background Color"\r
+msgstr "Цвет фона второго бокового меню"\r
+\r
+#: admin/main.php:157\r
+msgid "Site Title Color"\r
+msgstr "Цвет названия сайта"\r
+\r
+#: admin/main.php:158\r
+msgid "Site Description Color"\r
+msgstr "Цвет описания сайта"\r
+\r
+#: admin/main.php:160\r
+msgid "Content Text Color"\r
+msgstr "Цвет основного текста"\r
+\r
+#: admin/main.php:161\r
+msgid "Links Color"\r
+msgstr "Цвет ссылок"\r
+\r
+#: admin/main.php:162\r
+msgid "Links Hover Color"\r
+msgstr "Цвет выделенных ссылок"\r
+\r
+#: admin/main.php:163\r
+msgid "Post Title Color"\r
+msgstr "Цвет заголовка записи"\r
+\r
+#: admin/main.php:164\r
+msgid "Post Title Hover Color"\r
+msgstr "Цвет выделенного заголовка записи"\r
+\r
+#: admin/main.php:165\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Цвет фона заголовка боковой панели"\r
+\r
+#: admin/main.php:166\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Цвет текста заголовка боковой панели"\r
+\r
+#: admin/main.php:167\r
+msgid "Footer Widget Background Color"\r
+msgstr "Цвет фона виджетов нижнего колонтитула (footer)"\r
+\r
+#: admin/main.php:168\r
+msgid "Footer Background Color"\r
+msgstr "Цвет фона нижнего колонтитула (footer)"\r
+\r
+#: admin/main.php:169\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Цвет текста заголовков виджетов нижнего колонтитула (footer)"\r
+\r
+#: admin/main.php:170\r
+msgid "Footer Widget Link Color"\r
+msgstr "Цвет ссылок нижнего колонтитула (footer)"\r
+\r
+#: admin/main.php:171\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Цвет выделенных ссылок нижнего колонтитула (footer)"\r
+\r
+#: admin/main.php:173\r
+msgid "Breadcrumbs"\r
+msgstr "Строка пути"\r
+\r
+#: admin/main.php:174\r
+msgid "Pagination"\r
+msgstr "Нумерация страниц"\r
+\r
+#: admin/main.php:175\r
+msgid "Post Images Border"\r
+msgstr "Рамка изображения"\r
+\r
+#: admin/main.php:176\r
+msgid "Caption Border"\r
+msgstr "Рамка изображения"\r
+\r
+#: admin/main.php:177\r
+msgid "Caption Pin"\r
+msgstr "Отметка прикрепления"\r
+\r
+#: admin/main.php:178\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Маркеры бокового меню"\r
+\r
+#: admin/main.php:179\r
+msgid "Meta Area Background"\r
+msgstr "Фон мета данных"\r
+\r
+#: admin/main.php:180\r
+msgid "Post Separator"\r
+msgstr "Разделитель записей"\r
+\r
+#: admin/main.php:181\r
+msgid "Content List Bullets"\r
+msgstr "Маркеры основного содержимого"\r
+\r
+#: admin/main.php:182\r
+msgid "Page Titles"\r
+msgstr "Названия страниц"\r
+\r
+#: admin/main.php:183\r
+msgid "Category Page Titles"\r
+msgstr "Названия странички рубрик"\r
+\r
+#: admin/main.php:184\r
+msgid "Hide Tables"\r
+msgstr "Скрыть таблицы"\r
+\r
+#: admin/main.php:185\r
+msgid "Back to Top button"\r
+msgstr "Кнопка \"Наверх\""\r
+\r
+#: admin/main.php:186\r
+msgid "Text Under Comments"\r
+msgstr "Текст под комментариями"\r
+\r
+#: admin/main.php:187\r
+msgid "Comments are closed text"\r
+msgstr "Текст заблокированных комментариев"\r
+\r
+#: admin/main.php:188\r
+msgid "Comments off"\r
+msgstr "Комментарии отключены"\r
+\r
+#: admin/main.php:190\r
+msgid "Post Comments Link"\r
+msgstr "Ссылка на комментарии к записи"\r
+\r
+#: admin/main.php:191\r
+msgid "Post Date"\r
+msgstr "Дата записи"\r
+\r
+#: admin/main.php:192\r
+msgid "Post Time"\r
+msgstr "Время записи"\r
+\r
+#: admin/main.php:193\r
+msgid "Post Author"\r
+msgstr "Автор записи"\r
+\r
+#: admin/main.php:194\r
+msgid "Post Category"\r
+msgstr "Рубрика записи"\r
+\r
+#: admin/main.php:195\r
+msgid "Meta Bar"\r
+msgstr "Дополнительная информация"\r
+\r
+#: admin/main.php:196\r
+msgid "Post Tags"\r
+msgstr "Метки записи"\r
+\r
+#: admin/main.php:197\r
+msgid "Post Permalink"\r
+msgstr "Неизменная ссылка на запись"\r
+\r
+#: admin/main.php:199\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Краткое содержание записей на главной страничке"\r
+\r
+#: admin/main.php:200\r
+msgid "Affect Sticky Posts"\r
+msgstr "Действие связанных записей"\r
+\r
+#: admin/main.php:201\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Краткое содержание записей на страницах архива и рубрик"\r
+\r
+#: admin/main.php:202\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Количество слов для формирования краткого содержания"\r
+\r
+#: admin/main.php:203\r
+msgid "Magazine Layout"\r
+msgstr "Журнальный вид"\r
+\r
+#: admin/main.php:204\r
+msgid "Excerpt suffix"\r
+msgstr "Приписка к краткому содержанию"\r
+\r
+#: admin/main.php:205\r
+msgid "Continue reading link text "\r
+msgstr "Текст ссылки \"Продолжить чтение\""\r
+\r
+#: admin/main.php:206\r
+msgid "HTML tags in Excerpts"\r
+msgstr "HTML метки в кратком содержании"\r
+\r
+#: admin/main.php:208\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "Миниатюра в качестве иконки к записи"\r
+\r
+#: admin/main.php:209\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Автовыбор изображений из записей"\r
+\r
+#: admin/main.php:210\r
+msgid "Thumbnails Alignment "\r
+msgstr "Выравнивание иконок"\r
+\r
+#: admin/main.php:211\r
+msgid "Thumbnails Size "\r
+msgstr "Размер иконок"\r
+\r
+#: admin/main.php:212\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "Миниатюра в качестве заглавной картинки"\r
+\r
+#: admin/main.php:214\r
+msgid "Link nr. 1"\r
+msgstr "Ссылка 1"\r
+\r
+#: admin/main.php:215\r
+msgid "Link nr. 2"\r
+msgstr "Ссылка 2"\r
+\r
+#: admin/main.php:216\r
+msgid "Link nr. 3"\r
+msgstr "Ссылка 3"\r
+\r
+#: admin/main.php:217\r
+msgid "Link nr. 4"\r
+msgstr "Ссылка 4"\r
+\r
+#: admin/main.php:218\r
+msgid "Link nr. 5"\r
+msgstr "Ссылка 5"\r
+\r
+#: admin/main.php:219\r
+msgid "Socials display"\r
+msgstr "Отображение социальных сетей"\r
+\r
+#: admin/main.php:221\r
+msgid "SEO Settings"\r
+msgstr "Настройки раскрутки"\r
+\r
+#: admin/main.php:222\r
+msgid "Custom Footer Text"\r
+msgstr "Произвольный текст нижнего колонтитула"\r
+\r
+#: admin/main.php:223\r
+msgid "Custom CSS"\r
+msgstr "Свой CSS"\r
+\r
+#: admin/main.php:224\r
+msgid "Custom JavaScript"\r
+msgstr "Свой JavaScript"\r
+\r
+#: admin/main.php:241\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Извините, но у Вас недостаточно прав доступа к этой странице"\r
+\r
+#: admin/main.php:262\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Настройки темы успешно обновлены"\r
+\r
+#: admin/main.php:274\r
+msgid "Save Changes"\r
+msgstr "Сохранить изменения"\r
+\r
+#: admin/main.php:275\r
+msgid "Reset to Defaults"\r
+msgstr "Сбросить настройки"\r
+\r
+#: admin/main.php:307\r
+msgid "Import/Export Settings"\r
+msgstr "Настройки импорта/экспорта"\r
+\r
+#: admin/main.php:313\r
+msgid "Export Theme options"\r
+msgstr "Экспорт настроек темы"\r
+\r
+#: admin/main.php:314\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"Всё очень просто. Щелчок мыши отделяет Вас от возможности экспортировать "\r
+"настройки вашей Мантры и сохранить их на компьютере. Вздохнули свободней? "\r
+"Так и должно быть!"\r
+\r
+#: admin/main.php:319\r
+msgid "Import Theme options"\r
+msgstr "Импорт настроек темы"\r
+\r
+#: admin/main.php:320\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+" Без импорта экспорт бесполезен. Убедитесь, что Ваш экспортированный файл "\r
+"готов и продолжите щёлкнув мышкой."\r
+\r
+#: admin/main.php:328\r
+msgid "Mantra Latest News"\r
+msgstr "Последние новости Мантра"\r
+\r
+#: admin/main.php:339\r
+msgid "No news items."\r
+msgstr "Новости отсутствуют."\r
+\r
+#: admin/main.php:343\r
+msgid "Posted on"\r
+msgstr "Опубликовано"\r
+\r
+#: admin/settings.php:66\r
+msgid "One column (no sidebars)"\r
+msgstr "Одна колонка (без бокового меню)"\r
+\r
+#: admin/settings.php:67\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "Две колонки, боковое меню справа"\r
+\r
+#: admin/settings.php:68\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "Две колонки, боковое меню слева"\r
+\r
+#: admin/settings.php:69\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Три колонки, боковое меню справа"\r
+\r
+#: admin/settings.php:70\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Три колонки, боковое меню слева"\r
+\r
+#: admin/settings.php:71\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Три колонки, боковое меню с каждой стороны (и справа, и слева)"\r
+\r
+#: admin/settings.php:86\r
+msgid ""\r
+"Choose your layout. Possible options are: <br> No sidebar, a single sidebar "\r
+"on either left of right, two sidebars on either left or\n"\r
+"\t\tright and two sidebars on each side."\r
+msgstr "Выберите свою схему расположения. Возможные варианты: <br> Без "\r
+\r
+#: admin/settings.php:95\r
+msgid "Absolute"\r
+msgstr "Абсолютная"\r
+\r
+#: admin/settings.php:95\r
+msgid "Relative *DEPRECATED"\r
+msgstr "Относительная *УСТАРЕВШАЯ"\r
+\r
+#: admin/settings.php:96\r
+msgid "Dimensions to use: "\r
+msgstr "Используемый размер:"\r
+\r
+#: admin/settings.php:178 admin/settings.php:198\r
+msgid "Content ="\r
+msgstr "Содержимое ="\r
+\r
+#: admin/settings.php:179 admin/settings.php:199\r
+msgid "Sidebar(s) ="\r
+msgstr "Боковая меню ="\r
+\r
+#: admin/settings.php:180 admin/settings.php:200\r
+msgid "Total width ="\r
+msgstr "Общая ширина ="\r
+\r
+#: admin/settings.php:189\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Выберите ширину <b>основного содержимого</b> и <b>бокового меню</b>. \n"\r
+" \t\tШирина основного содержимого не может быть меньше 500px. Боковое меню "\r
+"от 220px до 800px.<br />\n"\r
+"\tПри использовании трёхкомпонентной схемы расположения (с двумя боковыми "\r
+"колонками), каждая из них будет шириной в половину выбранного значения."\r
+\r
+#: admin/settings.php:209\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>.\n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"Выберите ширину <b>основного содержимого</b> и <b>бокового меню</b>. \n"\r
+" \t\tЭто относительные величины, зависящие от ширины браузера пользователя. "\r
+"Общая ширина это заданный процент от ширины пользовательского браузера.<br /"\r
+">\n"\r
+"\t Ширина общего содержимого (контента) не должна быть меньше 40%, область "\r
+"бокового меню от 20% до 50%.<br />\n"\r
+"\tПри использовании трёхкомпонентной схемы расположения (с двумя боковыми "\r
+"колонками), каждая из них будет шириной в половину выбранного значения."\r
+\r
+#: admin/settings.php:223 admin/settings.php:246 admin/settings.php:715\r
+#: admin/settings.php:1078 admin/settings.php:1140 admin/settings.php:1328\r
+#: admin/settings.php:1343 admin/settings.php:1500 admin/settings.php:1562\r
+#: admin/settings.php:1763 admin/settings.php:1792 admin/settings.php:1815\r
+#: admin/settings.php:1838 admin/settings.php:1887 admin/settings.php:2023\r
+msgid "Enable"\r
+msgstr "Включить"\r
+\r
+#: admin/settings.php:223 admin/settings.php:246 admin/settings.php:715\r
+#: admin/settings.php:1078 admin/settings.php:1140 admin/settings.php:1328\r
+#: admin/settings.php:1343 admin/settings.php:1500 admin/settings.php:1562\r
+#: admin/settings.php:1763 admin/settings.php:1792 admin/settings.php:1815\r
+#: admin/settings.php:1838 admin/settings.php:1887 admin/settings.php:2023\r
+msgid "Disable"\r
+msgstr "Выключить"\r
+\r
+#: admin/settings.php:232\r
+msgid ""\r
+"Enable to make Mantra fully responsive. The layout and general sizes of your "\r
+"blog will adjust depending on what device and what resolution it is viewed "\r
+"in.<br> Do not disable unless you have a good reason to."\r
+msgstr ""\r
+"Включите автоподстройку, чтобы сделать Мантру наиболее гибкой. Схема "\r
+"расположения и основные размеры вашего сайта будут подстраиваться под то "\r
+"устройство, на котором его просматривают (в зависимости от размера экрана и "\r
+"его разрешения). <br> Не выключайте этот режим, если у вас нет на то веских "\r
+"оснований"\r
+\r
+#: admin/settings.php:254\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page. It "\r
+"has a slider and columns for presentation\n"\r
+"\t\ttext and images.<br>If you have this enabled but don't see a "\r
+"Presentation page then go to <a href='options-reading.php'> Settings » "\r
+"Reading </a> and make sure you have selected <strong>Front Page Displays</"\r
+"strong> as <Strong>Your Latest Posts</strong>."\r
+msgstr ""\r
+"Активация странички презентаций. У вас появится новая домашняя страничка, на "\r
+"которой будут представлены слайдеры и колонки для эффектного представления\n"\r
+"\t\tтекста и изображений.<br>Если у вас включена эта опция, но Вы не видете "\r
+"странички презентаций, откройте <a href='options-reading.php'> Параметры "\r
+"» Чтение </a> и убедитесь в том, что <strong>На главной странице "\r
+"отображать</strong> у вас выбрано <Strong>Ваши последние записи</strong>."\r
+\r
+#: admin/settings.php:264\r
+msgid "Slider Dimensions:"\r
+msgstr "Размер слайдера:"\r
+\r
+#: admin/settings.php:265\r
+msgid "width"\r
+msgstr "ширина"\r
+\r
+#: admin/settings.php:266\r
+msgid "height"\r
+msgstr "высота"\r
+\r
+#: admin/settings.php:267\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+"Размеры Вашего слайдера. Убедитесь в том, что используемые изображения имеют "\r
+"идентичный размер."\r
+\r
+#: admin/settings.php:269\r
+msgid "Animation:"\r
+msgstr "Анимация:"\r
+\r
+#: admin/settings.php:271\r
+msgid "Random"\r
+msgstr "Случайно"\r
+\r
+#: admin/settings.php:271\r
+msgid "Fold"\r
+msgstr "Эффект сгибания"\r
+\r
+#: admin/settings.php:271\r
+msgid "Fade"\r
+msgstr "Эффект затемнения"\r
+\r
+#: admin/settings.php:271\r
+msgid "SlideInRight"\r
+msgstr "Скольжение направо"\r
+\r
+#: admin/settings.php:271\r
+msgid "SlideInLeft"\r
+msgstr "Скольжение налево"\r
+\r
+#: admin/settings.php:271\r
+msgid "SliceDown"\r
+msgstr "Срезание вниз"\r
+\r
+#: admin/settings.php:271\r
+msgid "SliceDownLeft"\r
+msgstr "Срезание вниз и налево"\r
+\r
+#: admin/settings.php:271\r
+msgid "SliceUp"\r
+msgstr "Срезание вверх"\r
+\r
+#: admin/settings.php:271\r
+msgid "SliceUpLeft"\r
+msgstr "Срезание вверх и направо"\r
+\r
+#: admin/settings.php:271\r
+msgid "SliceUpDown"\r
+msgstr "Срезание сверху вниз"\r
+\r
+#: admin/settings.php:271\r
+msgid "SliceUpDownLeft"\r
+msgstr "Срезание сверху вниз и налево"\r
+\r
+#: admin/settings.php:271\r
+msgid "BoxRandom"\r
+msgstr "BoxRandom"\r
+\r
+#: admin/settings.php:271\r
+msgid "BoxRain"\r
+msgstr "BoxRain"\r
+\r
+#: admin/settings.php:271\r
+msgid "BoxRainReverse"\r
+msgstr "BoxRainReverse"\r
+\r
+#: admin/settings.php:271\r
+msgid "BoxRainGrow"\r
+msgstr "BoxRainGrow"\r
+\r
+#: admin/settings.php:271\r
+msgid "BoxRainGrowReverse"\r
+msgstr "BoxRainGrowReverse"\r
+\r
+#: admin/settings.php:279\r
+msgid "The transition effect your slider will have."\r
+msgstr "Эффект перехода, используемый в Вашем слайдере."\r
+\r
+#: admin/settings.php:281\r
+msgid "Border Settings:"\r
+msgstr "Настройки рамки:"\r
+\r
+#: admin/settings.php:282\r
+msgid "Width"\r
+msgstr "Ширина"\r
+\r
+#: admin/settings.php:283\r
+msgid "Color"\r
+msgstr "Цвет"\r
+\r
+#: admin/settings.php:285\r
+msgid "The width and color of the slider's border."\r
+msgstr "Ширина и цвет рамки слайдера."\r
+\r
+#: admin/settings.php:287\r
+msgid "Animation Time:"\r
+msgstr "Время анимации:"\r
+\r
+#: admin/settings.php:288 admin/settings.php:292\r
+msgid "milliseconds"\r
+msgstr "миллисекунды"\r
+\r
+#: admin/settings.php:289\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "Время действия анимации перехода."\r
+\r
+#: admin/settings.php:291\r
+msgid "Pause Time:"\r
+msgstr "Время паузы:"\r
+\r
+#: admin/settings.php:293\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Время, в которое слайдер будет неподвижным и видимым."\r
+\r
+#: admin/settings.php:296\r
+msgid "Slider navigation:"\r
+msgstr "Навигация по слайдам:"\r
+\r
+#: admin/settings.php:298\r
+msgid "Numbers"\r
+msgstr "Номера"\r
+\r
+#: admin/settings.php:298\r
+msgid "Bullets"\r
+msgstr "Маркеры"\r
+\r
+#: admin/settings.php:298 admin/settings.php:1421\r
+msgid "None"\r
+msgstr "-"\r
+\r
+#: admin/settings.php:306\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr ""\r
+"Тип навигации по Вашиму слайдам. Демонстрируется под ними (или номера, или "\r
+"кружки маркеров)"\r
+\r
+#: admin/settings.php:308\r
+msgid "Slider arrows:"\r
+msgstr "Стрелки сладов:"\r
+\r
+#: admin/settings.php:310\r
+msgid "Always Visible"\r
+msgstr "Видимые постоянно"\r
+\r
+#: admin/settings.php:310\r
+msgid "Visible on Hover"\r
+msgstr "Видимые при наведении курсора"\r
+\r
+#: admin/settings.php:310\r
+msgid "Hidden"\r
+msgstr "Скрытые"\r
+\r
+#: admin/settings.php:318\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Левая и правая стрелки на Ваших слайдах"\r
+\r
+#: admin/settings.php:359 admin/settings.php:428\r
+msgid "Select Category"\r
+msgstr "Выберите рубрику"\r
+\r
+#: admin/settings.php:386\r
+msgid "Custom Slides"\r
+msgstr "Собственные слайды"\r
+\r
+#: admin/settings.php:386\r
+msgid "Latest Posts"\r
+msgstr "Последние записи"\r
+\r
+#: admin/settings.php:386\r
+msgid "Random Posts"\r
+msgstr "Случайные записи"\r
+\r
+#: admin/settings.php:386\r
+msgid "Sticky Posts"\r
+msgstr "Связанные записи"\r
+\r
+#: admin/settings.php:386\r
+msgid "Latest Posts from Category"\r
+msgstr "Последние записи из рубрики"\r
+\r
+#: admin/settings.php:386\r
+msgid "Random Posts from Category"\r
+msgstr "Случайные записи из рубрики"\r
+\r
+#: admin/settings.php:386\r
+msgid "Specific Posts"\r
+msgstr "Выбранные записи"\r
+\r
+#: admin/settings.php:395\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"Содержимое Вашего слайда. Изображение обязательно, остальные поля "\r
+"опциональны. Только слайды с картинками будут активны и начнут отображаться "\r
+"в слайдере сайта."\r
+\r
+#: admin/settings.php:400\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Последние записи будут загружены в слайдер."\r
+\r
+#: admin/settings.php:404\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Случайные записи будут загружены в слайдер."\r
+\r
+#: admin/settings.php:408\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "Последние записи из выбранной рубрики будут загружены в слайдер."\r
+\r
+#: admin/settings.php:413\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr "Случайные записи из выбранной рубрики будут загружены в слайдер."\r
+\r
+#: admin/settings.php:417\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Только связанные записи будут загружены в слайдер."\r
+\r
+#: admin/settings.php:421\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr ""\r
+"Перечислите ID записей, которые Вы хотели бы отобразить в слайдере "\r
+"(отделяются запятой):"\r
+\r
+#: admin/settings.php:426\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Выберите рубрику: "\r
+\r
+#: admin/settings.php:443\r
+msgid "Number of posts to show:"\r
+msgstr "Количество отображаемых записей:"\r
+\r
+#: admin/settings.php:450\r
+msgid "Slide 1"\r
+msgstr "Слайд первый"\r
+\r
+#: admin/settings.php:454 admin/settings.php:469 admin/settings.php:484\r
+#: admin/settings.php:499 admin/settings.php:514 admin/settings.php:556\r
+#: admin/settings.php:571 admin/settings.php:586 admin/settings.php:601\r
+#: admin/settings.php:750 admin/settings.php:773\r
+msgid "Select / Upload Image"\r
+msgstr "Выберите / Загрузите изображение"\r
+\r
+#: admin/settings.php:455 admin/settings.php:470 admin/settings.php:485\r
+#: admin/settings.php:500 admin/settings.php:515 admin/settings.php:557\r
+#: admin/settings.php:572 admin/settings.php:602\r
+msgid "Title"\r
+msgstr "Название"\r
+\r
+#: admin/settings.php:457 admin/settings.php:472 admin/settings.php:487\r
+#: admin/settings.php:502 admin/settings.php:517 admin/settings.php:559\r
+#: admin/settings.php:574 admin/settings.php:589 admin/settings.php:604\r
+msgid "Text"\r
+msgstr "Текст"\r
+\r
+#: admin/settings.php:465\r
+msgid "Slide 2"\r
+msgstr "Слайд второй"\r
+\r
+#: admin/settings.php:480\r
+msgid "Slide 3"\r
+msgstr "Слайд третий"\r
+\r
+#: admin/settings.php:495\r
+msgid "Slide 4"\r
+msgstr "Слайд четвёртый"\r
+\r
+#: admin/settings.php:510\r
+msgid "Slide 5"\r
+msgstr "Слайд пятый"\r
+\r
+#: admin/settings.php:532\r
+msgid "Number of columns:"\r
+msgstr "Количество колонок:"\r
+\r
+#: admin/settings.php:542\r
+msgid "Image Height:"\r
+msgstr "Высота изображения:"\r
+\r
+#: admin/settings.php:545\r
+msgid "Read more text:"\r
+msgstr "Больше текста:"\r
+\r
+#: admin/settings.php:548\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr ""\r
+"Связанный текст, отображаемый под колонкой. Опционален. Можно удалить, если "\r
+"не желаете его видеть."\r
+\r
+#: admin/settings.php:552\r
+msgid "1st Column"\r
+msgstr "Первая колонка"\r
+\r
+#: admin/settings.php:567\r
+msgid "2nd Column"\r
+msgstr "Вторая колонка"\r
+\r
+#: admin/settings.php:582\r
+msgid "3rd Column"\r
+msgstr "Третья колонка"\r
+\r
+#: admin/settings.php:597\r
+msgid "4th Column"\r
+msgstr "Четвёртая колонка"\r
+\r
+#: admin/settings.php:619\r
+msgid "Extra Text"\r
+msgstr "Дополнительный текст"\r
+\r
+#: admin/settings.php:621\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Верхний заголовок расположен над слайдером, второй между слайдером, колонкой "\r
+"и двумя строками текста под колонками.\n"\r
+"\t\t Оставьте поля пустыми, если не нуждаетесь в дополнительном тексте."\r
+\r
+#: admin/settings.php:624\r
+msgid "Top Title"\r
+msgstr "Верхний заголовок"\r
+\r
+#: admin/settings.php:625\r
+msgid "Second Title"\r
+msgstr "Второй заголовок"\r
+\r
+#: admin/settings.php:628\r
+msgid "Title color"\r
+msgstr "Цвет заголовка"\r
+\r
+#: admin/settings.php:632\r
+msgid "Bottom Text 1"\r
+msgstr "Нижний текст 1"\r
+\r
+#: admin/settings.php:634\r
+msgid "Bottom Text 2"\r
+msgstr "Нижний текст 2"\r
+\r
+#: admin/settings.php:642\r
+msgid "Hide areas"\r
+msgstr "Скрыть области"\r
+\r
+#: admin/settings.php:644\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "Выбрать области для скрытия на первой страничке"\r
+\r
+#: admin/settings.php:656\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Скрыть область заголовка (изображение и фоновый цвет)"\r
+\r
+#: admin/settings.php:660\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Скрыть основное меню (верхние вкладки навигации)"\r
+\r
+#: admin/settings.php:664\r
+msgid "Hide the footer widgets. "\r
+msgstr "Скрыть виджеты нижнего колонтитула (footer)."\r
+\r
+#: admin/settings.php:668\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Скрыть нижний колонтитул (footer), область копирайтов."\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Скрыть белый цвет. Останется только фоновый цвет."\r
+\r
+#: admin/settings.php:692\r
+msgid ""\r
+"Select the header's height. After saving the settings make sure you reupload "\r
+"a new header image (if you're using one). The header's width will be = "\r
+msgstr ""\r
+"Укажите высоту заголовка. После сохранения загрузите изображение вашего "\r
+"нового заголовка (если вы используете его). Ширина заголовка составляет = "\r
+\r
+#: admin/settings.php:699\r
+msgid "Define header image"\r
+msgstr "Укажите изображение заголовка"\r
+\r
+#: admin/settings.php:700\r
+msgid ""\r
+"The header image should not be used to display logos.<br> Enable ratio "\r
+"preservation to force the header image aspect ratio. Keep in mind that short "\r
+"images will become very small on mobile devices."\r
+msgstr ""\r
+"Изображение заголовка не следует использовать в качестве логотипа. <br> "\r
+"Включите сохранение соотношений для принудительного сохранения текущих "\r
+"соотношений изображения заголовка. Помните, что короткие изображения станут "\r
+"очень мелкими на мобильных устройствах."\r
+\r
+#: admin/settings.php:723\r
+msgid "Enable or disable the round corners for the main menu items."\r
+msgstr ""\r
+"Активация или деактивация закруглённых углов для элементов основного меню"\r
+\r
+#: admin/settings.php:731\r
+msgid "Site Title and Description"\r
+msgstr "Название и описание сайта"\r
+\r
+#: admin/settings.php:731\r
+msgid "Custom Logo"\r
+msgstr "Свой логотип"\r
+\r
+#: admin/settings.php:731\r
+msgid "Clickable header image"\r
+msgstr ""\r
+"Использовать изображение заголовка в качестве ссылки на главную страничку"\r
+\r
+#: admin/settings.php:731\r
+msgid "Empty"\r
+msgstr "Пустой"\r
+\r
+#: admin/settings.php:739\r
+msgid "Choose what to display inside your header area."\r
+msgstr "Выберите, что следует отображать внутри области заголовка"\r
+\r
+#: admin/settings.php:749\r
+msgid ""\r
+"Custom Logo upload. The logo will appear over the heder image if you have "\r
+"used one."\r
+msgstr ""\r
+"Загрузка своего логотипа. Логотип будет отображаться над изображением "\r
+"заголовка"\r
+\r
+#: admin/settings.php:758\r
+msgid "top"\r
+msgstr "Сверху"\r
+\r
+#: admin/settings.php:759\r
+msgid "left"\r
+msgstr "Слева"\r
+\r
+#: admin/settings.php:762\r
+msgid ""\r
+"Select the top spacing for the header. Use it to better position your site "\r
+"title and description or custom logo inside the header. "\r
+msgstr ""\r
+"Укажите отступ сверху для заголовка. Используйте эту функцию для определения "\r
+"наилучшего местоположения названия сайта и его описания или своего логотипа "\r
+"внутри заголовка"\r
+\r
+#: admin/settings.php:772\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png. <br/><b>Note that "\r
+"some browsers do not display the changed favicon instantly.</b>"\r
+msgstr ""\r
+"Ограничение: необходимо использовать изображение, имеющее максимальный "\r
+"размер 64x64 в пикселях. Рекомендуемые расширения .ico и .png. <br/><b> "\r
+"Некоторые браузеры не отображают изменённую фав-иконку, помните об этом. </b>"\r
+\r
+#: admin/settings.php:795\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"Выберите размер шрифта, используемый Вами в блоге. Отразится на страничках, "\r
+"записях и комментариях. Кнопки, заголовки и боковые меню останутся без "\r
+"изменений."\r
+\r
+#: admin/settings.php:839\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"Выберите семейство шрифтов, используемых в блоге. Отразится на всех текстах "\r
+"сайта (включая кнопки меню)."\r
+\r
+#: admin/settings.php:841 admin/settings.php:891 admin/settings.php:942\r
+#: admin/settings.php:994\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"Или вставьте ниже выбранный Вами Google шрифт. Пожалуйста, используйте "\r
+"только <strong>название</strong> шрифта.<br /> Например: Marko One. "\r
+"Посмотрите на<a href='http://www.google.com/webfonts' >шрифты Google</a> для "\r
+"вдохновения."\r
+\r
+#: admin/settings.php:888\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"Выберите семейство шрифтов для названий Ваших записей. Отразится на "\r
+"заголовках записей и названии страниц. Оставьте 'По умолчанию' и будет "\r
+"использован выбранный Вами основной шрифт."\r
+\r
+#: admin/settings.php:940\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"Выберите семейство шрифтов для бокового меню Вашего блога. Отразится на "\r
+"текстах боковых колонок, включая виджеты. Оставьте 'По умолчанию' и будет "\r
+"использован выбранный Вами основной шрифт."\r
+\r
+#: admin/settings.php:991\r
+msgid ""\r
+"Select the font family you want your headings to have (h1 - h6 tags will be "\r
+"affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"Выберите семейство шрифтов для использования в подзаголовках Ваших записей. "\r
+"Отразится на заголовках h1 - h6. Оставьте 'По умолчанию' и будет использован "\r
+"выбранный вами основной шрифт."\r
+\r
+#: admin/settings.php:1003 admin/settings.php:1018 admin/settings.php:1033\r
+#: admin/settings.php:1093 admin/settings.php:1108 admin/settings.php:1123\r
+msgid "Default"\r
+msgstr "По умолчанию"\r
+\r
+#: admin/settings.php:1011\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"Размер шрифта заголовка записи. Оставьте 'По умолчанию' для нормальных "\r
+"настроек, размер будет определён в таблице стилей CSS."\r
+\r
+#: admin/settings.php:1026\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"Размер шрифта в боковом меню. Оставьте 'По умолчанию' для нормальных "\r
+"настроек, размер будет определён в таблице стилей CSS."\r
+\r
+#: admin/settings.php:1033 admin/settings.php:1854\r
+msgid "Left"\r
+msgstr "По левому краю"\r
+\r
+#: admin/settings.php:1033 admin/settings.php:1854\r
+msgid "Right"\r
+msgstr "По правому краю"\r
+\r
+#: admin/settings.php:1033\r
+msgid "Justify"\r
+msgstr "Заполнить"\r
+\r
+#: admin/settings.php:1033 admin/settings.php:1854\r
+msgid "Center"\r
+msgstr "По центру"\r
+\r
+#: admin/settings.php:1041\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"Эта опция изменяет выравнивание текста в записях и на страничках. Оставьте "\r
+"'По умолчанию' для нормальных настроек, выравнивание будет использовано в "\r
+"соответствии с настройкам записей, комментариев и пр."\r
+\r
+#: admin/settings.php:1055\r
+msgid "Choose the spacing between paragraphs."\r
+msgstr "Выберите межстрочный интервал между параграфами."\r
+\r
+#: admin/settings.php:1070\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Выберите отступ параграфа."\r
+\r
+#: admin/settings.php:1086\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "Отключить стандартный отступ в заголовке и названиях (left margin)."\r
+\r
+#: admin/settings.php:1101\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"Межстрочный интервал. Оставьте 'По умолчанию' для нормальных настроек, "\r
+"значение будет определено в таблице стилей CSS."\r
+\r
+#: admin/settings.php:1116\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Расстояние между двумя <i>словами</i>. Оставьте 'По умолчанию' для "\r
+"нормальных настроек, значение будет определено в таблице стилей CSS."\r
+\r
+#: admin/settings.php:1131\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"Расстояние между двумя <i>буквами</i>. Оставьте 'По умолчанию' для "\r
+"нормальных настроек, значение будет определено в таблице стилей CSS."\r
+\r
+#: admin/settings.php:1148\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "Отключение стандартных теней в заголовке и названиях страниц."\r
+\r
+#: admin/settings.php:1156\r
+msgid "Define background image"\r
+msgstr "Определите фоновое изображение"\r
+\r
+#: admin/settings.php:1165\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Цвет фона (По умолчанию \"444444\")."\r
+\r
+#: admin/settings.php:1173\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr ""\r
+"Цвет фона заголовка (По умолчанию \"333333\"). Вы можете удалить содержимое "\r
+"поля и цвет фона не будет задействован."\r
+\r
+#: admin/settings.php:1180\r
+msgid ""\r
+"Content background color (Default value is FFFFFF). Works best with really "\r
+"light colors."\r
+msgstr ""\r
+"Цвет фона основного содержимого (По умолчанию \"FFFFFF\"). Будет лучше с "\r
+"светлыми цветами."\r
+\r
+#: admin/settings.php:1187\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"Цвет фона основного меню (По умолчанию \"FAFAFA\"). Желательно использовать "\r
+"цвет фона основного содержимого или что-то светлое."\r
+\r
+#: admin/settings.php:1194\r
+msgid ""\r
+"First sidebar background color (Default is no color for a transparent "\r
+"sidebar)."\r
+msgstr ""\r
+"Цвет фона первого бокового меню (По умолчанию цвет не указан для прозрачного "\r
+"бокового меню)."\r
+\r
+#: admin/settings.php:1201\r
+msgid ""\r
+"Second sidebar background color (Default is no color for a transparent "\r
+"sidebar)."\r
+msgstr ""\r
+"Цвет фона второго бокового меню (По умолчанию цвет не задан для прозрачного "\r
+"бокового меню)"\r
+\r
+#: admin/settings.php:1209\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr ""\r
+"Цвет фона области виджетов нижнего колонтитула (footer). (По умолчанию "\r
+"\"171717\")."\r
+\r
+#: admin/settings.php:1217\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Цвет фона нижнего колонтитула (По умолчанию \"222222\")."\r
+\r
+#: admin/settings.php:1225\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Цвет названия Вашего блога (По умолчанию \"0D85CC\")."\r
+\r
+#: admin/settings.php:1233\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Цвет описания Вашего блога (По умолчанию \"222222\")."\r
+\r
+#: admin/settings.php:1241\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "Цвет текста основного содержимого (По умолчанию \"333333\")."\r
+\r
+#: admin/settings.php:1249\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Цвет ссылок (По умолчанию \"0D85CC\")."\r
+\r
+#: admin/settings.php:1257\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "Цвет ссылок при наведении курсора (По умолчанию \"333333\")."\r
+\r
+#: admin/settings.php:1265\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Цвет заголовка записи (По умолчанию \"333333\")."\r
+\r
+#: admin/settings.php:1273\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr "Цвет заголовка записи при наведении курсора (По умолчанию \"000000\")."\r
+\r
+#: admin/settings.php:1281\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Цвет фона заголовка бокового меню (По умолчанию \"444444\")."\r
+\r
+#: admin/settings.php:1290\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Цвет заголовка бокового меню (По умолчанию \"2EA5FD\")."\r
+\r
+#: admin/settings.php:1298\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Цвет текста виджетов нижнего колонтитула (По умолчанию \"0D85CC\")."\r
+\r
+#: admin/settings.php:1306\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Цвет ссылок виджетов нижнего колонтитула (По умолчанию \"666666\")."\r
+\r
+#: admin/settings.php:1314\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+"Цвет ссылок виджетов нижнего колонтитула при наведении курсора (По умолчанию "\r
+"\"888888\")."\r
+\r
+#: admin/settings.php:1336\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"Показывать строку пути вверху области контента. Строка пути - форма "\r
+"навигации, отображающая положение читателя в иерархии Вашего сайта."\r
+\r
+#: admin/settings.php:1351\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"Отображать номера страниц. Если Ваш блог содержит больше одной страницы в её "\r
+"низу появятся ссылки на <b>Ранние записи</b> и <b>Новые записи</b>."\r
+\r
+#: admin/settings.php:1358 admin/settings.php:1421\r
+msgid "White"\r
+msgstr "Белый"\r
+\r
+#: admin/settings.php:1358\r
+msgid "Light"\r
+msgstr "Светлый"\r
+\r
+#: admin/settings.php:1358\r
+msgid "Light Gray"\r
+msgstr "Светло-серый"\r
+\r
+#: admin/settings.php:1358 admin/settings.php:1421\r
+msgid "Gray"\r
+msgstr "Серый"\r
+\r
+#: admin/settings.php:1358\r
+msgid "Dark Gray"\r
+msgstr "Тёмно-серый"\r
+\r
+#: admin/settings.php:1358\r
+msgid "Black"\r
+msgstr "Чёрный"\r
+\r
+#: admin/settings.php:1366\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"Эти настройки меняют внешний вид вставленных с рамкой изображений "\r
+"(стандартно при вставке картинок в публикации ВордПресс). "\r
+\r
+#: admin/settings.php:1382\r
+msgid "The border around your inserted images. "\r
+msgstr "Рамка вокруг вставленных изображений."\r
+\r
+#: admin/settings.php:1397\r
+msgid "The image on top of your captions. "\r
+msgstr "Изображений сверху Ваших вставленных картинок."\r
+\r
+#: admin/settings.php:1412\r
+msgid "The sidebar list bullets. "\r
+msgstr "Маркеры бокового меню."\r
+\r
+#: admin/settings.php:1429\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default."\r
+msgstr ""\r
+"Фон для мета-данных к вашим записям (под заголовком публикации: Автор, Дата "\r
+"и пр.). По умолчанию серый."\r
+\r
+#: admin/settings.php:1437 admin/settings.php:1453 admin/settings.php:1470\r
+#: admin/settings.php:1485 admin/settings.php:1515 admin/settings.php:1530\r
+#: admin/settings.php:1546 admin/settings.php:1582 admin/settings.php:1597\r
+#: admin/settings.php:1612 admin/settings.php:1627 admin/settings.php:1642\r
+#: admin/settings.php:1657 admin/settings.php:1672 admin/settings.php:1687\r
+msgid "Show"\r
+msgstr "Показать"\r
+\r
+#: admin/settings.php:1437 admin/settings.php:1453 admin/settings.php:1470\r
+#: admin/settings.php:1485 admin/settings.php:1515 admin/settings.php:1546\r
+#: admin/settings.php:1582 admin/settings.php:1597 admin/settings.php:1612\r
+#: admin/settings.php:1627 admin/settings.php:1642 admin/settings.php:1657\r
+#: admin/settings.php:1672 admin/settings.php:1687\r
+msgid "Hide"\r
+msgstr "Скрыть"\r
+\r
+#: admin/settings.php:1445\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Показать или скрыть горизонтальную линию, разделяющую записи."\r
+\r
+#: admin/settings.php:1461\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"Показать или скрыть маркеры следующих в списке публикаций в области "\r
+"основного содержимого (записи, странички и пр.)."\r
+\r
+#: admin/settings.php:1478\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr ""\r
+"Показать или скрыть название страниц на любой <i>созданной</i> страничке."\r
+\r
+#: admin/settings.php:1493\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "Показать или скрыть название страниц на страничках <i>рубрик</i>."\r
+\r
+#: admin/settings.php:1508\r
+msgid "Hide table borders and background color."\r
+msgstr "Скрыть границы таблиц и цвет фона."\r
+\r
+#: admin/settings.php:1523\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"Скрыть пояснительный текст под полем комментариев (обычно начинается с "\r
+"<i>You may use these HTML tags and attributes:...</i>)."\r
+\r
+#: admin/settings.php:1530\r
+msgid "Hide in posts"\r
+msgstr "Скрыть в записях"\r
+\r
+#: admin/settings.php:1530\r
+msgid "Hide in pages"\r
+msgstr "Скрыть в страницах"\r
+\r
+#: admin/settings.php:1530\r
+msgid "Hide everywhere"\r
+msgstr "Скрыть везде"\r
+\r
+#: admin/settings.php:1538\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"Скрыть текст <b>Comments are closed</b>, отображаемый по умолчанию на "\r
+"страничках с закрытыми комментариями."\r
+\r
+#: admin/settings.php:1554\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+"Скрыть текст <b>Comments off</b>, отображаемый по умолчанию на страничках с "\r
+"отключенными комментариями."\r
+\r
+#: admin/settings.php:1570\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"Активировать кнопку \"Вернуться наверх\". Кнопка появляется в правом нижнем "\r
+"углу при прокрутке странички вниз."\r
+\r
+#: admin/settings.php:1590\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"Скрыть или показать поле <strong>Оставить комментарий</strong> или <strong>x "\r
+"комментариев</strong> в кратком содержании или форме мета-данных записи."\r
+\r
+#: admin/settings.php:1605\r
+msgid "Hide or show the post date."\r
+msgstr "Скрыть или показать дату публикации."\r
+\r
+#: admin/settings.php:1620\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"Показать время записи вместе с датой. Время не будет отображаться, если дата "\r
+"скрыта."\r
+\r
+#: admin/settings.php:1635\r
+msgid "Hide or show the post author."\r
+msgstr "Скрыть или показать автора записи."\r
+\r
+#: admin/settings.php:1650\r
+msgid "Hide the post category."\r
+msgstr "Скрыть рубрику записи."\r
+\r
+#: admin/settings.php:1665\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "Скрыть 'Bookmark permalink'."\r
+\r
+#: admin/settings.php:1680\r
+msgid "Hide the meta bar. All meta info in it will be hidden."\r
+msgstr "Скрыть все мета-данные записи. Область меток также будет скрыта."\r
+\r
+#: admin/settings.php:1695\r
+msgid "Hide the post tags."\r
+msgstr "Скрыть метки (теги) записи."\r
+\r
+#: admin/settings.php:1708 admin/settings.php:1723 admin/settings.php:1739\r
+msgid "Excerpt"\r
+msgstr "Краткое содержание"\r
+\r
+#: admin/settings.php:1708 admin/settings.php:1723 admin/settings.php:1739\r
+msgid "Full Post"\r
+msgstr "Полная запись"\r
+\r
+#: admin/settings.php:1716\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"Краткое содержание на главной страничке. Подпадают под действие только "\r
+"<strong>стандартные записи (posts)</strong>, другие форматы (такие как чат, "\r
+"изображение, заметка) сохранят своё форматирование."\r
+\r
+#: admin/settings.php:1731\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"Выберите, хотите ли Вы отображения связанных записей на главной странице в "\r
+"полном виде или в виде краткого содержания."\r
+\r
+#: admin/settings.php:1747\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"Краткое содержание архива, рубрик и результатов поиска. Подпадают под "\r
+"действие только <strong>стандартные записи (posts)</strong>, другие форматы "\r
+"(такие как чат, изображение, заметка) сохранят своё форматирование."\r
+\r
+#: admin/settings.php:1755\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"Количество слов в кратком содержании. После достижения этого числа запись "\r
+"будет прервана ссылкой <i>\"Продолжить чтение\"</i>, которая\n"\r
+"\t\t\t\t\t\t\t отошлёт читателя к полной версии записи."\r
+\r
+#: admin/settings.php:1771\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"Активация журнальной схемы расположения. Эта схема влияет на странички с "\r
+"записями (posts) и демонстрирует две записи в строке."\r
+\r
+#: admin/settings.php:1778\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr ""\r
+"Заменять многоточие ('[...])', добавляемое к краткому содержанию "\r
+"автоматически."\r
+\r
+#: admin/settings.php:1785\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr ""\r
+"Редактировать ссылку \"Продолжить чтение\", добавляемую к краткому "\r
+"содержанию Ваших записей."\r
+\r
+#: admin/settings.php:1800\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr ""\r
+"По умолчанию в кратком содержании в WordPress удаляются все HTML-теги ("\r
+\r
+#: admin/settings.php:1831\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"Показать миниатюры в качестве иконки к записи. Картинка должна быть отмечена "\r
+"в каждой записи в соответствующем поле (Featured Image/Миниатюра)."\r
+\r
+#: admin/settings.php:1846\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"Показать первое изображение как иконку. Если включить эту опцию, первая "\r
+"картинка, <strong>прикреплённая</strong> к записи (необязательно "\r
+"опубликованная), будет использована как миниатюра (Featured Image)."\r
+\r
+#: admin/settings.php:1862\r
+msgid "Thumbnail alignment."\r
+msgstr "Выравнивание иконок."\r
+\r
+#: admin/settings.php:1879\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"Желаемый размер иконок (в пикселях) По умолчанию изображения сжимаются с "\r
+"сохранением соотношения сторон. Выберите усечение изображения, если хотите "\r
+"сохранить точный размер."\r
+\r
+#: admin/settings.php:1895\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"Показывать миниатюры (Featured Images) в заголовках. Заголовок будет заменён "\r
+"характерным изображением, если Вы его укажете в записи и\n"\r
+"\t\t\t\t\t\t\t если оно больше или эквивалентно размеру заголовка."\r
+\r
+#: admin/settings.php:1911\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"Выберите социальные сети из левого меню и вставьте соотносимый адрес в поле "\r
+"ввода справа (пример: <i>http://www.facebook.com/yourname</i> )."\r
+\r
+#: admin/settings.php:1912\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "Вы можете вставить до пяти различных социальных сетей и ссылки на них."\r
+\r
+#: admin/settings.php:1913\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Выбрать можно из 27 социальных сетей."\r
+\r
+#: admin/settings.php:1914\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "Вы можете оставить незаполненными любое количество полей."\r
+\r
+#: admin/settings.php:1915\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Вы можете выбрать одну и ту же социальную сеть сколь угодно раз."\r
+\r
+#: admin/settings.php:1990\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "Выберите <b>области</b> показа иконок на социальные сети."\r
+\r
+#: admin/settings.php:2003\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"Вставка произвольного текста или HTML-кода, отображаемого в конце нижнего "\r
+"колонтитула. <br /> Вы можете использовать HTML для вставки ссылок, "\r
+"изображений и специальных символов, например © ."\r
+\r
+#: admin/settings.php:2011\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br> Your custom CSS will be preserved when updating the "\r
+"theme.<br> The <style> tags are not needed."\r
+msgstr ""\r
+"Вставьте вашу собственную таблицу стилей CSS здесь. Любые ваши изменения "\r
+"перепишут таковые в CSS Мантры. <br /> Ваша CSS будет сохранена при "\r
+"обновлении темы.<br> Теги <style> не требуются."\r
+\r
+#: admin/settings.php:2018\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software).<br> The <script> tags are not needed."\r
+msgstr ""\r
+"Вставьте ваш собственный Javascript код здесь (Google Analytics и любые "\r
+"другие формы аналитики).<br> Теги <script> не требуются."\r
+\r
+#: admin/settings.php:2031\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Включение поисковой оптимизации Мантры. Эта опция включена по умолчанию и её "\r
+"следует отключить, если Вы используете SEO-плагин."\r
+\r
+#: admin/settings.php:2043\r
+msgid "Auto"\r
+msgstr "Автоматически"\r
+\r
+#: admin/settings.php:2043\r
+msgid "Manual"\r
+msgstr "Вручную"\r
+\r
+#: includes/theme-comments.php:28\r
+msgid "says:"\r
+msgstr "говорит:"\r
+\r
+#: includes/theme-comments.php:34\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Ваш комментарий ожидает модерации."\r
+\r
+#: includes/theme-comments.php:41\r
+msgid "at"\r
+msgstr "в"\r
+\r
+#: includes/theme-comments.php:41 includes/theme-comments.php:58\r
+msgid "(Edit)"\r
+msgstr "Редактировать"\r
+\r
+#: includes/theme-comments.php:58\r
+msgid "Pingback: "\r
+msgstr "Пинг блога:"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "Leave a comment"\r
+msgstr "Оставить комментарий"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>Один</b> комментарий"\r
+\r
+#: includes/theme-comments.php:85\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> комментариев"\r
+\r
+#: includes/theme-comments.php:107\r
+msgid "Older Comments"\r
+msgstr "Ранние комментарии"\r
+\r
+#: includes/theme-comments.php:108\r
+msgid "Newer Comments"\r
+msgstr "Новые комментарии"\r
+\r
+#: includes/theme-functions.php:58\r
+msgid "Menu"\r
+msgstr "Меню"\r
+\r
+#: includes/theme-functions.php:271\r
+msgid "Home Page"\r
+msgstr "Домашняя страничка"\r
+\r
+#: includes/theme-functions.php:335\r
+msgid "Powered by"\r
+msgstr "При поддержке"\r
+\r
+#: includes/theme-loop.php:166\r
+msgid "By "\r
+msgstr "Автор"\r
+\r
+#: includes/theme-loop.php:206\r
+msgid " Bookmark the "\r
+msgstr " Закладка"\r
+\r
+#: includes/theme-loop.php:206 includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+msgid "Permalink to"\r
+msgstr "Постоянная ссылка на"\r
+\r
+#: includes/theme-loop.php:206 includes/theme-loop.php:208\r
+#: includes/theme-loop.php:210\r
+msgid "permalink"\r
+msgstr "постоянная ссылка"\r
+\r
+#: includes/theme-loop.php:208 includes/theme-loop.php:210\r
+msgid "Bookmark the "\r
+msgstr "Закладка"\r
+\r
+#: includes/theme-loop.php:232\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Ранние записи"\r
+\r
+#: includes/theme-loop.php:233\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Новые записи <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Страничка %s"\r
+\r
+#: includes/theme-setup.php:90\r
+msgid "Primary Navigation"\r
+msgstr "Основная навигация"\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Top Navigation"\r
+msgstr "Верхняя навигация"\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Footer Navigation"\r
+msgstr "Нижняя навигация"\r
+\r
+#: includes/theme-setup.php:128\r
+msgid "mantra"\r
+msgstr "Мантра"\r
+\r
+#: includes/theme-setup.php:187\r
+msgid "Skip to content"\r
+msgstr "Перейти к"\r
+\r
+#: includes/theme-setup.php:214\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Область основных виджетов - Первое боковое меню"\r
+\r
+#: includes/theme-setup.php:216\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Область основных виджетов - Первое боковое меню"\r
+\r
+#: includes/theme-setup.php:225\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "Вторая область виджетов - Первое боковое меню"\r
+\r
+#: includes/theme-setup.php:227\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "Вторая область виджетов - Первое боковое меню"\r
+\r
+#: includes/theme-setup.php:236\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Третья область виджетов - Второе боковое меню"\r
+\r
+#: includes/theme-setup.php:238\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Третья область виджетов - Второе боковое меню"\r
+\r
+#: includes/theme-setup.php:247\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Четвёртая область виджетов - Второе боковое меню"\r
+\r
+#: includes/theme-setup.php:249\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Четвёртая область виджетов - Второе боковое меню"\r
+\r
+#: includes/theme-setup.php:258\r
+msgid "First Footer Widget Area"\r
+msgstr "Область виджетов первого нижнего колонтитула"\r
+\r
+#: includes/theme-setup.php:260\r
+msgid "First footer widget area"\r
+msgstr "Область виджетов первого нижнего колонтитула"\r
+\r
+#: includes/theme-setup.php:269\r
+msgid "Second Footer Widget Area"\r
+msgstr "Область виджетов второго нижнего колонтитула"\r
+\r
+#: includes/theme-setup.php:271\r
+msgid "Second footer widget area"\r
+msgstr "Область виджетов второго нижнего колонтитула"\r
+\r
+#: includes/theme-setup.php:280\r
+msgid "Third Footer Widget Area"\r
+msgstr "Область виджетов третьего нижнего колонтитула"\r
+\r
+#: includes/theme-setup.php:282\r
+msgid "The third footer widget area"\r
+msgstr "Область виджетов третьего нижнего колонтитула"\r
+\r
+#: includes/theme-setup.php:291\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Область виджетов четвёртого нижнего колонтитула"\r
+\r
+#: includes/theme-setup.php:293\r
+msgid "The fourth footer widget area"\r
+msgstr "Область виджетов четвёртого нижнего колонтитула"\r
+\r
+#: includes/theme-setup.php:302 includes/theme-setup.php:304\r
+msgid "Above content Widget Area"\r
+msgstr "Сверху области виджетов"\r
+\r
+#: includes/theme-setup.php:313 includes/theme-setup.php:315\r
+msgid "Below Content Widget Area"\r
+msgstr "Снизу области виджетов"\r
+\r
+#~ msgid "All Post Metas"\r
+#~ msgstr "Мета-данные всех записей"\r
+\r
+#~ msgid "Mobile view"\r
+#~ msgstr "Версия для мобильных устройств"\r
+\r
+#~ msgid ""\r
+#~ "<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), "\r
+#~ "we spend night after night improving the Mantra Theme. We fix a lot of "\r
+#~ "bugs (that we previously created); we add more and more customization "\r
+#~ "options while also trying to keep things as simple as possible; then... "\r
+#~ "we might play a game or two but rest assured that we return to read and "\r
+#~ "(in most cases) reply to your late night emails and comments, take notes "\r
+#~ "and draw dashboards of things to implement in future versions.</p>\n"\r
+#~ "\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+#~ "keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+#~ "folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+#~ "coffee. We love it! So if you want to help with the further development "\r
+#~ "of the Mantra Theme...</p> "\r
+#~ msgstr ""\r
+#~ "<p>Здесь, в Cryout Creations мы не спим ночами, неустанно улучшая Мантру. "\r
+#~ "Мы устраняем множество недоработок (предварительно нами созданных), "\r
+#~ "добавляем всё больше и больше возможностей тонкой настройки темы, "\r
+#~ "стараясь оставить всё так же просто... А потом мы читаем ваши письма, "\r
+#~ "комментарии, просьбы изменить или улучшить те или иные функции в будущем. "\r
+#~ "</p>\n"\r
+#~ "\t\t\t<p>Можете спросить себя: <i>Как они всё это делают? Как им удаётся "\r
+#~ "сохранить светлую голову после такой кропотливой работы? </i> Что ж, это "\r
+#~ "просто. Мы пьём кофе. Мы пьём горячий вкусный свежий кофе в промышленных "\r
+#~ "масштабах. Мы любим его! Так что если Вы хотите помочь нам с разработкой "\r
+#~ "будущих Мантр...</p> "\r
+\r
+#~ msgid "Mantra Help"\r
+#~ msgstr "Помощь в Мантре"\r
+\r
+#~ msgid ""\r
+#~ "\n"\r
+#~ "\t\t\t<ul>\n"\r
+#~ "\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+#~ "\t\t\t\t<li>- Want to know what changes are made to the theme with each "\r
+#~ "new version?</li>\n"\r
+#~ "\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+#~ "expected?</li>\n"\r
+#~ "\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better "\r
+#~ "suit your needs?</li>\n"\r
+#~ "\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+#~ "\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+#~ "Mantra Theme?</li>\n"\r
+#~ "\t\t\t</ul>\n"\r
+#~ "\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+#~ "\t"\r
+#~ msgstr ""\r
+#~ "\n"\r
+#~ "\t\t\t<ul>\n"\r
+#~ "\t\t\t\t<li>- Нужна какая-либо помощь с Мантрой или WordPress?</li>\n"\r
+#~ "\t\t\t\t<li>- Хотели бы узнать о всех изменениях в теме с выпуском новой "\r
+#~ "версии?</li>\n"\r
+#~ "\t\t\t\t<li>- Нашли баг или что-то работает не так, как Вы ожидаете?</"\r
+#~ "li>\n"\r
+#~ "\t\t\t\t<li>- Есть идеи как улучшить Мантру для Ваших задач?</li>\n"\r
+#~ "\t\t\t\t<li>- Хотели бы доработать настройки?</li>\n"\r
+#~ "\t\t\t\t<li>- У Вас есть перевод Мантры или Вы хотели бы его сделать?</"\r
+#~ "li>\n"\r
+#~ "\t\t\t</ul>\n"\r
+#~ "\t\t\t<p>Что ж, на все вопросы Вы найдёте ответ на страничке поддержки "\r
+#~ "Мантры.</p>\n"\r
+#~ "\t"\r
+\r
+#~ msgid "Mantra Support Page"\r
+#~ msgstr "Страничка поддержки Мантры"\r
+\r
+#~ msgid "Choose your layout "\r
+#~ msgstr "Выберите схему расположения элементов"\r
+\r
+#~ msgid "Relative"\r
+#~ msgstr "Относительная"\r
+\r
+#~ msgid "milliseconds (1000ms = 1 second) "\r
+#~ msgstr "миллисекунды (1000мс = 1 секунда)"\r
+\r
+#~ msgid "Upload or select image from gallery"\r
+#~ msgstr "Загрузите изображение или выберите из галереи"\r
+\r
+#~ msgid "The titles' color (Default value is 333333)."\r
+#~ msgstr "Цвет заголовка (по умолчанию \"333333\")"\r
+\r
+#~ msgid ""\r
+#~ "Hide or show your blog's Title and Description in the header (recommended "\r
+#~ "if you have a custom header image with text)."\r
+#~ msgstr ""\r
+#~ "Показать или скрыть заголовок и описание Вашего блога в шапке сайта "\r
+#~ "(рекомендуется иметь своё изображение заголовка с своим текстом)."\r
+\r
+#~ msgid ""\r
+#~ "Make the site header into a clickable link that links to your index page."\r
+#~ msgstr ""\r
+#~ "Превратить заголовок Вашего сайта в кликабельную ссылку, отсылающую на "\r
+#~ "главную страничку."\r
+\r
+#~ msgid "Upload or select favicon from gallery"\r
+#~ msgstr ""\r
+#~ "Загрузить или выбрать загруженное раннее изображение в качестве иконки "\r
+#~ "(фавиконки) сайта."\r
+\r
+#~ msgid "Archives"\r
+#~ msgstr "Архив"\r
+\r
+#~ msgid "Insert footer copyright"\r
+#~ msgstr "Вставка копирайта в нижний колонтитул (footer)"\r
+\r
+#~ msgid ""\r
+#~ "Enable the presentation front-page. This will become your new home page "\r
+#~ "and it will replace whatever page you have selected as homepage. It has a "\r
+#~ "slider and columns for presentation\n"\r
+#~ "\t\ttext and images."\r
+#~ msgstr ""\r
+#~ "Активация начальной странички презентаций. У Вас появится новая домашняя "\r
+#~ "страничка и любая используемая до этого будет заменена указанной. "\r
+#~ "Страничка презентаций содержит слайдер и колонки для эффектной "\r
+#~ "демонстрации\n"\r
+#~ "\t\tтекста и изображений."\r
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: mantra 197\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-09-08 18:32+0200\n"\r
+"PO-Revision-Date: 2013-01-10 02:25+0200\n"\r
+"Last-Translator: Emre <mredalkilic@gmail.com>\n"\r
+"Language-Team: \n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"\r
+"X-Poedit-Basepath: C:\\Users\\medicated\\Desktop\\mantra\n"\r
+"X-Generator: Poedit 1.5.4\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "Bulunamadı"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr ""\r
+"Üzgünüz, aradığınız sayfa bulunamadı. Arama yapmanız yardımcı olabilir."\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "Günlük Arşivler %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "Aylık Arşivler %s"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "Yıllık Arşivler %s"\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "Blog Arşivleri"\r
+\r
+#: archive.php:57 author.php:74 category.php:50\r
+msgid "Nothing Found"\r
+msgstr "Hiçbir Şey Bulunamadı"\r
+\r
+#: archive.php:61 author.php:78 category.php:54\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr ""\r
+"Üzgünüz, aradığınız arşiv için sonuç bulunamadı. Arama yapmanız ilgili "\r
+"arşivi bulmanıza yardımcı olabilir."\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "Geri dön %s"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "tarafından"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "Yayımlandı"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "Tam boyutu %s piksel"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "Tam boyut görsel için bağlantı"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:48 content-gallery.php:64 content-image.php:41\r
+#: content-link.php:48 content-page.php:22 content-quote.php:46\r
+#: content-status.php:49 content.php:80\r
+msgid "Edit"\r
+msgstr "Düzenle"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "Okumaya devam et"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:37\r
+#: content-gallery.php:54 content-image.php:32 content-link.php:37\r
+#: content-page.php:21 content-quote.php:36 content-status.php:40\r
+#: content.php:52 content.php:69\r
+msgid "Pages:"\r
+msgstr "Sayfalar"\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "Yazar Arşivleri: %s"\r
+\r
+#: author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "Hakkında %s"\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "Kategori Arşivleri: %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr "Bu yazı şifre korumalı. Yorumları görebilmek için şifrenizi girin."\r
+\r
+#: comments.php:41 comments.php:60\r
+msgid "Older Comments"\r
+msgstr "Daha Eski Yorumlar"\r
+\r
+#: comments.php:42 comments.php:61\r
+msgid "Newer Comments"\r
+msgstr "Daha Yeni Yorumlar"\r
+\r
+#: comments.php:72 content-page.php:27\r
+msgid "Comments are closed."\r
+msgstr "Yoruma kapalı."\r
+\r
+#: content-aside.php:21\r
+msgid "Aside"\r
+msgstr "Ayrı"\r
+\r
+#: content-aside.php:38 content-chat.php:36 content-gallery.php:32\r
+#: content-image.php:31 content-link.php:36 content-quote.php:35\r
+#: content-status.php:39\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "Okumaya devam et <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:44 content-gallery.php:61\r
+#: content-image.php:38 content-link.php:44 content-quote.php:43\r
+#: content-status.php:47 content.php:78\r
+msgid "Tagged"\r
+msgstr "Etiketlenmiş"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "Sohbet"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "Galeri"\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr "Görüntü"\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr "Bağlantı"\r
+\r
+#: content-quote.php:19\r
+msgid "Quote"\r
+msgstr "Alıntı"\r
+\r
+#: content-status.php:31\r
+msgid "Status"\r
+msgstr "Durum"\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "Arama Sonuçlar: %s"\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "%s için Arama Sonucu Bulunamadı"\r
+\r
+#: sidebar.php:35 sidebar.php:92\r
+msgid "Archives"\r
+msgstr "Arşivler"\r
+\r
+#: sidebar.php:42 sidebar.php:99\r
+msgid "Meta"\r
+msgstr "Meta"\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr "&s tarafından tüm gönderileri görüntüle"\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "Etiket Arşivleri: %s"\r
+\r
+#: admin/admin-functions.php:62\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr "İçe aktarma dosyanızı yüklemeden önce şu hatayı düzeltmelisiniz:"\r
+\r
+#: admin/admin-functions.php:70\r
+msgid "Import Mantra Theme Options"\r
+msgstr "Mantra Teması Ayarlarını İçe Aktar"\r
+\r
+#: admin/admin-functions.php:72\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+"Selam! Mantra Ayarlarını içe aktaracağınız yer burasu. <i> Bu özelliğin hala "\r
+"deneysel olduğunu lütfen aklınızdan çıkarmayın. <i>"\r
+\r
+#: admin/admin-functions.php:74\r
+msgid "Just choose a file from your computer:"\r
+msgstr "Bilgisayarınızdan bir dosya seçin:"\r
+\r
+#: admin/admin-functions.php:76\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr "Maksimum boyut: %s"\r
+\r
+#: admin/admin-functions.php:82\r
+msgid "And import!"\r
+msgstr "Ve içe aktar!"\r
+\r
+#: admin/admin-functions.php:148\r
+msgid "Import Mantra Theme Options "\r
+msgstr "Mantra Teması Seçeneklerini İçe Aktar"\r
+\r
+#: admin/admin-functions.php:151\r
+msgid "Great! The options have been imported!"\r
+msgstr "Harika! Seçenekler içe aktarıldı!"\r
+\r
+#: admin/admin-functions.php:152\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr "Mantra Seçenekleri sayfasına geri dön ve göz at!"\r
+\r
+#: admin/admin-functions.php:155 admin/admin-functions.php:161\r
+#: admin/admin-functions.php:167\r
+msgid "Oops, there's a small problem."\r
+msgstr "Ah! Ufak bir hata var."\r
+\r
+#: admin/admin-functions.php:156\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+"Yüklenmiş dosya geçerli Mantra seçeneklerine sahip değil. Dosyanın Mantra "\r
+"Seçenekleri sayfasından dışa aktarıldığından emin olun."\r
+\r
+#: admin/admin-functions.php:162\r
+msgid "The uploaded file could not be read."\r
+msgstr "Yüklenen dosya okunamıyor."\r
+\r
+#: admin/admin-functions.php:168\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+"Yüklenen dosya desteklenmiyor. Dosyanın Mantra sayfasından dışa "\r
+"aktarıldığından ve text dosyası olduğundan emin olun."\r
+\r
+#: admin/admin-functions.php:177\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+"Ah! Dosya boş ya da yok. Bu hata php.ini dosyasında yüklemelerin engellenmiş "\r
+"olmasından ya da php.ini dosyasındaki post_max_size seçeneğinin "\r
+"upload_max_filesize seçeneğinden küçük olarak tanımlanmış olmasından "\r
+"kaynaklanıyor olabilir."\r
+\r
+#: admin/admin-functions.php:183\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "HATA: Bu işlemi gerçekleştirmeye yetkili değilsiniz."\r
+\r
+#: admin/main.php:93\r
+msgid "Layout Settings"\r
+msgstr "Düzen Ayarları"\r
+\r
+#: admin/main.php:94\r
+msgid "Presentation Page"\r
+msgstr "Sunum Sayfası"\r
+\r
+#: admin/main.php:95\r
+msgid "Text Settings"\r
+msgstr "Metin Ayarları"\r
+\r
+#: admin/main.php:96\r
+msgid "Color Settings"\r
+msgstr "Renk Ayarları"\r
+\r
+#: admin/main.php:97\r
+msgid "Graphics Settings"\r
+msgstr "Grafik Ayarları"\r
+\r
+#: admin/main.php:98\r
+msgid "Post Information Settings"\r
+msgstr "Yazı Bilgi Ayarları"\r
+\r
+#: admin/main.php:99\r
+msgid "Post Excerpt Settings"\r
+msgstr "Yazı Özet Seçenekleri"\r
+\r
+#: admin/main.php:100\r
+msgid "Featured Image Settings"\r
+msgstr "Öne Çıkan Görüntü Ayarları"\r
+\r
+#: admin/main.php:101\r
+msgid "Social Media Settings"\r
+msgstr "Sosyal Medya Ayarları"\r
+\r
+#: admin/main.php:102\r
+msgid "Miscellaneous Settings"\r
+msgstr "Diğer Ayarlar"\r
+\r
+#: admin/main.php:104\r
+msgid "Main Layout"\r
+msgstr "Ana Düzen"\r
+\r
+#: admin/main.php:105\r
+msgid "Content / Sidebar Width"\r
+msgstr "İçerik / Kenar Çubuğu Yüksekliği"\r
+\r
+#: admin/main.php:106\r
+msgid "Header Image Height"\r
+msgstr "Üstlük Görüntüsü Yüksekliği"\r
+\r
+#: admin/main.php:108\r
+msgid "Enable Presentation Page"\r
+msgstr "Sunum Sayfasını Etkinleştir"\r
+\r
+#: admin/main.php:109\r
+msgid "Slider Settings"\r
+msgstr "Sunu Seçenekleri"\r
+\r
+#: admin/main.php:110\r
+msgid "Slides"\r
+msgstr "Sunular"\r
+\r
+#: admin/main.php:111\r
+msgid "Presentation Page Columns"\r
+msgstr "Sunum Sayfası Sütunları"\r
+\r
+#: admin/main.php:112\r
+msgid "Extras"\r
+msgstr "Ekstralar"\r
+\r
+#: admin/main.php:114\r
+msgid "General Font"\r
+msgstr "Genel Yazı Tipi"\r
+\r
+#: admin/main.php:115\r
+msgid "General Font Size"\r
+msgstr "Genel Yazı Boyutu"\r
+\r
+#: admin/main.php:116\r
+msgid "Post Title Font "\r
+msgstr "Yazı Başlığı Yazı Tipi"\r
+\r
+#: admin/main.php:117\r
+msgid "Post Title Font Size"\r
+msgstr "Yazı Başlığı Yazı Tipi Boyutu"\r
+\r
+#: admin/main.php:118\r
+msgid "Sidebar Font"\r
+msgstr "Kenarçubuğu Yazı Tipi"\r
+\r
+#: admin/main.php:119\r
+msgid "SideBar Font Size"\r
+msgstr "Kenarçubuğu Yazı Tipi Boyutu"\r
+\r
+#: admin/main.php:120\r
+msgid "Sub-Headers Font"\r
+msgstr "Alt Başlık Yazı Tipi"\r
+\r
+#: admin/main.php:121\r
+msgid "Force Text Align"\r
+msgstr "Metni Hızalamaya Zorla"\r
+\r
+#: admin/main.php:122\r
+msgid "Paragraph indent"\r
+msgstr "Paragraf Satırbaşı"\r
+\r
+#: admin/main.php:123\r
+msgid "Header indent"\r
+msgstr "Üstlük Satırbaşı"\r
+\r
+#: admin/main.php:124\r
+msgid "Line Height"\r
+msgstr "Satır Yüksekliği"\r
+\r
+#: admin/main.php:125\r
+msgid "Word spacing"\r
+msgstr "Kelime Aralığı"\r
+\r
+#: admin/main.php:126\r
+msgid "Letter spacing"\r
+msgstr "Harf Aralığı"\r
+\r
+#: admin/main.php:127\r
+msgid "Text shadow"\r
+msgstr "Metin Gölgesi"\r
+\r
+#: admin/main.php:129\r
+msgid "Background Color"\r
+msgstr "Arkaplan Rengi"\r
+\r
+#: admin/main.php:130\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr "Başlık (Banner ve Menü) Arkaplan Rengi"\r
+\r
+#: admin/main.php:131\r
+msgid "Content Background Color"\r
+msgstr "İçerik Arkaplan Rengi"\r
+\r
+#: admin/main.php:132\r
+msgid "Menu background color"\r
+msgstr "Menü Arkaplan Rengi"\r
+\r
+#: admin/main.php:134\r
+msgid "Site Title Color"\r
+msgstr "Site Başlığı Rengi"\r
+\r
+#: admin/main.php:135\r
+msgid "Site Description Color"\r
+msgstr "Site Açıklaması Rengi"\r
+\r
+#: admin/main.php:137\r
+msgid "Content Text Color"\r
+msgstr "İçerik Metni Rengi"\r
+\r
+#: admin/main.php:138\r
+msgid "Links Color"\r
+msgstr "Bağlantılar Rengi"\r
+\r
+#: admin/main.php:139\r
+msgid "Links Hover Color"\r
+msgstr "Bağlantı Vurgusu Rengi"\r
+\r
+#: admin/main.php:140\r
+msgid "Post Title Color"\r
+msgstr "Yazı Başlığı Rengi"\r
+\r
+#: admin/main.php:141\r
+msgid "Post Title Hover Color"\r
+msgstr "Yazı Başlığı Vurgu Rengi"\r
+\r
+#: admin/main.php:142\r
+msgid "Sidebar Header Background Color"\r
+msgstr "Kenar Çubuğu Başlık Arkaplan Rengi"\r
+\r
+#: admin/main.php:143\r
+msgid "Sidebar Header Text Color"\r
+msgstr "Kenar Çubuğu Başlık Metni Rengi"\r
+\r
+#: admin/main.php:144\r
+msgid "Footer Widget Background Color"\r
+msgstr "Altlık Bileşenleri Arkaplan Rengi"\r
+\r
+#: admin/main.php:145\r
+msgid "Footer Background Color"\r
+msgstr "Altlık Arkaplan Rengi"\r
+\r
+#: admin/main.php:146\r
+msgid "Footer Widget Header Text Color"\r
+msgstr "Altlık Bileşenleri Başlık Rengi"\r
+\r
+#: admin/main.php:147\r
+msgid "Footer Widget Link Color"\r
+msgstr "Altık Bileşenleri Bağlantı Rengi"\r
+\r
+#: admin/main.php:148\r
+msgid "Footer Widget Hover Color"\r
+msgstr "Altlık Bileşenleri Bağlantı Vurgusu Rengi"\r
+\r
+#: admin/main.php:150\r
+msgid "Caption Border"\r
+msgstr "Manşet Sınırı"\r
+\r
+#: admin/main.php:151\r
+msgid "Post Images Border"\r
+msgstr "Yazı Görüntüleri Sınırı"\r
+\r
+#: admin/main.php:152\r
+msgid "Caption Pin"\r
+msgstr "Manşet Pimi"\r
+\r
+#: admin/main.php:153\r
+msgid "Sidebar Menu Bullets"\r
+msgstr "Kenar Çubuğu Menü İmleri"\r
+\r
+#: admin/main.php:154\r
+msgid "Meta Area Background"\r
+msgstr "Meta Alanı Arkaplanı"\r
+\r
+#: admin/main.php:155\r
+msgid "Post Separator"\r
+msgstr "Yazı Ayracı"\r
+\r
+#: admin/main.php:156\r
+msgid "Content List Bullets"\r
+msgstr "İçerik Listesi İmleri"\r
+\r
+#: admin/main.php:157\r
+msgid "Title and Description"\r
+msgstr "Başlık ve Tanım"\r
+\r
+#: admin/main.php:158\r
+msgid "Page Titles"\r
+msgstr "Sayfa Başlıkları"\r
+\r
+#: admin/main.php:159\r
+msgid "Category Page Titles"\r
+msgstr "Kategori Sayfası Başlıkları"\r
+\r
+#: admin/main.php:160\r
+msgid "Hide Tables"\r
+msgstr "Tabloları Gizle"\r
+\r
+#: admin/main.php:161\r
+msgid "Back to Top button"\r
+msgstr "Üste Dön Tuşu"\r
+\r
+#: admin/main.php:162\r
+msgid "Text Under Comments"\r
+msgstr "Yorumlar Altındaki Yazı"\r
+\r
+#: admin/main.php:163\r
+msgid "Comments are closed text"\r
+msgstr "Yorumlar Kapalı metni"\r
+\r
+#: admin/main.php:164\r
+msgid "Comments off"\r
+msgstr "Yorumlar Kapalı"\r
+\r
+#: admin/main.php:165\r
+msgid "Insert footer copyright"\r
+msgstr "Altlık telif hakkı ekle"\r
+\r
+#: admin/main.php:167\r
+msgid "Post Comments Link"\r
+msgstr "Yazı Yorumları Bağlantısı"\r
+\r
+#: admin/main.php:168\r
+msgid "Post Date"\r
+msgstr "Yazı Tarihi"\r
+\r
+#: admin/main.php:169\r
+msgid "Post Time"\r
+msgstr "Yazı Zamanı"\r
+\r
+#: admin/main.php:170\r
+msgid "Post Author"\r
+msgstr "Yazı Yazarı"\r
+\r
+#: admin/main.php:171\r
+msgid "Post Category"\r
+msgstr "Yazı Kategorisi"\r
+\r
+#: admin/main.php:172\r
+msgid "Post Tags"\r
+msgstr "Yazı Etiketleri"\r
+\r
+#: admin/main.php:173\r
+msgid "Post Permalink"\r
+msgstr "Yazı Permalinki"\r
+\r
+#: admin/main.php:174\r
+msgid "All Post Metas"\r
+msgstr "Tüm Yazı Metaları"\r
+\r
+#: admin/main.php:176\r
+msgid "Post Excerpts on Home Page"\r
+msgstr "Ana Sayfadaki Yazı Özetleri"\r
+\r
+#: admin/main.php:177\r
+msgid "Affect Sticky Posts"\r
+msgstr "Yapışkan Yazıları Etkile"\r
+\r
+#: admin/main.php:178\r
+msgid "Post Excerpts on Archive and Category Pages"\r
+msgstr "Arşiv ve Kategori Sayfalarındaki Yazı Özetleri"\r
+\r
+#: admin/main.php:179\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr "Yazı Özetleri için Kelime Sayısı"\r
+\r
+#: admin/main.php:180\r
+msgid "Magazine Layout"\r
+msgstr "Dergi Düzeni"\r
+\r
+#: admin/main.php:181\r
+msgid "Excerpt suffix"\r
+msgstr "Özet Soneki"\r
+\r
+#: admin/main.php:182\r
+msgid "Continue reading link text "\r
+msgstr "Okumaya Devam Et bağlantı metni"\r
+\r
+#: admin/main.php:183\r
+msgid "HTML tags in Excerpts"\r
+msgstr "Özetlerdeki HTML Etiketleri"\r
+\r
+#: admin/main.php:185\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr "YAZI Küçük Resimleri olarak Öne Çıkan Görüntüler"\r
+\r
+#: admin/main.php:186\r
+msgid "Auto Select Images From Posts "\r
+msgstr "Yazılardeki Görüntüleri Otomatik Seç"\r
+\r
+#: admin/main.php:187\r
+msgid "Thumbnails Alignment "\r
+msgstr "Küçük Resim Hizası"\r
+\r
+#: admin/main.php:188\r
+msgid "Thumbnails Size "\r
+msgstr "Küçük Resim Boyutu"\r
+\r
+#: admin/main.php:189\r
+msgid "Featured Images as HEADER Images "\r
+msgstr "BAŞLIK Görüntleri olarak Küçük Resimleri"\r
+\r
+#: admin/main.php:191\r
+msgid "Link nr. 1"\r
+msgstr "Bağlantı no. 1"\r
+\r
+#: admin/main.php:192\r
+msgid "Link nr. 2"\r
+msgstr "Bağlantı no. 2"\r
+\r
+#: admin/main.php:193\r
+msgid "Link nr. 3"\r
+msgstr "Bağlantı no. 3"\r
+\r
+#: admin/main.php:194\r
+msgid "Link nr. 4"\r
+msgstr "Bağlantı no. 4"\r
+\r
+#: admin/main.php:195\r
+msgid "Link nr. 5"\r
+msgstr "Bağlantı no. 5"\r
+\r
+#: admin/main.php:196\r
+msgid "Socials display"\r
+msgstr "Sosyal Bağlantılar Görüntüsü"\r
+\r
+#: admin/main.php:198\r
+msgid "Make Site Header a Link"\r
+msgstr "Site Başlığını Bağlantı Yap"\r
+\r
+#: admin/main.php:199\r
+msgid "Breadcrumbs"\r
+msgstr "Ekmek Kırıntısı"\r
+\r
+#: admin/main.php:200\r
+msgid "Pagination"\r
+msgstr "Sayfaları Numaralandırma"\r
+\r
+#: admin/main.php:201\r
+msgid "Mobile view"\r
+msgstr "Mobil Görüntü"\r
+\r
+#: admin/main.php:202\r
+msgid "FavIcon"\r
+msgstr "FavIcon"\r
+\r
+#: admin/main.php:203\r
+msgid "Custom CSS"\r
+msgstr "Özel CSS"\r
+\r
+#: admin/main.php:204\r
+msgid "Custom JavaScript"\r
+msgstr "Özel JavaScript"\r
+\r
+#: admin/main.php:205\r
+msgid "SEO Settings"\r
+msgstr "SEO Ayarları"\r
+\r
+#: admin/main.php:222\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "Üzgünüz, ama bu sayfaya erişebilmek için yeterli izniniz yok."\r
+\r
+#: admin/main.php:232\r
+msgid "Mantra settings updated successfully."\r
+msgstr "Mantra ayarları başarıyla yenilendi"\r
+\r
+#: admin/main.php:243\r
+msgid "Reset to Defaults"\r
+msgstr "Varsayılana Geri Dön"\r
+\r
+#: admin/main.php:244\r
+msgid "Save Changes"\r
+msgstr "Değişiklikleri Kaydet"\r
+\r
+#: admin/main.php:258\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"\t\t\t<p>So you might ask yourselves: <i>How do they do it? How can they "\r
+"keep so fresh after all that hard labor for that darned theme? </i> Well "\r
+"folks, it's simple. We drink coffee. Industrial quantities of hot boiling "\r
+"coffee. We love it! So if you want to help with the further development of "\r
+"the Mantra Theme...</p> "\r
+msgstr ""\r
+"<p>Cryout Creations'da(Mantra Teması geliştiricileri), gecelerimizi Mantra "\r
+"Teması'nı geliştirmek için harcıyoruz. Birçok bug'ı düzeltiyoruz(daha "\r
+"önceden bizim yarattığımız); işleri basit tutmaya çalışarak birçok "\r
+"özelleştirme seçeneği ekliyoruz; sonra... bir iki oyun oynayabiliriz ama "\r
+"emin olunki gece geç vakitte gönderdiğiniz e-mailleri ve yorumları okumaya "\r
+"geri dönüyoruz ve (çoğu zaman) cevaplıyoruz, notlar alıyoruz ve ileriki "\r
+"versiyonlarda ekleme yapacaklarımız için plan yapıyoruz. </p>\n"\r
+"\t\t\t<p>Kendinize sorabilirsiniz: <i> Bütün bunları nasıl yapıyorlar? Bu "\r
+"lanet tema için bu kadar çalışıp nasıl bu kadar canlı kalabiliyorlar?</i> "\r
+"Aslında millet, bu çok basit. Kahve içiyoruz. Endüstriyel ölçeklerde, sıcak, "\r
+"kaynamış kahve. Buna bayılıyoruz. Eğer Mantra Teması'nın geleceğine yardım "\r
+"etmek isterseniz...</p>"\r
+\r
+#: admin/main.php:273\r
+msgid "Import/Export Settings"\r
+msgstr "İçe/Dışa Aktarma Seçenekleri"\r
+\r
+#: admin/main.php:279\r
+msgid "Export Theme options"\r
+msgstr "Teme Seçeneklerini Dışa Aktar"\r
+\r
+#: admin/main.php:280\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+"Bu kadar basit: Mantra ayarlarını dışa aktarmak ve bilgisayarınıza kaydetmek "\r
+"sadece bir tık uzağınızda. Daha güvende hissediyor musunuz? Hissetmelisiniz."\r
+\r
+#: admin/main.php:285\r
+msgid "Import Theme options"\r
+msgstr "Tema Seçeneklerini İçe Aktar"\r
+\r
+#: admin/main.php:286\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+"İçe aktarmadan dışa aktarmak ancak bir ahmağın işi olabilir. Dışa aktarılmış "\r
+"dosyanın hazır olduğundan emin olun ve tıktan sonra görüşürüz."\r
+\r
+#: admin/main.php:293\r
+msgid "Mantra Latest News"\r
+msgstr "Mantra Son Haberler"\r
+\r
+#: admin/main.php:304\r
+msgid "No news items."\r
+msgstr "Yeni haber yok."\r
+\r
+#: admin/main.php:318\r
+msgid "Mantra Help"\r
+msgstr "Mantra Yardım"\r
+\r
+#: admin/main.php:321\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "\r
+"version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+"expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "\r
+"your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+"Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Mantra ya da WordPress için yardıma mı ihtiyacınız var?</li>\n"\r
+"\t\t\t\t<li>- Her yeni versiyonla gelen özellikleri öğrenmek ister misiniz?</"\r
+"li>\n"\r
+"\t\t\t\t<li>- Bug mı bulduğunuz ya da her şey çalışması gerektiği gibi "\r
+"çalışmıyor mu?</li>\n"\r
+"\t\t\t\t<li>- Mantra Teması'nın ihtiyaclarını daha iyi karşılaması için bir "\r
+"fikrin mi var?</li>\n"\r
+"\t\t\t\t<li>- Bir ayarın uygulanmasını mı istiyorsun?</li>\n"\r
+"\t\t\t\t<li>- Mantra Teması'nın bir çevirisine mi sahipsin ya da çevirisini "\r
+"mi yapmak istiyorsun?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>O zaman bizi Mantra destek sayfasında ziyaret edin.</p>\n"\r
+"\t"\r
+\r
+#: admin/main.php:332\r
+msgid "Mantra Support Page"\r
+msgstr "Manta Destek Sayfası"\r
+\r
+#: admin/settings.php:61\r
+msgid "One column (no sidebars)"\r
+msgstr "Tek sütun (kenar çubuğu yok)"\r
+\r
+#: admin/settings.php:62\r
+msgid "Two columns, sidebar on the right"\r
+msgstr "İki sütun, kenar çubuğu sağda"\r
+\r
+#: admin/settings.php:63\r
+msgid "Two columns, sidebar on the left"\r
+msgstr "İki sütun, kenar çubuğu solda"\r
+\r
+#: admin/settings.php:64\r
+msgid "Three columns, sidebars on the right"\r
+msgstr "Üç sütun, kenar çubukları sağda"\r
+\r
+#: admin/settings.php:65\r
+msgid "Three columns, sidebars on the left"\r
+msgstr "Üç sütun, kenar çubukları solda"\r
+\r
+#: admin/settings.php:66\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr "Üç sütun, her yanda bir kenar çubuğu"\r
+\r
+#: admin/settings.php:81\r
+msgid "Choose your layout "\r
+msgstr "Düzeninizi seçin"\r
+\r
+#: admin/settings.php:89\r
+msgid "Absolute"\r
+msgstr "Kesin"\r
+\r
+#: admin/settings.php:89\r
+msgid "Relative"\r
+msgstr "Göreceli"\r
+\r
+#: admin/settings.php:90\r
+msgid "Dimensions to use: "\r
+msgstr "Kullanılacak ölçüler"\r
+\r
+#: admin/settings.php:189 admin/settings.php:209\r
+msgid "Content ="\r
+msgstr "İçerik ="\r
+\r
+#: admin/settings.php:190 admin/settings.php:210\r
+msgid "Sidebar(s) ="\r
+msgstr "Kenar Çubuk(ları) ="\r
+\r
+#: admin/settings.php:191 admin/settings.php:211\r
+msgid "Total width ="\r
+msgstr "Toplan Genişlik"\r
+\r
+#: admin/settings.php:200\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"<b>İçerik</b> ve <b>kenarçubuk(ları)</b> için genişlik seçin. \n"\r
+" \t\tİçerik 500 pikselden dar olamazken, kenarçubuğu alanı en az 220 piksel "\r
+"ve en fazla 800 piksel olmalı.<br />\n"\r
+"\tEğer üç sütun seçmişseniz ( 2 kenarçubuklu) herbiri seçilmiş genişliğin "\r
+"yarısı olacaktır."\r
+\r
+#: admin/settings.php:220\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+"<b>İçerik</b> ve <b>kenarçubuk(ları)</b> için genişlik seçin.\n"\r
+" \t\tBunlar kullanıcının tarayıcısına göre göreceli ölçülerdir.Toplam "\r
+"genişlik tarayıcının belli bir yüzdesidir.<br />\n"\r
+"\t İçerik %40'tan dar olamazken, kenarçubuğu alanı en az %20 en fazla %50 "\r
+"olmalıdır.<br />\n"\r
+"\tEğer üç sütun seçmişseniz ( 2 kenarçubuklu) herbiri seçilmiş genişliğin "\r
+"yarısı olacaktır."\r
+\r
+#: admin/settings.php:244\r
+msgid ""\r
+"Select the header's height. After saving the settings go and upload your new "\r
+"header image. The header's width will be = "\r
+msgstr ""\r
+"Üstlüğün yüksekliğini seçin. Kaydettikten sonra yeni üstlük görüntüsünü "\r
+"yükleyin. Üstlüğün genişliği ="\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1353 admin/settings.php:1415 admin/settings.php:1623\r
+#: admin/settings.php:1652 admin/settings.php:1675 admin/settings.php:1698\r
+#: admin/settings.php:1747 admin/settings.php:1876 admin/settings.php:1891\r
+#: admin/settings.php:1906 admin/settings.php:1921 admin/settings.php:1963\r
+msgid "Enable"\r
+msgstr "Etkinleştir"\r
+\r
+#: admin/settings.php:257 admin/settings.php:969 admin/settings.php:1031\r
+#: admin/settings.php:1353 admin/settings.php:1415 admin/settings.php:1623\r
+#: admin/settings.php:1652 admin/settings.php:1675 admin/settings.php:1698\r
+#: admin/settings.php:1747 admin/settings.php:1876 admin/settings.php:1891\r
+#: admin/settings.php:1906 admin/settings.php:1921 admin/settings.php:1963\r
+msgid "Disable"\r
+msgstr "Etkisiz Kıl"\r
+\r
+#: admin/settings.php:265\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page and "\r
+"it will replace whatever page you have selected as homepage. It has a slider "\r
+"and columns for presentation\n"\r
+"\t\ttext and images."\r
+msgstr ""\r
+"Ön sayfada sunuyu etkinleştir. Bu sizin yeni ana sayfanız olacak ve ana "\r
+"sayfa olarak seçtiğiniz sayfanın yerine geçecek. Bir sunusu ve sunumlar "\r
+"için \n"\r
+"\t\tmetin ve görüntü sütünları var."\r
+\r
+#: admin/settings.php:275\r
+msgid "Slider Dimensions:"\r
+msgstr "Sunu Ölçüleri"\r
+\r
+#: admin/settings.php:276\r
+msgid "width"\r
+msgstr "Genişlik"\r
+\r
+#: admin/settings.php:277\r
+msgid "height"\r
+msgstr "Yükseklik"\r
+\r
+#: admin/settings.php:278\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr "Sununuzun ölçüsü. Görüntülerinizin aynı boyutta olduğundan emin olun."\r
+\r
+#: admin/settings.php:280\r
+msgid "Animation:"\r
+msgstr "Animasyon:"\r
+\r
+#: admin/settings.php:282\r
+msgid "Random"\r
+msgstr "Rasgele"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fold"\r
+msgstr "Katla"\r
+\r
+#: admin/settings.php:282\r
+msgid "Fade"\r
+msgstr "Solma"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInRight"\r
+msgstr "SağaKay"\r
+\r
+#: admin/settings.php:282\r
+msgid "SlideInLeft"\r
+msgstr "SolaKay"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDown"\r
+msgstr "AşağıKes"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceDownLeft"\r
+msgstr "SolAşağıKes"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUp"\r
+msgstr "YukarıKes"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpLeft"\r
+msgstr "SolYukarıKes"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDown"\r
+msgstr "YukarıAşağıKes"\r
+\r
+#: admin/settings.php:282\r
+msgid "SliceUpDownLeft"\r
+msgstr "SolYukarıAşağıKes"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRandom"\r
+msgstr "RasgeleKutu"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRain"\r
+msgstr "YağmurKutu"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainReverse"\r
+msgstr "TersYağmurKutu"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrow"\r
+msgstr "BüyüyenYağmurKutu"\r
+\r
+#: admin/settings.php:282\r
+msgid "BoxRainGrowReverse"\r
+msgstr "TersBüyüyenYağmurKutu"\r
+\r
+#: admin/settings.php:290\r
+msgid "The transition effect your slider will have."\r
+msgstr "Sununuzun Geçiş Efekti."\r
+\r
+#: admin/settings.php:292\r
+msgid "Border Settings:"\r
+msgstr "Sınır Ayarları"\r
+\r
+#: admin/settings.php:293\r
+msgid "Width"\r
+msgstr "Yükseklik"\r
+\r
+#: admin/settings.php:294\r
+msgid "Color"\r
+msgstr "Renk"\r
+\r
+#: admin/settings.php:296\r
+msgid "The width and color of the slider's border."\r
+msgstr "Sununuzun sınır yükseliği ve rengi."\r
+\r
+#: admin/settings.php:298\r
+msgid "Animation Time:"\r
+msgstr "Animasyon Süresi:"\r
+\r
+#: admin/settings.php:299 admin/settings.php:303\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr "milisaniye (1000 ms = 1 saniye)"\r
+\r
+#: admin/settings.php:300\r
+msgid "The time in which the transition animation will take place."\r
+msgstr "Geçiş animasyonunun gerçekleşeceği süre."\r
+\r
+#: admin/settings.php:302\r
+msgid "Pause Time:"\r
+msgstr "Duraklama Süresi:"\r
+\r
+#: admin/settings.php:304\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr "Slaytın durduğu ve görünür olduğu süre."\r
+\r
+#: admin/settings.php:307\r
+msgid "Slider navigation:"\r
+msgstr "Sunu navigasyonu:"\r
+\r
+#: admin/settings.php:309\r
+msgid "Numbers"\r
+msgstr "Sayılar"\r
+\r
+#: admin/settings.php:309\r
+msgid "Bullets"\r
+msgstr "İmler"\r
+\r
+#: admin/settings.php:309 admin/settings.php:1259\r
+msgid "None"\r
+msgstr "Hiçbiri"\r
+\r
+#: admin/settings.php:317\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr "Sunu navigasyon tipi. Sunu altında görünür."\r
+\r
+#: admin/settings.php:319\r
+msgid "Slider arrows:"\r
+msgstr "Sunu okları:"\r
+\r
+#: admin/settings.php:321\r
+msgid "Always Visible"\r
+msgstr "Her Zaman Gözükür"\r
+\r
+#: admin/settings.php:321\r
+msgid "Visible on Hover"\r
+msgstr "Vurguda Gözükür"\r
+\r
+#: admin/settings.php:321\r
+msgid "Hidden"\r
+msgstr "Gizli"\r
+\r
+#: admin/settings.php:329\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr "Sununuzdaki Sağ ve Sol oklar"\r
+\r
+#: admin/settings.php:370 admin/settings.php:438\r
+msgid "Select Category"\r
+msgstr "Kategori Seçin"\r
+\r
+#: admin/settings.php:397\r
+msgid "Custom Slides"\r
+msgstr "Özel Slaytlar"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts"\r
+msgstr "Son Yazılar"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts"\r
+msgstr "Rasgele Yazılar"\r
+\r
+#: admin/settings.php:397\r
+msgid "Sticky Posts"\r
+msgstr "Yapışkan Yazılar"\r
+\r
+#: admin/settings.php:397\r
+msgid "Latest Posts from Category"\r
+msgstr "Kategoriden Son Yazılar"\r
+\r
+#: admin/settings.php:397\r
+msgid "Random Posts from Category"\r
+msgstr "Kategoriden Rasgele Yazılar"\r
+\r
+#: admin/settings.php:397\r
+msgid "Specific Posts"\r
+msgstr "Belirli Yazılar"\r
+\r
+#: admin/settings.php:410\r
+msgid "Latest posts will be loaded into the slider."\r
+msgstr "Son yazılar sunuya yüklenecek."\r
+\r
+#: admin/settings.php:414\r
+msgid "Random posts will be loaded into the slider."\r
+msgstr "Rasgele yazılar sunuya yüklenecek."\r
+\r
+#: admin/settings.php:418\r
+msgid "Latest posts from the category you choose will be loaded in the slider."\r
+msgstr "Seçtiğiniz kategoriden son yazılar sunuya yüklenecek."\r
+\r
+#: admin/settings.php:423\r
+msgid ""\r
+"Random posts from the category you choose will be loaded into the slider."\r
+msgstr "Seçtiğiniz kategoriden rasgele yazılar sunuya yüklenecek."\r
+\r
+#: admin/settings.php:427\r
+msgid "Only sticky posts will be loaded into the slider."\r
+msgstr "Sadece yapışkan yazılar sunuya yüklenecek."\r
+\r
+#: admin/settings.php:431\r
+msgid "List the post IDs you want to display (separated by a comma): "\r
+msgstr ""\r
+"Göstermek istediğiniz yazıların ID'lerini listeleyin (virgülle ayrılmış "\r
+"şekilde):"\r
+\r
+#: admin/settings.php:436\r
+msgid "<br> Choose the cateogry: "\r
+msgstr "<br> Kategori seçin:"\r
+\r
+#: admin/settings.php:453\r
+msgid "Number of posts to show:"\r
+msgstr "Gösterilecek yazı sayısı:"\r
+\r
+#: admin/settings.php:460\r
+msgid "Slide 1"\r
+msgstr "Slayt 1"\r
+\r
+#: admin/settings.php:464 admin/settings.php:479 admin/settings.php:494\r
+#: admin/settings.php:509 admin/settings.php:524 admin/settings.php:567\r
+#: admin/settings.php:582 admin/settings.php:597 admin/settings.php:612\r
+msgid "Upload or select image from gallery"\r
+msgstr "Görüntü yükle ya da galeriden seç"\r
+\r
+#: admin/settings.php:465 admin/settings.php:480 admin/settings.php:495\r
+#: admin/settings.php:510 admin/settings.php:525 admin/settings.php:568\r
+#: admin/settings.php:583 admin/settings.php:613\r
+msgid "Title"\r
+msgstr "Başlık"\r
+\r
+#: admin/settings.php:467 admin/settings.php:482 admin/settings.php:497\r
+#: admin/settings.php:512 admin/settings.php:527 admin/settings.php:570\r
+#: admin/settings.php:585 admin/settings.php:600 admin/settings.php:615\r
+msgid "Text"\r
+msgstr "Metin"\r
+\r
+#: admin/settings.php:475\r
+msgid "Slide 2"\r
+msgstr "Slayt 2"\r
+\r
+#: admin/settings.php:490\r
+msgid "Slide 3"\r
+msgstr "Slayt 3"\r
+\r
+#: admin/settings.php:505\r
+msgid "Slide 4"\r
+msgstr "Slayt 4"\r
+\r
+#: admin/settings.php:520\r
+msgid "Slide 5"\r
+msgstr "Slayt 5"\r
+\r
+#: admin/settings.php:533\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+"Slaylarınızın içeriği. Sadece görüntü zorunluduri diğer tüm alanlar isteğe "\r
+"bağlıdır. Canlı sunuda sadece görüntülü slaytlar aktif olacaktır."\r
+\r
+#: admin/settings.php:543\r
+msgid "Number of columns:"\r
+msgstr "Sütun Sayısı"\r
+\r
+#: admin/settings.php:553\r
+msgid "Image Height:"\r
+msgstr "Görüntü Yüksekliği"\r
+\r
+#: admin/settings.php:556\r
+msgid "Read more text:"\r
+msgstr "Daha fazla metin oku"\r
+\r
+#: admin/settings.php:559\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr ""\r
+"Bağlantı metni bütün sütünların sonunda gözükür. İstemezseniz bütün metni "\r
+"silebilirsiniz"\r
+\r
+#: admin/settings.php:563\r
+msgid "1st Column"\r
+msgstr "1'inci Sütun"\r
+\r
+#: admin/settings.php:578\r
+msgid "2nd Column"\r
+msgstr "2'inci Sütun"\r
+\r
+#: admin/settings.php:593\r
+msgid "3rd Column"\r
+msgstr "3'üncü Sütun"\r
+\r
+#: admin/settings.php:608\r
+msgid "4th Column"\r
+msgstr "4'üncü Sütun"\r
+\r
+#: admin/settings.php:630\r
+msgid "Extra Text"\r
+msgstr "Ekstra Metin"\r
+\r
+#: admin/settings.php:630\r
+msgid "Top Title"\r
+msgstr "Üst Başlık"\r
+\r
+#: admin/settings.php:632\r
+msgid "Second Title"\r
+msgstr "İkinci Başlık"\r
+\r
+#: admin/settings.php:635\r
+msgid "Title color"\r
+msgstr "Başlık Rengi"\r
+\r
+#: admin/settings.php:638\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr "Başlığın rengi (Varsayılan değer 333333)."\r
+\r
+#: admin/settings.php:640\r
+msgid "Bottom Text 1"\r
+msgstr "Alt Metin 1"\r
+\r
+#: admin/settings.php:642\r
+msgid "Bottom Text 2"\r
+msgstr "Alt Metin 2"\r
+\r
+#: admin/settings.php:645\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+"Ön sayfanızda daha çok metin. Üst başlık sununun altında, ikinci başlık ise "\r
+"sunu ile sütunlar arasında ve 2 sıra da sütunların altındadır.\n"\r
+"\t\t Bunların hepsi isteğe bağlı, eğer gerekli değilse doldurmayabilirsiniz. "\r
+\r
+#: admin/settings.php:651\r
+msgid "Hide areas"\r
+msgstr "Alanları Gizle"\r
+\r
+#: admin/settings.php:664\r
+msgid "Hide the header area (image or background color)."\r
+msgstr "Üstlük alanını gizle (görüntü ya da arkaplan rengi)."\r
+\r
+#: admin/settings.php:668\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr "Ana menüyü gizle (üst navigasyon sekmeleri)."\r
+\r
+#: admin/settings.php:672\r
+msgid "Hide the footer widgets. "\r
+msgstr "Altlık bileşenlerini gizle."\r
+\r
+#: admin/settings.php:676\r
+msgid "Hide the footer (copyright area)."\r
+msgstr "Altlığı gizle (telif hakkı alanı)."\r
+\r
+#: admin/settings.php:680\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr "Beyaz rengi gizle. Sadece arka plan rengi kalır."\r
+\r
+#: admin/settings.php:684\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr "İlk sayfada gizlenecek alanları belirleyin."\r
+\r
+#: admin/settings.php:703\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+"Blogunuzda kullanacağınız yazı tipi boyutunu seçin. Sayfalar, yazılar ve "\r
+"yorumlar etkilenecek. Tuşlar, Başlıklar ve Yan menüler etkilenmeyecek."\r
+\r
+#: admin/settings.php:747\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+"Blogunuzda kullanacağınız yazı tipi ailesini seçin. Tüm içerik metni "\r
+"etkilenecek (menü tuşları dahil)."\r
+\r
+#: admin/settings.php:748 admin/settings.php:797 admin/settings.php:848\r
+#: admin/settings.php:899\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+"Ya da Google Yazı Tipinizi girin. Lütfen yazı tipi <strong>name</strong> "\r
+"girin. <br /> Örnek: Marko One. <a href='http://www.google.com/webfonts' > "\r
+"google fonts </a> ilham için ziyaret edin."\r
+\r
+#: admin/settings.php:795\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+"Başlıklarınızda kullanacağız yazı tipi ailesini seçin. Yazı başlıkları ve "\r
+"safya başlıkları etkilenecek. Genel yazı tipiyle aynı olmasını istiyorsanız "\r
+"\"Varsayılan\" olarak bırakın."\r
+\r
+#: admin/settings.php:846\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+"Kenarçubuk(ları)nda kullanmak istediğiniz yazı tipi ailesini seçin. Kenar "\r
+"çubuklarındaki metin ve bütün bileşenler etkilenecektir. Genel yazı tipiyle "\r
+"aynı olmasını istiyorsanız \"Varsayılan\" olarak bırakın."\r
+\r
+#: admin/settings.php:897\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+"Alt başlıklarda (h2 - h6 etiketleri etkilenecek) kullanılmasını istediğiniz "\r
+"yazı tipi ailesini seçin. Genel yazı tipiyle aynı olmasını istiyorsanız "\r
+"\"Varsayılan\" olarak bırakın."\r
+\r
+#: admin/settings.php:909 admin/settings.php:924 admin/settings.php:939\r
+#: admin/settings.php:984 admin/settings.php:999 admin/settings.php:1014\r
+msgid "Default"\r
+msgstr "Varsayılan"\r
+\r
+#: admin/settings.php:917\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+"Yazı Başlığı Yazı Tipi boyutu. Normal ayarlar için \"Varsayılan\" olarak "\r
+"bırakın (boyut değeri CSS'deki gibi olacak)"\r
+\r
+#: admin/settings.php:932\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+"Kenarçubuğu Yazı Tiği boyutu. Normal ayarlar için \"Varsayılan\" olarak "\r
+"bırakın (boyut değeri CSS'deki gibi olacak)"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Left"\r
+msgstr "Sol"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Right"\r
+msgstr "Sağ"\r
+\r
+#: admin/settings.php:939\r
+msgid "Justify"\r
+msgstr "İki yana yasla"\r
+\r
+#: admin/settings.php:939 admin/settings.php:1714\r
+msgid "Center"\r
+msgstr "Ortala"\r
+\r
+#: admin/settings.php:947\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+"Bu yazılar ve sayfalardaki metin hizasının üstüne yazar. Normal ayarlar için "\r
+"\"Varsayılan\" olarak bırakın (hizalama yazılar, yorumlardaki, vb. gibi "\r
+"kalacak)"\r
+\r
+#: admin/settings.php:961\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr "Paragrafınız için satırbaşı seçin."\r
+\r
+#: admin/settings.php:977\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr "Varsayılan üstlük ve başlık satırbaşını etkisiz kılın (sol kenar)."\r
+\r
+#: admin/settings.php:992\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+"Metni satır boyutu. 2 satır arasındaki boyut. Normal ayarlar için "\r
+"\"Varsayılan\" olarak bırakın (boyut değeri CSS'deki gibi olacak)"\r
+\r
+#: admin/settings.php:1007\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"<i>Kelimeler</i> arasındaki boşluk. Normal ayarlar için \"Varsayılan\" "\r
+"olarak bırakın (boyut değeri CSS'deki gibi olacak)"\r
+\r
+#: admin/settings.php:1022\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+"<i>Harfler</i> arasındaki boşluk. Normal ayarlar için \"Varsayılan\" olarak "\r
+"bırakın (boyut değeri CSS'deki gibi olacak)"\r
+\r
+#: admin/settings.php:1039\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr "Üstlükler ve başlıklardaki varsayılan metin gölgesini etkisiz kıl."\r
+\r
+#: admin/settings.php:1051\r
+msgid "Background color (Default value is 444444)."\r
+msgstr "Arka plan rengi (Varsayılan değer 444444)."\r
+\r
+#: admin/settings.php:1059\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr ""\r
+"Üstlük arka plan rengi (Varsayılan değer 333333). Arka plan rengini iptal "\r
+"etmek için kutudaki metni silin."\r
+\r
+#: admin/settings.php:1066\r
+msgid ""\r
+"Content background color (Default value is FAFAFA). Works best with really "\r
+"light colors."\r
+msgstr ""\r
+"İçerik arka plan rengi (Varsayılan değer FAFAFA). En iyi açık renklerle "\r
+"çalışır."\r
+\r
+#: admin/settings.php:1073\r
+msgid ""\r
+"Main menu background color (Default value is FAFAFA). Should be the same "\r
+"color as the content bg or something just as light."\r
+msgstr ""\r
+"Ana menü arka plan rengi (Varsayılan değer FAFAFA). İçerik arka plan "\r
+"rengiyle aynı olmalı ya da aynı derecede açık renkli."\r
+\r
+#: admin/settings.php:1081\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr "Altlık bileşen alanı arka plan rengi. (Varsayılan değer 171717)."\r
+\r
+#: admin/settings.php:1089\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr "Altlık arka plan rengi (Varsayılan değer 222222)."\r
+\r
+#: admin/settings.php:1097\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr "Blogunuzun başlık rengi (Varsayılan değer 0D85CC)."\r
+\r
+#: admin/settings.php:1105\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr "Blog açıklamanızın rengi(Varsayılan değer 222222)."\r
+\r
+#: admin/settings.php:1113\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr "İçerik Metni Rengi (Varsayılan değer 333333)."\r
+\r
+#: admin/settings.php:1121\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr "Bağlantıların rengi (Varsayılan değer 0D85CC)."\r
+\r
+#: admin/settings.php:1129\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr "Fare üstüne geldiğinde bağlantıların rengi (Varsayılan değer 333333)."\r
+\r
+#: admin/settings.php:1137\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr "Yazı Başlığı Metni Rengi (Varsayılan değer 333333)."\r
+\r
+#: admin/settings.php:1145\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+"Fare üstüne geldiğinde Yazı Başlığı Metni Rengi (Varsayılan değer 000000)."\r
+\r
+#: admin/settings.php:1153\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr "Kenarçubuğu Üstlük Arkaplan Rengi (Varsayılan değer 444444)."\r
+\r
+#: admin/settings.php:1162\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr "Kenarçubuğu Üstlük Metin Rengi (Varsayılan değer 2EA5FD)."\r
+\r
+#: admin/settings.php:1170\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr "Altlık Bileşen Metin Rengi (Varsayılan değer 0D85CC)."\r
+\r
+#: admin/settings.php:1178\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr "Altlık Bileşen Bağlantısı Rengi (Varsayılan değer 666666)."\r
+\r
+#: admin/settings.php:1186\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+"Fare üstüne geldiğinde Altlık Bileşen Bağlantısı Rengi (Varsayılan değer "\r
+"888888)."\r
+\r
+#: admin/settings.php:1198 admin/settings.php:1259\r
+msgid "White"\r
+msgstr "Beyaz"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Light"\r
+msgstr "Açık"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Light Gray"\r
+msgstr "Açık Gri"\r
+\r
+#: admin/settings.php:1198 admin/settings.php:1259\r
+msgid "Gray"\r
+msgstr "Gri"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Dark Gray"\r
+msgstr "Koyu Gri"\r
+\r
+#: admin/settings.php:1198\r
+msgid "Black"\r
+msgstr "Siyah"\r
+\r
+#: admin/settings.php:1206\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+"Bu ayar altyazılarınızın görüntüsünü değiştirir. Altyazı eklenmeyen "\r
+"görüntüler etkilenmez."\r
+\r
+#: admin/settings.php:1222\r
+msgid "The border around your inserted images. "\r
+msgstr "Eklenmiş görüntülerin etrafındaki sınır."\r
+\r
+#: admin/settings.php:1237\r
+msgid "The image on top of your captions. "\r
+msgstr "Altyazılarınızın üstündeki görüntü."\r
+\r
+#: admin/settings.php:1252\r
+msgid "The sidebar list bullets. "\r
+msgstr "Kenarçubuğu imler listesi."\r
+\r
+#: admin/settings.php:1267\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default.<"\r
+msgstr ""\r
+"Yazı-metaları(Yazı başlıkları altında) arka planı. Varsayılan olarak gri.<"\r
+\r
+#: admin/settings.php:1275 admin/settings.php:1291 admin/settings.php:1308\r
+#: admin/settings.php:1323 admin/settings.php:1338 admin/settings.php:1368\r
+#: admin/settings.php:1383 admin/settings.php:1399 admin/settings.php:1442\r
+#: admin/settings.php:1457 admin/settings.php:1472 admin/settings.php:1487\r
+#: admin/settings.php:1502 admin/settings.php:1517 admin/settings.php:1532\r
+#: admin/settings.php:1547\r
+msgid "Show"\r
+msgstr "Göster"\r
+\r
+#: admin/settings.php:1275 admin/settings.php:1291 admin/settings.php:1308\r
+#: admin/settings.php:1323 admin/settings.php:1338 admin/settings.php:1368\r
+#: admin/settings.php:1399 admin/settings.php:1442 admin/settings.php:1457\r
+#: admin/settings.php:1472 admin/settings.php:1487 admin/settings.php:1502\r
+#: admin/settings.php:1517 admin/settings.php:1532 admin/settings.php:1547\r
+msgid "Hide"\r
+msgstr "Gizle"\r
+\r
+#: admin/settings.php:1283\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr "Yazıları ayırmak için yatay kuralı göster ya da gizle."\r
+\r
+#: admin/settings.php:1299\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+"İçerik alanındaki(yazılar, sayfalar, vb.) listeler yanındaki imleri göster "\r
+"ya da gizle."\r
+\r
+#: admin/settings.php:1316\r
+msgid ""\r
+"Hide or show your blog's Title and Description in the header (recommended if "\r
+"you have a custom header image with text)."\r
+msgstr ""\r
+"Blogunuzun üstlükteki Başlık ve Tanımını göster ya da gizle (eğer metinle "\r
+"birlikte özel bir başlık görüntüsü kullanıyorsanız önerilir)."\r
+\r
+#: admin/settings.php:1331\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr "<i>Oluşturulan</i> sayfalarda Sayfa başlıklarını göster ya da gizle."\r
+\r
+#: admin/settings.php:1346\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr "<i>Kategori</i> sayfalarında Sayfa başlıklarını göster ya da gizle."\r
+\r
+#: admin/settings.php:1361\r
+msgid "Hide table borders and background color."\r
+msgstr "Tablo sınırlarını ve arka plan rengini gizle."\r
+\r
+#: admin/settings.php:1376\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+"Yorum formunun altındaki açıklama metnini gizle. (şu şekilde başlayan "\r
+"<i>You may use these HTML tags and attributes:...</i>)."\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide in posts"\r
+msgstr "Yazılar içinde gizle"\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide in pages"\r
+msgstr "Sayfalar içinde gizle"\r
+\r
+#: admin/settings.php:1383\r
+msgid "Hide everywhere"\r
+msgstr "Her yerde gizle"\r
+\r
+#: admin/settings.php:1391\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+"Varsayılan olarak yoruma kapalı sayfa ya da yazılarda bulunan <b>Yoruma "\r
+"kapalı</b> metnini gizle."\r
+\r
+#: admin/settings.php:1407\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+"Yoruma kapalı metinlerin yanında bulunan <b>Yoruma kapalı</b>metnini gizle."\r
+\r
+#: admin/settings.php:1423\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+"Yukarı Ger Dön tuşunu etkinleştir. Tuş sayfada aşağı inildiğinde gözükür."\r
+\r
+#: admin/settings.php:1430\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+"Altlığa özel metin ya da HTML kodu yerleştirin. <br /> HTML kodunu görüntü, "\r
+"bağlantı ve © gibi özel karakterler eklemek için kullanabilirsiniz."\r
+\r
+#: admin/settings.php:1450\r
+msgid ""\r
+"Hide or show the <strong>Leave a comment</strong> or <strong>x Comments</"\r
+"strong> next to posts or post excerpts."\r
+msgstr ""\r
+"<strong>Yorum ekle</strong> ya da <strong>Yorumlar</strong> seçeneğini "\r
+"yazıların ya da özetlerin yanında göster ya da gizle."\r
+\r
+#: admin/settings.php:1465\r
+msgid "Hide or show the post date."\r
+msgstr "Yazı tarihini göster ya da gizle."\r
+\r
+#: admin/settings.php:1480\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+"Yazı zamanını yazı tarihiyle birlikte göster. Yazır tarihi gizlenmiş ise "\r
+"yazı zamanı gözükmez."\r
+\r
+#: admin/settings.php:1495\r
+msgid "Hide or show the post author."\r
+msgstr "Yazı yazarını göster ya da gizle."\r
+\r
+#: admin/settings.php:1510\r
+msgid "Hide the post category."\r
+msgstr "Yazı kategorisini gizle."\r
+\r
+#: admin/settings.php:1525\r
+msgid "Hide the post tags."\r
+msgstr "Yazı etiketlerini gizle."\r
+\r
+#: admin/settings.php:1540\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr "\"Permalinke yer işareti koy\" seçeneğini gizle."\r
+\r
+#: admin/settings.php:1555\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+"Bütün yazı metalarını gizle. Bütün meta bilgileri ve meta alanları "\r
+"gizlenecektir."\r
+\r
+#: admin/settings.php:1568 admin/settings.php:1583 admin/settings.php:1599\r
+msgid "Excerpt"\r
+msgstr "Özet"\r
+\r
+#: admin/settings.php:1568 admin/settings.php:1583 admin/settings.php:1599\r
+msgid "Full Post"\r
+msgstr "Tüm Yazı"\r
+\r
+#: admin/settings.php:1576\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+"Ana sayfada özetler. Sadece standart yazılar etkilenecektir. Tüm diğer girdi "\r
+"formatları (görüntü, sohbet, alıntı, vb.) kendi formatlarına sahip olmaya "\r
+"devam edecektir."\r
+\r
+#: admin/settings.php:1591\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+"Ana sayfanızdaki yapışkan yazıların tümünün mü yoksa özetinin mi gözükmesini "\r
+"istediğinize karar verin."\r
+\r
+#: admin/settings.php:1607\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+"Arşiv, kategori ve arama sayfalarında özetler. Yukarıda olduğu gibi sadece "\r
+"standart girdiler etkilenecektir."\r
+\r
+#: admin/settings.php:1615\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+"Özetin sahip olabileceği kelime sayısı. Bu sayıya ulaşıldığında yazı "\r
+"otomatik olarak <i>Okumaya devam et</i> bağlantısıyla\n"\r
+"\t\t\t\t\t\t\tkesilecek ve okuyucu tam yazı sayfasına yönlendirilecek."\r
+\r
+#: admin/settings.php:1631\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+"Dergi düzenini etkinleştir. Bu düzen yazı olan sayfalara etki eder ve sıra "\r
+"başına 2 yazı ekler."\r
+\r
+#: admin/settings.php:1638\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr "Otomatik olarak özetlere eklenen ('[...]) üç noktanın yerine geçer."\r
+\r
+#: admin/settings.php:1645\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr "Özetlerdeki 'Okumaya Devam Et' bağlantısını düzenle."\r
+\r
+#: admin/settings.php:1660\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr "Varsayılan olarak WordPress özetleri tüm HTML etiketlerini kaldırır."\r
+\r
+#: admin/settings.php:1691\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+"Öne çıkan görüntüleri yazılarda küçük resim olarak göster. Görüntüler Öne "\r
+"Çıkan Görüntüler kısmından her yazı için ayrıca seçilmelidir."\r
+\r
+#: admin/settings.php:1706\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+"Yazıya eklediğiniz ilk görüntüyü küçük resim olarak gösterin. Eğer bu "\r
+"seçeneği etkinleştirirseniz, Öne Çıkan Görüntüleri kullansanız bile ilk "\r
+"eklediğiniz görüntü küçük resim olarak gözükecektir."\r
+\r
+#: admin/settings.php:1722\r
+msgid "Thumbnail alignment."\r
+msgstr "Küçük resim hizalaması."\r
+\r
+#: admin/settings.php:1739\r
+msgid ""\r
+"The size you want the thumbnails to have (in pixels). By default imges will "\r
+"be scaled with aspect ratio kept. Choose to crop the images if you want the "\r
+"exact size."\r
+msgstr ""\r
+"Küçük resimleriniz için istediğiniz boyut(piksel olarak). Varsayılan olarak "\r
+"görünüm oranı tutularak oranlacaktır. Tam boyut istiyorsanız, görüntüleri "\r
+"kesin."\r
+\r
+#: admin/settings.php:1755\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+"Öne Çıkan Görüntüleri başlıklarda göster. Eğer seçtiğiniz Öne Çıkan Görüntü "\r
+"başlık boyutundan büyük ya da başlık boyutuyla aynı ise yazıda bu başlıkla "\r
+"yer değiştirecek."\r
+\r
+#: admin/settings.php:1776\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+"Açılan menüden istediğiniz sosyal ağı seçin ve ilgili adresi gerekli alana "\r
+"girin (Örnek: <i>http://www.facebook.com/yourname</i> )"\r
+\r
+#: admin/settings.php:1790\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr "5 farklı sosyal site ve adrese kadar ekleyebilirsiniz."\r
+\r
+#: admin/settings.php:1804\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr "Toplamda seçebileceğin 27 sosyal ağ bulunmakta."\r
+\r
+#: admin/settings.php:1818\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr "İstediğiniz kadar girdiyi boş bırakabilirsiniz."\r
+\r
+#: admin/settings.php:1832\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr "Aynı sosyal medyayı istediğiniz kadar seçebilirsiniz."\r
+\r
+#: admin/settings.php:1863\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr "Sosyal ağ imlerini göstermek istediğiniz <b>alanı</b> seçiniz."\r
+\r
+#: admin/settings.php:1884\r
+msgid ""\r
+"Make the site header into a clickable link that links to your index page."\r
+msgstr ""\r
+"Site başlığını içerik sayfanıza yönlendirecek şekilde tıklanabilir bağlantı "\r
+"olarak ayarlayın."\r
+\r
+#: admin/settings.php:1899\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+"İçerik alanının üzerinde ekmek kırıntılarını göster. Ekmek kırıntıları site "\r
+"içerisinde bulunduğunuz yeri gösteren bir navigasyon çeşitidir."\r
+\r
+#: admin/settings.php:1914\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+"Numaralandırılmış sayfaları göster. Birden fazla sayfa olduğunda, <b>Daha "\r
+"Eski Yazılar</b> ve <b>Daha Yeni Yazılar</b> yerine numaralandırılmış "\r
+"sayfaları gösterir."\r
+\r
+#: admin/settings.php:1929\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in. "\r
+msgstr ""\r
+"Mobil görüntüyü etkinleştirin ve Mantra'yı duyarlı hale getirin. Blogunuzun "\r
+"görünümü ve düzeni hangi cihazda görüntülendiğini ve cihazın çözünürlüğüne "\r
+"göre değişir."\r
+\r
+#: admin/settings.php:1939\r
+msgid "Upload or select favicon from gallery"\r
+msgstr "Favicon yükleyin ya da galeriden seçin"\r
+\r
+#: admin/settings.php:1943\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+"Sınırlandırma: Görüntü olmak zorunda. En fazla 64x64 piksel olmalı. Tavsiye "\r
+"edilen dosya uzantıları, .ico ve .png."\r
+\r
+#: admin/settings.php:1951\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br /> Your custom CSS will be preserved when updating the "\r
+"theme."\r
+msgstr ""\r
+"Özel CSS'i buraya ekleyin. Her türlü CSS deklerasyonu Mantra CSS'i üzerine "\r
+"yazılacaktır(Mantra Ayarları sayfasında düzenlediğiniz seçenekleriniz bile). "\r
+"<br /> Özel CSS'iniz tema güncellemesi yaptığınızda korunacaktır."\r
+\r
+#: admin/settings.php:1958\r
+msgid ""\r
+"Insert your custom Javascript code here. (Google Analytics and any other "\r
+"forms of Analytic software)."\r
+msgstr ""\r
+"Özel JavaScript kodunuzu buraya yerleştirin. (Google Analytics ya da başka "\r
+"herhangi bir Analytics yazılımı)."\r
+\r
+#: admin/settings.php:1971\r
+msgid ""\r
+"Enable Mantra's Search Engine Optimization. This is enabled by default and "\r
+"should only be disabled if you are using a SEO plugin."\r
+msgstr ""\r
+"Mantra SEO'sunu etkinleştir. Varsayılan olarak etkinleştirilmiştir ve sadece "\r
+"bir SEO plugin'i kullanıyorsanız etkisiz kılın."\r
+\r
+#: admin/settings.php:1983\r
+msgid "Auto"\r
+msgstr "Oto"\r
+\r
+#: admin/settings.php:1983\r
+msgid "Manual"\r
+msgstr "Manuel"\r
+\r
+#: includes/theme-functions.php:213\r
+msgid "Home Page"\r
+msgstr "Ana Sayfa"\r
+\r
+#: includes/theme-loop.php:146\r
+msgid "says:"\r
+msgstr "diyorki:"\r
+\r
+#: includes/theme-loop.php:152\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "Yorumunuz onay bekliyor."\r
+\r
+#: includes/theme-loop.php:159\r
+msgid "at"\r
+msgstr "halinde"\r
+\r
+#: includes/theme-loop.php:159 includes/theme-loop.php:176\r
+msgid "(Edit)"\r
+msgstr "(Düzenle)"\r
+\r
+#: includes/theme-loop.php:176\r
+msgid "Pingback: "\r
+msgstr "Pingback:"\r
+\r
+#: includes/theme-loop.php:213\r
+msgid "By "\r
+msgstr "Tarafından"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "Leave a comment"\r
+msgstr "Yorum bırakın"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> Yorum Yap"\r
+\r
+#: includes/theme-loop.php:224\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> Yorumlar"\r
+\r
+#: includes/theme-loop.php:247\r
+msgid " Bookmark the "\r
+msgstr "Yer işareti koy"\r
+\r
+#: includes/theme-loop.php:247 includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "Permalink to"\r
+msgstr "Buraya permalink"\r
+\r
+#: includes/theme-loop.php:247 includes/theme-loop.php:249\r
+#: includes/theme-loop.php:251\r
+msgid "permalink"\r
+msgstr "permalink"\r
+\r
+#: includes/theme-loop.php:249 includes/theme-loop.php:251\r
+msgid "Bookmark the "\r
+msgstr "Yer işareti koy"\r
+\r
+#: includes/theme-loop.php:273\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> Daha eski yazılar"\r
+\r
+#: includes/theme-loop.php:274\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "Daha yeni yazılar <span class=\"meta-nav\">»</span>"\r
+\r
+#: includes/theme-seo.php:26\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "Sayfalar %s"\r
+\r
+#: includes/theme-setup.php:91\r
+msgid "Primary Navigation"\r
+msgstr "Birincil Navigasyon"\r
+\r
+#: includes/theme-setup.php:92\r
+msgid "Top Navigation"\r
+msgstr "Üst Navigasyon"\r
+\r
+#: includes/theme-setup.php:93\r
+msgid "Footer Navigation"\r
+msgstr "Alt Navigasyon"\r
+\r
+#: includes/theme-setup.php:137\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: includes/theme-setup.php:198\r
+msgid "Skip to content"\r
+msgstr "İçeriğe atla"\r
+\r
+#: includes/theme-setup.php:224\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr "Birincil Bileşen Alanı - Kenarçubuğu 1"\r
+\r
+#: includes/theme-setup.php:226\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr "Birincil Bileşen Alanı - Kenarçubuğu 2"\r
+\r
+#: includes/theme-setup.php:235\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr "İkincil Bileşen Alanı - Kenarçubuğu 1"\r
+\r
+#: includes/theme-setup.php:237\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr "İkincil Bileşen Alanı - Kenarçubuğu 2"\r
+\r
+#: includes/theme-setup.php:246\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr "Üçüncü Bileşen Alanı - Kenarçubuğu 1"\r
+\r
+#: includes/theme-setup.php:248\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr "Üçüncü Bileşen Alanı - Kenarçubuğu 2"\r
+\r
+#: includes/theme-setup.php:257\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr "Dördüncü Bileşen Alanı - Kenarçubuğu 2"\r
+\r
+#: includes/theme-setup.php:259\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr "Dördüncü bileşen alanı - Kenarçubuğu 2"\r
+\r
+#: includes/theme-setup.php:268\r
+msgid "First Footer Widget Area"\r
+msgstr "Birinci Altlık Bileşen Alanı"\r
+\r
+#: includes/theme-setup.php:270\r
+msgid "First footer widget area"\r
+msgstr "Birinci altlık bileşen alanı"\r
+\r
+#: includes/theme-setup.php:279\r
+msgid "Second Footer Widget Area"\r
+msgstr "İkinci Altlık Bileşen Alanı"\r
+\r
+#: includes/theme-setup.php:281\r
+msgid "Second footer widget area"\r
+msgstr "İkinci atlık bileşen alanı"\r
+\r
+#: includes/theme-setup.php:290\r
+msgid "Third Footer Widget Area"\r
+msgstr "Üçüncü Altlık Bileşen Alanı"\r
+\r
+#: includes/theme-setup.php:292\r
+msgid "The third footer widget area"\r
+msgstr "Üçüncü altlık bileşen alanı"\r
+\r
+#: includes/theme-setup.php:301\r
+msgid "Fourth Footer Widget Area"\r
+msgstr "Dördüncü Altlık Bileşen Alanı"\r
+\r
+#: includes/theme-setup.php:303\r
+msgid "The fourth footer widget area"\r
+msgstr "Dördüncü altlık bileşen alanı"\r
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: Mantra International\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-06-12 12:43+0200\n"
+"PO-Revision-Date: 2012-09-11 21:12+0800\n"
+"Last-Translator: 林轩立 <l19980623@gmail.com>\n"
+"Language-Team: Cryout Creations <contact@htx.ro>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;_x;_ex;_nx;"
+"esc_attr__;esc_attr_e;_n_noop;_nx_noop\n"
+"X-Poedit-Basepath: ..\n"
+"Plural-Forms: nplurals=2;plural=n>1\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:25
+#, php-format
+msgid "Daily Archives: %s"
+msgstr "日度归档: %s"
+
+#: archive.php:27
+#, php-format
+msgid "Monthly Archives: %s"
+msgstr "月度归档: %s"
+
+#: archive.php:27
+msgid "F Y"
+msgstr "F Y"
+
+#: archive.php:29
+#, php-format
+msgid "Yearly Archives: %s"
+msgstr "年度归档: %s"
+
+#: archive.php:29
+msgid "Y"
+msgstr "Y"
+
+#: archive.php:31
+msgid "Blog Archives"
+msgstr "博客归档"
+
+#: archive.php:57 author.php:74 category.php:50 front-page.php:83
+msgid "Nothing Found"
+msgstr "什么都没找到"
+
+#: archive.php:61 author.php:78 category.php:54 front-page.php:87
+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 "回到 %s"
+
+#: attachment.php:29
+msgid "By"
+msgstr "由"
+
+#: attachment.php:33
+#, php-format
+msgid "View all posts by %s"
+msgstr "查看所有由 %s 发布的文章"
+
+#: attachment.php:40
+msgid "Published"
+msgstr "已发表"
+
+#: attachment.php:50
+#, php-format
+msgid "Full size is %s pixels"
+msgstr "完整图片大小为 %s 像素"
+
+#: attachment.php:53
+msgid "Link to full-size image"
+msgstr "查看完整图片"
+
+#: attachment.php:60 attachment.php:107 content-aside.php:48
+#: content-chat.php:48 content-gallery.php:64 content-image.php:41
+#: content-link.php:48 content-quote.php:46 content-status.php:47
+#: content.php:85 front-page.php:42
+msgid "Edit"
+msgstr "编辑"
+
+#: attachment.php:100
+msgid "Continue reading"
+msgstr "继续阅读"
+
+#: attachment.php:101 content-aside.php:39 content-chat.php:37
+#: content-gallery.php:54 content-image.php:32 content-link.php:37
+#: content-quote.php:36 content-status.php:38 content.php:57 content.php:74
+#: front-page.php:41
+msgid "Pages:"
+msgstr "页码:"
+
+#: author.php:28
+#, php-format
+msgid "Author Archives: %s"
+msgstr "作者归档: %s"
+
+#: author.php:49
+#, php-format
+msgid "About %s"
+msgstr "关于 %s"
+
+#: category.php:19
+#, php-format
+msgid "Category Archives: %s"
+msgstr "分类存档 %s"
+
+#: comments.php:18
+msgid ""
+"This post is password protected. Enter the password to view any comments."
+msgstr "此文章由密码保护。输入密码以查看所有评论。"
+
+#: comments.php:35
+#, php-format
+msgid "One Response to %2$s"
+msgid_plural "%1$s Responses to %2$s"
+msgstr[0] "%2$s 有一个回复"
+msgstr[1] "%2$s 有 %1$s 个回复"
+
+#: comments.php:41 comments.php:60
+msgid "Older Comments"
+msgstr "较旧的评论"
+
+#: comments.php:42 comments.php:61
+msgid "Newer Comments"
+msgstr "较新的评论"
+
+#: comments.php:72 front-page.php:47
+msgid "Comments are closed."
+msgstr "评论功能已关闭。"
+
+#: content-aside.php:16 content-chat.php:16 content-gallery.php:16
+#: content-gallery.php:48 content-image.php:15 content-link.php:16
+#: content-quote.php:14 content-status.php:15 content.php:24 content.php:28
+#, php-format
+msgid "Permalink to %s"
+msgstr "至 %s 的永久链接"
+
+#: content-aside.php:21
+msgid "Aside"
+msgstr "标准"
+
+#: content-aside.php:38 content-chat.php:36 content-gallery.php:32
+#: content-image.php:31 content-link.php:36 content-quote.php:35
+#: content-status.php:37
+msgid "Continue reading <span class=\"meta-nav\">→</span>"
+msgstr "继续阅读 <span class=\"meta-nav\">→</span>"
+
+#: content-aside.php:46 content-chat.php:44 content-gallery.php:61
+#: content-image.php:38 content-link.php:44 content-quote.php:43
+#: content-status.php:45 content.php:83
+msgid "Tagged"
+msgstr "标签:"
+
+#: content-chat.php:20
+msgid "Chat"
+msgstr "聊天"
+
+#: content-gallery.php:20
+msgid "Gallery"
+msgstr "相册"
+
+#: content-gallery.php:47
+#, php-format
+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] "该相册含 <a %1$s>%2$s 张照片</a>。"
+msgstr[1] "该相册含 <a %1$s>%2$s 张照片</a>。"
+
+#: content-image.php:19
+msgid "Image"
+msgstr "图像"
+
+#: content-link.php:20
+msgid "Link"
+msgstr "链接"
+
+#: content-quote.php:19
+msgid "Quote"
+msgstr "引语"
+
+#: content-status.php:29
+msgid "Status"
+msgstr "状态"
+
+#: content.php:33
+msgid "Featured"
+msgstr "推荐"
+
+#: footer.php:43
+msgid "Semantic Personal Publishing Platform"
+msgstr "个人信息发布平台"
+
+#: functions.php:193
+msgid "Primary Navigation"
+msgstr ""
+
+#: functions.php:194
+msgid "Top Navigation"
+msgstr ""
+
+#: functions.php:195
+msgid "Footer Navigation"
+msgstr ""
+
+#: functions.php:236
+msgid "mantra"
+msgstr "mantra"
+
+#: functions.php:414
+msgid "says:"
+msgstr "说:"
+
+#: functions.php:420
+msgid "Your comment is awaiting moderation."
+msgstr "您的评论正在审核中。"
+
+#: functions.php:427
+msgid "at"
+msgstr "于"
+
+#: functions.php:427 functions.php:444
+msgid "(Edit)"
+msgstr "(编辑)"
+
+#: functions.php:444
+msgid "Pingback: "
+msgstr "引用通告:"
+
+#: functions.php:463
+msgid "Primary Widget Area - Sidebar 1"
+msgstr ""
+
+#: functions.php:465
+msgid "Primary widget area - Sidebar 1"
+msgstr ""
+
+#: functions.php:474
+msgid "Secondary Widget Area - Sidebar 1"
+msgstr ""
+
+#: functions.php:476
+msgid "Secondary widget area - Sidebar 1"
+msgstr ""
+
+#: functions.php:485
+msgid "Third Widget Area - Sidebar 2"
+msgstr ""
+
+#: functions.php:487
+msgid "Third widget area - Sidebar 2"
+msgstr ""
+
+#: functions.php:496
+msgid "Fourth Widget Area - Sidebar 2"
+msgstr ""
+
+#: functions.php:498
+msgid "Fourth widget area - Sidebar 2"
+msgstr ""
+
+#: functions.php:507
+msgid "First Footer Widget Area"
+msgstr ""
+
+#: functions.php:509
+msgid "First footer widget area"
+msgstr ""
+
+#: functions.php:518
+msgid "Second Footer Widget Area"
+msgstr ""
+
+#: functions.php:520
+msgid "Second footer widget area"
+msgstr ""
+
+#: functions.php:529
+msgid "Third Footer Widget Area"
+msgstr ""
+
+#: functions.php:531
+msgid "The third footer widget area"
+msgstr ""
+
+#: functions.php:540
+msgid "Fourth Footer Widget Area"
+msgstr ""
+
+#: functions.php:542
+msgid "The fourth footer widget area"
+msgstr ""
+
+#: functions.php:582
+msgid "By "
+msgstr "由:"
+
+#: functions.php:593
+msgid "Leave a comment"
+msgstr "发表评论"
+
+#: functions.php:593
+msgid "<b>1</b> Comment"
+msgstr "<b>1</b> 个评论"
+
+#: functions.php:593
+msgid "<b>%</b> Comments"
+msgstr "<b>%</b> 个评论"
+
+#: functions.php:613
+msgid " Bookmark the "
+msgstr "添加书签:"
+
+#: functions.php:613 functions.php:615 functions.php:617
+msgid "Permalink to"
+msgstr "永久链接"
+
+#: functions.php:613 functions.php:615 functions.php:617
+msgid "permalink"
+msgstr "永久链接:"
+
+#: functions.php:615 functions.php:617
+msgid "Bookmark the "
+msgstr "添加书签:"
+
+#: functions.php:639
+msgid "<span class=\"meta-nav\">«</span> Older posts"
+msgstr "<span class=\"meta-nav\">«</span> 较旧文章"
+
+#: functions.php:640
+msgid "Newer posts <span class=\"meta-nav\">»</span>"
+msgstr "较新文章 <span class=\"meta-nav\">»</span>"
+
+#: functions.php:836
+#, php-format
+msgid "Page %s"
+msgstr "第 %s 页"
+
+#: functions.php:972
+msgid ""
+"Before you can upload your import file, you will need to fix the following "
+"error:"
+msgstr "请在上传文件前修复以下错误:"
+
+#: functions.php:980
+msgid "Import Mantra Theme Options"
+msgstr ""
+
+#: functions.php:982
+msgid ""
+"Hi! This is where you import the Mantra settings.<i> Please remember that "
+"this is still an experimental feature.</i>"
+msgstr ""
+
+#: functions.php:984
+msgid "Just choose a file from your computer:"
+msgstr ""
+
+#: functions.php:986
+#, php-format
+msgid "Maximum size: %s"
+msgstr ""
+
+#: functions.php:992
+msgid "And import!"
+msgstr ""
+
+#: functions.php:1054
+msgid "Import Mantra Theme Options "
+msgstr ""
+
+#: functions.php:1057
+msgid "Great! The options have been imported!"
+msgstr ""
+
+#: functions.php:1058
+msgid "Go back to the Mantra options page and check them out!"
+msgstr ""
+
+#: functions.php:1061 functions.php:1067 functions.php:1073
+msgid "Oops, there's a small problem."
+msgstr ""
+
+#: functions.php:1062
+msgid ""
+"The uploaded file does not contain valid Mantra options. Make sure the file "
+"is exported from the Mantra Options page."
+msgstr ""
+
+#: functions.php:1068
+msgid "The uploaded file could not be read."
+msgstr ""
+
+#: functions.php:1074
+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 ""
+
+#: functions.php:1083
+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 ""
+
+#: functions.php:1089
+msgid "ERROR: You are not authorised to perform that operation"
+msgstr "错误: 您未被授权进行此操作。"
+
+#: header.php:104
+msgid "Skip to content"
+msgstr "跳转至内容"
+
+#: search.php:19
+#, php-format
+msgid "Search Results for: %s"
+msgstr "%s 的搜索结果"
+
+#: search.php:38
+#, php-format
+msgid "No search results for: %s"
+msgstr "没有 %s 的搜索结果"
+
+#: sidebar.php:34
+msgid "Archives"
+msgstr "档案"
+
+#: sidebar.php:41
+msgid "Meta"
+msgstr "元"
+
+#: single.php:18 single.php:58
+msgid "Previous post link"
+msgstr "上一篇文章"
+
+#: single.php:19 single.php:59
+msgid "Next post link"
+msgstr "下一篇文章"
+
+#: single.php:44
+msgid "View all posts by "
+msgstr "查看所有文章:"
+
+#: tag.php:20
+#, php-format
+msgid "Tag Archives: %s"
+msgstr "标签归档: %s"
+
+#: admin/mantra-admin-functions.php:31
+msgid "Layout Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:32
+msgid "Presentation Page"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:33
+msgid "Text Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:34
+msgid "Color Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:35
+msgid "Graphics Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:36
+msgid "Post Information Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:37
+msgid "Post Excerpt Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:38
+msgid "Featured Image Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:39
+msgid "Social Media Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:40
+msgid "Miscellaneous Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:42
+msgid "Main Layout"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:43
+msgid "Content / Sidebar Width"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:44
+msgid "Header Image Height"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:46
+msgid "Enable Presentation Page"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:47
+msgid "Slider Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:48
+msgid "Slides"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:49
+msgid "Presentation Page Columns"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:50
+msgid "Extras"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:52
+msgid "General Font"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:53
+msgid "General Font Size"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:54
+msgid "Post Title Font "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:55
+msgid "Post Title Font Size"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:56
+msgid "Sidebar Font"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:57
+msgid "SideBar Font Size"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:58
+msgid "Sub-Headers Font"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:59
+msgid "Force Text Align"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:60
+msgid "Paragraph indent"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:61
+msgid "Header indent"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:62
+msgid "Line Height"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:63
+msgid "Word spacing"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:64
+msgid "Letter spacing"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:65
+msgid "Text shadow"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:67
+msgid "Background Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:68
+msgid "Header (Banner and Menu) Background Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:70
+msgid "Site Title Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:71
+msgid "Site Description Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:73
+msgid "Content Text Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:74
+msgid "Links Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:75
+msgid "Links Hover Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:76
+msgid "Post Title Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:77
+msgid "Post Title Hover Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:78
+msgid "Sidebar Header Background Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:79
+msgid "Sidebar Header Text Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:80
+msgid "Footer Widget Background Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:81
+msgid "Footer Background Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:82
+msgid "Footer Widget Header Text Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:83
+msgid "Footer Widget Link Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:84
+msgid "Footer Widget Hover Color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:86
+msgid "Caption Border"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:87
+msgid "Post Images Border"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:88
+msgid "Caption Pin"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:89
+msgid "Sidebar Menu Bullets"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:90
+msgid "Meta Area Background"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:91
+msgid "Post Separator"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:92
+msgid "Content List Bullets"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:93
+msgid "Title and Description"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:94
+msgid "Page Titles"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:95
+msgid "Category Page Titles"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:96
+msgid "Hide Tables"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:97
+msgid "Back to Top button"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:98
+msgid "Text Under Comments"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:99
+msgid "Comments are closed text"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:100
+msgid "Comments off"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:101
+msgid "Insert footer copyright"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:103
+msgid "Post Date"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:104
+msgid "Post Time"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:105
+msgid "Post Author"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:106
+msgid "Post Category"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:107
+msgid "Post Tags"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:108
+msgid "Post Permalink"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:109
+msgid "All Post Metas"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:111
+msgid "Post Excerpts on Home Page"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:112
+msgid "Affect Sticky Posts"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:113
+msgid "Post Excerpts on Arhive and Category Pages"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:114
+msgid "Number of Words for Post Excerpts "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:115
+msgid "Magazine Layout"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:116
+msgid "Excerpt suffix"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:117
+msgid "Continue reading link text "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:118
+msgid "HTML tags in Excerpts"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:120
+msgid "Featured Images as POST Thumbnails "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:121
+msgid "Auto Select Images From Posts "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:122
+msgid "Thumbnails Alignment "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:123
+msgid "Thumbnails Size "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:124
+msgid "Featured Images as HEADER Images "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:126
+msgid "Link nr. 1"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:127
+msgid "Link nr. 2"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:128
+msgid "Link nr. 3"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:129
+msgid "Link nr. 4"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:130
+msgid "Link nr. 5"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:131
+msgid "Socials display"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:133
+msgid "Make Site Header a Link"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:134
+msgid "Breadcrumbs"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:135
+msgid "Pagination"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:136
+msgid "Mobile view"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:137
+msgid "FavIcon"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:138
+msgid "Custom CSS"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:228
+msgid "One column (no sidebars)"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:229
+msgid "Two columns, sidebar on the right"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:230
+msgid "Two columns, sidebar on the left"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:231
+msgid "Three columns, sidebars on the right"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:232
+msgid "Three columns, sidebars on the left"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:233
+msgid "Three columns, one sidebar on each side"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:248
+msgid "Choose your layout "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:258
+msgid "Absolute"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:258
+msgid "Relative"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:259
+msgid "Dimensions to use: "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:358 admin/mantra-admin-functions.php:378
+msgid "Content ="
+msgstr ""
+
+#: admin/mantra-admin-functions.php:359 admin/mantra-admin-functions.php:379
+msgid "Sidebar(s) ="
+msgstr ""
+
+#: admin/mantra-admin-functions.php:360 admin/mantra-admin-functions.php:380
+msgid "Total width ="
+msgstr ""
+
+#: admin/mantra-admin-functions.php:369
+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/mantra-admin-functions.php:389
+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/mantra-admin-functions.php:413
+msgid ""
+"Select the header's height. After saving the settings go and upload your new "
+"header image. The header's width will be equal to the Total Site Width = "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:426 admin/mantra-admin-functions.php:1117
+#: admin/mantra-admin-functions.php:1179 admin/mantra-admin-functions.php:1487
+#: admin/mantra-admin-functions.php:1549 admin/mantra-admin-functions.php:1742
+#: admin/mantra-admin-functions.php:1771 admin/mantra-admin-functions.php:1794
+#: admin/mantra-admin-functions.php:1809 admin/mantra-admin-functions.php:1850
+#: admin/mantra-admin-functions.php:1982 admin/mantra-admin-functions.php:1997
+#: admin/mantra-admin-functions.php:2012 admin/mantra-admin-functions.php:2027
+msgid "Enable"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:426 admin/mantra-admin-functions.php:1117
+#: admin/mantra-admin-functions.php:1179 admin/mantra-admin-functions.php:1487
+#: admin/mantra-admin-functions.php:1549 admin/mantra-admin-functions.php:1742
+#: admin/mantra-admin-functions.php:1771 admin/mantra-admin-functions.php:1794
+#: admin/mantra-admin-functions.php:1809 admin/mantra-admin-functions.php:1850
+#: admin/mantra-admin-functions.php:1982 admin/mantra-admin-functions.php:1997
+#: admin/mantra-admin-functions.php:2012 admin/mantra-admin-functions.php:2027
+msgid "Disable"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:434
+msgid ""
+"Enable the presentation front-page. This will become your new home page and "
+"it will replace whatever page you have selected as homepage. It has a slider "
+"and columns for presentation\n"
+"\t\ttext and images."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:443
+msgid "Slider Dimensions:"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:444
+msgid "width"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:445
+msgid "height"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:446
+msgid ""
+"The dimensions of your slider. Make sure your images are of the same size."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:449
+msgid "Animation:"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "Random"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "Fold"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "Fade"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "SlideInRight"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "SlideInLeft"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "SliceDown"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "SliceDownLeft"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "SliceUp"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "SliceUpLeft"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "SliceUpDown"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "SliceUpDownLeft"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "BoxRandom"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "BoxRain"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "BoxRainReverse"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "BoxRainGrow"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:451
+msgid "BoxRainGrowReverse"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:459
+msgid "The transition effect your slider will have."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:461
+msgid "Animation Time:"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:462 admin/mantra-admin-functions.php:466
+msgid "milliseconds (1000ms = 1 second) "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:463
+msgid "The time in which the transition animation will take place."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:465
+msgid "Pause Time:"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:467
+msgid "The time in which a slide will be still and visible."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:470
+msgid "Slider navigation:"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:472
+msgid "Numbers"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:472
+msgid "Bullets"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:472 admin/mantra-admin-functions.php:1393
+msgid "None"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:480
+msgid "Your slider navigation type. Shown under the slider."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:482
+msgid "Slider arrows:"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:484
+msgid "Always Visible"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:484
+msgid "Visible on Hover"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:484
+msgid "Hidden"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:492
+msgid "The Left and Right arrows on your slider"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:536
+msgid "Select Category"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:594
+msgid "Slide 1"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:598 admin/mantra-admin-functions.php:613
+#: admin/mantra-admin-functions.php:628 admin/mantra-admin-functions.php:643
+#: admin/mantra-admin-functions.php:658 admin/mantra-admin-functions.php:702
+#: admin/mantra-admin-functions.php:717 admin/mantra-admin-functions.php:732
+#: admin/mantra-admin-functions.php:747
+msgid "Upload or select image from gallery"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:599 admin/mantra-admin-functions.php:614
+#: admin/mantra-admin-functions.php:629 admin/mantra-admin-functions.php:644
+#: admin/mantra-admin-functions.php:659 admin/mantra-admin-functions.php:703
+#: admin/mantra-admin-functions.php:718 admin/mantra-admin-functions.php:748
+msgid "Title"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:601 admin/mantra-admin-functions.php:616
+#: admin/mantra-admin-functions.php:631 admin/mantra-admin-functions.php:646
+#: admin/mantra-admin-functions.php:661 admin/mantra-admin-functions.php:705
+#: admin/mantra-admin-functions.php:720 admin/mantra-admin-functions.php:735
+#: admin/mantra-admin-functions.php:750
+msgid "Text"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:609
+msgid "Slide 2"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:624
+msgid "Slide 3"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:639
+msgid "Slide 4"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:654
+msgid "Slide 5"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:667
+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/mantra-admin-functions.php:678
+msgid "Number of columns:"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:688
+msgid "Image Height:"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:691
+msgid "Read more text:"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:694
+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/mantra-admin-functions.php:698
+msgid "1st Column"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:713
+msgid "2nd Column"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:728
+msgid "3rd Column"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:743
+msgid "4th Column"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:766
+msgid "Extra Text"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:766
+msgid "Top Title"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:768
+msgid "Second Title"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:771
+msgid "Title color"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:774
+msgid "The titles' color (Default value is 333333)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:776
+msgid "Bottom Text 1"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:778
+msgid "Bottom Text 2"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:781
+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/mantra-admin-functions.php:787
+msgid "Hide areas"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:800
+msgid "Hide the header area (image or background color)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:804
+msgid "Hide the main menu (the top navigation tabs)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:808
+msgid "Hide the footer widgets. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:812
+msgid "Hide the footer (copyright area)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:816
+msgid "Hide the white color. Only the background color remains."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:820
+msgid "Choose the areas to hide on the first page."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:851
+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/mantra-admin-functions.php:895
+msgid ""
+"Select the font family you'll use in your blog. All content text will be "
+"affected (including menu buttons). "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:896 admin/mantra-admin-functions.php:945
+#: admin/mantra-admin-functions.php:996 admin/mantra-admin-functions.php:1047
+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/mantra-admin-functions.php:943
+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/mantra-admin-functions.php:994
+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/mantra-admin-functions.php:1045
+msgid ""
+"Select the font family you want your subheaders to have (h2 - h6 tags will "
+"be affected). Leave 'Default' and the general font you selected will be used."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1057 admin/mantra-admin-functions.php:1072
+#: admin/mantra-admin-functions.php:1087 admin/mantra-admin-functions.php:1132
+#: admin/mantra-admin-functions.php:1147 admin/mantra-admin-functions.php:1162
+msgid "Default"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1065
+msgid ""
+"Post Header Font size. Leave 'Default' for normal settings (size value will "
+"be as set in the CSS)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1080
+msgid ""
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "
+"as set in the CSS)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1087 admin/mantra-admin-functions.php:1825
+msgid "Left"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1087 admin/mantra-admin-functions.php:1825
+msgid "Right"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1087
+msgid "Justify"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1087 admin/mantra-admin-functions.php:1825
+msgid "Center"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1095
+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/mantra-admin-functions.php:1109
+msgid "Choose the indent for your paragraphs."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1125
+msgid "Disable the default header and title indent (left margin)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1140
+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/mantra-admin-functions.php:1155
+msgid ""
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "
+"value will be as set in the CSS)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1170
+msgid ""
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "
+"value will be as set in the CSS)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1187
+msgid "Disable the default text shadow on headers and titles."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1199
+msgid "Background color (Default value is 444444)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1207
+msgid ""
+"Header background color (Default value is 333333). You can delete all inside "
+"text for no background color."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1215
+msgid "Footer widget-area background color. (Default value is 171717)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1223
+msgid "Footer background color (Default value is 222222)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1231
+msgid "Your blog's title color (Default value is 0D85CC)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1239
+msgid "Your blog's description color(Default value is 222222)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1247
+msgid "Content Text Color (Default value is 333333)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1255
+msgid "Links color (Default value is 0D85CC)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1263
+msgid "Links color on mouse over (Default value is 333333)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1271
+msgid "Post Header Text Color (Default value is 333333)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1279
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1287
+msgid "Sidebar Header Background color (Default value is 444444)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1296
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1304
+msgid "Footer Widget Text Color (Default value is 0D85CC)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1312
+msgid "Footer Widget Link Color (Default value is 666666)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1320
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1332 admin/mantra-admin-functions.php:1393
+msgid "White"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1332
+msgid "Light"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1332
+msgid "Light Gray"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1332 admin/mantra-admin-functions.php:1393
+msgid "Gray"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1332
+msgid "Dark Gray"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1332
+msgid "Black"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1340
+msgid ""
+"This setting changes the look of your captions. Images that are not inserted "
+"through captions will not be affected."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1356
+msgid "The border around your inserted images. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1371
+msgid "The image on top of your captions. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1386
+msgid "The sidebar list bullets. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1401
+msgid ""
+"The background for your post-metas area (under your post tiltes). Gray by "
+"default.<"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1409 admin/mantra-admin-functions.php:1425
+#: admin/mantra-admin-functions.php:1442 admin/mantra-admin-functions.php:1457
+#: admin/mantra-admin-functions.php:1472 admin/mantra-admin-functions.php:1502
+#: admin/mantra-admin-functions.php:1517 admin/mantra-admin-functions.php:1533
+#: admin/mantra-admin-functions.php:1576 admin/mantra-admin-functions.php:1591
+#: admin/mantra-admin-functions.php:1606 admin/mantra-admin-functions.php:1621
+#: admin/mantra-admin-functions.php:1636 admin/mantra-admin-functions.php:1651
+#: admin/mantra-admin-functions.php:1666
+msgid "Show"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1409 admin/mantra-admin-functions.php:1425
+#: admin/mantra-admin-functions.php:1442 admin/mantra-admin-functions.php:1457
+#: admin/mantra-admin-functions.php:1472 admin/mantra-admin-functions.php:1502
+#: admin/mantra-admin-functions.php:1533 admin/mantra-admin-functions.php:1576
+#: admin/mantra-admin-functions.php:1591 admin/mantra-admin-functions.php:1606
+#: admin/mantra-admin-functions.php:1621 admin/mantra-admin-functions.php:1636
+#: admin/mantra-admin-functions.php:1651 admin/mantra-admin-functions.php:1666
+msgid "Hide"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1417
+msgid "Hide or show a horizontal rule to separate posts."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1433
+msgid ""
+"Hide or show bullets next to lists that are in your content area (posts, "
+"pages etc.)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1450
+msgid ""
+"Hide or show your blog's Title and Description in the header (recommended if "
+"you have a custom header image with text)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1465
+msgid "Hide or show Page titles on any <i>created</i> pages. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1480
+msgid "Hide or show Page titles on <i>Category</i> Pages. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1495
+msgid "Hide table borders and background color."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1510
+msgid ""
+"Hide the explanatory text under the comments form. (starts with <i>You may "
+"use these HTML tags and attributes:...</i>)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1517
+msgid "Hide in posts"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1517
+msgid "Hide in pages"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1517
+msgid "Hide everywhere"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1525
+msgid ""
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "
+"or posts with the comments disabled."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1541
+msgid ""
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1557
+msgid ""
+"Enable the Back to Top button. The button appears after scrolling the page "
+"down."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1564
+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 © ."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1584
+msgid "Hide or show the post date."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1599
+msgid ""
+"Show the post time with the date. Time will not be visible if the Post Date "
+"is hidden."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1614
+msgid "Hide or show the post author."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1629
+msgid "Hide the post category."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1644
+msgid "Hide the post tags."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1659
+msgid "Hide the 'Bookmark permalink'."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1674
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1687 admin/mantra-admin-functions.php:1702
+#: admin/mantra-admin-functions.php:1718
+msgid "Excerpt"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1687 admin/mantra-admin-functions.php:1702
+#: admin/mantra-admin-functions.php:1718
+msgid "Full Post"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1695
+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/mantra-admin-functions.php:1710
+msgid ""
+"Choose if you want the sticky posts on your home page to be visible in full "
+"or just the excerpts. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1726
+msgid ""
+"Excerpts on archive, categroy and search pages. Same as above, only standard "
+"posts will be affected."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1734
+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/mantra-admin-functions.php:1750
+msgid ""
+"Enable the Magazine Layout. This layout applies to pages with posts and "
+"shows 2 posts per row."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1757
+msgid ""
+"Replaces the three dots ('[...])' that are appended automatically to "
+"excerpts."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1764
+msgid "Edit the 'Continue Reading' link added to your post excerpts."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1779
+msgid "By default WordPress excerpts remove all HTML tags ("
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1802
+msgid ""
+"Show featured images as thumbnails on posts. The images must be selected for "
+"each post in the Featured Image section."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1817
+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/mantra-admin-functions.php:1833
+msgid "Thumbnail alignment."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1842
+msgid "The size you want the thumbnails to have (in pixels)."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1858
+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/mantra-admin-functions.php:1882
+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/mantra-admin-functions.php:1896
+msgid "You can insert up to 5 different social sites and addresses."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1910
+msgid "There are a total of 27 social networks to choose from. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1924
+msgid "You can leave any number of inputs empty. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1938
+msgid "You can choose the same social media any number of times. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1969
+msgid "Choose the <b>areas</b> where to display the social icons."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:1990
+msgid ""
+"Make the site header into a clickable link that links to your index page."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2005
+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/mantra-admin-functions.php:2020
+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/mantra-admin-functions.php:2035
+msgid ""
+"Enable the mobile view and make Mantra responsive. The layout and look of "
+"your blog will change depending on what device and what resolution it is "
+"viewed in. "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2045
+msgid "Upload or select favicon from gallery"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2049
+msgid ""
+"Limitations: It has to be an image. It should be max 64x64 pixels in "
+"dimensions. Recommended file extensions .ico and .png . "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2057
+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."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2075
+msgid "Sorry, but you do not have sufficient permissions to access this page."
+msgstr "抱歉,您没有足够的权限访问此页面。"
+
+#: admin/mantra-admin-functions.php:2085
+msgid "Mantra settings updated successfully."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2099
+msgid "Reset to Defaults"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2100
+msgid "Save Changes"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2114
+msgid ""
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "
+"(that we previously created); we add more and more customization options "
+"while also trying to keep things as simple as possible; then... we might "
+"play a game or two but rest assured that we return to read and (in most "
+"cases) reply to your late night emails and comments, take notes and draw "
+"dashboards of things to implement in future versions.</p>\n"
+"<p>So you might ask yourselves: <i>How do they do it? How can they keep so "
+"fresh after all that hard labor for that darned theme? </i> Well folks, it's "
+"simple. We drink coffee. Industrial quantities of hot boiling coffee. We "
+"love it! So if you want to help with the further development of the Mantra "
+"Theme...</p> "
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2131
+msgid "Import/Export Settings"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2137
+msgid "Export Theme options"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2138
+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/mantra-admin-functions.php:2143
+msgid "Import Theme options"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2144
+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/mantra-admin-functions.php:2152
+msgid "Mantra Latest News"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2163
+msgid "No news items."
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2177
+msgid "Mantra Help"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2180
+msgid ""
+"\n"
+"\t\t\t<ul>\n"
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "
+"version?</li>\n"
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "
+"expected?</li>\n"
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "
+"your needs?</li>\n"
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "
+"Mantra Theme?</li>\n"
+"\t\t\t</ul>\n"
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"
+"\t"
+msgstr ""
+
+#: admin/mantra-admin-functions.php:2191
+msgid "Mantra Support Page"
+msgstr ""
--- /dev/null
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Mantra International\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2012-06-12 12:43+0200\n"\r
+"PO-Revision-Date: 2012-09-11 21:11+0800\n"\r
+"Last-Translator: 林轩立 <l19980623@gmail.com>\n"\r
+"Language-Team: Cryout Creations <contact@htx.ro>\n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;_x;_ex;_nx;"\r
+"esc_attr__;esc_attr_e;_n_noop;_nx_noop\n"\r
+"X-Poedit-Basepath: ..\n"\r
+"Plural-Forms: nplurals=2;plural=n>1\n"\r
+"X-Poedit-SearchPath-0: .\n"\r
+\r
+#: 404.php:17\r
+msgid "Not Found"\r
+msgstr "什么都没有"\r
+\r
+#: 404.php:19\r
+msgid ""\r
+"Apologies, but the page you requested could not be found. Perhaps searching "\r
+"will help."\r
+msgstr "抱歉,您请求的页面无法找到。也许可以使用搜索功能寻找您感兴趣的内容。"\r
+\r
+#: archive.php:25\r
+#, php-format\r
+msgid "Daily Archives: %s"\r
+msgstr "日度归档: %s"\r
+\r
+#: archive.php:27\r
+#, php-format\r
+msgid "Monthly Archives: %s"\r
+msgstr "月度归档: %s"\r
+\r
+#: archive.php:27\r
+msgid "F Y"\r
+msgstr "F Y"\r
+\r
+#: archive.php:29\r
+#, php-format\r
+msgid "Yearly Archives: %s"\r
+msgstr "年度归档: %s"\r
+\r
+#: archive.php:29\r
+msgid "Y"\r
+msgstr "Y"\r
+\r
+#: archive.php:31\r
+msgid "Blog Archives"\r
+msgstr "博客归档"\r
+\r
+#: archive.php:57 author.php:74 category.php:50 front-page.php:83\r
+msgid "Nothing Found"\r
+msgstr "什么都没找到"\r
+\r
+#: archive.php:61 author.php:78 category.php:54 front-page.php:87\r
+msgid ""\r
+"Apologies, but no results were found for the requested archive. Perhaps "\r
+"searching will help find a related post."\r
+msgstr "抱歉,未找到您搜索的文章。也许您可以换个关键词试试。"\r
+\r
+#: attachment.php:18\r
+#, php-format\r
+msgid "Return to %s"\r
+msgstr "回到 %s"\r
+\r
+#: attachment.php:29\r
+msgid "By"\r
+msgstr "由"\r
+\r
+#: attachment.php:33\r
+#, php-format\r
+msgid "View all posts by %s"\r
+msgstr "查看所有由 %s 发布的文章"\r
+\r
+#: attachment.php:40\r
+msgid "Published"\r
+msgstr "已发表"\r
+\r
+#: attachment.php:50\r
+#, php-format\r
+msgid "Full size is %s pixels"\r
+msgstr "完整图片大小为 %s 像素"\r
+\r
+#: attachment.php:53\r
+msgid "Link to full-size image"\r
+msgstr "查看完整图片"\r
+\r
+#: attachment.php:60 attachment.php:107 content-aside.php:48\r
+#: content-chat.php:48 content-gallery.php:64 content-image.php:41\r
+#: content-link.php:48 content-quote.php:46 content-status.php:47\r
+#: content.php:85 front-page.php:42\r
+msgid "Edit"\r
+msgstr "编辑"\r
+\r
+#: attachment.php:100\r
+msgid "Continue reading"\r
+msgstr "继续阅读"\r
+\r
+#: attachment.php:101 content-aside.php:39 content-chat.php:37\r
+#: content-gallery.php:54 content-image.php:32 content-link.php:37\r
+#: content-quote.php:36 content-status.php:38 content.php:57 content.php:74\r
+#: front-page.php:41\r
+msgid "Pages:"\r
+msgstr "页码:"\r
+\r
+#: author.php:28\r
+#, php-format\r
+msgid "Author Archives: %s"\r
+msgstr "作者归档: %s"\r
+\r
+#: author.php:49\r
+#, php-format\r
+msgid "About %s"\r
+msgstr "关于 %s"\r
+\r
+#: category.php:19\r
+#, php-format\r
+msgid "Category Archives: %s"\r
+msgstr "分类存档 %s"\r
+\r
+#: comments.php:18\r
+msgid ""\r
+"This post is password protected. Enter the password to view any comments."\r
+msgstr "此文章由密码保护。输入密码以查看所有评论。"\r
+\r
+#: comments.php:35\r
+#, php-format\r
+msgid "One Response to %2$s"\r
+msgid_plural "%1$s Responses to %2$s"\r
+msgstr[0] "%2$s 有一个回复"\r
+msgstr[1] "%2$s 有 %1$s 个回复"\r
+\r
+#: comments.php:41 comments.php:60\r
+msgid "Older Comments"\r
+msgstr "较旧的评论"\r
+\r
+#: comments.php:42 comments.php:61\r
+msgid "Newer Comments"\r
+msgstr "较新的评论"\r
+\r
+#: comments.php:72 front-page.php:47\r
+msgid "Comments are closed."\r
+msgstr "评论功能已关闭。"\r
+\r
+#: content-aside.php:16 content-chat.php:16 content-gallery.php:16\r
+#: content-gallery.php:48 content-image.php:15 content-link.php:16\r
+#: content-quote.php:14 content-status.php:15 content.php:24 content.php:28\r
+#, php-format\r
+msgid "Permalink to %s"\r
+msgstr "至 %s 的永久链接"\r
+\r
+#: content-aside.php:21\r
+msgid "Aside"\r
+msgstr "标准"\r
+\r
+#: content-aside.php:38 content-chat.php:36 content-gallery.php:32\r
+#: content-image.php:31 content-link.php:36 content-quote.php:35\r
+#: content-status.php:37\r
+msgid "Continue reading <span class=\"meta-nav\">→</span>"\r
+msgstr "继续阅读 <span class=\"meta-nav\">→</span>"\r
+\r
+#: content-aside.php:46 content-chat.php:44 content-gallery.php:61\r
+#: content-image.php:38 content-link.php:44 content-quote.php:43\r
+#: content-status.php:45 content.php:83\r
+msgid "Tagged"\r
+msgstr "标签:"\r
+\r
+#: content-chat.php:20\r
+msgid "Chat"\r
+msgstr "聊天"\r
+\r
+#: content-gallery.php:20\r
+msgid "Gallery"\r
+msgstr "相册"\r
+\r
+#: content-gallery.php:47\r
+#, php-format\r
+msgid "This gallery contains <a %1$s>%2$s photo</a>."\r
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."\r
+msgstr[0] "该相册含 <a %1$s>%2$s 张照片</a>。"\r
+msgstr[1] "该相册含 <a %1$s>%2$s 张照片</a>。"\r
+\r
+#: content-image.php:19\r
+msgid "Image"\r
+msgstr "图像"\r
+\r
+#: content-link.php:20\r
+msgid "Link"\r
+msgstr "链接"\r
+\r
+#: content-quote.php:19\r
+msgid "Quote"\r
+msgstr "引语"\r
+\r
+#: content-status.php:29\r
+msgid "Status"\r
+msgstr "状态"\r
+\r
+#: content.php:33\r
+msgid "Featured"\r
+msgstr "推荐"\r
+\r
+#: footer.php:43\r
+msgid "Semantic Personal Publishing Platform"\r
+msgstr "个人信息发布平台"\r
+\r
+#: functions.php:193\r
+msgid "Primary Navigation"\r
+msgstr ""\r
+\r
+#: functions.php:194\r
+msgid "Top Navigation"\r
+msgstr ""\r
+\r
+#: functions.php:195\r
+msgid "Footer Navigation"\r
+msgstr ""\r
+\r
+#: functions.php:236\r
+msgid "mantra"\r
+msgstr "mantra"\r
+\r
+#: functions.php:414\r
+msgid "says:"\r
+msgstr "说:"\r
+\r
+#: functions.php:420\r
+msgid "Your comment is awaiting moderation."\r
+msgstr "您的评论正在审核中。"\r
+\r
+#: functions.php:427\r
+msgid "at"\r
+msgstr "于"\r
+\r
+#: functions.php:427 functions.php:444\r
+msgid "(Edit)"\r
+msgstr "(编辑)"\r
+\r
+#: functions.php:444\r
+msgid "Pingback: "\r
+msgstr "引用通告:"\r
+\r
+#: functions.php:463\r
+msgid "Primary Widget Area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: functions.php:465\r
+msgid "Primary widget area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: functions.php:474\r
+msgid "Secondary Widget Area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: functions.php:476\r
+msgid "Secondary widget area - Sidebar 1"\r
+msgstr ""\r
+\r
+#: functions.php:485\r
+msgid "Third Widget Area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: functions.php:487\r
+msgid "Third widget area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: functions.php:496\r
+msgid "Fourth Widget Area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: functions.php:498\r
+msgid "Fourth widget area - Sidebar 2"\r
+msgstr ""\r
+\r
+#: functions.php:507\r
+msgid "First Footer Widget Area"\r
+msgstr ""\r
+\r
+#: functions.php:509\r
+msgid "First footer widget area"\r
+msgstr ""\r
+\r
+#: functions.php:518\r
+msgid "Second Footer Widget Area"\r
+msgstr ""\r
+\r
+#: functions.php:520\r
+msgid "Second footer widget area"\r
+msgstr ""\r
+\r
+#: functions.php:529\r
+msgid "Third Footer Widget Area"\r
+msgstr ""\r
+\r
+#: functions.php:531\r
+msgid "The third footer widget area"\r
+msgstr ""\r
+\r
+#: functions.php:540\r
+msgid "Fourth Footer Widget Area"\r
+msgstr ""\r
+\r
+#: functions.php:542\r
+msgid "The fourth footer widget area"\r
+msgstr ""\r
+\r
+#: functions.php:582\r
+msgid "By "\r
+msgstr "由:"\r
+\r
+#: functions.php:593\r
+msgid "Leave a comment"\r
+msgstr "发表评论"\r
+\r
+#: functions.php:593\r
+msgid "<b>1</b> Comment"\r
+msgstr "<b>1</b> 个评论"\r
+\r
+#: functions.php:593\r
+msgid "<b>%</b> Comments"\r
+msgstr "<b>%</b> 个评论"\r
+\r
+#: functions.php:613\r
+msgid " Bookmark the "\r
+msgstr "添加书签:"\r
+\r
+#: functions.php:613 functions.php:615 functions.php:617\r
+msgid "Permalink to"\r
+msgstr "永久链接"\r
+\r
+#: functions.php:613 functions.php:615 functions.php:617\r
+msgid "permalink"\r
+msgstr "永久链接:"\r
+\r
+#: functions.php:615 functions.php:617\r
+msgid "Bookmark the "\r
+msgstr "添加书签:"\r
+\r
+#: functions.php:639\r
+msgid "<span class=\"meta-nav\">«</span> Older posts"\r
+msgstr "<span class=\"meta-nav\">«</span> 较旧文章"\r
+\r
+#: functions.php:640\r
+msgid "Newer posts <span class=\"meta-nav\">»</span>"\r
+msgstr "较新文章 <span class=\"meta-nav\">»</span>"\r
+\r
+#: functions.php:836\r
+#, php-format\r
+msgid "Page %s"\r
+msgstr "第 %s 页"\r
+\r
+#: functions.php:972\r
+msgid ""\r
+"Before you can upload your import file, you will need to fix the following "\r
+"error:"\r
+msgstr "请在上传文件前修复以下错误:"\r
+\r
+#: functions.php:980\r
+msgid "Import Mantra Theme Options"\r
+msgstr ""\r
+\r
+#: functions.php:982\r
+msgid ""\r
+"Hi! This is where you import the Mantra settings.<i> Please remember that "\r
+"this is still an experimental feature.</i>"\r
+msgstr ""\r
+\r
+#: functions.php:984\r
+msgid "Just choose a file from your computer:"\r
+msgstr ""\r
+\r
+#: functions.php:986\r
+#, php-format\r
+msgid "Maximum size: %s"\r
+msgstr ""\r
+\r
+#: functions.php:992\r
+msgid "And import!"\r
+msgstr ""\r
+\r
+#: functions.php:1054\r
+msgid "Import Mantra Theme Options "\r
+msgstr ""\r
+\r
+#: functions.php:1057\r
+msgid "Great! The options have been imported!"\r
+msgstr ""\r
+\r
+#: functions.php:1058\r
+msgid "Go back to the Mantra options page and check them out!"\r
+msgstr ""\r
+\r
+#: functions.php:1061 functions.php:1067 functions.php:1073\r
+msgid "Oops, there's a small problem."\r
+msgstr ""\r
+\r
+#: functions.php:1062\r
+msgid ""\r
+"The uploaded file does not contain valid Mantra options. Make sure the file "\r
+"is exported from the Mantra Options page."\r
+msgstr ""\r
+\r
+#: functions.php:1068\r
+msgid "The uploaded file could not be read."\r
+msgstr ""\r
+\r
+#: functions.php:1074\r
+msgid ""\r
+"The uploaded file is not supported. Make sure the file was exported from the "\r
+"Mantra page and that it is a text file."\r
+msgstr ""\r
+\r
+#: functions.php:1083\r
+msgid ""\r
+"Oops! The file is empty or there was no file. This error could also be "\r
+"caused by uploads being disabled in your php.ini or by post_max_size being "\r
+"defined as smaller than upload_max_filesize in php.ini."\r
+msgstr ""\r
+\r
+#: functions.php:1089\r
+msgid "ERROR: You are not authorised to perform that operation"\r
+msgstr "错误: 您未被授权进行此操作。"\r
+\r
+#: header.php:104\r
+msgid "Skip to content"\r
+msgstr "跳转至内容"\r
+\r
+#: search.php:19\r
+#, php-format\r
+msgid "Search Results for: %s"\r
+msgstr "%s 的搜索结果"\r
+\r
+#: search.php:38\r
+#, php-format\r
+msgid "No search results for: %s"\r
+msgstr "没有 %s 的搜索结果"\r
+\r
+#: sidebar.php:34\r
+msgid "Archives"\r
+msgstr "档案"\r
+\r
+#: sidebar.php:41\r
+msgid "Meta"\r
+msgstr "元"\r
+\r
+#: single.php:18 single.php:58\r
+msgid "Previous post link"\r
+msgstr "上一篇文章"\r
+\r
+#: single.php:19 single.php:59\r
+msgid "Next post link"\r
+msgstr "下一篇文章"\r
+\r
+#: single.php:44\r
+msgid "View all posts by "\r
+msgstr "查看所有文章:"\r
+\r
+#: tag.php:20\r
+#, php-format\r
+msgid "Tag Archives: %s"\r
+msgstr "标签归档: %s"\r
+\r
+#: admin/mantra-admin-functions.php:31\r
+msgid "Layout Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:32\r
+msgid "Presentation Page"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:33\r
+msgid "Text Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:34\r
+msgid "Color Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:35\r
+msgid "Graphics Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:36\r
+msgid "Post Information Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:37\r
+msgid "Post Excerpt Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:38\r
+msgid "Featured Image Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:39\r
+msgid "Social Media Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:40\r
+msgid "Miscellaneous Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:42\r
+msgid "Main Layout"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:43\r
+msgid "Content / Sidebar Width"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:44\r
+msgid "Header Image Height"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:46\r
+msgid "Enable Presentation Page"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:47\r
+msgid "Slider Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:48\r
+msgid "Slides"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:49\r
+msgid "Presentation Page Columns"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:50\r
+msgid "Extras"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:52\r
+msgid "General Font"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:53\r
+msgid "General Font Size"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:54\r
+msgid "Post Title Font "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:55\r
+msgid "Post Title Font Size"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:56\r
+msgid "Sidebar Font"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:57\r
+msgid "SideBar Font Size"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:58\r
+msgid "Sub-Headers Font"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:59\r
+msgid "Force Text Align"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:60\r
+msgid "Paragraph indent"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:61\r
+msgid "Header indent"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:62\r
+msgid "Line Height"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:63\r
+msgid "Word spacing"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:64\r
+msgid "Letter spacing"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:65\r
+msgid "Text shadow"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:67\r
+msgid "Background Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:68\r
+msgid "Header (Banner and Menu) Background Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:70\r
+msgid "Site Title Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:71\r
+msgid "Site Description Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:73\r
+msgid "Content Text Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:74\r
+msgid "Links Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:75\r
+msgid "Links Hover Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:76\r
+msgid "Post Title Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:77\r
+msgid "Post Title Hover Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:78\r
+msgid "Sidebar Header Background Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:79\r
+msgid "Sidebar Header Text Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:80\r
+msgid "Footer Widget Background Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:81\r
+msgid "Footer Background Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:82\r
+msgid "Footer Widget Header Text Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:83\r
+msgid "Footer Widget Link Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:84\r
+msgid "Footer Widget Hover Color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:86\r
+msgid "Caption Border"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:87\r
+msgid "Post Images Border"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:88\r
+msgid "Caption Pin"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:89\r
+msgid "Sidebar Menu Bullets"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:90\r
+msgid "Meta Area Background"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:91\r
+msgid "Post Separator"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:92\r
+msgid "Content List Bullets"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:93\r
+msgid "Title and Description"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:94\r
+msgid "Page Titles"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:95\r
+msgid "Category Page Titles"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:96\r
+msgid "Hide Tables"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:97\r
+msgid "Back to Top button"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:98\r
+msgid "Text Under Comments"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:99\r
+msgid "Comments are closed text"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:100\r
+msgid "Comments off"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:101\r
+msgid "Insert footer copyright"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:103\r
+msgid "Post Date"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:104\r
+msgid "Post Time"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:105\r
+msgid "Post Author"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:106\r
+msgid "Post Category"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:107\r
+msgid "Post Tags"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:108\r
+msgid "Post Permalink"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:109\r
+msgid "All Post Metas"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:111\r
+msgid "Post Excerpts on Home Page"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:112\r
+msgid "Affect Sticky Posts"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:113\r
+msgid "Post Excerpts on Arhive and Category Pages"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:114\r
+msgid "Number of Words for Post Excerpts "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:115\r
+msgid "Magazine Layout"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:116\r
+msgid "Excerpt suffix"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:117\r
+msgid "Continue reading link text "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:118\r
+msgid "HTML tags in Excerpts"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:120\r
+msgid "Featured Images as POST Thumbnails "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:121\r
+msgid "Auto Select Images From Posts "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:122\r
+msgid "Thumbnails Alignment "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:123\r
+msgid "Thumbnails Size "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:124\r
+msgid "Featured Images as HEADER Images "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:126\r
+msgid "Link nr. 1"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:127\r
+msgid "Link nr. 2"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:128\r
+msgid "Link nr. 3"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:129\r
+msgid "Link nr. 4"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:130\r
+msgid "Link nr. 5"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:131\r
+msgid "Socials display"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:133\r
+msgid "Make Site Header a Link"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:134\r
+msgid "Breadcrumbs"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:135\r
+msgid "Pagination"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:136\r
+msgid "Mobile view"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:137\r
+msgid "FavIcon"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:138\r
+msgid "Custom CSS"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:228\r
+msgid "One column (no sidebars)"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:229\r
+msgid "Two columns, sidebar on the right"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:230\r
+msgid "Two columns, sidebar on the left"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:231\r
+msgid "Three columns, sidebars on the right"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:232\r
+msgid "Three columns, sidebars on the left"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:233\r
+msgid "Three columns, one sidebar on each side"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:248\r
+msgid "Choose your layout "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:258\r
+msgid "Absolute"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:258\r
+msgid "Relative"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:259\r
+msgid "Dimensions to use: "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:358 admin/mantra-admin-functions.php:378\r
+msgid "Content ="\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:359 admin/mantra-admin-functions.php:379\r
+msgid "Sidebar(s) ="\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:360 admin/mantra-admin-functions.php:380\r
+msgid "Total width ="\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:369\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tWhile the content cannot be less than 500px wide, the sidebar area is "\r
+"at least 220px and no more than 800px.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:389\r
+msgid ""\r
+"Select the width of your <b>content</b> and <b>sidebar(s)</b>. \n"\r
+" \t\tThese are realtive dimmensions - relative to the user's browser. The "\r
+"total width is a percentage of the browser's width.<br />\n"\r
+"\t While the content cannot be less than 40% wide, the sidebar area is at "\r
+"least 20% and no more than 50%.<br />\n"\r
+"\tIf you went for a 3 column area ( with 2 sidebars) they will each have "\r
+"half the selected width."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:413\r
+msgid ""\r
+"Select the header's height. After saving the settings go and upload your new "\r
+"header image. The header's width will be equal to the Total Site Width = "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:426 admin/mantra-admin-functions.php:1117\r
+#: admin/mantra-admin-functions.php:1179 admin/mantra-admin-functions.php:1487\r
+#: admin/mantra-admin-functions.php:1549 admin/mantra-admin-functions.php:1742\r
+#: admin/mantra-admin-functions.php:1771 admin/mantra-admin-functions.php:1794\r
+#: admin/mantra-admin-functions.php:1809 admin/mantra-admin-functions.php:1850\r
+#: admin/mantra-admin-functions.php:1982 admin/mantra-admin-functions.php:1997\r
+#: admin/mantra-admin-functions.php:2012 admin/mantra-admin-functions.php:2027\r
+msgid "Enable"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:426 admin/mantra-admin-functions.php:1117\r
+#: admin/mantra-admin-functions.php:1179 admin/mantra-admin-functions.php:1487\r
+#: admin/mantra-admin-functions.php:1549 admin/mantra-admin-functions.php:1742\r
+#: admin/mantra-admin-functions.php:1771 admin/mantra-admin-functions.php:1794\r
+#: admin/mantra-admin-functions.php:1809 admin/mantra-admin-functions.php:1850\r
+#: admin/mantra-admin-functions.php:1982 admin/mantra-admin-functions.php:1997\r
+#: admin/mantra-admin-functions.php:2012 admin/mantra-admin-functions.php:2027\r
+msgid "Disable"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:434\r
+msgid ""\r
+"Enable the presentation front-page. This will become your new home page and "\r
+"it will replace whatever page you have selected as homepage. It has a slider "\r
+"and columns for presentation\n"\r
+"\t\ttext and images."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:443\r
+msgid "Slider Dimensions:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:444\r
+msgid "width"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:445\r
+msgid "height"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:446\r
+msgid ""\r
+"The dimensions of your slider. Make sure your images are of the same size."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:449\r
+msgid "Animation:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "Random"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "Fold"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "Fade"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SlideInRight"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SlideInLeft"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceDown"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceDownLeft"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceUp"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceUpLeft"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceUpDown"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "SliceUpDownLeft"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "BoxRandom"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "BoxRain"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "BoxRainReverse"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "BoxRainGrow"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:451\r
+msgid "BoxRainGrowReverse"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:459\r
+msgid "The transition effect your slider will have."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:461\r
+msgid "Animation Time:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:462 admin/mantra-admin-functions.php:466\r
+msgid "milliseconds (1000ms = 1 second) "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:463\r
+msgid "The time in which the transition animation will take place."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:465\r
+msgid "Pause Time:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:467\r
+msgid "The time in which a slide will be still and visible."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:470\r
+msgid "Slider navigation:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:472\r
+msgid "Numbers"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:472\r
+msgid "Bullets"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:472 admin/mantra-admin-functions.php:1393\r
+msgid "None"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:480\r
+msgid "Your slider navigation type. Shown under the slider."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:482\r
+msgid "Slider arrows:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:484\r
+msgid "Always Visible"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:484\r
+msgid "Visible on Hover"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:484\r
+msgid "Hidden"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:492\r
+msgid "The Left and Right arrows on your slider"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:536\r
+msgid "Select Category"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:594\r
+msgid "Slide 1"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:598 admin/mantra-admin-functions.php:613\r
+#: admin/mantra-admin-functions.php:628 admin/mantra-admin-functions.php:643\r
+#: admin/mantra-admin-functions.php:658 admin/mantra-admin-functions.php:702\r
+#: admin/mantra-admin-functions.php:717 admin/mantra-admin-functions.php:732\r
+#: admin/mantra-admin-functions.php:747\r
+msgid "Upload or select image from gallery"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:599 admin/mantra-admin-functions.php:614\r
+#: admin/mantra-admin-functions.php:629 admin/mantra-admin-functions.php:644\r
+#: admin/mantra-admin-functions.php:659 admin/mantra-admin-functions.php:703\r
+#: admin/mantra-admin-functions.php:718 admin/mantra-admin-functions.php:748\r
+msgid "Title"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:601 admin/mantra-admin-functions.php:616\r
+#: admin/mantra-admin-functions.php:631 admin/mantra-admin-functions.php:646\r
+#: admin/mantra-admin-functions.php:661 admin/mantra-admin-functions.php:705\r
+#: admin/mantra-admin-functions.php:720 admin/mantra-admin-functions.php:735\r
+#: admin/mantra-admin-functions.php:750\r
+msgid "Text"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:609\r
+msgid "Slide 2"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:624\r
+msgid "Slide 3"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:639\r
+msgid "Slide 4"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:654\r
+msgid "Slide 5"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:667\r
+msgid ""\r
+"Your slides' content. Only the image is required, all other fields are "\r
+"optional. Only the slides with an image selected will become acitve and "\r
+"visible in the live slider."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:678\r
+msgid "Number of columns:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:688\r
+msgid "Image Height:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:691\r
+msgid "Read more text:"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:694\r
+msgid ""\r
+"The linked text that appears at the bottom of all the columns. You can "\r
+"delete all text inside if you don't want it."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:698\r
+msgid "1st Column"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:713\r
+msgid "2nd Column"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:728\r
+msgid "3rd Column"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:743\r
+msgid "4th Column"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:766\r
+msgid "Extra Text"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:766\r
+msgid "Top Title"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:768\r
+msgid "Second Title"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:771\r
+msgid "Title color"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:774\r
+msgid "The titles' color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:776\r
+msgid "Bottom Text 1"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:778\r
+msgid "Bottom Text 2"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:781\r
+msgid ""\r
+"More text for your front page. The top title is above the slider, the second "\r
+"title between the slider and the columns and 2 more rows of text under the "\r
+"columns.\n"\r
+"\t\t It's all optional so leave any input field empty if it's not required. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:787\r
+msgid "Hide areas"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:800\r
+msgid "Hide the header area (image or background color)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:804\r
+msgid "Hide the main menu (the top navigation tabs)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:808\r
+msgid "Hide the footer widgets. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:812\r
+msgid "Hide the footer (copyright area)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:816\r
+msgid "Hide the white color. Only the background color remains."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:820\r
+msgid "Choose the areas to hide on the first page."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:851\r
+msgid ""\r
+"Select the font size you'll use in your blog. Pages, posts and comments will "\r
+"be affected. Buttons, Headers and Side menus will remain the same."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:895\r
+msgid ""\r
+"Select the font family you'll use in your blog. All content text will be "\r
+"affected (including menu buttons). "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:896 admin/mantra-admin-functions.php:945\r
+#: admin/mantra-admin-functions.php:996 admin/mantra-admin-functions.php:1047\r
+msgid ""\r
+"Or insert your Google Font below. Please only isert the <strong>name</"\r
+"strong> of the font.<br /> Ex: Marko One. Go to <a href='http://www.google."\r
+"com/webfonts' > google fonts </a> for some font inspiration."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:943\r
+msgid ""\r
+"Select the font family you want for your titles. It will affect post titles "\r
+"and page titles. Leave 'Default' and the general font you selected will be "\r
+"used."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:994\r
+msgid ""\r
+"Select the font family you want your sidebar(s) to have. Text in sidebars "\r
+"will be affected, including any widgets. Leave 'Default' and the general "\r
+"font you selected will be used."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1045\r
+msgid ""\r
+"Select the font family you want your subheaders to have (h2 - h6 tags will "\r
+"be affected). Leave 'Default' and the general font you selected will be used."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1057 admin/mantra-admin-functions.php:1072\r
+#: admin/mantra-admin-functions.php:1087 admin/mantra-admin-functions.php:1132\r
+#: admin/mantra-admin-functions.php:1147 admin/mantra-admin-functions.php:1162\r
+msgid "Default"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1065\r
+msgid ""\r
+"Post Header Font size. Leave 'Default' for normal settings (size value will "\r
+"be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1080\r
+msgid ""\r
+"Sidebar Font size. Leave 'Default' for normal settings (size value will be "\r
+"as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1087 admin/mantra-admin-functions.php:1825\r
+msgid "Left"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1087 admin/mantra-admin-functions.php:1825\r
+msgid "Right"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1087\r
+msgid "Justify"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1087 admin/mantra-admin-functions.php:1825\r
+msgid "Center"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1095\r
+msgid ""\r
+"This overwrites the text alignment in posts and pages. Leave 'Default' for "\r
+"normal settings (alignment will remain as declared in posts, comments etc.)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1109\r
+msgid "Choose the indent for your paragraphs."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1125\r
+msgid "Disable the default header and title indent (left margin)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1140\r
+msgid ""\r
+"Text line height. The height between 2 rows of text. Leave 'Default' for "\r
+"normal settings (size value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1155\r
+msgid ""\r
+"The space between <i>words</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1170\r
+msgid ""\r
+"The space between <i>letters</i>. Leave 'Default' for normal settings (size "\r
+"value will be as set in the CSS)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1187\r
+msgid "Disable the default text shadow on headers and titles."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1199\r
+msgid "Background color (Default value is 444444)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1207\r
+msgid ""\r
+"Header background color (Default value is 333333). You can delete all inside "\r
+"text for no background color."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1215\r
+msgid "Footer widget-area background color. (Default value is 171717)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1223\r
+msgid "Footer background color (Default value is 222222)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1231\r
+msgid "Your blog's title color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1239\r
+msgid "Your blog's description color(Default value is 222222)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1247\r
+msgid "Content Text Color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1255\r
+msgid "Links color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1263\r
+msgid "Links color on mouse over (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1271\r
+msgid "Post Header Text Color (Default value is 333333)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1279\r
+msgid "Post Header Text Color on Mouse over (Default value is 000000)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1287\r
+msgid "Sidebar Header Background color (Default value is 444444)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1296\r
+msgid "Sidebar Header Text Color(Default value is 2EA5FD)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1304\r
+msgid "Footer Widget Text Color (Default value is 0D85CC)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1312\r
+msgid "Footer Widget Link Color (Default value is 666666)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1320\r
+msgid "Footer Widget Link Color on Mouse Over (Default value is 888888)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332 admin/mantra-admin-functions.php:1393\r
+msgid "White"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332\r
+msgid "Light"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332\r
+msgid "Light Gray"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332 admin/mantra-admin-functions.php:1393\r
+msgid "Gray"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332\r
+msgid "Dark Gray"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1332\r
+msgid "Black"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1340\r
+msgid ""\r
+"This setting changes the look of your captions. Images that are not inserted "\r
+"through captions will not be affected."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1356\r
+msgid "The border around your inserted images. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1371\r
+msgid "The image on top of your captions. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1386\r
+msgid "The sidebar list bullets. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1401\r
+msgid ""\r
+"The background for your post-metas area (under your post tiltes). Gray by "\r
+"default.<"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1409 admin/mantra-admin-functions.php:1425\r
+#: admin/mantra-admin-functions.php:1442 admin/mantra-admin-functions.php:1457\r
+#: admin/mantra-admin-functions.php:1472 admin/mantra-admin-functions.php:1502\r
+#: admin/mantra-admin-functions.php:1517 admin/mantra-admin-functions.php:1533\r
+#: admin/mantra-admin-functions.php:1576 admin/mantra-admin-functions.php:1591\r
+#: admin/mantra-admin-functions.php:1606 admin/mantra-admin-functions.php:1621\r
+#: admin/mantra-admin-functions.php:1636 admin/mantra-admin-functions.php:1651\r
+#: admin/mantra-admin-functions.php:1666\r
+msgid "Show"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1409 admin/mantra-admin-functions.php:1425\r
+#: admin/mantra-admin-functions.php:1442 admin/mantra-admin-functions.php:1457\r
+#: admin/mantra-admin-functions.php:1472 admin/mantra-admin-functions.php:1502\r
+#: admin/mantra-admin-functions.php:1533 admin/mantra-admin-functions.php:1576\r
+#: admin/mantra-admin-functions.php:1591 admin/mantra-admin-functions.php:1606\r
+#: admin/mantra-admin-functions.php:1621 admin/mantra-admin-functions.php:1636\r
+#: admin/mantra-admin-functions.php:1651 admin/mantra-admin-functions.php:1666\r
+msgid "Hide"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1417\r
+msgid "Hide or show a horizontal rule to separate posts."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1433\r
+msgid ""\r
+"Hide or show bullets next to lists that are in your content area (posts, "\r
+"pages etc.)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1450\r
+msgid ""\r
+"Hide or show your blog's Title and Description in the header (recommended if "\r
+"you have a custom header image with text)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1465\r
+msgid "Hide or show Page titles on any <i>created</i> pages. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1480\r
+msgid "Hide or show Page titles on <i>Category</i> Pages. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1495\r
+msgid "Hide table borders and background color."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1510\r
+msgid ""\r
+"Hide the explanatory text under the comments form. (starts with <i>You may "\r
+"use these HTML tags and attributes:...</i>)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1517\r
+msgid "Hide in posts"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1517\r
+msgid "Hide in pages"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1517\r
+msgid "Hide everywhere"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1525\r
+msgid ""\r
+"Hide the <b>Comments are closed</b> text that by default shows up on pages "\r
+"or posts with the comments disabled."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1541\r
+msgid ""\r
+"Hide the <b>Comments off</b> text next to posts that have comments disabled."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1557\r
+msgid ""\r
+"Enable the Back to Top button. The button appears after scrolling the page "\r
+"down."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1564\r
+msgid ""\r
+"Insert custom text or HTML code that will appear last in you footer. <br /> "\r
+"You can use HTML to insert links, images and special characters like © ."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1584\r
+msgid "Hide or show the post date."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1599\r
+msgid ""\r
+"Show the post time with the date. Time will not be visible if the Post Date "\r
+"is hidden."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1614\r
+msgid "Hide or show the post author."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1629\r
+msgid "Hide the post category."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1644\r
+msgid "Hide the post tags."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1659\r
+msgid "Hide the 'Bookmark permalink'."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1674\r
+msgid "Hide all the post metas. All meta info and meta areas will be hidden."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1687 admin/mantra-admin-functions.php:1702\r
+#: admin/mantra-admin-functions.php:1718\r
+msgid "Excerpt"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1687 admin/mantra-admin-functions.php:1702\r
+#: admin/mantra-admin-functions.php:1718\r
+msgid "Full Post"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1695\r
+msgid ""\r
+"Excerpts on the main page. Only standard posts will be affected. All other "\r
+"post formats (aside, image, chat, quote etc.) have their specific formating."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1710\r
+msgid ""\r
+"Choose if you want the sticky posts on your home page to be visible in full "\r
+"or just the excerpts. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1726\r
+msgid ""\r
+"Excerpts on archive, categroy and search pages. Same as above, only standard "\r
+"posts will be affected."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1734\r
+msgid ""\r
+"The number of words an excerpt will have. When that number is reached the "\r
+"post will be interrupted by a <i>Continue reading</i> link that\n"\r
+"\t\t\t\t\t\t\twill take the reader to the full post page."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1750\r
+msgid ""\r
+"Enable the Magazine Layout. This layout applies to pages with posts and "\r
+"shows 2 posts per row."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1757\r
+msgid ""\r
+"Replaces the three dots ('[...])' that are appended automatically to "\r
+"excerpts."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1764\r
+msgid "Edit the 'Continue Reading' link added to your post excerpts."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1779\r
+msgid "By default WordPress excerpts remove all HTML tags ("\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1802\r
+msgid ""\r
+"Show featured images as thumbnails on posts. The images must be selected for "\r
+"each post in the Featured Image section."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1817\r
+msgid ""\r
+"Show the first image that you inserted in a post as a thumbnail. If you "\r
+"enable this option, the first image in your post will be used even if you "\r
+"selected a Featured Image in you post."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1833\r
+msgid "Thumbnail alignment."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1842\r
+msgid "The size you want the thumbnails to have (in pixels)."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1858\r
+msgid ""\r
+"Show featured images on headers. The header will be replaced with a featured "\r
+"image if you selected it as a Featured Image in the post and\n"\r
+"\t\t\t\t\t\t\tand if it is bigger or at least equal to the current header "\r
+"size."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1882\r
+msgid ""\r
+"Select your desired Social network from the left dropdown menu and insert "\r
+"your corresponding address in the right input field. (ex: <i>http://www."\r
+"facebook.com/yourname</i> )"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1896\r
+msgid "You can insert up to 5 different social sites and addresses."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1910\r
+msgid "There are a total of 27 social networks to choose from. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1924\r
+msgid "You can leave any number of inputs empty. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1938\r
+msgid "You can choose the same social media any number of times. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1969\r
+msgid "Choose the <b>areas</b> where to display the social icons."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:1990\r
+msgid ""\r
+"Make the site header into a clickable link that links to your index page."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2005\r
+msgid ""\r
+"Show breadcrumbs at the top of the content area. Breadcrumbs are a form of "\r
+"navigation that keeps track of your location withtin the site."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2020\r
+msgid ""\r
+"Show numbered pagination. Where there is more than one page, instead of the "\r
+"bottom <b>Older Posts</b> and <b>Newer posts</b> links you have a numbered "\r
+"pagination. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2035\r
+msgid ""\r
+"Enable the mobile view and make Mantra responsive. The layout and look of "\r
+"your blog will change depending on what device and what resolution it is "\r
+"viewed in. "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2045\r
+msgid "Upload or select favicon from gallery"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2049\r
+msgid ""\r
+"Limitations: It has to be an image. It should be max 64x64 pixels in "\r
+"dimensions. Recommended file extensions .ico and .png . "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2057\r
+msgid ""\r
+"Insert your custom CSS here. Any CSS declarations made here will overwrite "\r
+"Mantra's (even the custom options specified right here in the Mantra "\r
+"Settings page). <br /> Your custom CSS will be preserved when updating the "\r
+"theme."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2075\r
+msgid "Sorry, but you do not have sufficient permissions to access this page."\r
+msgstr "抱歉,您没有足够的权限访问此页面。"\r
+\r
+#: admin/mantra-admin-functions.php:2085\r
+msgid "Mantra settings updated successfully."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2099\r
+msgid "Reset to Defaults"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2100\r
+msgid "Save Changes"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2114\r
+msgid ""\r
+"<p>Here at Cryout Creations (the developers of yours truly Mantra Theme), we "\r
+"spend night after night improving the Mantra Theme. We fix a lot of bugs "\r
+"(that we previously created); we add more and more customization options "\r
+"while also trying to keep things as simple as possible; then... we might "\r
+"play a game or two but rest assured that we return to read and (in most "\r
+"cases) reply to your late night emails and comments, take notes and draw "\r
+"dashboards of things to implement in future versions.</p>\n"\r
+"<p>So you might ask yourselves: <i>How do they do it? How can they keep so "\r
+"fresh after all that hard labor for that darned theme? </i> Well folks, it's "\r
+"simple. We drink coffee. Industrial quantities of hot boiling coffee. We "\r
+"love it! So if you want to help with the further development of the Mantra "\r
+"Theme...</p> "\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2131\r
+msgid "Import/Export Settings"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2137\r
+msgid "Export Theme options"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2138\r
+msgid ""\r
+"It's that easy: a mouse click away - the ability to export your Mantra "\r
+"settings and save them on your computer. Feeling safer? You should!"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2143\r
+msgid "Import Theme options"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2144\r
+msgid ""\r
+" Without the import, the export would just be a fool's exercise. Make sure "\r
+"you have the exported file ready and see you after the mouse click."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2152\r
+msgid "Mantra Latest News"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2163\r
+msgid "No news items."\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2177\r
+msgid "Mantra Help"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2180\r
+msgid ""\r
+"\n"\r
+"\t\t\t<ul>\n"\r
+"\t\t\t\t<li>- Need any Mantra or WordPress help?</li>\n"\r
+"\t\t\t\t<li>- Want to know what changes are made to the theme with each new "\r
+"version?</li>\n"\r
+"\t\t\t\t<li>- Found a bug or maybe something doesn't work exactly as "\r
+"expected?</li>\n"\r
+"\t\t\t\t<li>- Got an idea on how to improve the Mantra Theme to better suit "\r
+"your needs?</li>\n"\r
+"\t\t\t\t<li>- Want a setting implemented?</li>\n"\r
+"\t\t\t\t<li>- Do you have or would you like to make a translation of the "\r
+"Mantra Theme?</li>\n"\r
+"\t\t\t</ul>\n"\r
+"\t\t\t<p>Then come visit us at Mantra's support page.</p>\n"\r
+"\t"\r
+msgstr ""\r
+\r
+#: admin/mantra-admin-functions.php:2191\r
+msgid "Mantra Support Page"\r
+msgstr ""\r
--- /dev/null
+ GNU GENERAL PUBLIC LICENSE\r
+ Version 2, June 1991\r
+\r
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc. \r
+ 51 Franklin St, Fifth Floor, Boston, MA 02110, USA\r
+\r
+ Everyone is permitted to copy and distribute verbatim copies\r
+ of this license document, but changing it is not allowed.\r
+\r
+ Preamble\r
+\r
+ The licenses for most software are designed to take away your\r
+freedom to share and change it. By contrast, the GNU General Public\r
+License is intended to guarantee your freedom to share and change free\r
+software--to make sure the software is free for all its users. This\r
+General Public License applies to most of the Free Software\r
+Foundation's software and to any other program whose authors commit to\r
+using it. (Some other Free Software Foundation software is covered by\r
+the GNU Library General Public License instead.) You can apply it to\r
+your programs, too.\r
+\r
+ When we speak of free software, we are referring to freedom, not\r
+price. Our General Public Licenses are designed to make sure that you\r
+have the freedom to distribute copies of free software (and charge for\r
+this service if you wish), that you receive source code or can get it\r
+if you want it, that you can change the software or use pieces of it\r
+in new free programs; and that you know you can do these things.\r
+\r
+ To protect your rights, we need to make restrictions that forbid\r
+anyone to deny you these rights or to ask you to surrender the rights.\r
+These restrictions translate to certain responsibilities for you if you\r
+distribute copies of the software, or if you modify it.\r
+\r
+ For example, if you distribute copies of such a program, whether\r
+gratis or for a fee, you must give the recipients all the rights that\r
+you have. You must make sure that they, too, receive or can get the\r
+source code. And you must show them these terms so they know their\r
+rights.\r
+\r
+ We protect your rights with two steps: (1) copyright the software, and\r
+(2) offer you this license which gives you legal permission to copy,\r
+distribute and/or modify the software.\r
+\r
+ Also, for each author's protection and ours, we want to make certain\r
+that everyone understands that there is no warranty for this free\r
+software. If the software is modified by someone else and passed on, we\r
+want its recipients to know that what they have is not the original, so\r
+that any problems introduced by others will not reflect on the original\r
+authors' reputations.\r
+\r
+ Finally, any free program is threatened constantly by software\r
+patents. We wish to avoid the danger that redistributors of a free\r
+program will individually obtain patent licenses, in effect making the\r
+program proprietary. To prevent this, we have made it clear that any\r
+patent must be licensed for everyone's free use or not licensed at all.\r
+\r
+ The precise terms and conditions for copying, distribution and\r
+modification follow.\r
+\r
+ GNU GENERAL PUBLIC LICENSE\r
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\r
+\r
+ 0. This License applies to any program or other work which contains\r
+a notice placed by the copyright holder saying it may be distributed\r
+under the terms of this General Public License. The "Program", below,\r
+refers to any such program or work, and a "work based on the Program"\r
+means either the Program or any derivative work under copyright law:\r
+that is to say, a work containing the Program or a portion of it,\r
+either verbatim or with modifications and/or translated into another\r
+language. (Hereinafter, translation is included without limitation in\r
+the term "modification".) Each licensee is addressed as "you".\r
+\r
+Activities other than copying, distribution and modification are not\r
+covered by this License; they are outside its scope. The act of\r
+running the Program is not restricted, and the output from the Program\r
+is covered only if its contents constitute a work based on the\r
+Program (independent of having been made by running the Program).\r
+Whether that is true depends on what the Program does.\r
+\r
+ 1. You may copy and distribute verbatim copies of the Program's\r
+source code as you receive it, in any medium, provided that you\r
+conspicuously and appropriately publish on each copy an appropriate\r
+copyright notice and disclaimer of warranty; keep intact all the\r
+notices that refer to this License and to the absence of any warranty;\r
+and give any other recipients of the Program a copy of this License\r
+along with the Program.\r
+\r
+You may charge a fee for the physical act of transferring a copy, and\r
+you may at your option offer warranty protection in exchange for a fee.\r
+\r
+ 2. You may modify your copy or copies of the Program or any portion\r
+of it, thus forming a work based on the Program, and copy and\r
+distribute such modifications or work under the terms of Section 1\r
+above, provided that you also meet all of these conditions:\r
+\r
+ a) You must cause the modified files to carry prominent notices\r
+ stating that you changed the files and the date of any change.\r
+\r
+ b) You must cause any work that you distribute or publish, that in\r
+ whole or in part contains or is derived from the Program or any\r
+ part thereof, to be licensed as a whole at no charge to all third\r
+ parties under the terms of this License.\r
+\r
+ c) If the modified program normally reads commands interactively\r
+ when run, you must cause it, when started running for such\r
+ interactive use in the most ordinary way, to print or display an\r
+ announcement including an appropriate copyright notice and a\r
+ notice that there is no warranty (or else, saying that you provide\r
+ a warranty) and that users may redistribute the program under\r
+ these conditions, and telling the user how to view a copy of this\r
+ License. (Exception: if the Program itself is interactive but\r
+ does not normally print such an announcement, your work based on\r
+ the Program is not required to print an announcement.)\r
+\r
+These requirements apply to the modified work as a whole. If\r
+identifiable sections of that work are not derived from the Program,\r
+and can be reasonably considered independent and separate works in\r
+themselves, then this License, and its terms, do not apply to those\r
+sections when you distribute them as separate works. But when you\r
+distribute the same sections as part of a whole which is a work based\r
+on the Program, the distribution of the whole must be on the terms of\r
+this License, whose permissions for other licensees extend to the\r
+entire whole, and thus to each and every part regardless of who wrote it.\r
+Thus, it is not the intent of this section to claim rights or contest\r
+your rights to work written entirely by you; rather, the intent is to\r
+exercise the right to control the distribution of derivative or\r
+collective works based on the Program.\r
+\r
+In addition, mere aggregation of another work not based on the Program\r
+with the Program (or with a work based on the Program) on a volume of\r
+a storage or distribution medium does not bring the other work under\r
+the scope of this License.\r
+\r
+ 3. You may copy and distribute the Program (or a work based on it,\r
+under Section 2) in object code or executable form under the terms of\r
+Sections 1 and 2 above provided that you also do one of the following:\r
+\r
+ a) Accompany it with the complete corresponding machine-readable\r
+ source code, which must be distributed under the terms of Sections\r
+ 1 and 2 above on a medium customarily used for software interchange; or,\r
+\r
+ b) Accompany it with a written offer, valid for at least three\r
+ years, to give any third party, for a charge no more than your\r
+ cost of physically performing source distribution, a complete\r
+ machine-readable copy of the corresponding source code, to be\r
+ distributed under the terms of Sections 1 and 2 above on a medium\r
+ customarily used for software interchange; or,\r
+\r
+ c) Accompany it with the information you received as to the offer\r
+ to distribute corresponding source code. (This alternative is\r
+ allowed only for noncommercial distribution and only if you\r
+ received the program in object code or executable form with such\r
+ an offer, in accord with Subsection b above.)\r
+\r
+The source code for a work means the preferred form of the work for\r
+making modifications to it. For an executable work, complete source\r
+code means all the source code for all modules it contains, plus any\r
+associated interface definition files, plus the scripts used to\r
+control compilation and installation of the executable. However, as a\r
+special exception, the source code distributed need not include\r
+anything that is normally distributed (in either source or binary\r
+form) with the major components (compiler, kernel, and so on) of the\r
+operating system on which the executable runs, unless that component\r
+itself accompanies the executable.\r
+\r
+If distribution of executable or object code is made by offering\r
+access to copy from a designated place, then offering equivalent\r
+access to copy the source code from the same place counts as\r
+distribution of the source code, even though third parties are not\r
+compelled to copy the source along with the object code.\r
+\r
+ 4. You may not copy, modify, sublicense, or distribute the Program\r
+except as expressly provided under this License. Any attempt\r
+otherwise to copy, modify, sublicense or distribute the Program is\r
+void, and will automatically terminate your rights under this License.\r
+However, parties who have received copies, or rights, from you under\r
+this License will not have their licenses terminated so long as such\r
+parties remain in full compliance.\r
+\r
+ 5. You are not required to accept this License, since you have not\r
+signed it. However, nothing else grants you permission to modify or\r
+distribute the Program or its derivative works. These actions are\r
+prohibited by law if you do not accept this License. Therefore, by\r
+modifying or distributing the Program (or any work based on the\r
+Program), you indicate your acceptance of this License to do so, and\r
+all its terms and conditions for copying, distributing or modifying\r
+the Program or works based on it.\r
+\r
+ 6. Each time you redistribute the Program (or any work based on the\r
+Program), the recipient automatically receives a license from the\r
+original licensor to copy, distribute or modify the Program subject to\r
+these terms and conditions. You may not impose any further\r
+restrictions on the recipients' exercise of the rights granted herein.\r
+You are not responsible for enforcing compliance by third parties to\r
+this License.\r
+\r
+ 7. If, as a consequence of a court judgment or allegation of patent\r
+infringement or for any other reason (not limited to patent issues),\r
+conditions are imposed on you (whether by court order, agreement or\r
+otherwise) that contradict the conditions of this License, they do not\r
+excuse you from the conditions of this License. If you cannot\r
+distribute so as to satisfy simultaneously your obligations under this\r
+License and any other pertinent obligations, then as a consequence you\r
+may not distribute the Program at all. For example, if a patent\r
+license would not permit royalty-free redistribution of the Program by\r
+all those who receive copies directly or indirectly through you, then\r
+the only way you could satisfy both it and this License would be to\r
+refrain entirely from distribution of the Program.\r
+\r
+If any portion of this section is held invalid or unenforceable under\r
+any particular circumstance, the balance of the section is intended to\r
+apply and the section as a whole is intended to apply in other\r
+circumstances.\r
+\r
+It is not the purpose of this section to induce you to infringe any\r
+patents or other property right claims or to contest validity of any\r
+such claims; this section has the sole purpose of protecting the\r
+integrity of the free software distribution system, which is\r
+implemented by public license practices. Many people have made\r
+generous contributions to the wide range of software distributed\r
+through that system in reliance on consistent application of that\r
+system; it is up to the author/donor to decide if he or she is willing\r
+to distribute software through any other system and a licensee cannot\r
+impose that choice.\r
+\r
+This section is intended to make thoroughly clear what is believed to\r
+be a consequence of the rest of this License.\r
+\r
+ 8. If the distribution and/or use of the Program is restricted in\r
+certain countries either by patents or by copyrighted interfaces, the\r
+original copyright holder who places the Program under this License\r
+may add an explicit geographical distribution limitation excluding\r
+those countries, so that distribution is permitted only in or among\r
+countries not thus excluded. In such case, this License incorporates\r
+the limitation as if written in the body of this License.\r
+\r
+ 9. The Free Software Foundation may publish revised and/or new versions\r
+of the General Public License from time to time. Such new versions will\r
+be similar in spirit to the present version, but may differ in detail to\r
+address new problems or concerns.\r
+\r
+Each version is given a distinguishing version number. If the Program\r
+specifies a version number of this License which applies to it and "any\r
+later version", you have the option of following the terms and conditions\r
+either of that version or of any later version published by the Free\r
+Software Foundation. If the Program does not specify a version number of\r
+this License, you may choose any version ever published by the Free Software\r
+Foundation.\r
+\r
+ 10. If you wish to incorporate parts of the Program into other free\r
+programs whose distribution conditions are different, write to the author\r
+to ask for permission. For software which is copyrighted by the Free\r
+Software Foundation, write to the Free Software Foundation; we sometimes\r
+make exceptions for this. Our decision will be guided by the two goals\r
+of preserving the free status of all derivatives of our free software and\r
+of promoting the sharing and reuse of software generally.\r
+\r
+ NO WARRANTY\r
+\r
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\r
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\r
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\r
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\r
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\r
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\r
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\r
+REPAIR OR CORRECTION.\r
+\r
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\r
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\r
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\r
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\r
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\r
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\r
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\r
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\r
+POSSIBILITY OF SUCH DAMAGES.\r
+\r
+ END OF TERMS AND CONDITIONS\r
+\r
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying all pages.\r
+ *\r
+ * This is the template that displays all pages by default.\r
+ * Please note that this is the WordPress construct of pages\r
+ * and that other 'pages' on your WordPress site will use a\r
+ * different template.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+get_header(); \r
+if ($mantra_frontpage=="Enable" && is_front_page() ) {\r
+mantra_frontpage_generator();\r
+} \r
+else {\r
+?>\r
+ <section id="container">\r
+ \r
+ <div id="content" role="main">\r
+ <?php cryout_before_content_hook(); ?>\r
+\r
+ <?php get_template_part( 'content', 'page'); ?>\r
+\r
+ <?php cryout_after_content_hook(); ?>\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #container -->\r
+\r
+\r
+<?php } // else\r
+get_footer(); ?>\r
--- /dev/null
+Mantra Theme for WordPress\r
+by Cryout Creations\r
+\r
+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. \r
+\r
+Theme created by Cryout Creations - www.cryoutcreations.eu\r
+\r
+Theme support: www.cryoutcreations.eu/mantra\r
+\r
+\r
+The theme and all included binaries (all images, patterns and icons) are released under the GPLv2 licence, which means that you are free to use, modify, and redistribute the theme and all included binaries however you like, as long as you keep the licence together with the theme. This also means that you are free to use it for commercial purposes without any charges. Please read the included license.txt for the full licence.\r
+\r
+The Mantra Theme uses:\r
+- Nivo Slider by Gilbert Pellegrom / under the MIT license / http://nivo.dev7studios.com/\r
+- tinyNav by @viljamis / under the MIT license / http://tinynav.viljamis.com/\r
+- FitVids by Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com\r
+- CSS3 PIE / Dual-licensed Apache License 2.0 or GPLv2 / http://css3pie.com/\r
+\r
+Translations credits:\r
+Chinese (Simplified) - L�n Xuan Li\r
+Czech - Satapouch \r
+Danish - IT-Fidusen\r
+Dutch - Tim De Keyser\r
+French - Luc Capronnier, Ikiu91\r
+German - Thomas Baillivet, Jan Schulte\r
+Greek - tomakrypodari\r
+Hebrew - Ahrale\r
+Hungarian - GeriSoft\r
+Italian - Antonio Mercurio\r
+Japanese - Yoshiki Osako\r
+Norwegian (Bokmal) - kandasa\r
+Persian (Farsi) - Sajjad\r
+Polish - Pawe� Przytu�a\r
+Portuguese (Brazil) - Ivar P. Junior, Joao Lacerda\r
+Russian - Dmitry Kiryanov\r
+Spanish (Spain) - Ra�l Ant�n Cuadrado, Sonia\r
+Turkish - Emre Dalkili�
\ No newline at end of file
--- /dev/null
+/*\r
+Theme Name: Mantra\r
+*/\r
+\r
+\r
+/*\r
+RTL Basics\r
+*/\r
+\r
+body {\r
+ direction:rtl;\r
+ unicode-bidi:embed;\r
+}\r
+\r
+.socials, #sfooter {\r
+ float:left;\r
+}\r
+\r
+ol {margin-left:0;margin-right:1.5em;}\r
+\r
+.entry-content ul > li {padding-left:0;padding-right:20px;}\r
+.entry-content ul, .entry-summary ul {margin-right:0;}\r
+\r
+/*\r
+LAYOUT: Two-Column (Right)\r
+DESCRIPTION: Two-column fixed layout with one sidebar right of content\r
+*/\r
+\r
+#container {\r
+ float: right; \r
+}\r
+\r
+\r
+/* =Structure\r
+-------------------------------------------------------------- */\r
+\r
+/* The main theme structure */\r
+#footer-widget-area .widget-area {\r
+ float: right;\r
+}\r
+#footer-widget-area #fourth { \r
+}\r
+#site-info {\r
+}\r
+#site-generator {\r
+ float: left;\r
+}\r
+\r
+\r
+/* =Global Elements\r
+-------------------------------------------------------------- */\r
+\r
+/* Text elements */\r
+ul {\r
+ margin: 0 1.5em 18px 0;\r
+}\r
+\r
+.widget-area ul ul li {\r
+background:url("images/bullets/arrow_white.png") no-repeat scroll right 8px transparent;\r
+padding-right:12px;\r
+}\r
+#calendar_wrap {\r
+ margin-right: 10px;\r
+}\r
+\r
+.widget_search #s, #search #s {\r
+ border-radius: 0 10px 0 0;\r
+ display: block;\r
+ float: right;\r
+ font-family: Arial !important;\r
+ font-size: 14px;\r
+ margin-bottom: 20px;\r
+ margin-right: 10%;\r
+ padding-bottom: 4px;\r
+ padding-right: 10px;\r
+ padding-top: 6px;\r
+ width: 60%;\r
+}\r
+\r
+.widget_search #searchsubmit {\r
+ background: none repeat scroll 0 0 #777777;\r
+ border: medium none;\r
+ color: #EEEEEE;\r
+ cursor: pointer;\r
+ display: block;\r
+ float: right;\r
+ font-family: Arial !important;\r
+ font-size: 12px;\r
+ height: 28px;\r
+ right: -28px;\r
+ margin: 0;\r
+ padding: 0;\r
+ position: relative;\r
+ text-shadow: 0 -1px 0 #000000;\r
+ top: 0;\r
+ width: 27px;\r
+}\r
+\r
+blockquote {\r
+ font-style: normal;\r
+}\r
+\r
+/* Text meant only for screen readers */\r
+.screen-reader-text {\r
+ left: 9000px;\r
+ text-indent:-9000px;\r
+ overflow:hidden;\r
+}\r
+\r
+\r
+/* =Header\r
+-------------------------------------------------------------- */\r
+\r
+#site-title {\r
+ float: right;\r
+ margin-right: 20px;\r
+ padding-right: 20px;\r
+}\r
+\r
+#site-description {\r
+ clear: left;\r
+ float: right;\r
+ font-style: normal;\r
+}\r
+\r
+/* =Menu\r
+-------------------------------------------------------------- */\r
+\r
+#access {\r
+ float:right;\r
+}\r
+\r
+#access .menu-header,\r
+div.menu {\r
+ margin-right: 12px;\r
+ margin-left: 0;\r
+}\r
+\r
+#access .menu-header li,\r
+div.menu li{\r
+ float:right;\r
+}\r
+\r
+#access ul ul {\r
+margin-right:0;\r
+}\r
+\r
+#access ul li {\r
+ float:right;\r
+}\r
+\r
+\r
+/* =Content\r
+-------------------------------------------------------------- */\r
+\r
+#content table {\r
+ text-align: right;\r
+ margin: 0 0 24px -1px;\r
+}\r
+.page-title span {\r
+ font-style:normal;\r
+}\r
+\r
+#content ul > li {\r
+ background-position: right 10px;\r
+}\r
+\r
+.entry-title,\r
+.entry-meta{\r
+ clear: right;\r
+ float: right;\r
+}\r
+\r
+.entry-meta {\r
+ width: 100%;\r
+ -webkit-box-sizing:border-box;\r
+ -moz-box-sizing:border-box;\r
+ box-sizing:border-box;\r
+}\r
+\r
+.entry-meta .comments-link {float: left;}\r
+\r
+#content .format-status .entry-meta2 {\r
+clear:left;\r
+float:right;\r
+margin-right:0;\r
+padding-right:0;\r
+}\r
+\r
+.status_content {\r
+float:right;\r
+}\r
+\r
+.entry-meta span, .entry-meta2 span{\r
+ float: right;\r
+ padding-left:3px;\r
+}\r
+\r
+.entry-meta2 .edit-link, .entry-meta3 .edit-link, .edit-link {\r
+ float: left;\r
+}\r
+\r
+.entry-meta span .bl_sep, .entry-meta2 span .bl_sep {\r
+ float: left ;\r
+padding-right:5px;\r
+}\r
+\r
+.format-status .avatar {\r
+float:right;\r
+margin-left:10px;\r
+margin-right:0;\r
+}\r
+\r
+#content h3.entry-format {\r
+line-height:1em ;\r
+margin-top:5px;\r
+margin-left:10px;\r
+margin-bottom:0px;\r
+float:right;\r
+}\r
+\r
+#content .format-status h3.entry-format {\r
+margin-left:10px;\r
+}\r
+\r
+\r
+.entry-content input.file,\r
+.entry-content input.button {\r
+ margin-left: 24px;\r
+ margin-right:0;\r
+}\r
+.entry-content blockquote.left {\r
+ float: right;\r
+ margin-right: 0;\r
+ margin-left: 24px;\r
+ text-align: left;\r
+}\r
+.entry-content blockquote.right {\r
+ float: left;\r
+ margin-right: 24px;\r
+ margin-left: 0;\r
+ text-align: right;\r
+}\r
+#entry-author-info #author-avatar {\r
+ float: right;\r
+ margin: 0 0 0 -104px;\r
+}\r
+#entry-author-info #author-description {\r
+ float: right;\r
+ margin: 0 104px 0 0;\r
+}\r
+\r
+.continue-reading-link {\r
+ display:inline-block;\r
+}\r
+\r
+.continue-reading-link .meta-nav {\r
+ display:inline-block;\r
+ float:left;\r
+ -webkit-transform:rotate(180deg);\r
+ -moz-transform:rotate(180deg);\r
+ transform:rotate(180deg);\r
+}\r
+\r
+.sticky hgroup {\r
+ background: url("images/icon-featured.png") no-repeat scroll right 10px transparent;\r
+ padding-right: 35px;\r
+}\r
+\r
+.pagination span, .pagination a {\r
+float:right;\r
+}\r
+\r
+article.format-link, article.format-quote, article.format-image, article.format-chat, article.format-aside {\r
+ background-position: right 10px;\r
+}\r
+\r
+article.format-link header, article.format-quote header, article.format-image header, article.format-chat header, article.format-aside header {\r
+ padding-left: 0;\r
+ padding-right: 60px;\r
+}\r
+\r
+\r
+#respond label {\r
+float:right;\r
+}\r
+#commentform {\r
+float:right;\r
+}\r
+\r
+#commentform label {\r
+width:15%;\r
+}\r
+\r
+#respond .required {\r
+float:right;\r
+}\r
+\r
+#respond .comment-notes {\r
+float:right;\r
+text-align:right;\r
+}\r
+/* Gallery listing\r
+-------------------------------------------------------------- */\r
+\r
+.category-gallery .gallery-thumb {\r
+ float: right;\r
+ margin-left:20px;\r
+ margin-right:0;\r
+}\r
+\r
+\r
+/* Images\r
+-------------------------------------------------------------- */\r
+\r
+#content .gallery .gallery-caption {\r
+ margin-right: 0;\r
+}\r
+\r
+#content .gallery .gallery-item {\r
+ float: right;\r
+}\r
+\r
+#content .entry-title {\r
+ float:none;\r
+}\r
+\r
+/* =Navigation\r
+-------------------------------------------------------------- */\r
+.nav-previous {\r
+ float: right;\r
+}\r
+.nav-next {\r
+ float: left;\r
+ text-align:left;\r
+}\r
+\r
+.theme-default .nivo-controlNav {\r
+ direction:ltr;\r
+}\r
+\r
+/* =Comments\r
+-------------------------------------------------------------- */\r
+\r
+.commentlist li.comment {\r
+ padding: 0 66px 0 0;\r
+}\r
+.commentlist .avatar {\r
+ right: 0;\r
+ left: auto;\r
+}\r
+.comment-author .says, #comments .pingback .url {\r
+ font-style: normal;\r
+}\r
+\r
+/* Comments form */\r
+.children #respond {\r
+ margin: 0 0 0 48px;\r
+}\r
+\r
+/* =Widget Areas\r
+-------------------------------------------------------------- */\r
+\r
+.widget-title {\r
+text-align:right;\r
+padding-left:0 !important;\r
+padding-right:20px !important;\r
+}\r
+\r
+.widget-area ul {\r
+ margin-right: 0;\r
+}\r
+.widget-area ul ul {\r
+ margin-right: 1.3em;\r
+ margin-left: 0;\r
+}\r
+#wp-calendar caption {\r
+ text-align: right;\r
+}\r
+#wp-calendar tfoot #next {\r
+ text-align: left;\r
+}\r
+\r
+/* Main sidebars */\r
+#main .widget-area ul {\r
+ margin-right: 0;\r
+ padding: 0 0 0 20px;\r
+}\r
+#main .widget-area ul ul {\r
+ margin-right: 1.3em;\r
+ margin-left: 0;\r
+}\r
+\r
+/* =Footer\r
+-------------------------------------------------------------- */\r
+#site-generator {\r
+ font-style:normal;\r
+}\r
+#site-generator a {\r
+ background-position: right center;\r
+ padding-right: 20px;\r
+ padding-left: 0;\r
+}
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The template for displaying Search results pages.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ <div id="content" role="main">\r
+ <?php cryout_before_content_hook(); ?>\r
+ \r
+ <?php if ( have_posts() ) : ?>\r
+\r
+ \r
+ <?php mantra_content_nav( 'nav-above' ); ?>\r
+ <span class="page-title"><?php printf( __( 'Search Results for: %s', 'mantra' ), '<span>' . get_search_query() . '</span>' ); ?></span>\r
+ <div class="contentsearch"><?php get_search_form(); ?></div>\r
+ <?php /* Start the Loop */ ?>\r
+ <?php while ( have_posts() ) : the_post(); ?>\r
+\r
+ <?php\r
+ /* Run the loop for the search to output the results.\r
+ * If you want to overload this in a child theme then include a file\r
+ * called loop-search.php and that will be used instead.\r
+ */\r
+ get_template_part( 'content', get_post_format() );\r
+ ?>\r
+ <?php endwhile; ?>\r
+\r
+ <?php if($mantra_pagination=="Enable") mantra_pagination(); else mantra_content_nav( 'nav-below' ); ?>\r
+\r
+ <?php else : ?>\r
+\r
+ <article id="post-0" class="post no-results not-found">\r
+ <span class="page-title"><?php printf( __( 'No search results for: %s', 'mantra' ), '<span>' . get_search_query() . '</span>' ); ?></span>\r
+ <header class="entry-header">\r
+ <h1 class="entry-title"><?php _e( 'Nothing Found', 'mantra' ); ?></h1>\r
+ </header><!-- .entry-header -->\r
+ <br /><div class="contentsearch"><?php get_search_form(); ?></div>\r
+ </article><!-- #post-0 -->\r
+ <?php endif; ?>\r
+\r
+\r
+ <?php cryout_after_content_hook(); ?>\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #primary -->\r
+\r
+<?php get_footer(); ?>\r
--- /dev/null
+<?php $search_text = __( 'Search', 'mantra' ); ?> \r
+<form method="get" id="searchform"\r
+action="<?php echo esc_url(home_url( '/' )); ?>/">\r
+<input type="text" value="<?php echo $search_text; ?>"\r
+name="s" id="s"\r
+onblur="if (this.value == '')\r
+{this.value = '<?php echo $search_text; ?>';}"\r
+onfocus="if (this.value == '<?php echo $search_text; ?>')\r
+{this.value = '';}" />\r
+<input type="submit" id="searchsubmit" value="OK" />\r
+</form>
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The Footer widget areas.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+?>\r
+\r
+<?php\r
+ /* The footer widget area is triggered if any of the areas\r
+ * have widgets. So let's check that first.\r
+ *\r
+ * If none of the sidebars have widgets, then let's bail early.\r
+ */\r
+ if ( ! is_active_sidebar( 'first-footer-widget-area' )\r
+ && ! is_active_sidebar( 'second-footer-widget-area' )\r
+ && ! is_active_sidebar( 'third-footer-widget-area' )\r
+ && ! is_active_sidebar( 'fourth-footer-widget-area' )\r
+ )\r
+ return;\r
+ // If we get this far, we have widgets. Let do this.\r
+?>\r
+\r
+ <div id="footer-widget-area" role="complementary" <?php mantra_footer_sidebar_class(); ?> >\r
+\r
+<?php if ( is_active_sidebar( 'first-footer-widget-area' ) ) : ?>\r
+ <div id="first" class="widget-area">\r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'first-footer-widget-area' ); ?>\r
+ </ul>\r
+ </div><!-- #first .widget-area -->\r
+<?php endif; ?>\r
+\r
+<?php if ( is_active_sidebar( 'second-footer-widget-area' ) ) : ?>\r
+ <div id="second" class="widget-area">\r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'second-footer-widget-area' ); ?>\r
+ </ul>\r
+ </div><!-- #second .widget-area -->\r
+<?php endif; ?>\r
+\r
+<?php if ( is_active_sidebar( 'third-footer-widget-area' ) ) : ?>\r
+ <div id="third" class="widget-area">\r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'third-footer-widget-area' ); ?>\r
+ </ul>\r
+ </div><!-- #third .widget-area -->\r
+<?php endif; ?>\r
+\r
+<?php if ( is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?>\r
+ <div id="fourth" class="widget-area">\r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'fourth-footer-widget-area' ); ?>\r
+ </ul>\r
+ </div><!-- #fourth .widget-area -->\r
+<?php endif; ?>\r
+ </div><!-- #footer-widget-area -->\r
--- /dev/null
+<?php\r
+/**\r
+ * The Sidebar containing the primary and secondary widget areas.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+\r
+/* This retrieves admin options. */\r
+$mantra_options= mantra_get_theme_options();\r
+foreach ($mantra_options as $key => $value) {\r
+ ${"$key"} = esc_attr($value) ;\r
+}\r
+\r
+if (is_page_template() && !is_page_template('template-blog.php') && !is_page_template('template-onecolumn.php') && !is_page_template('template-page-with-intro.php') ) {\r
+?>\r
+ <div id="primary" class="widget-area" role="complementary">\r
+ \r
+ <?php cryout_before_primary_widgets_hook(); ?>\r
+ \r
+ \r
+ <?php if (!is_active_sidebar('primary-widget-area') && !is_active_sidebar('secondary-widget-area')): ?>\r
+ <ul class="xoxo"> \r
+ <li class="widget-container widget-placeholder">\r
+ <h3 class="widget-title"><?php _e('Sidebar 1','mantra'); ?></h3>\r
+ <p><?php\r
+ 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/>";\r
+ 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") );\r
+ ?></p>\r
+ </li>\r
+ </ul>\r
+ <?php endif; ?>\r
+ \r
+ \r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'primary-widget-area' ); ?>\r
+ </ul>\r
+\r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'secondary-widget-area' ); ?>\r
+ </ul>\r
+ \r
+ <?php cryout_after_primary_widgets_hook(); ?>\r
+ \r
+ </div><!-- #primary .widget-area -->\r
+ \r
+ <?php \r
+ if (is_page_template("template-threecolumns-right.php") || is_page_template("template-threecolumns-left.php") || is_page_template("template-threecolumns-center.php")) { ?>\r
+\r
+ <div id="secondary" class="widget-area" role="complementary" >\r
+ \r
+ <?php cryout_before_secondary_widgets_hook(); ?>\r
+ \r
+ <?php if (!is_active_sidebar('third-widget-area') && !is_active_sidebar('fourth-widget-area')): ?>\r
+ <ul class="xoxo"> \r
+ <li class="widget-container widget-placeholder">\r
+ <h3 class="widget-title"><?php _e('Sidebar 2','mantra'); ?></h3>\r
+ <p><?php\r
+ 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/>";\r
+ 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") );\r
+ ?></p>\r
+ </li>\r
+ </ul>\r
+ <?php endif; ?>\r
+ \r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'third-widget-area' ); ?>\r
+ </ul>\r
+ \r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'fourth-widget-area' ); ?>\r
+ </ul>\r
+ \r
+ <?php cryout_after_secondary_widgets_hook(); ?>\r
+ \r
+ </div><!-- #secondary .widget-area -->\r
+\r
+ <?php } // second sidebar\r
+} // if page_template\r
+\r
+else \r
+if ($mantra_side != "1c") { ?>\r
+ <div id="primary" class="widget-area" role="complementary">\r
+ \r
+ <?php cryout_before_primary_widgets_hook(); ?>\r
+ \r
+ <?php \r
+ if (!is_active_sidebar('primary-widget-area') && !is_active_sidebar('secondary-widget-area')): ?>\r
+ <ul class="xoxo"> \r
+ <li class="widget-container widget-placeholder">\r
+ <h3 class="widget-title"><?php _e('Sidebar 1','mantra'); ?></h3>\r
+ <p><?php\r
+ 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/>";\r
+ 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") );\r
+ ?></p>\r
+ </li>\r
+ </ul>\r
+ <?php endif; ?>\r
+ \r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'primary-widget-area' ) ; ?>\r
+ </ul>\r
+\r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'secondary-widget-area' ); ?>\r
+ </ul>\r
+ \r
+ \r
+ <?php cryout_after_primary_widgets_hook(); ?>\r
+ \r
+ </div><!-- #primary .widget-area -->\r
+\r
+<?php\r
+ // A second sidebar for widgets, just because.\r
+ \r
+ if ( $mantra_side != "2cSr" && $mantra_side != "2cSl") { ?>\r
+ \r
+ <div id="secondary" class="widget-area" role="complementary" >\r
+ \r
+ <?php cryout_before_secondary_widgets_hook(); ?>\r
+ <?php if (!is_active_sidebar('third-widget-area') && !is_active_sidebar('fourth-widget-area')): ?>\r
+ <ul class="xoxo"> \r
+ <li class="widget-container widget-placeholder">\r
+ <h3 class="widget-title"><?php _e('Sidebar 2','mantra'); ?></h3>\r
+ <p><?php\r
+ 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/>";\r
+ 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") );\r
+ ?></p>\r
+ </li>\r
+ </ul>\r
+ <?php endif; ?>\r
+ \r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'third-widget-area' ); ?>\r
+ </ul>\r
+ \r
+ <ul class="xoxo">\r
+ <?php dynamic_sidebar( 'fourth-widget-area' ); ?>\r
+ </ul>\r
+ \r
+ <?php cryout_after_secondary_widgets_hook(); ?> \r
+ \r
+ </div><!-- #secondary .widget-area -->\r
+ <?php }\r
+ }?> <!-- 1c -->
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The Template for displaying all single posts.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ <div id="content" role="main">\r
+ \r
+ <?php cryout_before_content_hook(); ?>\r
+ \r
+<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>\r
+\r
+ <div id="nav-above" class="navigation">\r
+ <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">«</span> %title' ); ?></div>\r
+ <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">»</span>' ); ?></div>\r
+ </div><!-- #nav-above -->\r
+\r
+ <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <h1 class="entry-title"><?php the_title(); ?></h1>\r
+ <?php cryout_post_title_hook(); ?>\r
+ <div class="entry-meta">\r
+ <?php mantra_posted_on(); cryout_post_meta_hook(); ?>\r
+ </div><!-- .entry-meta -->\r
+\r
+ <div class="entry-content">\r
+ <?php the_content(); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mantra' ), 'after' => '</span></div>' ) ); ?>\r
+ </div><!-- .entry-content -->\r
+\r
+<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?>\r
+ <div id="entry-author-info">\r
+ <div id="author-avatar">\r
+ <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'mantra_author_bio_avatar_size', 60 ) ); ?>\r
+ </div><!-- #author-avatar -->\r
+ <div id="author-description">\r
+ <h2><?php printf( esc_attr__( 'About %s', 'mantra' ), get_the_author() ); ?></h2>\r
+ <?php the_author_meta( 'description' ); ?>\r
+ <div id="author-link">\r
+ <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">\r
+ <?php printf( __( 'View all posts by ','mantra').'%s <span class="meta-nav">→</span>', get_the_author() ); ?>\r
+ </a>\r
+ </div><!-- #author-link -->\r
+ </div><!-- #author-description -->\r
+ </div><!-- #entry-author-info -->\r
+<?php endif; ?>\r
+\r
+ <div class="entry-utility">\r
+ <?php mantra_posted_in(); ?>\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); cryout_post_footer_hook(); ?>\r
+ </div><!-- .entry-utility -->\r
+ </div><!-- #post-## -->\r
+\r
+ <div id="nav-below" class="navigation">\r
+ <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">«</span> %title' ); ?></div>\r
+ <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">»</span>' ); ?></div>\r
+ </div><!-- #nav-below -->\r
+\r
+ <?php comments_template( '', true ); ?>\r
+\r
+<?php endwhile; // end of the loop. ?>\r
+\r
+ <?php cryout_after_content_hook(); ?>\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #container -->\r
+\r
+<?php get_footer(); ?>\r
--- /dev/null
+/* =Responsive Structure\r
+----------------------------------------------- */\r
+\r
+@media (max-width: 1100px) {\r
+ body.mobile #content {\r
+ float:none;\r
+ margin:0 2%;\r
+ width:96%;\r
+ height:auto; }\r
+ body.mobile #access, body.mobile #branding {width:100%;}\r
+ body.mobile #wrapper, body.mobile #colophon, body.mobile #main, body.mobile article.post, body.mobile #container, body.mobile #linky { width: auto; }\r
+ body.mobile #branding { height:auto; min-height:90px; }\r
+ body.mobile #bg_image { min-height:90px; width:100%; }\r
+\r
+ body.mobile #header-container > div {\r
+ margin-top:7px;\r
+ margin-left:14px;\r
+ height:100%; }\r
+\r
+ body.mobile a#logo { height:100%; display: block !important; }\r
+\r
+ body.mobile a#logo img { height:80%; width:auto; max-width:90%; }\r
+ body.mobile #site-title {margin-top:22px;}\r
+ body.mobile #site-description {clear:both;margin-left:0;}\r
+ body.mobile.safari a#logo img { max-height: 80px; height:auto;}\r
+\r
+ body.mobile #smenul, body.mobile #smenur { margin-top:0; }\r
+\r
+ body.mobile .socials a { margin:0; padding-left:5px; display: block; }\r
+ body.mobile .socials a img { width:22px; }\r
+ body.mobile #wrapper { margin:10px; }\r
+ body.mobile #access .menu-header, body.mobile div.menu { width:95%; }\r
+ body.mobile #primary, body.mobile #secondary { width:100%; height:auto !important; }\r
+\r
+ body.mobile #content img, body.mobile content article.post img, body.mobile #content article .wp-caption, body.mobile article embed {\r
+ max-width:90% !important; }\r
+ body.mobile #access { /*background:#ddd;*/ }\r
+ body.mobile #slider { width:auto; height:auto; }\r
+ body.mobile #footer-widget-area .widget-title { background:none !important; padding-left:10px; }\r
+ body.mobile .widget-title { -moz-border-radius:0; -webkit-border-radius:0; border-radius:0; }\r
+ body.mobile .xoxo .widget-title { margin-left:-10px !important; text-align:left !important; }\r
+ body.mobile #site-title { font-size:30px; line-height: 30px; padding-left:0; }\r
+ body.mobile #site-description { margin-top:5px; font-size:15px; line-height: 15px; }\r
+\r
+ body.mobile #main .widget-area ul.xoxo { padding-left:10px; }\r
+\r
+ body.mobile .footertwo .widget-area, body.mobile .footerthree .widget-area, body.mobile .footerfour .widget-area {\r
+ width:95%; margin-left:2.5%; }\r
+ body.mobile #sfooter { display:table; float:none; text-align:center; margin:0 auto; padding:0; top:0; margin-top:10px; }\r
+}\r
+\r
+@media (max-width: 800px) {\r
+ #content {\r
+ float:none;\r
+ margin:0 2%;\r
+ width:96%;\r
+ height:auto; }\r
+ #access, #branding {width:100%;}\r
+ #wrapper, #colophon, #main, article.post, #container, #linky { width: auto; }\r
+ #branding { height:auto; min-height:90px; }\r
+ #bg_image { min-height:90px; width:100%; }\r
+\r
+ #header-container > div {\r
+ margin-top:7px;\r
+ margin-left:14px;\r
+ height:100%; }\r
+\r
+ a#logo { height:100%; display: block !important; }\r
+\r
+ a#logo img { height:80%; width:auto; max-width:90%; }\r
+ #site-title {margin-top:22px;}\r
+ #site-description {clear:both;margin-left:0;}\r
+ .safari a#logo img { max-height: 80px; height:auto;}\r
+\r
+ #smenul, #smenur { margin-top:0; }\r
+\r
+ .socials a { margin:0; padding-left:5px; display: block; }\r
+ .socials a img { width:22px; }\r
+ #wrapper { margin:10px; }\r
+ #access .menu-header, div.menu { width:95%; }\r
+ #primary, #secondary { width:100%; height:auto !important; }\r
+\r
+ .slider-wrapper { width:95%; }\r
+ #slider, #slider img { width:100%; }\r
+ #front-columns > div { width:45%; }\r
+ #front-columns .column-image, #front-columns .column-image img { height:inherit; }\r
+\r
+ #content img, #content article.post img, #content .wp-caption, article embed { max-width:100% !important;}\r
+ #access { /*background:#ddd;*/ }\r
+ #column3 { clear:left; }\r
+ #slider { width:auto; height:auto; }\r
+ #footer-widget-area .widget-title { background:none !important; padding-left:10px; }\r
+ .widget-title { -moz-border-radius:0; -webkit-border-radius:0; border-radius:0; }\r
+ .xoxo .widget-title { margin-left:-10px !important; text-align:left !important; }\r
+ #site-title { font-size:30px; line-height: 30px; padding-left:0; }\r
+ #site-description { margin-top:5px; font-size:15px; line-height: 15px; }\r
+\r
+ #main .widget-area ul.xoxo { padding-left:10px; }\r
+\r
+ .footertwo .widget-area, .footerthree .widget-area, .footerfour .widget-area {\r
+ width:95%; margin-left:2.5%; }\r
+\r
+ #sfooter { display:table; float:none; text-align:center; margin:0 auto; padding:0; top:0; margin-top:10px; }\r
+}\r
+\r
+@media (max-width: 650px) {\r
+ /* @media (max-width: 650px) Reduce font-sizes for better readability on smaller devices */\r
+ body, #content p, #content ul, #content ol,#content code, #content pre, #content blockquote {\r
+ font-size: 13px !important;\r
+ }\r
+ #front-text1 h1, #front-text2 h1 {\r
+ font-size:2em;\r
+ line-height:2em;\r
+ }\r
+ #access ul {\r
+ font-size: 12px;\r
+ }\r
+ article.intro .entry-content {\r
+ font-size: 12px;\r
+ }\r
+ .entry-title {\r
+ font-size: 21px;\r
+ }\r
+ .featured-post .entry-title {\r
+ font-size: 14px;\r
+ }\r
+ .singular .entry-title {\r
+ font-size: 28px;\r
+ }\r
+ .entry-meta {border:none;padding:0;}\r
+ .entry-meta a , .entry-meta, .comments-link{\r
+ font-size: 10px !important;\r
+ background:none !important;\r
+ -moz-box-shadow:none !important;\r
+ -webkit-box-shadow:none !important;\r
+ box-shadow:none !important;\r
+ }\r
+ #content .entry-title {\r
+ font-size:20px !important;\r
+ }\r
+ #content h1, #content h2, #content h3, #content h4, #content h5, #content h6 {\r
+ margin-left:0 !important;\r
+ }\r
+ .widget-area a:link, .widget-area a:visited {\r
+ font-size:10px !important;\r
+ }\r
+ .tinynav {\r
+ display: block;\r
+ }\r
+ #access .menu ul:first-child {\r
+ display: none;\r
+ }\r
+ .theme-default .nivo-caption {\r
+ font-size:9px;\r
+ }\r
+ .short-columns {\r
+ width:100%;\r
+ }\r
+}\r
+\r
+\r
+\r
+@media (max-width: 480px) {\r
+ /* @media (max-width: 450px) Reduce font-sizes for better readability on the smalles of devices */\r
+\r
+\r
+body, #content p, #content ul, #content ol,#content code, #content pre, #content blockquote {\r
+ font-size: 12px !important;\r
+ }\r
+\r
+ #site-title span a{\r
+ font-size: 18px;\r
+ line-height:18px;\r
+ }\r
+ #site-description {\r
+ font-size: 11px;\r
+ line-height:10px;\r
+ }\r
+ #front-columns > div {\r
+ width:90% ;\r
+ }\r
+\r
+ body {\r
+ padding: 0;\r
+ }\r
+ #page {\r
+ margin-top: 0;\r
+ }\r
+ #branding {\r
+ border-top: none;\r
+ }\r
+\r
+}\r
+\r
--- /dev/null
+/*\r
+ * Theme Name: Mantra\r
+ * Theme URI: http://www.cryoutcreations.eu/mantra\r
+ * 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.\r
+ * Author: Cryout Creations\r
+ * Author URI: http://www.cryoutcreations.eu\r
+ * Version: 2.4.1.1\r
+ * License: GNU General Public License v2.0\r
+ * License URI: http://www.gnu.org/licenses/gpl-2.0.html\r
+ * 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\r
+ *\r
+ * Copyright (c) 2011-2013 Cryout Creations\r
+ * http://www.cryoutcreations.eu\r
+*/\r
+\r
+\r
+/* \r
+IMPORTANT!\r
+\r
+Any changes made to this or any other of the theme's files will be lost at the next update.\r
+\r
+To safely make customizations to the theme, for CSS-only consider using the theme's dedicated \r
+"Custom CSS" field found under the Miscellaneous section of the theme settings page; \r
+for advanced CSS and other customizations, consider using a child theme.\r
+*/\r
+\r
+\r
+/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html\r
+-------------------------------------------------------------- */\r
+\r
+html, body, div, span, applet, object, iframe,\r
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,\r
+a, abbr, acronym, address, big, cite, code,\r
+del, dfn, em, font, img, ins, kbd, q, s, samp,\r
+small, strike, strong, sub, sup, tt, var,\r
+b, u, i, center,\r
+dl, dt, dd, ol, ul, li,\r
+fieldset, form, label, legend{\r
+ background: transparent;\r
+ border: 0;\r
+ margin: 0;\r
+ padding: 0;\r
+ vertical-align: baseline;\r
+}\r
+\r
+table, tbody, tfoot, thead, tr, th, td {\r
+ background: transparent;\r
+ border: 0;\r
+ margin: 0;\r
+ padding: 0;\r
+}\r
+\r
+body {\r
+ line-height: 1;\r
+}\r
+h1, h2, h3, h4, h5, h6 {\r
+ clear: both;\r
+ font-weight: normal;\r
+}\r
+#content h1,#content h2,#content h3,#content h4,#content h5,#content h6 {\r
+ clear: none;\r
+}\r
+ol, ul {\r
+ list-style: none;\r
+}\r
+\r
+blockquote {\r
+ border : 1px solid #EEE;\r
+ padding:15px ;\r
+ display:block;\r
+ background-color: #FAFAFA;\r
+ font-style: italic;\r
+ max-width:90% !important;\r
+ margin:0 auto;\r
+ clear:both;\r
+ float:none;\r
+ color:#999;\r
+ -webkit-border-radius:5px;\r
+ -moz-border-radius:5px;\r
+ border-radius:5px;\r
+ -webkit-box-shadow: 0px 0px 3px #FFF inset;\r
+ -moz-box-shadow: 0px 0px 3px #FFF inset;\r
+ box-shadow: 0px 0px 3px #FFF inset;\r
+ }\r
+\r
+del {\r
+ text-decoration: line-through;\r
+}\r
+/* tables still need 'cellspacing="0"' in the markup */\r
+table {\r
+ border-collapse: collapse;\r
+ border-spacing: 0;\r
+}\r
+a img {\r
+ border: none;\r
+}\r
+\r
+\r
+\r
+/* =Layout\r
+-------------------------------------------------------------- */\r
+\r
+/*\r
+LAYOUT: Two columns\r
+DESCRIPTION: Two-column fixed layout with one sidebar right of content\r
+*/\r
+\r
+#container {\r
+ float: none;\r
+ margin:0;\r
+ width: 100%;\r
+}\r
+#content {\r
+ display:block;\r
+ float:left;\r
+ margin: 0px 0px 0 20px;\r
+ padding-top:10px;\r
+}\r
+#primary,\r
+#secondary {\r
+ display:block;\r
+ float: right;\r
+ overflow: hidden;\r
+ width:125px;\r
+ border-left:1px dashed #EAEAEA;\r
+ padding-left:20px;\r
+ padding-top:10px;\r
+}\r
+#primary {\r
+min-height:200px;\r
+}\r
+\r
+#secondary {\r
+ /*clear: right;*/\r
+}\r
+#footer {\r
+ clear: both;\r
+ width: 100%;\r
+}\r
+\r
+/*\r
+LAYOUT: One column, no sidebar\r
+DESCRIPTION: One centered column with no sidebar\r
+*/\r
+\r
+.one-column #content {\r
+ margin: 0 20px;\r
+ width:auto;\r
+ float:none;\r
+}\r
+\r
+/*\r
+LAYOUT: Full width, no sidebar\r
+DESCRIPTION: Full width content with no sidebar; used for attachment pages\r
+*/\r
+\r
+.single-attachment #content {\r
+ margin: 0px auto;\r
+ width:96%;\r
+ display:block;\r
+ float:none;\r
+}\r
+\r
+\r
+/* =Fonts\r
+-------------------------------------------------------------- */\r
+body {\r
+ font-family:Segoe UI, Arial, sans-serif;\r
+}\r
+\r
+pre {\r
+ font-family: "Courier 10 Pitch", Courier, monospace;\r
+}\r
+code {\r
+ font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace !important;\r
+}\r
+\r
+.entry-content code {\r
+ background-color: #FAFAFA;\r
+ border-left: 5px solid #EEEEEE;\r
+ clear: both;\r
+ color: #1B1B1B;\r
+ display: block;\r
+ float: none;\r
+ margin: 0 auto;\r
+ overflow: auto;\r
+ padding: 10px !important;\r
+ text-indent: 0;\r
+ white-space: nowrap;\r
+ width: 95% !important;\r
+}\r
+\r
+/* =Structure\r
+-------------------------------------------------------------- */\r
+\r
+/* The main theme structure */\r
+#colophon,\r
+#branding,\r
+#main,\r
+#wrapper {\r
+ margin: 0 auto;\r
+}\r
+\r
+#branding {\r
+display:block;\r
+float:left;\r
+clear:both;\r
+height:75px;\r
+padding:0;\r
+position:relative;\r
+overflow:hidden;\r
+}\r
+\r
+a#logo {\r
+display:inline;\r
+height:100%;\r
+}\r
+\r
+#linky {\r
+background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');\r
+display:block;\r
+width:100%;\r
+height:100%;\r
+}\r
+\r
+#forbottom {\r
+min-height:200px;\r
+}\r
+\r
+#wrapper {\r
+ padding: 10px 0 0;\r
+}\r
+\r
+/* Structure the footer area */\r
+#footer-widget-area {\r
+ overflow: hidden;\r
+}\r
+\r
+.footerfour .widget-area {\r
+ float: left;\r
+ margin-left: 1.5%;\r
+ margin-right:1.5%;\r
+ width: 22%;\r
+}\r
+.footerthree .widget-area {\r
+ float: left;\r
+ margin-left: 1.5%;\r
+ margin-right:1.5%;\r
+ width: 30%;\r
+}\r
+\r
+.footertwo .widget-area {\r
+ float: left;\r
+ margin-left: 2.5%;\r
+ width: 47%;\r
+}\r
+\r
+.footerone .widget-area {\r
+ float: left;\r
+ margin-left: 2%;\r
+ width: 98%;\r
+}\r
+\r
+\r
+#footer-widget-area #fourth {\r
+ margin-right: 0;\r
+}\r
+\r
+#site-generator {\r
+ float: right;\r
+ width: 220px;\r
+}\r
+\r
+\r
+/* =Global Elements\r
+-------------------------------------------------------------- */\r
+\r
+/* Main global 'theme' and typographic styles */\r
+body {\r
+ padding-bottom:10px;\r
+ background: #333;\r
+}\r
+\r
+body,\r
+input,\r
+textarea {\r
+ color: #666;\r
+ font-size: 12px;\r
+ line-height: 18px;\r
+\r
+}\r
+hr {\r
+ background-color: #d7d7d7;\r
+ border: 0;\r
+ clear: both;\r
+ height: 1px;\r
+ margin-bottom: 18px;\r
+}\r
+\r
+/* Text elements */\r
+#content {\r
+ font-size:15px;\r
+ line-height:1.7em;\r
+ color: #333;\r
+}\r
+\r
+#content p{\r
+ margin-bottom: 1.5em;\r
+}\r
+.entry-content ul, .entry-summary ul {\r
+ margin-left: 1.5em;\r
+}\r
+\r
+.entry-content ul, .entry-summary ul ,\r
+.entry-content ol, .entry-summary ol {\r
+margin-bottom:1.5em;\r
+}\r
+\r
+.entry-content ul > li {\r
+ background: url(images/bullet.png) left 10px no-repeat;\r
+ padding-left: 20px;\r
+}\r
+\r
+.entry-content li li {\r
+ margin-left: 15px;\r
+}\r
+\r
+ol {\r
+ list-style: decimal;\r
+ margin-left: 1.5em;\r
+\r
+}\r
+ol ol {\r
+ list-style: upper-alpha;\r
+}\r
+ol ol ol {\r
+ list-style: lower-roman;\r
+}\r
+ol ol ol ol {\r
+ list-style: lower-alpha;\r
+}\r
+ul ul,\r
+ol ol,\r
+ul ol,\r
+ol ul {\r
+ margin-bottom: 0;\r
+}\r
+dt {\r
+ font-weight: bold;\r
+}\r
+big {\r
+ font-size: 131.25%;\r
+}\r
+ins {\r
+ background: #D9EFFD;\r
+ text-decoration: none;\r
+}\r
+\r
+pre {\r
+ background: #F8F8F8;\r
+ color: #222;\r
+ padding: 1.5em;\r
+ border:1px dashed #ddd;\r
+}\r
+abbr,\r
+acronym {\r
+ border-bottom: 1px dotted #666;\r
+ cursor: help;\r
+}\r
+sup,\r
+sub {\r
+ height: 0;\r
+ line-height: 1;\r
+ position: relative;\r
+ vertical-align: baseline;\r
+}\r
+sup {\r
+ bottom: 1ex;\r
+}\r
+sub {\r
+ top: .5ex;\r
+}\r
+input[type="text"],input[type="password"],input[type="email"],\r
+textarea {\r
+ background: #fff;\r
+ border: 1px solid #DDD;\r
+ padding-left:5px;\r
+ border-radius:2px;\r
+ -moz-border-radius:2px;\r
+ -webkit-border-radius:2px;\r
+ height:32px;\r
+ -webkit-transition:.2s border ease;\r
+ -moz-transition:.2s border ease;\r
+ -o-transition:.2s border ease;\r
+ transition:.2s border ease;\r
+ -moz-box-sizing:border-box;\r
+ -webkit-box-sizing:border-box;\r
+ box-sizing:border-box;\r
+}\r
+\r
+input[type="text"]:hover,input[type="password"]:hover,input[type="email"]:hover,\r
+textarea:hover {\r
+border:1px solid #CCC !important;\r
+}\r
+a:link {\r
+ color: #0D85CC;text-decoration:none;\r
+}\r
+a:visited {\r
+ color: #0D85CC;text-decoration:none;;\r
+}\r
+a:active,\r
+a:hover {\r
+ color: #000;\r
+}\r
+\r
+/* Text meant only for screen readers */\r
+.screen-reader-text {\r
+ position: absolute;\r
+ left: -9000px;\r
+}\r
+\r
+\r
+/* =Header\r
+-------------------------------------------------------------- */\r
+\r
+#header {\r
+ background:none;\r
+\r
+}\r
+#site-title {\r
+ float: left;\r
+ font-size: 36px;\r
+ line-height: 60px;\r
+}\r
+#site-title a {\r
+ color: #EEE;\r
+ font-weight: bold;\r
+ text-decoration: none;\r
+ font-variant: small-caps;\r
+ letter-spacing: -0.02em;\r
+ -moz-text-shadow: -2px -2px 0px #000;\r
+ -webkit-text-shadow: -2px -2px 0px #000;\r
+ text-shadow: -2px -2px 0px #000;\r
+ display:block;\r
+}\r
+#site-description {\r
+ display:inline;\r
+ float: left;\r
+ font-size: 15px;\r
+ line-height:60px;\r
+ margin-left:20px;\r
+ color:#999;\r
+ padding-left:0px;\r
+ letter-spacing: 0.1em;\r
+ -moz-text-shadow: 0px -1px 0px #000;\r
+ -webkit-text-shadow: 0px -1px 0px #000;\r
+ text-shadow: 0px -1px 0px #000;\r
+}\r
+\r
+#header-container {\r
+display:block;\r
+float:none;\r
+position:absolute;\r
+top:0px;\r
+width:100%;\r
+height:100%;\r
+}\r
+\r
+#header-container > div {\r
+margin-top: 20px;\r
+margin-left: 40px;\r
+}\r
+\r
+/* =Menu -PRIMARY\r
+-------------------------------------------------------------- */\r
+\r
+#access {\r
+ display: block;\r
+ float: left;\r
+ margin: 0 auto;\r
+ margin-top:10px;\r
+}\r
+\r
+#access .menu-header, div.menu {\r
+margin:0 6px;\r
+}\r
+\r
+#access ul {\r
+margin-bottom:0px;\r
+}\r
+\r
+ #access ul li.current_page_item, #access ul li.current-menu-item {\r
+-moz-box-shadow:none;\r
+-webkit-box-shadow:none;\r
+box-shadow:none;\r
+background:#fff;\r
+}\r
+\r
+\r
+#access a {\r
+ display:block;\r
+ color: #5F5B5B;\r
+ text-decoration: none;\r
+ padding:0.2em 1.2em;\r
+ font-size:14px;\r
+}\r
+\r
+#access ul li {\r
+display:block;\r
+float:left;\r
+background:#FAFAFA;\r
+-webkit-border-radius:7px 7px 0 0;\r
+-moz-border-radius:7px 7px 0 0;\r
+border-radius:7px 7px 0 0;\r
+margin:0 3px;\r
+padding:3px 0;\r
+-moz-box-shadow:0 -3px 4px rgba(0,0,0,0.1) inset;\r
+-webkit-box-shadow:0 -3px 4px rgba(0,0,0,0.1) inset;\r
+box-shadow:0 -3px 4px rgba(0,0,0,0.1) inset;\r
+white-space: nowrap;\r
+}\r
+\r
+#access a:hover {\r
+ color:#0C85CD ;\r
+}\r
+\r
+#access ul ul {\r
+ display: none;\r
+ position: absolute;\r
+ clear:both;\r
+ z-index: 99999;\r
+ margin-left:0px;\r
+ -moz-box-shadow:0 10px 10px rgba(0, 0, 0, 0.3) ;\r
+ -webkit-box-shadow:0 10px 10px rgba(0, 0, 0, 0.3);\r
+ box-shadow:0 10px 10px rgba(0, 0, 0, 0.3);\r
+}\r
+#access ul ul li { /* level 2 */\r
+ margin:0;\r
+ width: 100%; /* submenu width fix */\r
+ border-bottom: 1px solid rgba(220,220,220,0.3);\r
+ position:relative;\r
+ background:#FFF;\r
+ -webkit-border-radius: 0;\r
+ -moz-border-radius:0;\r
+ border-radius: 0;\r
+ -moz-box-shadow:none ;\r
+ -webkit-box-shadow:none ;\r
+ box-shadow:none;\r
+ display:block;\r
+ float:left;\r
+ clear:both;\r
+ min-width:150px;\r
+}\r
+\r
+\r
+#access ul ul ul {\r
+position:absolute;\r
+ left: 100%;\r
+ top: 0px;\r
+ margin:0;\r
+}\r
+\r
+\r
+#access ul ul ul li { /* level 3 */\r
+ border: 0;\r
+ width: 100%;\r
+ display: block;\r
+ float: none;\r
+ border-bottom: 1px solid rgba(220,220,220,0.3);\r
+ }\r
+\r
+\r
+#access ul ul a, #access ul ul ul a {\r
+ display:block;\r
+ float:none;\r
+ color:#5F5B5B;\r
+ width:100% ;\r
+ padding-top: 0.6em ;\r
+ padding-bottom: 0.6em ;\r
+ }\r
+\r
+#access ul ul li:hover, #access ul ul ul li:hover {\r
+ background:#FCFCFC ;\r
+ }\r
+\r
+\r
+\r
+#access li:hover > a {\r
+ color:#0E85CD ;\r
+}\r
+\r
+#access ul ul :hover > a {\r
+ color:#0E85CD;\r
+}\r
+\r
+#access.jssafe ul li > ul {\r
+ display: none;\r
+}\r
+\r
+#access.jssafe ul li:hover > ul {\r
+ display: block;\r
+}\r
+#access ul li.current_page_item > a,\r
+#access ul li.current-menu-item > a{\r
+\r
+ color: #000 !important;\r
+}\r
+\r
+#access ul ul li.current_page_item ,\r
+#access ul ul li.current-menu-ancestor,\r
+#access ul ul li.current-menu-item ,\r
+#access ul ul li.current-menu-parent {\r
+ color: #000 !important;\r
+ background:#FFF !important;\r
+}\r
+\r
+\r
+* html #access ul li.current_page_item a,\r
+* html #access ul li.current-menu-ancestor a,\r
+* html #access ul li.current-menu-item a,\r
+* html #access ul li.current-menu-parent a,\r
+* html #access ul li a:hover {\r
+ color: #5F5B5B ;\r
+}\r
+\r
+/* =Menu -SECONDARY\r
+-------------------------------------------------------------- */\r
+\r
+.footermenu {\r
+ display:block;\r
+ overflow:visible;\r
+ float:none;\r
+}\r
+\r
+.topmenu {\r
+overflow:hidden;\r
+ }\r
+\r
+.topmenu ul{\r
+ margin:0;\r
+ padding:0;\r
+ float:right;\r
+}\r
+\r
+.topmenu ul li{\r
+ display:block;\r
+ float:left;\r
+ margin:3px 5px;\r
+}\r
+\r
+.footermenu {\r
+ text-align:center;\r
+ overflow:hidden;\r
+ display:table;\r
+ float:none;\r
+ margin:0 auto;\r
+}\r
+\r
+.footermenu ul li{\r
+ display:block;\r
+ float:left;\r
+ margin:0px 5px;\r
+ text-align:center;\r
+}\r
+\r
+\r
+/* =Content\r
+-------------------------------------------------------------- */\r
+\r
+#main {\r
+ background:#FFF;\r
+ clear: both;\r
+ overflow: hidden;\r
+ padding: 0px ;\r
+}\r
+#content {\r
+ margin-bottom: 0px;\r
+}\r
+\r
+.entry-content pre,\r
+.entry-content hr {\r
+ margin-bottom: 8px;\r
+}\r
+.entry-content ul ul,\r
+.entry-content ol ol,\r
+.entry-content ul ol,\r
+.entry-content ol ul {\r
+ margin-bottom: 0;\r
+}\r
+.entry-content pre,\r
+.entry-content kbd,\r
+.entry-content tt,\r
+.entry-content var {\r
+ overflow:auto;\r
+ font-family: "Courier New",Courier,monospace !important;\r
+}\r
+\r
+.entry-content dt,\r
+.entry-content th {\r
+ color: #000;\r
+}\r
+.entry-content h1,\r
+.entry-content h2,\r
+.entry-content h3,\r
+.entry-content h4,\r
+.entry-content h5,\r
+.entry-content h6 {\r
+ color: #0E85CD;\r
+ margin:20px 0px 5px 0px;\r
+}\r
+\r
+.entry-content h1 {\r
+font-size:1.9em;\r
+}\r
+\r
+.entry-content table {\r
+ border: 1px solid #e7e7e7;\r
+ margin: 0 0 24px 0;\r
+ text-align: left;\r
+ width: 100%;\r
+}\r
+.entry-content tr {\r
+ background-color:#FFF;\r
+ vertical-align:top;\r
+}\r
+.entry-content .alternate {\r
+ background-color:#FFF;\r
+}\r
+\r
+.entry-content tr th,\r
+.entry-content thead th {\r
+ color: #000;\r
+ font-weight: bold;\r
+ padding: 9px 24px;\r
+ background-color:#f8f8f8;\r
+}\r
+.entry-content tr td {\r
+ border-top: 1px solid #e7e7e7;\r
+ padding: 6px 24px;\r
+ vertical-align:top;\r
+}\r
+.entry-content tr.odd td {\r
+ background: #f2f7fc;\r
+}\r
+.hentry {\r
+ margin: 0 0 28px 0;\r
+}\r
+\r
+.single .hentry {\r
+ margin: 0 0 36px 0;\r
+}\r
+.page-title {\r
+ color: #000;\r
+ font-size: 16px;\r
+ font-weight: bold;\r
+ margin: 0 0 10px 0;\r
+}\r
+.page-title span {\r
+ color: #333;\r
+ font-size: 16px;\r
+ font-style: italic;\r
+ font-weight: normal;\r
+}\r
+.page-title a:link,\r
+.page-title a:visited {\r
+ color: #666;\r
+ text-decoration: none;\r
+}\r
+.page-title a:active,\r
+.page-title a:hover {\r
+ color: #0D85CC;\r
+}\r
+#content .entry-title {\r
+ color: #000000;\r
+ font-size: 30px;\r
+ font-weight: normal;\r
+ line-height: 1.3em;\r
+ margin-bottom: 0;\r
+ -moz-text-shadow:2px 2px 0px #FFF,-2px -2px 0px #FFF,3px 3px 1px #ccc;\r
+ -webkit-text-shadow:2px 2px 0px #FFF,-2px -2px 0px #FFF,3px 3px 1px #ccc;\r
+ text-shadow:2px 2px 0px #FFF,-2px -2px 0px #FFF,3px 3px 1px #ccc;\r
+}\r
+.entry-title a:link,\r
+.entry-title a:visited {\r
+ color:inherit;\r
+ text-decoration: none;\r
+}\r
+.entry-title a:active,\r
+.entry-title a:hover {\r
+ color: #333;\r
+}\r
+\r
+#content > h1.entry-title {\r
+ margin-bottom: 10px;\r
+}\r
+\r
+.entry-meta {\r
+ background-color: #F5F5F5;\r
+ border: 2px solid #FFF;\r
+ color: #666666;\r
+ display: block;\r
+ font-size: 12px;\r
+ margin: 0px 1px;\r
+ padding: 0 6px;\r
+ box-shadow:0px 0px 1px #DDD;\r
+ -moz-box-shadow:0px 0px 1px #DDD;\r
+ -webkit-box-shadow:0px 0px 1px #DDD;\r
+ clear:both;\r
+ line-height:2em;\r
+}\r
+\r
+#content .entry-meta2,\r
+#content .entry-meta3 {\r
+ font-size:12px ;\r
+ padding: 0;\r
+ clear:both;\r
+ display:block;\r
+}\r
+\r
+.entry-meta .comments-link {\r
+ float:right;\r
+ background:#FFF;\r
+ padding:0px 10px;\r
+ padding-bottom:0px;\r
+ font-size:12px;\r
+ box-shadow: inset 1px 1px 0px #DDD;\r
+ -moz-box-shadow: inset 1px 1px 0px #DDD;\r
+ -webkit-box-shadow: inset 1px 1px 0px #DDD;\r
+ line-height:1.9em;\r
+ margin-top:0px;\r
+}\r
+\r
+#content h3.entry-format {\r
+ margin-left:0px;\r
+ padding-left:4px;\r
+ display:inline;\r
+ font-size:14px;\r
+ color:#666 !important;\r
+ text-decoration:underline;\r
+ text-transform: uppercase;\r
+ text-shadow: none;\r
+ -moz-text-shadow: none;\r
+ -webkit-text-shadow:none;\r
+ font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;\r
+}\r
+\r
+.entry-meta2 .comments-link {\r
+ border-bottom: 1px solid #EEEEEE;\r
+ float: right;\r
+ font-size: 12px;\r
+ padding: 0 10px;\r
+}\r
+\r
+\r
+.entry-meta abbr,\r
+.entry-utility abbr {\r
+ border: none;\r
+}\r
+.entry-meta abbr:hover,\r
+.entry-utility abbr:hover {\r
+ border-bottom: 1px dotted #666;\r
+}\r
+.entry-content,\r
+.entry-summary {\r
+ clear: both;\r
+ padding: 8px 0px 10px;\r
+}\r
+#content .entry-summary p:last-child {\r
+ margin-bottom: 12px;\r
+}\r
+.entry-content fieldset {\r
+ border: 1px solid #e7e7e7;\r
+ margin: 0 0 24px 0;\r
+ padding: 24px;\r
+}\r
+.entry-content fieldset legend {\r
+ background: #fff;\r
+ color: #000;\r
+ font-weight: bold;\r
+ padding: 0 24px;\r
+}\r
+\r
+.entry-content label {}\r
+.entry-content sup,\r
+.entry-content sub {\r
+ font-size: 10px;\r
+}\r
+\r
+.entry-content blockquote.left {\r
+ float: left;\r
+ margin-left: 0;\r
+ margin-right: 24px;\r
+ text-align: right;\r
+ width: 33%;\r
+}\r
+.entry-content blockquote.right {\r
+ float: right;\r
+ margin-left: 24px;\r
+ margin-right: 0;\r
+ text-align: left;\r
+ width: 33%;\r
+}\r
+\r
+.tag-links {\r
+ margin-left:30px;\r
+}\r
+\r
+.page-link {\r
+ margin: 20px 0;\r
+ clear:both;\r
+ font-size: 12px;\r
+ line-height: 14px;\r
+}\r
+\r
+ .page-link em {\r
+ font-weight: normal;\r
+ font-style:normal;\r
+ text-decoration: none;\r
+ margin:0px;\r
+ padding: 2px 8px;\r
+ background:#f7f7f7;\r
+ border-bottom:1px solid #eee;\r
+ -moz-transition:.2s background ease-in;\r
+ -o-transition:.2s background ease-in;\r
+ -webkit-transition:.2s background ease-in;\r
+ transition:.2s background ease-in;\r
+}\r
+\r
+ .page-link a:hover em {\r
+ background:#eee;\r
+}\r
+\r
+body.page .edit-link {\r
+ clear: both;\r
+ display: block;\r
+}\r
+#entry-author-info {\r
+ background: #FFF;\r
+ border-top: 4px solid #333;\r
+ clear: both;\r
+ font-size: 14px;\r
+ line-height: 20px;\r
+ margin: 24px 0;\r
+ overflow: hidden;\r
+ padding: 18px 20px;\r
+}\r
+#entry-author-info #author-avatar {\r
+ background: #fff;\r
+ border: 1px solid #e7e7e7;\r
+ float: left;\r
+ height: 60px;\r
+ margin: 0 -104px 0 0;\r
+ padding: 11px;\r
+ -moz-box-shadow:0 0 10px #EEEEEE inset;\r
+ -webkit-box-shadow:0 0 10px #EEEEEE inset;\r
+ box-shadow:0 0 10px #EEEEEE inset;\r
+ \r
+}\r
+#entry-author-info #author-description {\r
+ float: left;\r
+ margin: 0 0 0 104px;\r
+}\r
+#entry-author-info h2 {\r
+ color: #000;\r
+ font-size: 100%;\r
+ font-weight: bold;\r
+ margin-bottom: 0;\r
+}\r
+.entry-utility {\r
+ clear: both;\r
+ color: #666;\r
+ font-size: 12px;\r
+ line-height: 18px;\r
+}\r
+ a,\r
+.entry-utility a {\r
+ color: #666;\r
+}\r
+.entry-meta a:hover,\r
+.entry-utility a:hover {\r
+ color: #000;\r
+}\r
+#content .video-player {\r
+ padding: 0;\r
+}\r
+\r
+/* POST FORMATS */\r
+\r
+article.format-link, article.format-quote, article.format-image, article.format-chat, article.format-aside {\r
+ background-position: 0px 10px;\r
+ background-repeat: no-repeat; }\r
+article.format-aside { background-position: 10px -7px; }\r
+article.format-link { background-image: url(images/post-formats/link.png); }\r
+article.format-quote { background-image: url(images/post-formats/quotes.png); }\r
+article.format-image { background-image: url(images/post-formats/picture.png); }\r
+article.format-chat { background-image: url(images/post-formats/bubble.png); }\r
+article.format-aside { background-image: url(images/post-formats/brackets.png); }\r
+\r
+article.format-link header, article.format-quote header, article.format-image header,\r
+article.format-chat header, article.format-aside header {\r
+ padding-left: 60px; }\r
+article.format-aside header { margin-top: 7px; }\r
+article.format-link h3.entry-format, article.format-quote h3.entry-format, article.format-image h3.entry-format,\r
+article.format-chat h3.entry-format, article.format-aside h3.entry-format { display: none !important; }\r
+\r
+\r
+/* =Asides\r
+-------------------------------------------------------------- */\r
+\r
+.home #content .format-aside p,\r
+.home #content .category-asides p {\r
+ line-height: 20px;\r
+ margin-bottom: 10px;\r
+ margin-top: 0;\r
+}\r
+.home .hentry.format-aside,\r
+.home .hentry.category-asides {\r
+ padding: 0;\r
+}\r
+.home #content .format-aside .entry-content,\r
+.home #content .category-asides .entry-content {\r
+ padding-top: 0;\r
+}\r
+\r
+\r
+#content .format-aside .entry-title {\r
+ display:none;\r
+}\r
+\r
+#content .format-aside .author ,\r
+#content .format-aside .bl_categ,\r
+#content .format-aside .bl_sep {\r
+ display:none;\r
+}\r
+\r
+/**\r
+ * 5.4 Galleries\r
+ * ----------------------------------------------------------------------------\r
+ */\r
+\r
+#content .gallery br+br {\r
+ display: none;\r
+}\r
+#content .attachment img { /* single attachment images should be centered */\r
+ display: block;\r
+ margin: 0 auto;\r
+ max-width:96%;\r
+}\r
+\r
+.gallery {\r
+ margin: 0 auto 20px;\r
+}\r
+\r
+.gallery img {\r
+ /*border: 10px solid #f1f1f1;*/\r
+}\r
+\r
+.gallery-item {\r
+ float: left;\r
+ margin: 0 4px 4px 0;\r
+ overflow: hidden;\r
+ position: relative;\r
+}\r
+\r
+.gallery-columns-1.gallery-size-medium,\r
+.gallery-columns-1.gallery-size-thumbnail,\r
+.gallery-columns-2.gallery-size-thumbnail,\r
+.gallery-columns-3.gallery-size-thumbnail {\r
+ display: table;\r
+ margin: 0 auto 20px;\r
+}\r
+\r
+.gallery-columns-1 .gallery-item,\r
+.gallery-columns-2 .gallery-item,\r
+.gallery-columns-3 .gallery-item {\r
+ text-align: center;\r
+}\r
+\r
+.gallery-columns-4 .gallery-item {\r
+ max-width: 23%;\r
+ max-width: -webkit-calc(25% - 4px);\r
+ max-width: calc(25% - 4px);\r
+}\r
+\r
+.gallery-columns-5 .gallery-item {\r
+ max-width: 19%;\r
+ max-width: -webkit-calc(20% - 4px);\r
+ max-width: calc(20% - 4px);\r
+}\r
+\r
+.gallery-columns-6 .gallery-item {\r
+ max-width: 15%;\r
+ max-width: -webkit-calc(16.7% - 4px);\r
+ max-width: calc(16.7% - 4px);\r
+}\r
+\r
+.gallery-columns-7 .gallery-item {\r
+ max-width: 13%;\r
+ max-width: -webkit-calc(14.28% - 4px);\r
+ max-width: calc(14.28% - 4px);\r
+}\r
+\r
+.gallery-columns-8 .gallery-item {\r
+ max-width: 11%;\r
+ max-width: -webkit-calc(12.5% - 4px);\r
+ max-width: calc(12.5% - 4px);\r
+}\r
+\r
+.gallery-columns-9 .gallery-item {\r
+ max-width: 9%;\r
+ max-width: -webkit-calc(11.1% - 4px);\r
+ max-width: calc(11.1% - 4px);\r
+}\r
+\r
+.gallery-columns-1 .gallery-item:nth-of-type(1n),\r
+.gallery-columns-2 .gallery-item:nth-of-type(2n),\r
+.gallery-columns-3 .gallery-item:nth-of-type(3n),\r
+.gallery-columns-4 .gallery-item:nth-of-type(4n),\r
+.gallery-columns-5 .gallery-item:nth-of-type(5n),\r
+.gallery-columns-6 .gallery-item:nth-of-type(6n),\r
+.gallery-columns-7 .gallery-item:nth-of-type(7n),\r
+.gallery-columns-8 .gallery-item:nth-of-type(8n),\r
+.gallery-columns-9 .gallery-item:nth-of-type(9n) {\r
+ margin-right: 0;\r
+}\r
+\r
+.gallery-caption {\r
+ background-color: rgba(0, 0, 0, 0.7);\r
+ box-sizing: border-box;\r
+ color: #fff;\r
+ font-size: 14px;\r
+ line-height: 1.3;\r
+ margin: 0;\r
+ max-height: 50%;\r
+ opacity: 0;\r
+ padding: 2px 5%;\r
+ position: absolute;\r
+ bottom: 0;\r
+ left: 0;\r
+ text-align: left;\r
+ -webkit-transition: opacity 400ms ease;\r
+ transition: opacity 400ms ease;\r
+ width: 90%;\r
+ cursor: default;\r
+ margin: 0 0 16px;\r
+}\r
+\r
+.gallery-item:hover .gallery-caption {\r
+ opacity: 1;\r
+}\r
+\r
+.gallery-columns-7 .gallery-caption,\r
+.gallery-columns-8 .gallery-caption,\r
+.gallery-columns-9 .gallery-caption {\r
+ display: none;\r
+}\r
+\r
+/* =Chat\r
+-------------------------------------------------------------- */\r
+.format-chat p {\r
+ font-family:Monaco, Courier New, monospace !important;\r
+}\r
+\r
+/* =Quote\r
+-------------------------------------------------------------- */\r
+.format-quote blockquote,\r
+.format-quote blockquote p{\r
+ font-family: Georgia,"Bitstream Charter",serif !important;\r
+ font-size:1.1em !important;\r
+}\r
+\r
+\r
+/* =Status\r
+-------------------------------------------------------------- */\r
+\r
+.format-status .entry-title {\r
+ display:none;\r
+}\r
+\r
+#content .format-status .entry-meta2 {\r
+ float:left;\r
+ clear:right;\r
+ padding-left:0px;\r
+}\r
+\r
+.status_content {\r
+ display:block;\r
+ float:left;\r
+ width:80%;\r
+}\r
+\r
+#content .format-status h3.entry-format {\r
+ margin-left:0px;\r
+ padding-left:0px;\r
+ text-indent:0;\r
+}\r
+\r
+.format-status .avatar {\r
+ display:block;\r
+ width:auto;\r
+ float:left;\r
+ margin-right:10px;\r
+}\r
+\r
+/* =Attachment pages\r
+-------------------------------------------------------------- */\r
+\r
+.attachment .entry-content .entry-caption {\r
+ font-size: 140%;\r
+ margin-top: 24px;\r
+}\r
+/*.attachment .entry-content .nav-previous a:before {\r
+ content: '\2190\00a0';\r
+}\r
+.attachment .entry-content .nav-next a:after {\r
+ content: '\00a0\2192';\r
+}*/\r
+\r
+\r
+/* =Images\r
+-------------------------------------------------------------- */\r
+\r
+#content img {\r
+ margin: 0;\r
+ height: auto;\r
+ max-width:100%;\r
+ -webkit-box-sizing:border-box;\r
+ -moz-box-sizing:border-box;\r
+ box-sizing:border-box;\r
+}\r
+#content table img {\r
+ max-width: initial; }\r
+\r
+#content img:hover {\r
+\r
+}\r
+\r
+#content .alignleft,\r
+#content img.alignleft {\r
+ display: inline;\r
+ float: left;\r
+ margin-right: 24px;\r
+ margin-top: 4px;\r
+}\r
+#content .alignright,\r
+#content img.alignright {\r
+ display: inline;\r
+ float: right;\r
+ margin-left: 24px;\r
+ margin-top: 4px;\r
+}\r
+#content .aligncenter,\r
+#content img.aligncenter {\r
+ clear: both;\r
+ display: block;\r
+ margin-left: auto;\r
+ margin-right: auto;\r
+}\r
+#content img.alignleft,\r
+#content img.alignright,\r
+#content img.aligncenter {\r
+ margin-bottom: 12px;\r
+}\r
+#content .wp-caption {\r
+ background:url(images/pins/Pin2.png) no-repeat center 1px #F9F9F9;\r
+ border: 1px solid #DDD;\r
+ border-radius:4px;\r
+ -moz-border-radius:4px;\r
+ -webkit-border-radius:4px;\r
+ line-height: 18px;\r
+ margin-bottom: 20px;\r
+ padding:22px 7px 4px;\r
+ text-align: center;\r
+ color: #333;\r
+ max-width:100%;\r
+ -moz-box-sizing:border-box;\r
+ -webkit-box-sizing:border-box;\r
+ box-sizing:border-box;\r
+}\r
+#content .wp-caption img {\r
+ margin: 5px 0 0;\r
+ border:none !important;\r
+ padding:0px;\r
+ box-shadow: none !important;\r
+ -moz-box-shadow: none !important;\r
+ -webkit-box-shadow: none !important;\r
+ border-radius:4px;\r
+ -moz-border-radius:4px;\r
+ -webkit-border-radius:4px;\r
+ width:100%;\r
+}\r
+#content .wp-caption p.wp-caption-text {\r
+ font-size: 12px;\r
+ margin: 5px;\r
+ text-align:center;\r
+ text-indent:0px;\r
+}\r
+#content .wp-smiley {\r
+ margin: 0;\r
+ -moz-box-shadow: none !important;\r
+ -webkit-box-shadow: none !important ;\r
+ box-shadow: none !important;\r
+ background: none !important;\r
+ border: 0 !important;\r
+ vertical-align: middle;\r
+ width:auto !important;\r
+}\r
+\r
+\r
+/* =Navigation\r
+-------------------------------------------------------------- */\r
+\r
+.navigation {\r
+ color: #666;\r
+ font-size: 12px;\r
+ line-height: 18px;\r
+ overflow: hidden;\r
+\r
+}\r
+.navigation a:link,\r
+.navigation a:visited {\r
+ text-decoration: none;\r
+ color:#666;\r
+}\r
+.navigation a:active,\r
+.navigation a:hover {\r
+ color: #0D85CC;\r
+}\r
+.nav-previous {\r
+ float: left;\r
+ max-width: 47%;\r
+ padding:0 1%;\r
+ border-bottom:1px dashed #DDD;\r
+}\r
+.nav-next {\r
+ float: right;\r
+ text-align: right;\r
+ max-width: 47%;\r
+ padding:0 1%;\r
+ border-bottom:1px dashed #DDD;\r
+}\r
+\r
+.nav-next:hover, .nav-previous:hover {\r
+ border-color:#999;\r
+}\r
+\r
+#nav-above {\r
+ margin: 0 0 18px 0;\r
+}\r
+#nav-above {\r
+ display: none;\r
+}\r
+.paged #nav-above,\r
+.single #nav-above {\r
+ display: block;\r
+}\r
+#nav-below {\r
+ margin-bottom: 10px;\r
+ clear:both;\r
+}\r
+\r
+\r
+/* =Comments\r
+-------------------------------------------------------------- */\r
+#comments {\r
+ clear: both;\r
+}\r
+#comments .navigation {\r
+ padding: 0 0 18px 0;\r
+}\r
+h3#comments-title,\r
+h3#reply-title {\r
+ color: #000;\r
+ font-size: 20px;\r
+ font-weight: bold;\r
+ margin-bottom: 0;\r
+}\r
+h3#comments-title {\r
+ padding-top:4px;\r
+ padding-bottom:4px;\r
+ padding-left:10px;\r
+ margin-top: 20px;\r
+ margin-bottom:20px;;\r
+}\r
+.commentlist {\r
+ list-style: none;\r
+ margin: 0;\r
+}\r
+.commentlist li.comment {\r
+ padding:10px;\r
+ line-height: 24px;\r
+ margin: 0 0 10px 0;\r
+ padding: 0 0px 10px 56px;\r
+ position: relative;\r
+ background:#FFF;\r
+ background-image:none;\r
+ list-style:none;\r
+}\r
+\r
+.reply a.comment-reply-link {\r
+padding:0 3px;\r
+color:#CCC;\r
+font-weight:bold;\r
+-moz-transition:.2s color ease;\r
+-webkit-transition:.2s color ease;\r
+transition:.2s color ease;\r
+}\r
+\r
+.commentlist li:last-child {\r
+ margin-bottom: 0;\r
+}\r
+#comments .comment-body ul,\r
+#comments .comment-body ol {\r
+}\r
+#comments .comment-body p:last-child {\r
+ margin-bottom: 0px;\r
+}\r
+#comments .comment-body blockquote p:last-child {\r
+ margin-bottom: 24px;\r
+}\r
+.commentlist ol {\r
+ list-style: decimal;\r
+}\r
+.commentlist img.avatar {\r
+ position: absolute;\r
+ top: 4px;\r
+ left: 5px;\r
+ border:1px solid #EEE ;\r
+ -moz-border-radius:0 ;\r
+ -webkit-border-radius:0;\r
+ border-radius:0;\r
+ background:#FFF;\r
+}\r
+.comment-author {\r
+ display:block;\r
+ float:left;\r
+}\r
+.comment-author cite {\r
+ color: #000;\r
+}\r
+.comment-author .says {\r
+ font-style: italic;\r
+ display:none;\r
+}\r
+.comment-meta {\r
+ font-size: 12px;\r
+ margin-bottom: 5px;\r
+ display:block;\r
+ float:left;\r
+ margin-left:5px;\r
+}\r
+.comment-meta a:link,\r
+.comment-meta a:visited {\r
+ color: #999;\r
+ text-decoration: none;\r
+}\r
+.comment-meta a:active,\r
+.comment-meta a:hover {\r
+ color: #0D85CC;\r
+}\r
+\r
+.comment-body {\r
+padding:5px 10px;\r
+background:#F9F9F9;\r
+border:1px solid #EEE;\r
+clear:both;\r
+}\r
+.commentlist .even {\r
+}\r
+.commentlist .bypostauthor {\r
+}\r
+.reply {\r
+ font-size: 12px;\r
+ padding: 0 0 10px 0;\r
+ text-align:right;\r
+}\r
+.reply a,\r
+a.comment-edit-link {\r
+ color: #666;\r
+}\r
+\r
+.reply a:hover,\r
+a.comment-edit-link:hover {\r
+ color: #0D85CC;\r
+}\r
+.commentlist .children {\r
+ background-image:none;\r
+ list-style: none;\r
+ margin: 0;\r
+ margin-left:-40px;\r
+\r
+}\r
+.commentlist .children li {\r
+ border: none;\r
+ background-image:none !important;\r
+ margin: 0;\r
+ text-indent:0px !important;\r
+}\r
+\r
+.nopassword,\r
+.nocomments, .nocomments2 {\r
+/* display: block;*/\r
+}\r
+\r
+#comments .pingback {\r
+ border-bottom: 1px solid #e7e7e7;\r
+ margin-bottom: 18px;\r
+ padding-bottom: 18px;\r
+}\r
+.commentlist li.comment+li.pingback {\r
+ margin-top: -6px;\r
+}\r
+#comments .pingback p {\r
+ color: #666;\r
+ display: block;\r
+ font-size: 12px;\r
+ line-height: 18px;\r
+ margin: 0;\r
+}\r
+#comments .pingback .url {\r
+ font-size: 13px;\r
+ font-style: italic;\r
+}\r
+\r
+/* Comments form */\r
+input[type="submit"] {\r
+ color: #333;\r
+}\r
+#respond {\r
+ margin: 24px 0;\r
+ overflow: hidden;\r
+ position: relative;\r
+}\r
+#respond p {\r
+ margin: 0;\r
+}\r
+#respond .comment-notes {\r
+ margin-bottom: 1.5em;\r
+ font-size:0.8em;\r
+ color:#999;\r
+}\r
+.form-allowed-tags {\r
+ line-height: 1em;\r
+}\r
+.children #respond {\r
+ margin: 0 48px 0 0;\r
+ min-width:400px;\r
+}\r
+h3#reply-title {\r
+ margin: 18px 0 0 0;\r
+}\r
+#comments-list #respond {\r
+ margin: 0 0 18px 0;\r
+}\r
+#comments-list ul #respond {\r
+ margin: 0;\r
+}\r
+#cancel-comment-reply-link {\r
+ font-size: 12px;\r
+ font-weight: normal;\r
+ line-height: 18px;\r
+}\r
+#respond .required {\r
+ color: #0D85CC;\r
+ display:inline;\r
+}\r
+\r
+#commentform {\r
+ width:90%;\r
+ max-width:550px;\r
+ display:block;\r
+ float:left;\r
+ margin:0 auto;\r
+}\r
+\r
+#respond label {\r
+ color: #666;\r
+ font-size: 12px;\r
+}\r
+\r
+#respond input {\r
+ margin: 0 0 9px;\r
+}\r
+\r
+\r
+\r
+.comment-form-comment textarea {\r
+ width:80%;\r
+ display:block;\r
+ float:right;\r
+ margin-left:12px;\r
+ height:150px;\r
+}\r
+\r
+.comment-form-author label, .comment-form-email label, .comment-form-email label, .comment-form-url label, .comment-form-comment label {\r
+display:block;\r
+ float:left;\r
+ clear:both;\r
+ padding-top:3px;\r
+ width:10%;\r
+}\r
+\r
+.comment-form-author input, .comment-form-email input, .comment-form-email input, .comment-form-url input, .comment-form-comment input {\r
+ width:80%;\r
+ display:block;\r
+ float:right;\r
+ margin-left:12px;\r
+}\r
+\r
+#respond .form-allowed-tags {\r
+ color: #666;\r
+ font-size: 12px;\r
+ line-height: 18px;\r
+ width: 100%;\r
+ margin-left:12px;\r
+ clear:both;\r
+ display:block;\r
+ float:none;\r
+ padding-top:8px;\r
+}\r
+#respond .form-allowed-tags code {\r
+ font-size: 11px;\r
+}\r
+#respond .form-submit {\r
+ margin: 12px 0;\r
+ text-align:right;\r
+ clear:both;\r
+}\r
+#respond .form-submit input {\r
+ font-size: 14px;\r
+ width: auto;\r
+}\r
+\r
+#respond .form-submit input#submit {\r
+ color:#555;\r
+ border:1px solid #CCC;\r
+ border-radius:5px;\r
+ -moz-border-radius:5px;\r
+ -webkit-border-radius:5px;\r
+ padding:2px 5px;\r
+ background-color:#FFF;\r
+ -moz-box-shadow: inset 0px -10px 10px 0px #EEE;\r
+ -webkit-box-shadow: inset 0px -10px 10px 0px #EEE;\r
+ box-shadow: inset 0px -10px 10px 0px #EEE;\r
+}\r
+\r
+#respond .form-submit input#submit:hover {\r
+ background-color:#F6F6F6;\r
+ color:#444;\r
+}\r
+\r
+\r
+/* =Widget Areas\r
+-------------------------------------------------------------- */\r
+\r
+.widget-area ul {\r
+ list-style: none !important;\r
+ margin-left: 0;\r
+ list-style-image:none;\r
+}\r
+.widget-area ul ul {\r
+ list-style: none !important;\r
+ margin-left: 0;\r
+}\r
+\r
+.widget-area ul li{\r
+ background-image: none;\r
+ margin-left: 0;\r
+ list-style-image:none;\r
+}\r
+.widget-area ul ul li{\r
+ background:url(images/bullets/arrow_white.png) left 8px no-repeat;\r
+ margin:4px 3px;\r
+ display:block;\r
+ float:none;\r
+ width:auto;\r
+ padding:3px 0 0 12px;\r
+}\r
+\r
+.contentsearch {\r
+display:block;\r
+float:none;\r
+overflow:hidden;\r
+}\r
+\r
+.contentsearch #s {\r
+ display:block;float:left;\r
+ margin-bottom:20px;\r
+ padding-left:10px;\r
+ font-size:15px;\r
+ height:40px;\r
+ min-width:250px;\r
+ -moz-border-radius:0 10px 10px 0;\r
+ -webkit-border-radius:0 10px 10px 0;\r
+ border-radius:0 10px 10px 0;\r
+ -moz-transition:background .2s ease-in;\r
+ -o-transition:background .2s ease-in;\r
+ -webkit-transition:background .2s ease-in;\r
+ transition:background .2s ease-in;\r
+ }\r
+.contentsearch #searchsubmit {\r
+display:block;\r
+float:left;\r
+padding:0;\r
+margin:0;\r
+text-align:center;\r
+position:relative;\r
+left:-40px; top:0px;\r
+background: #777;\r
+width:40px;height:40px;\r
+border:none;\r
+cursor:pointer;\r
+font-size:12px;\r
+color:#EEE;\r
+-moz-border-radius:0 10px 10px 0;\r
+-webkit-border-radius:0 10px 10px 0;\r
+border-radius:0 10px 10px 0;\r
+}\r
+\r
+#searchform {\r
+display:block;\r
+position:relative;\r
+height:20px;\r
+margin-bottom:20px;\r
+}\r
+\r
+#main #searchform, #footer #searchform {\r
+margin-right:10px;\r
+}\r
+\r
+.widget_search #s, #search #s {/* This keeps the search inputs in line This is the Sidebar Search*/\r
+ position:absolute;\r
+ right:0;top:0;\r
+ display:block;\r
+ width:100%;\r
+ padding-left:10px;\r
+ margin:0;\r
+ -moz-border-radius:0px 0 0 0;\r
+ -webkit-border-radius:0px 0 0 0;\r
+ border-radius:0px 6px 6px 0;\r
+ font-family:Arial !important;\r
+ font-size:14px;\r
+ -moz-box-sizing:border-box;\r
+ -webkit-box-sizing:border-box;\r
+ box-sizing:border-box;\r
+}\r
+\r
+#searchform #s:hover , #container #s:hover {\r
+color:#0D85CC;\r
+}\r
+\r
+.widget_search #searchsubmit {\r
+display:block;\r
+padding:0;margin:0;\r
+position:absolute;\r
+top:0px;right:0px;\r
+width:36px;height:32px;\r
+border:none;cursor:pointer;\r
+color:#FFF;background: #999;\r
+font-size:12px;\r
+-moz-border-radius:0px 0 0 0;\r
+-webkit-border-radius:0px 0 0 0;\r
+border-radius:0px 6px 6px 0;\r
+-moz-transition:.2s background ease-in;\r
+-webkit-transition:.2s background ease-in;\r
+transition:.2s background ease-in;\r
+}\r
+\r
+#searchsubmit:hover {\r
+background:#AAA;\r
+}\r
+\r
+.widget_search label {\r
+ display: none;\r
+}\r
+.widget-container {\r
+ margin: 0 0 18px 0;\r
+}\r
+.widget-title {\r
+ color: #2EA5FD;\r
+ font-size:16px;\r
+ padding:4px 0;\r
+ padding-left:15px;\r
+ text-align:left;\r
+ margin-bottom:10px;\r
+ background-color:#333;\r
+ margin-left:-10px;\r
+ padding-right:10px;\r
+ width:100%;\r
+ -moz-border-radius:10px 0 0 0;\r
+ -webkit-border-radius:10px 0 0 0;\r
+ border-radius:10px 0 0 0;\r
+\r
+}\r
+\r
+#footer-widget-area .widget-title {\r
+ background:none;\r
+ box-shadow:none;\r
+ -moz-box-shadow:none;\r
+ -webkit-box-shadow:none;\r
+ color:#0D85CC;\r
+ text-align:left;\r
+ border-radius:10px;\r
+ -webkit-border-radius:10px;\r
+ -moz-border-radius:10px;\r
+ width:95%;\r
+}\r
+\r
+#footer-widget-area a {\r
+ background:none;\r
+ box-shadow:none;\r
+ -moz-box-shadow:none;\r
+ -webkit-box-shadow:none;\r
+ text-shadow:none;\r
+ border:0;\r
+ padding:0;margin:0;\r
+}\r
+\r
+#footer-widget-area a:hover {\r
+ text-decoration:underline;\r
+ color:#888;\r
+}\r
+\r
+#footer-widget-area ul ul li {\r
+ display:block;\r
+ float:none;\r
+ background:none;\r
+ padding-left:0;\r
+ margin-left:0;\r
+}\r
+\r
+.widget-container li {\r
+ display:block;float:none;\r
+ margin:4px 0;\r
+}\r
+\r
+.widget-area {\r
+ font-size: 14px;\r
+ line-height: 1.5;\r
+}\r
+\r
+.widget-area a:link,\r
+.widget-area a:visited {\r
+ text-decoration: none;\r
+ color:#0D85CC;\r
+ font-size:14px;\r
+ line-height: 1.5;\r
+ word-wrap:break-word;\r
+}\r
+.widget-area a:active,\r
+.widget-area a:hover {\r
+ color:#333;\r
+}\r
+\r
+.widget-area .entry-meta {\r
+ font-size: 11px;\r
+}\r
+#wp_tag_cloud div {\r
+ line-height: 1.6em;\r
+}\r
+#wp-calendar {\r
+ width: 100%;\r
+}\r
+\r
+#calendar_wrap {\r
+ display:block;\r
+ float:none;\r
+ margin-left:10px;\r
+}\r
+\r
+#wp-calendar caption {\r
+ color: #333;\r
+ font-size: 14px;\r
+ font-weight: bold;\r
+ padding-bottom: 4px;\r
+ text-align: left;\r
+ margin-left:10px;\r
+}\r
+#wp-calendar thead {\r
+ font-size: 11px;\r
+}\r
+#wp-calendar thead th {\r
+}\r
+#wp-calendar tbody {\r
+ color: #000;\r
+}\r
+#wp-calendar tbody td {\r
+ padding: 3px 0 2px;\r
+ text-align: center;\r
+ border:1px solid #EEE;\r
+}\r
+\r
+#wp-calendar tbody td:hover {\r
+ background: #EEE;\r
+ opacity:0.8;\r
+}\r
+\r
+#wp-calendar tbody td a{\r
+ box-shadow:none;\r
+ -moz-box-shadow:none;\r
+ -webkit-box-shadow:none;\r
+ color:#0D85CC;\r
+ border:none !important;\r
+ background:none !important;\r
+ padding:0;\r
+ margin:0;\r
+}\r
+\r
+#wp- tbody .pad {\r
+ background: none;\r
+}\r
+#wp-calendar tfoot #next {\r
+ text-align: right;\r
+}\r
+.widget_rss a.rsswidget {\r
+ color: #000;\r
+}\r
+.widget_rss a.rsswidget:hover {\r
+ color: #0D85CC;\r
+}\r
+.widget_rss .widget-title img {\r
+ width: 11px;\r
+ height: 11px;\r
+}\r
+\r
+/* Main sidebars */\r
+#main .widget-area ul {\r
+ margin-left: 0;\r
+ padding: 0;\r
+}\r
+#main .widget-area ul ul {\r
+ border: none;\r
+ margin-left: 0px;\r
+ padding: 0;\r
+}\r
+#main .widget-area ul.xoxo{\r
+padding-right:10px;\r
+}\r
+\r
+/* Before and after content widgets */\r
+\r
+.yoyo .widget-title {\r
+background:none;\r
+padding:0;\r
+margin:0;\r
+}\r
+\r
+\r
+/* Footer widget areas */\r
+#footer-widget-area {\r
+margin-top:10px;\r
+}\r
+\r
+#footer-widget-area a{\r
+ color:#666;\r
+}\r
+\r
+#footer-widget-area #wp-calendar tbody td {\r
+ background:none ;\r
+ border:1px solid #222;\r
+ padding:3px 0 2px;\r
+ text-align:center;\r
+ color:#999;\r
+}\r
+\r
+\r
+\r
+/* =Footer\r
+-------------------------------------------------------------- */\r
+\r
+#footer {\r
+ margin-bottom: 0px;\r
+ background:#222;\r
+\r
+}\r
+\r
+#footer2 {\r
+display:block;\r
+background:#171717;\r
+padding-bottom:10px;\r
+overflow:visible;\r
+}\r
+\r
+#colophon {\r
+ margin-top: 0;\r
+ overflow: hidden;\r
+ padding: 0 0 10px 0px;\r
+}\r
+\r
+#site-copyright {\r
+ display:block;\r
+ float:none;\r
+ font-style: italic;\r
+ clear:both;\r
+ margin:0 auto;\r
+ text-align:center;\r
+ padding-top:4px;\r
+}\r
+\r
+#site-copyright a{\r
+text-decoration:none;\r
+color:#0D85CC;\r
+}\r
+\r
+#site-copyright a:hover{\r
+text-decoration:underline;\r
+}\r
+\r
+img#wpstats {\r
+ display: block;\r
+ margin: 0 auto 10px;\r
+}\r
+\r
+/* Extras */\r
+\r
+#forbottom {\r
+ clear:both;\r
+ width:100%;\r
+}\r
+\r
+#forbottom2 {\r
+ clear:both;\r
+ width:100%;\r
+}\r
+\r
+\r
+/* =Mobile Safari ( iPad, iPhone and iPod Touch )\r
+-------------------------------------------------------------- */\r
+\r
+pre {\r
+ -webkit-text-size-adjust: 140%;\r
+}\r
+code {\r
+ -webkit-text-size-adjust: 160%;\r
+}\r
+#access,\r
+.entry-meta,\r
+.entry-utility,\r
+.navigation,\r
+.widget-area {\r
+ -webkit-text-size-adjust: 120%;\r
+}\r
+#site-description {\r
+ -webkit-text-size-adjust: none;\r
+}\r
+\r
+/* SOCIALS */\r
+\r
+.socials {\r
+ float:right;\r
+ position:relative;\r
+ margin-right:10px;\r
+ padding-left:10px;\r
+ min-height:20px;\r
+ overflow: hidden;\r
+ padding-top:5px;\r
+}\r
+.socials a {\r
+ display:block;\r
+ float:left;\r
+ margin-right:5px;\r
+ position:relative;\r
+}\r
+.socials img {\r
+ width:26px;\r
+}\r
+\r
+#header-container >div#sheader {\r
+position:absolute;\r
+margin:0;\r
+top:5px;\r
+right:5px;\r
+}\r
+#smenul, #smenur {\r
+ margin-top:3px;\r
+ margin-bottom:-6px;\r
+}\r
+#smenul a img, #smenur a img {width:34px;}\r
+#smenul {\r
+ float:left;\r
+ padding-left:20px;\r
+}\r
+#sfooter {\r
+ float:right;\r
+ padding-top:5px;\r
+ top:-24px;\r
+ overflow:visible;\r
+}\r
+\r
+#sfooter a {\r
+ width:26px;\r
+ height:26px;\r
+ margin-left:5px;\r
+}\r
+\r
+/* ARTICLES */\r
+\r
+article.post {\r
+ display:block;\r
+ overflow:hidden;\r
+}\r
+\r
+article.sticky {\r
+/*background: url("images/icon-back.png") repeat;*/\r
+background: #fafafa;\r
+background: -moz-linear-gradient(top, #eeeeee 0%, #f7f7f7 7%, #ffffff 61%, #ffffff 100%);\r
+background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(7%,#f7f7f7), color-stop(61%,#ffffff), color-stop(100%,#ffffff));\r
+background: -webkit-linear-gradient(top, #eeeeee 0%,#f7f7f7 7%,#ffffff 61%,#ffffff 100%);\r
+background: -o-linear-gradient(top, #eeeeee 0%,#f7f7f7 7%,#ffffff 61%,#ffffff 100%);\r
+background: -ms-linear-gradient(top, #eeeeee 0%,#f7f7f7 7%,#ffffff 61%,#ffffff 100%);\r
+background: linear-gradient(to bottom, #eeeeee 0%,#f7f7f7 7%,#ffffff 61%,#ffffff 100%);\r
+filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );\r
+-moz-border-radius:10px;\r
+-webkit-border-radius:10px;\r
+border-radius:10px;\r
+padding:10px;\r
+}\r
+\r
+ .sticky hgroup {\r
+}\r
+\r
+\r
+/* BACK TO TOP BUTTON */\r
+\r
+#toTop {\r
+ width:37px;\r
+ height:39px;\r
+ background:url(images/back2top.png) bottom center no-repeat;\r
+ position:fixed;\r
+ bottom:20px;\r
+ right:20px;\r
+ cursor:pointer;\r
+ display:none;\r
+ z-index:9999;\r
+ transition:background .2s;\r
+}\r
+#toTop:hover {\r
+ background-position:top center;\r
+}\r
+\r
+/* CUSTOM IMAGE BORDER */\r
+\r
+.imageOne {\r
+ border:1px solid #DDD !important;\r
+ padding:3px;\r
+ height: auto;\r
+}\r
+.imageTwo{\r
+ background-color: #FFFFFF;\r
+ border: 1px solid #EEE;\r
+ -moz-border-radius: 3px;\r
+ -webkit-border-radius: 3px;\r
+ border-radius: 3px;\r
+ padding: 3px;\r
+ -moz-box-shadow:0px 0px 4px #CCC;\r
+ -webkit-box-shadow:0px 0px 4px #CCC;\r
+ box-shadow:0px 0px 4px #CCC;\r
+}\r
+.imageThree{\r
+ background-color: #FFFFFF;\r
+ border: 6px solid #EEEEEE;\r
+ -moz-border-radius: 5px;\r
+ -webkit-border-radius: 5px;\r
+ border-radius:5px;\r
+ padding: 3px;\r
+}\r
+.imageFour{\r
+ border:1px solid #666 !important;\r
+ -moz-box-shadow:0px 0px 4px #666;\r
+ -webkit-box-shadow:0px 0px 4px #666;\r
+ box-shadow:0px 3px 4px #999;\r
+}\r
+.imageFive{\r
+ border:3px solid #DDD !important;\r
+}\r
+.imageSix{\r
+border:8px solid #BBB !important;\r
+ -moz-box-shadow:0px 0px 5px #333;\r
+ -webkit-box-shadow:0px 0px 5px #333;\r
+ box-shadow: 0px 0px 5px #333;\r
+}\r
+.imageSeven{\r
+ background-color: #FFFFFF;\r
+ border: 1px solid #CCC;\r
+ padding: 7px;\r
+ -moz-box-shadow:2px 2px 2px #CCC;\r
+ -webkit-box-shadow:2px 2px 2px #CCC;\r
+ box-shadow:inset 0px 0px 7px #CCC;\r
+}\r
+\r
+/* EDIT POST LINK */\r
+\r
+.edit-link a {\r
+ background:#F3F3F3;\r
+ border:1px solid #DDD;\r
+ padding:0px 10px;\r
+ -moz-border-radius: 10px;\r
+ -webkit-border-radius: 10px;\r
+ border-radius: 10px;\r
+ font-size:12px;\r
+}\r
+.edit-link a:hover {\r
+border:1px solid #CCC;\r
+background:#FAFAFA;\r
+}\r
+\r
+/* BREADCRUMBS */\r
+\r
+.breadcrumbs {\r
+ font-size:1em;\r
+ padding-top:.5em;\r
+}\r
+ .breadcrumbs a {\r
+}\r
+ .breadcrumbs a:hover {\r
+}\r
+\r
+/* PAGINATION */\r
+\r
+.pagination {\r
+ display:table;\r
+ float:none;\r
+ margin:20px auto;\r
+ text-align:center;\r
+ clear:both;\r
+ font-size:12px;\r
+ line-height:12px;\r
+}\r
+.pagination span, .pagination a {\r
+ display:block;\r
+ float:left;\r
+ margin: 2px 2px 2px 0;\r
+ padding:12px 16px 10px;\r
+ text-decoration:none;\r
+ width:auto;\r
+ color:#fff;\r
+ background: #EEE;\r
+ -moz-transition:background .5s ease-in-out;\r
+ -o-transition:background .5s ease-in-out;\r
+ -webkit-transition:background .5s ease-in-out;\r
+ transition:background .5s ease-in-out;\r
+}\r
+.pagination a:hover{\r
+ color:#fff;\r
+ background: #999;\r
+}\r
+.pagination .current{\r
+ background: #777;\r
+ color:#fff;\r
+}\r
+\r
+\r
+/* CUSTOM FRONT PAGE */\r
+\r
+\r
+/*\r
+ * jQuery Nivo Slider v2.7.1\r
+ * http://nivo.dev7studios.com\r
+ *\r
+ * Copyright 2011, Gilbert Pellegrom\r
+ * Free to use and abuse under the MIT license.\r
+ * http://www.opensource.org/licenses/mit-license.php\r
+ *\r
+ * March 2010\r
+ */\r
+\r
+\r
+/* The Nivo Slider styles */\r
+.nivoSlider {\r
+ position:relative;\r
+ width:100%;\r
+ height:auto;\r
+ overflow: hidden;\r
+}\r
+.nivoSlider img {\r
+ position:absolute;\r
+ top:0px;\r
+ left:0px;\r
+}\r
+.nivo-main-image {\r
+ display: block !important;\r
+ position: relative !important;\r
+ width: 100% !important;\r
+}\r
+\r
+/* If an image is wrapped in a link */\r
+.nivoSlider a.nivo-imageLink {\r
+ position:absolute;\r
+ top:0px;\r
+ left:0px;\r
+ width:100%;\r
+ height:100%;\r
+ border:0;\r
+ padding:0;\r
+ margin:0;\r
+ z-index:6;\r
+ display:none;\r
+}\r
+/* The slices and boxes in the Slider */\r
+.nivo-slice {\r
+ display:block;\r
+ position:absolute;\r
+ z-index:5;\r
+ height:100%;\r
+ top:0;\r
+}\r
+.nivo-box {\r
+ display:block;\r
+ position:absolute;\r
+ z-index:5;\r
+ overflow:hidden;\r
+}\r
+.nivo-box img { display:block; }\r
+\r
+/* Caption styles */\r
+.nivo-caption {\r
+ position:absolute;\r
+ left:0px;\r
+ bottom:0px;\r
+ background:#000;\r
+ color:#fff;\r
+ width:100%;\r
+ z-index:8;\r
+ padding: 5px 10px;\r
+ opacity: 0.8;\r
+ overflow: hidden;\r
+ display: none;\r
+ -moz-opacity: 0.8;\r
+ filter:alpha(opacity=80);\r
+ -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */\r
+ -moz-box-sizing: border-box; /* Firefox, other Gecko */\r
+ box-sizing: border-box; /* Opera/IE 8+ */\r
+}\r
+.nivo-caption p {\r
+ padding:5px;\r
+ margin:0;\r
+}\r
+.nivo-caption a {\r
+ display:inline !important;\r
+}\r
+.nivo-html-caption {\r
+ display:none;\r
+}\r
+/* Direction nav styles (e.g. Next & Prev) */\r
+.nivo-directionNav a {\r
+ position:absolute;\r
+ top:45%;\r
+ z-index:9;\r
+ cursor:pointer;\r
+}\r
+.nivo-prevNav {\r
+ left:0px;\r
+}\r
+.nivo-nextNav {\r
+ right:0px;\r
+}\r
+/* Control nav styles (e.g. 1,2,3...) */\r
+.nivo-controlNav {\r
+ text-align:center;\r
+ padding: 15px 0;\r
+}\r
+.nivo-controlNav a {\r
+ cursor:pointer;\r
+}\r
+.nivo-controlNav a.active {\r
+ font-weight:bold;\r
+}\r
+\r
+.slider-navhover .nivo-directionNav a.nivo-prevNav,\r
+.slider-navhover .nivo-directionNav a.nivo-nextNav {\r
+ -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";\r
+ filter: alpha(opacity=0);\r
+ opacity: 0;\r
+ -webkit-transition: .3s all ease-in-out;\r
+ -moz-transition: .3s all ease-in-out;\r
+ -o-transition: .3s all ease-in-out;\r
+ transition: .3s all ease-in-out;\r
+}\r
+\r
+.slider-navhover:hover .nivo-directionNav a.nivo-prevNav,\r
+.slider-navhover:hover .nivo-directionNav a.nivo-nextNav {\r
+ -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";\r
+ filter: alpha(opacity=90);\r
+ opacity: 0.9;\r
+}\r
+\r
+/*\r
+Skin Name: Nivo Slider Default Theme\r
+Skin URI: http://nivo.dev7studios.com\r
+Skin Type: flexible\r
+Description: The default skin for the Nivo Slider.\r
+Version: 1.0\r
+Author: Gilbert Pellegrom\r
+Author URI: http://dev7studios.com\r
+*/\r
+.theme-default .nivoSlider {\r
+ position:relative;\r
+ background:#fff url(images/nivoslider/loading.gif) no-repeat 50% 50%;\r
+ margin-bottom:50px;\r
+ -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;\r
+ -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;\r
+ box-shadow: 0px 1px 5px 0px #4a4a4a;\r
+}\r
+.theme-default .nivoSlider img {\r
+ position:absolute;\r
+ top:0px;\r
+ left:0px;\r
+ display:none;\r
+}\r
+.theme-default .nivoSlider a {\r
+ border:0;\r
+ display:block;\r
+}\r
+\r
+.theme-default .nivo-controlNav {\r
+ text-align: center;\r
+ padding: 0 0 20px 0;\r
+}\r
+.theme-default .nivo-controlNav a {\r
+ display:inline-block;\r
+ width:22px;\r
+ height:22px;\r
+ background:url(images/nivoslider/bullets.png) no-repeat;\r
+ text-indent:-9999px;\r
+ border:0;\r
+ margin: 0 2px;\r
+}\r
+.theme-default .nivo-controlNav a.active {\r
+ background-position:0 -22px;\r
+}\r
+\r
+.theme-default .nivo-directionNav a {\r
+ display:block;\r
+ width:30px;\r
+ height:30px;\r
+ background:url(images/nivoslider/arrows.png) no-repeat;\r
+ text-indent:-9999px;\r
+ border:0;\r
+}\r
+.theme-default a.nivo-nextNav {\r
+ background-position:-30px 0;\r
+ right:15px;\r
+}\r
+.theme-default a.nivo-prevNav {\r
+ left:15px;\r
+}\r
+\r
+.theme-default .nivo-caption {\r
+ font-family: Helvetica, Arial, sans-serif;\r
+}\r
+.theme-default .nivo-caption a {\r
+ color:#fff;\r
+ border-bottom:1px dotted #fff;\r
+}\r
+.theme-default .nivo-caption a:hover {\r
+ color:#fff;\r
+}\r
+\r
+.theme-default .nivo-controlNav.nivo-thumbs-enabled {\r
+ width: 100%;\r
+}\r
+.theme-default .nivo-controlNav.nivo-thumbs-enabled a {\r
+ width: auto;\r
+ height: auto;\r
+ background: none;\r
+ margin-bottom: 5px;\r
+}\r
+.theme-default .nivo-controlNav.nivo-thumbs-enabled img {\r
+ display: block;\r
+ width: 120px;\r
+ height: auto;\r
+}\r
+\r
+/* IE link fix */\r
+a.nivo-imageLink {\r
+ background-color: #fff;\r
+ filter:alpha(opacity=0);\r
+ opacity: 0;\r
+ -webkit-opacity:0;\r
+ -moz-opacity:0;\r
+-khtml-opacity:0;\r
+}\r
+\r
+\r
+/* Front page columns */\r
+\r
+#front-columns {\r
+ display:block;\r
+ width:auto;\r
+ float:none;\r
+ margin:0px 30px;\r
+ overflow:hidden;\r
+ padding-top:20px;\r
+}\r
+.column-image {\r
+ width:100%;\r
+ display:block;\r
+ background:#CCC;\r
+ margin-bottom:10px;\r
+ overflow:hidden;\r
+ border:1px solid #EEE;\r
+ box-shadow:0 0 3px #333;\r
+}\r
+.column-text {\r
+ text-align:justify;\r
+}\r
+.column-image img {\r
+ width:100%;\r
+ height:100%;\r
+ display:block;\r
+}\r
+#front-columns h3 {\r
+ font-size:20px;\r
+ margin:7px 0;\r
+}\r
+.columnmore {\r
+ font-size:14px;\r
+ text-align:right;\r
+ padding-right:10px;\r
+ margin-top:10px;\r
+}\r
+/* Style HTML5 tags for IE8 and lower */\r
+header\r
+,nav\r
+,section\r
+,article\r
+,aside\r
+,footer\r
+,hgroup\r
+{\r
+display: block;\r
+}\r
+\r
+.tinynav {\r
+display:block;\r
+float:none;\r
+margin:0 auto;\r
+display:none;\r
+min-width:200px;\r
+width:100%;\r
+padding:10px;\r
+margin-bottom:8px;\r
+}\r
+\r
+.tinynav option {\r
+\r
+}\r
+\r
+/* Multi-column short code */\r
+.multi-column {display: block; width: 100%; float: left; margin: 10px 0;}\r
+.short-columns {display: inline-block; float: left; margin: 0px; padding: 1%; }\r
+.column-12 {width: 48%;}\r
+.column-13 {width: 31%;}\r
+.column-14 {width: 23%;}\r
+.column-16 {width: 14.5%;}\r
+.column-23 {width: 62%;}\r
+.column-34 {width: 72%;}\r
+.column-56 {width: 80%;}\r
+.column-1 {width: 98%; margin: 0}\r
+.multi-column .short-columns:first-child {padding-left: 0; margin-left: 0}\r
+.multi-column .short-columns:last-child {padding-right: 0; margin-right: 0}\r
+\r
+/* Pull quotes short code*/\r
+.pullquote {\r
+ font-family: Verdana, arial, sans-serif;\r
+ font-size:1.2em !important;\r
+ margin-top: 15px !important;\r
+ margin-bottom: 10px !important;\r
+ width: 33%;\r
+ color: #000;\r
+}\r
+.pullquote p{\r
+\r
+ font-family: "Pontano Sans", arial, sans-serif;\r
+ font-size:1.2em !important;\r
+ color: #000;\r
+}\r
+\r
+/* buttons */\r
+.short-button-light {\r
+ color: #454545 !important;\r
+ padding: 1px 10px;\r
+ padding-bottom:3px;\r
+ background: -moz-linear-gradient(\r
+ top,\r
+ #fcfcfc 0%,\r
+ #d6d5d3);\r
+ background: -webkit-gradient(\r
+ linear, left top, left bottom,\r
+ from(#fcfcfc),\r
+ to(#d6d5d3));\r
+ -moz-border-radius: 5px;\r
+ -webkit-border-radius: 5px;\r
+ border-radius: 5px;\r
+ border: 1px solid #f7f7f7;\r
+ -moz-box-shadow:\r
+ 0px 0px 1px rgba(000,000,000,0.5),\r
+ inset 0px 0px 1px rgba(255,255,255,0.7);\r
+ -webkit-box-shadow:\r
+ 0px 0px 1px rgba(000,000,000,0.5),\r
+ inset 0px 0px 1px rgba(255,255,255,0.7);\r
+ box-shadow:\r
+ 0px 0px 1px rgba(000,000,000,0.5),\r
+ inset 0px 0px 1px rgba(255,255,255,0.7);\r
+ text-shadow:\r
+ -1px -1px 0px rgba(252,252,252,0.4),\r
+ 0px 0px 0px rgba(255,255,255,0.3);\r
+}\r
+\r
+.short-button-dark {\r
+ color: #ffffff !important;\r
+ padding: 1px 7px;\r
+ padding-bottom:3px;\r
+ background: -moz-linear-gradient(\r
+ top,\r
+ #6b6b6b 0%,\r
+ #000000);\r
+ background: -webkit-gradient(\r
+ linear, left top, left bottom,\r
+ from(#6b6b6b),\r
+ to(#000000));\r
+ -moz-border-radius: 5px;\r
+ -webkit-border-radius:5px;\r
+ border-radius: 5px;\r
+ border: 1px solid #666;\r
+ -moz-box-shadow:\r
+ 0px 0px 1px rgba(000,000,000,0.5),\r
+ inset 0px 0px 1px rgba(255,255,255,0.7);\r
+ -webkit-box-shadow:\r
+ 0px 0px 1px rgba(000,000,000,0.5),\r
+ inset 0px 0px 1px rgba(255,255,255,0.7);\r
+ box-shadow:\r
+ 0px 0px 1px rgba(000,000,000,0.5),\r
+ inset 0px 0px 1px rgba(255,255,255,0.7);\r
+ text-shadow:\r
+ 0px -1px 0px rgba(000,000,000,0.4),\r
+ 0px 1px 0px rgba(255,255,255,0.3);\r
+}\r
+\r
+.short-button-color {\r
+ color: #ffffff !important;\r
+ padding: 1px 7px;\r
+ padding-bottom:3px;\r
+ background: #47afff;\r
+ -moz-border-radius: 5px;\r
+ -webkit-border-radius: 5px;\r
+ border-radius: 5px;\r
+ border: 1px solid #878787;\r
+ -moz-box-shadow:\r
+ 0px 0px 1px rgba(000,000,000,0.5),\r
+ 0 3px 10px rgba(255,255,255,0.7) inset;\r
+ -webkit-box-shadow:\r
+ 0px 0px 1px rgba(000,000,000,0.5),\r
+ 0 3px 10px rgba(255,255,255,0.7) inset;\r
+ box-shadow:\r
+ 0px 0px 1px rgba(000,000,000,0.5),\r
+ 0 3px 10px rgba(255,255,255,0.7) inset;\r
+ text-shadow:\r
+ -1px -1px 0px rgba(000,000,000,0.4),\r
+ 0px 0px 0px rgba(255,255,255,0.3);\r
+}\r
+\r
+\r
+a.short-button-light:hover { box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.8) inset; }\r
+a.short-button-dark:hover { box-shadow: 0 0 10px rgba(255,255,255,0.5) inset; }\r
+a.short-button-color:hover { box-shadow: 0 3px 10px rgba(255,255,255,0.9) inset; }\r
+\r
+a.short-button-color:hover, a.short-button-light:hover, a.short-button-dark:hover { text-decoration:none; }\r
+\r
+/* shareaddy compat */ .sharedaddy ul > li { background: none !important; text-indent: 0 !important; }\r
+/* sociable compat */ .entry-content .sociable ul li { background: none; padding-left: 2px; }\r
+/* woocommerce compat */ .woocommerce .product .entry-summary { clear:none; }\r
+/* video fix */ #content embed, #content iframe {max-width:100%;}\r
+/* a bit of captcha fixes */ \r
+#recaptcha_widget_div { display:block; float:none; clear:both; }\r
+.math-captcha-form { display:block; float:none; clear:both; } \r
+.cptch_block { display:block; float:none; clear:both; } \r
+\r
+/* FIN! */
\ No newline at end of file
--- /dev/null
+<?php\r
+/**\r
+ * The template used to display Tag Archive pages\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage Mantra\r
+ * @since Mantra 1.0\r
+ */\r
+\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ \r
+ <div id="content" role="main">\r
+ <?php cryout_before_content_hook(); ?>\r
+ \r
+ <?php if ( have_posts() ) : ?>\r
+\r
+ <header class="page-header">\r
+ <h1 class="page-title"><?php\r
+ printf( __( 'Tag Archives: %s', 'mantra' ), '<span>' . single_tag_title( '', false ) . '</span>' );\r
+ ?></h1>\r
+\r
+ <?php\r
+ $tag_description = tag_description();\r
+ if ( ! empty( $tag_description ) )\r
+ echo apply_filters( 'tag_archive_meta', '<div class="tag-archive-meta">' . $tag_description . '</div>' );\r
+ ?>\r
+ </header>\r
+\r
+ <?php mantra_content_nav( 'nav-above' ); ?>\r
+\r
+ <?php /* Start the Loop */ ?>\r
+ <?php while ( have_posts() ) : the_post(); ?>\r
+\r
+ <?php\r
+ /* Include the Post-Format-specific template for the content.\r
+ * If you want to overload this in a child theme then include a file\r
+ * called content-___.php (where ___ is the Post Format name) and that will be used instead.\r
+ */\r
+ get_template_part( 'content', get_post_format() );\r
+ ?>\r
+\r
+ <?php endwhile; ?>\r
+\r
+ <?php if($mantra_pagination=="Enable") mantra_pagination(); else mantra_content_nav( 'nav-below' ); ?>\r
+\r
+ <?php else : ?>\r
+\r
+ <article id="post-0" class="post no-results not-found">\r
+ <header class="entry-header">\r
+ <h1 class="entry-title"><?php _e( 'Nothing Found', 'mantra' ); ?></h1>\r
+ </header><!-- .entry-header -->\r
+\r
+ <div class="entry-content">\r
+ <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mantra' ); ?></p>\r
+ <?php get_search_form(); ?>\r
+ </div><!-- .entry-content -->\r
+ </article><!-- #post-0 -->\r
+\r
+ <?php endif; ?>\r
+ \r
+ <?php cryout_after_content_hook(); ?>\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #container -->\r
+\r
+<?php get_footer(); ?>\r
--- /dev/null
+<?php /*\r
+Template Name: Blog Template ( Posts Page)\r
+*/ ?>\r
+\r
+\r
+<?php get_header(); ?>\r
+\r
+ <div id="container">\r
+ <div id="content" role="main">\r
+ <?php cryout_before_content_hook(); ?>\r
+ \r
+\r
+\r
+ <?php \r
+$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;\r
+query_posts('post_status=publish&orderby=date&order=desc&posts_per_page='.get_option('posts_per_page').'&paged=' . $paged);?>\r
+\r
+\r
+ <?php if ( have_posts() ) : ?>\r
+\r
+ <?php mantra_content_nav( 'nav-above' ); ?>\r
+\r
+ <?php /* Start the Loop */ ?>\r
+ <?php while ( have_posts() ) : the_post(); ?>\r
+ <?php global $more; $more=0; ?>\r
+ <?php get_template_part( 'content', get_post_format() ); ?>\r
+\r
+ <?php endwhile; ?>\r
+\r
+ <?php if($mantra_pagination=="Enable") mantra_pagination(); else mantra_content_nav( 'nav-below' ); ?>\r
+\r
+ <?php else : ?>\r
+\r
+ <article id="post-0" class="post no-results not-found">\r
+ <header class="entry-header">\r
+ <h1 class="entry-title"><?php _e( 'Nothing Found', 'mantra' ); ?></h1>\r
+ </header><!-- .entry-header -->\r
+\r
+ <div class="entry-content">\r
+ <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mantra' ); ?></p>\r
+ <?php get_search_form(); ?>\r
+ </div><!-- .entry-content -->\r
+ </article><!-- #post-0 -->\r
+\r
+ <?php endif; ?>\r
+\r
+\r
+\r
+ <?php cryout_after_content_hook(); ?>\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </div><!-- #container -->\r
+\r
+<?php get_footer(); ?>\r
--- /dev/null
+<?php\r
+/**\r
+ * Template Name: One column, no sidebar\r
+ *\r
+ * A custom page template without sidebar.\r
+ *\r
+ * The "Template Name:" bit above allows this to be selectable\r
+ * from a dropdown menu on the edit page screen.\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+\r
+get_header(); ?>\r
+\r
+ <section id="container" class="one-column">\r
+ <div id="content" role="main">\r
+\r
+<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>\r
+\r
+ <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <h1 class="entry-title"><?php the_title(); ?></h1>\r
+ <div class="entry-content">\r
+ <?php the_content(); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'mantra' ), 'after' => '</div>' ) ); ?>\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?>\r
+ </div><!-- .entry-content -->\r
+ </div><!-- #post-## -->\r
+\r
+ <?php comments_template( '', true ); ?>\r
+\r
+<?php endwhile; ?>\r
+\r
+ </div><!-- #content -->\r
+ </section><!-- #container -->\r
+\r
+<?php get_footer(); ?>\r
--- /dev/null
+<?php /*\r
+Template Name: Category page with intro\r
+*/ ?>\r
+\r
+\r
+<?php get_header(); ?>\r
+\r
+<section id="container">\r
+ <div id="content" role="main">\r
+\r
+ <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>\r
+ <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>\r
+ <h1 class="entry-title"><?php the_title(); ?></h1>\r
+ <div class="entry-content">\r
+ <?php the_content(); ?>\r
+ <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'mantra' ), 'after' => '</div>' ) ); ?>\r
+ <?php edit_post_link( __( 'Edit', 'mantra' ), '<span class="edit-link">', '</span>' ); ?>\r
+ </div>\r
+ <div style="clear: both;"></div>\r
+ </div>\r
+ <?php\r
+ $slug = basename(get_permalink());\r
+ $meta_slug = get_post_meta(get_the_ID(), "slug", $single); // slug custom field\r
+ $meta_catid = get_post_meta(get_the_ID(), "catid", $single); // category_id custom field\r
+ $key = get_post_meta(get_the_ID(), "key", $single); // either slug or category_id custom field\r
+ $slug = ($key?$key:($meta_catid?$meta_catid:($meta_slug?$meta_slug:($slug?$slug:0)))); // select one value out of the custom fields \r
+ ?>\r
+ <?php endwhile; else: endif; ?>\r
+ <hr>\r
+ <br />\r
+ <?php \r
+ $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;\r
+ if (is_numeric($slug)&&($slug>0)): \r
+ $the_query = new WP_Query( 'cat='.$slug.'&post_status=publish&orderby=date&order=desc&posts_per_page='.get_option('posts_per_page').'&paged=' . $paged ); \r
+ else: \r
+ $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 ); \r
+ endif; \r
+ /* Start the Loop */ \r
+ while ( $the_query->have_posts() ) : $the_query->the_post();\r
+ global $more; $more=0; // more gets lost inside page templates\r
+ get_template_part( 'content', get_post_format() ); \r
+ endwhile;\r
+ if($mantra_pagination=="Enable") mantra_pagination($the_query->max_num_pages); else mantra_content_nav( 'nav-below' ); \r
+ ?>\r
+ \r
+ </div><!-- #content -->\r
+ \r
+ <?php get_sidebar(); ?>\r
+ \r
+</section><!-- #container -->\r
+\r
+<?php get_footer(); ?>\r
--- /dev/null
+<?php /*\r
+ * Template Name: Three columns, Sidebars Left and Right\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ \r
+ <div id="content" role="main">\r
+\r
+ <?php get_template_part( 'content', 'page'); ?>\r
+\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #container -->\r
+\r
+\r
+<?php get_footer(); ?>
\ No newline at end of file
--- /dev/null
+<?php /*\r
+ * Template Name: Three Columns, Sidebars on the Left\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ \r
+ <div id="content" role="main">\r
+\r
+ <?php get_template_part( 'content', 'page'); ?>\r
+\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #container -->\r
+\r
+\r
+<?php get_footer(); ?>
\ No newline at end of file
--- /dev/null
+<?php /*\r
+ * Template Name: Three columns, Sidebars on the Right\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ \r
+ <div id="content" role="main">\r
+\r
+ <?php get_template_part( 'content', 'page'); ?>\r
+\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #container -->\r
+\r
+\r
+<?php get_footer(); ?>
\ No newline at end of file
--- /dev/null
+<?php /*\r
+ * Template Name: Two columns, Sidebar on the Left\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ \r
+ <div id="content" role="main">\r
+\r
+ <?php get_template_part( 'content', 'page'); ?>\r
+\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #container -->\r
+\r
+\r
+<?php get_footer(); ?>
\ No newline at end of file
--- /dev/null
+<?php /*\r
+ * Template Name: Two Columns, Sidebar on the Right\r
+ *\r
+ * @package Cryout Creations\r
+ * @subpackage mantra\r
+ * @since mantra 0.5\r
+ */\r
+get_header(); ?>\r
+\r
+ <section id="container">\r
+ \r
+ <div id="content" role="main">\r
+\r
+ <?php get_template_part( 'content', 'page'); ?>\r
+\r
+ </div><!-- #content -->\r
+ <?php get_sidebar(); ?>\r
+ </section><!-- #container -->\r
+\r
+\r
+<?php get_footer(); ?>
\ No newline at end of file
--- /dev/null
+{
+ "preset": "wordpress",
+ "fileExtensions": [ ".js" ],
+ "excludeFiles": [
+ "js/html5.js"
+ ]
+}
\ No newline at end of file
--- /dev/null
+js/html5.js
\ No newline at end of file
--- /dev/null
+# Travis CI configuration file.
+# @link https://travis-ci.org/
+
+# For use with the Twenty Sixteen WordPress theme
+# @link https://github.com/WordPress/twentysixteen/
+
+# Declare project language and PHP versions to test against.
+# @link http://about.travis-ci.org/docs/user/languages/php/
+language: php
+
+# Declare versions of PHP to use. Use one decimal max.
+php:
+ - "7.0"
+ - "5.6"
+ - "5.5"
+ - "5.4"
+ - "5.3"
+ # Current $required_php_version for WordPress: 5.2.4
+ - "5.2"
+
+# Ditch sudo and use containers.
+# @link http://docs.travis-ci.com/user/migrating-from-legacy/#Why-migrate-to-container-based-infrastructure%3F
+# @link http://docs.travis-ci.com/user/workers/container-based-infrastructure/#Routing-your-build-to-container-based-infrastructure
+sudo: false
+
+# Declare which versions of WordPress to test against.
+# Also declare whether or not to test in Multisite.
+env:
+ # Trunk (current version in development is 4.4)
+ # @link https://github.com/WordPress/WordPress
+ - WP_VERSION=master WP_MULTISITE=0
+
+# Use this to prepare your build for testing.
+# e.g. copy database configurations, environment variables, etc.
+# Failures in this section will result in build status 'errored'.
+before_script:
+ # Set up WordPress installation.
+ - export WP_DEVELOP_DIR=/tmp/wordpress/
+ - mkdir -p $WP_DEVELOP_DIR
+ # Use the Git mirror of WordPress.
+ - git clone --depth=1 --branch="$WP_VERSION" git://develop.git.wordpress.org/ $WP_DEVELOP_DIR
+ # Set up Twenty Sixteen theme information.
+ - theme_slug=$(basename $(pwd))
+ - theme_dir=$WP_DEVELOP_DIR/src/wp-content/themes/$theme_slug
+ - cd ..
+ - mv $theme_slug $theme_dir
+ # Set up WordPress configuration.
+ - cd $WP_DEVELOP_DIR
+ - echo $WP_DEVELOP_DIR
+ - cp wp-tests-config-sample.php wp-tests-config.php
+ - sed -i "s/youremptytestdbnamehere/wordpress_test/" wp-tests-config.php
+ - sed -i "s/yourusernamehere/root/" wp-tests-config.php
+ - sed -i "s/yourpasswordhere//" wp-tests-config.php
+ # Create WordPress database.
+ - mysql -e 'CREATE DATABASE wordpress_test;' -uroot
+ # Install CodeSniffer for WordPress Coding Standards checks.
+ - mkdir php-codesniffer && curl -L https://github.com/squizlabs/PHP_CodeSniffer/archive/master.tar.gz | tar xz --strip-components=1 -C php-codesniffer
+ # Install WordPress Coding Standards.
+ - mkdir wordpress-coding-standards && curl -L https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/archive/master.tar.gz | tar xz --strip-components=1 -C wordpress-coding-standards
+ # Hop into CodeSniffer directory.
+ - cd php-codesniffer
+ # Set install path for WordPress Coding Standards
+ # @link https://github.com/squizlabs/PHP_CodeSniffer/blob/4237c2fc98cc838730b76ee9cee316f99286a2a7/CodeSniffer.php#L1941
+ - scripts/phpcs --config-set installed_paths ../wordpress-coding-standards
+ # Hop into themes directory.
+ - cd $theme_dir
+ # After CodeSniffer install you should refresh your path.
+ - phpenv rehash
+ # Install JSCS: JavaScript Code Style checker
+ # @link http://jscs.info/
+ - npm install -g jscs
+ # Install JSHint, a JavaScript Code Quality Tool
+ # @link http://jshint.com/docs/
+ - npm install -g jshint
+ - wget https://develop.svn.wordpress.org/trunk/.jshintrc
+
+# Run test script commands.
+# Default is specific to project language.
+# All commands must exit with code 0 on success. Anything else is considered failure.
+script:
+ # Search theme for PHP syntax errors.
+ - find . \( -name '*.php' \) -exec php -lf {} \;
+ # Run the theme through JSHint
+ - jshint .
+ # Run the theme through JavaScript Code Style checker
+ - jscs .
+ # WordPress Coding Standards
+ # @link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards
+ # @link http://pear.php.net/package/PHP_CodeSniffer/
+ # -p flag: Show progress of the run.
+ # -s flag: Show sniff codes in all reports.
+ # -v flag: Print verbose output.
+ # -n flag: Do not print warnings (shortcut for --warning-severity=0)
+ # --standard: Use WordPress as the standard.
+ # --extensions: Only sniff PHP files.
+ - $WP_DEVELOP_DIR/php-codesniffer/scripts/phpcs -p -s -v -n . --standard=./codesniffer.ruleset.xml --extensions=php
\ No newline at end of file
--- /dev/null
+<?php
+/**
+ * The template for displaying 404 pages (not found)
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+get_header(); ?>
+
+ <div id="primary" class="content-area">
+ <main id="main" class="site-main" role="main">
+
+ <section class="error-404 not-found">
+ <header class="page-header">
+ <h1 class="page-title"><?php _e( 'Oops! That page can’t be found.', 'twentysixteen' ); ?></h1>
+ </header><!-- .page-header -->
+
+ <div class="page-content">
+ <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentysixteen' ); ?></p>
+
+ <?php get_search_form(); ?>
+ </div><!-- .page-content -->
+ </section><!-- .error-404 -->
+
+ </main><!-- .site-main -->
+
+ <?php get_sidebar( 'content-bottom' ); ?>
+
+ </div><!-- .content-area -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
--- /dev/null
+# Contributing to Twenty Sixteen
+Hey, it’s really great you want to contribute to the new default theme for the WordPress 4.4 release! Before you dive right in, we have a few pointers on how to contribute whilst it’s on Github.
+
+## Best Practices
+The theme is synced regularly to the WordPress.org theme directory. Whatever you add, make sure you keep to the theme review handbook.
+
+### Commit Messages
+Here are some good ideas for commit messages:
+- Keep them to a one line summary.
+- Keep them short (50 chars or less).
+- Make them relevant to the commit.
+
+## Commit Process
+All changes happen through a pull request made by contributors, ideally associated with an issue. After you send your proposed changes, one of the committers will review and test. After that we can merge them in.
+
+When you add a pull request, please also update the CONTRIBUTORS.md with your WordPress.org username. This is a running list of all contributors and essential to give everyone that has helped make this project props when we finally merge into core.
\ No newline at end of file
--- /dev/null
+@iamtakashi
+@iandstewart
+@dd32
+@mor10
+@grapplerulrich
+@davidakennedy
+@frank-klein
+@tywayne
+@wenthemes
+@monika
+@metodiew
+@nhuja
+@headonfire
+@Chrisdc1
+@philiparthurmoore
+@karpstrucking
+@cais
+@mt8.biz
+@fjarrett
+@sdavis2702
+@SergeyBiryukov
+@eduardozulian
+@webdevmattcrom
+@ehtis
+@peterwilsoncc
+@tfrommen
+@fsylum
+@wonderboymusic
+@ocean90
+@obenland
+@cainm
--- /dev/null
+<?php
+/**
+ * The template for displaying archive pages
+ *
+ * Used to display archive-type pages if nothing more specific matches a query.
+ * For example, puts together date-based pages if no date.php file exists.
+ *
+ * If you'd like to further customize these archive views, you may create a
+ * new template file for each one. For example, tag.php (Tag archives),
+ * category.php (Category archives), author.php (Author archives), etc.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+get_header(); ?>
+
+ <div id="primary" class="content-area">
+ <main id="main" class="site-main" role="main">
+
+ <?php if ( have_posts() ) : ?>
+
+ <header class="page-header">
+ <?php
+ the_archive_title( '<h1 class="page-title">', '</h1>' );
+ the_archive_description( '<div class="taxonomy-description">', '</div>' );
+ ?>
+ </header><!-- .page-header -->
+
+ <?php
+ // Start the Loop.
+ while ( have_posts() ) : the_post();
+
+ /*
+ * Include the Post-Format-specific template for the content.
+ * If you want to override this in a child theme, then include a file
+ * called content-___.php (where ___ is the Post Format name) and that will be used instead.
+ */
+ get_template_part( 'template-parts/content', get_post_format() );
+
+ // End the loop.
+ endwhile;
+
+ // Previous/next page navigation.
+ the_posts_pagination( array(
+ 'prev_text' => __( 'Previous page', 'twentysixteen' ),
+ 'next_text' => __( 'Next page', 'twentysixteen' ),
+ 'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>',
+ ) );
+
+ // If no content, include the "No posts found" template.
+ else :
+ get_template_part( 'template-parts/content', 'none' );
+
+ endif;
+ ?>
+
+ </main><!-- .site-main -->
+ </div><!-- .content-area -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
--- /dev/null
+<?xml version="1.0"?>
+<ruleset name="WordPress Theme Coding Standards">
+ <!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml -->
+ <!-- See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/blob/develop/WordPress-Core/ruleset.xml -->
+
+ <!-- Set a description for this ruleset. -->
+ <description>A custom set of code standard rules to check for WordPress themes.</description>
+
+ <!-- Include the WordPress ruleset, with space for exclusions if necessary. -->
+ <rule ref="WordPress-Core">
+ <exclude name="Generic.WhiteSpace.ScopeIndent.Incorrect" />
+ <exclude name="Generic.WhiteSpace.ScopeIndent.IncorrectExact" />
+
+ <exclude name="PEAR.Functions.FunctionCallSignature.Indent" />
+
+ <exclude name="Squiz.Commenting.FileComment.SpacingAfterComment" />
+ <exclude name="Squiz.Commenting.FunctionComment.MissingParamTag" />
+ <exclude name="Squiz.Commenting.InlineComment.InvalidEndChar" />
+ <exclude name="Squiz.Commenting.InlineComment.NotCapital" />
+ </rule>
+ <rule ref="WordPress-Docs">
+
+ </rule>
+</ruleset>
\ No newline at end of file
--- /dev/null
+<?php
+/**
+ * The template for displaying comments
+ *
+ * The area of the page that contains both current comments
+ * and the comment form.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+/*
+ * If the current post is protected by a password and
+ * the visitor has not yet entered the password we will
+ * return early without loading the comments.
+ */
+if ( post_password_required() ) {
+ return;
+}
+?>
+
+<div id="comments" class="comments-area">
+
+ <?php if ( have_comments() ) : ?>
+ <h2 class="comments-title">
+ <?php
+ $comments_number = get_comments_number();
+ if ( 1 === $comments_number ) {
+ /* translators: %s: post title */
+ printf( _x( 'One thought on “%s”', 'comments title', 'twentysixteen' ), get_the_title() );
+ } else {
+ printf(
+ /* translators: 1: number of comments, 2: post title */
+ _nx(
+ '%1$s thought on “%2$s”',
+ '%1$s thoughts on “%2$s”',
+ $comments_number,
+ 'comments title',
+ 'twentysixteen'
+ ),
+ number_format_i18n( $comments_number ),
+ get_the_title()
+ );
+ }
+ ?>
+ </h2>
+
+ <?php the_comments_navigation(); ?>
+
+ <ol class="comment-list">
+ <?php
+ wp_list_comments( array(
+ 'style' => 'ol',
+ 'short_ping' => true,
+ 'avatar_size' => 42,
+ ) );
+ ?>
+ </ol><!-- .comment-list -->
+
+ <?php the_comments_navigation(); ?>
+
+ <?php endif; // Check for have_comments(). ?>
+
+ <?php
+ // If comments are closed and there are comments, let's leave a little note, shall we?
+ if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
+ ?>
+ <p class="no-comments"><?php _e( 'Comments are closed.', 'twentysixteen' ); ?></p>
+ <?php endif; ?>
+
+ <?php
+ comment_form( array(
+ 'title_reply_before' => '<h2 id="reply-title" class="comment-reply-title">',
+ 'title_reply_after' => '</h2>',
+ ) );
+ ?>
+
+</div><!-- .comments-area -->
--- /dev/null
+/*
+Theme Name: Twenty Sixteen
+Description: Used to style the TinyMCE editor.
+*/
+
+
+/**
+ * Table of Contents:
+ *
+ * 1.0 - Body
+ * 2.0 - Typography
+ * 3.0 - Elements
+ * 4.0 - Alignment
+ * 5.0 - Caption
+ * 6.0 - Galleries
+ * 7.0 - Audio / Video
+ * 8.0 - RTL
+ */
+
+
+/**
+ * 1.0 - Body
+ */
+
+body {
+ color: #1a1a1a;
+ font-family: Merriweather, Georgia, serif;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 1.75;
+ margin: 20px 40px;
+ max-width: 600px;
+ vertical-align: baseline;
+}
+
+body.post-type-page {
+ max-width: 840px;
+}
+
+
+/**
+ * 2.0 - Typography
+ */
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ clear: both;
+ font-weight: 900;
+ margin: 56px 0 28px;
+}
+
+h1 {
+ font-size: 33px;
+ line-height: 1.2727272727;
+}
+
+h2 {
+ font-size: 28px;
+ line-height: 1.25;
+}
+
+h3 {
+ font-size: 23px;
+ line-height: 1.2173913043;
+}
+
+h4,
+h5,
+h6 {
+ font-size: 19px;
+ line-height: 1.1052631579;
+}
+
+h4 {
+ letter-spacing: 0.13333em;
+ text-transform: uppercase;
+}
+
+h6 {
+ font-style: italic;
+}
+
+h1:first-child,
+h2:first-child,
+h3:first-child,
+h4:first-child,
+h5:first-child,
+h6:first-child {
+ margin-top: 0;
+}
+
+p {
+ margin: 0 0 28px;
+}
+
+b,
+strong {
+ font-weight: 700;
+}
+
+dfn,
+cite,
+em,
+i {
+ font-style: italic;
+}
+
+blockquote {
+ border-left: 4px solid #1a1a1a;
+ color: #686868;
+ font-size: 19px;
+ font-style: italic;
+ line-height: 1.4736842105;
+ margin-bottom: 28px;
+ padding: 0 0 0 24px;
+}
+
+blockquote:not(.alignleft):not(.alignright) {
+ margin-left: -28px;
+}
+
+blockquote blockquote:not(.alignleft):not(.alignright) {
+ margin-left: 0;
+}
+
+blockquote:before,
+blockquote:after {
+ content: "";
+ display: table;
+}
+
+blockquote:after {
+ clear: both;
+}
+
+blockquote > :last-child {
+ margin-bottom: 0;
+}
+
+blockquote cite,
+blockquote small {
+ color: #1a1a1a;
+ font-size: 16px;
+ line-height: 1.75;
+}
+
+blockquote em,
+blockquote i,
+blockquote cite {
+ font-style: normal;
+}
+
+blockquote strong,
+blockquote b {
+ font-weight: 400;
+}
+
+blockquote.alignleft,
+blockquote.alignright {
+ border: 0 solid #1a1a1a;
+ border-top-width: 4px;
+ padding: 18px 0 0;
+ width: -webkit-calc(50% - 14px);
+ width: calc(50% - 14px);
+}
+
+address {
+ font-style: italic;
+ margin: 0 0 28px;
+}
+
+code,
+kbd,
+tt,
+var,
+samp,
+pre {
+ font-family: Inconsolata, monospace;
+}
+
+pre {
+ border: 1px solid #d1d1d1;
+ font-size: 16px;
+ line-height: 1.3125;
+ margin: 0 0 28px;
+ max-width: 100%;
+ overflow: auto;
+ padding: 14px;
+ white-space: pre;
+ white-space: pre-wrap;
+ word-wrap: break-word;
+}
+
+code {
+ background-color: #d1d1d1;
+ padding: 2px 4px;
+}
+
+abbr[title] {
+ border-bottom: 1px dotted #d1d1d1;
+ cursor: help;
+}
+
+mark,
+ins {
+ background: #007acc;
+ color: #fff;
+ padding: 2px 4px;
+ text-decoration: none;
+}
+
+sup,
+sub {
+ font-size: 75%;
+ height: 0;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+
+sub {
+ top: -6px;
+}
+
+sup {
+ bottom: -3px;
+}
+
+small {
+ font-size: 80%;
+}
+
+big {
+ font-size: 125%;
+}
+
+
+/**
+ * 3.0 - Elements
+ */
+
+hr {
+ background-color: #d1d1d1;
+ border: 0;
+ height: 1px;
+ margin-bottom: 28px;
+}
+
+ul,
+ol {
+ margin: 0 0 28px 0;
+ padding: 0;
+}
+
+ul {
+ list-style: disc;
+}
+
+ol {
+ list-style: decimal;
+}
+
+li > ul,
+li > ol {
+ margin-bottom: 0;
+}
+
+li > ul,
+blockquote > ul {
+ margin-left: 20px;
+}
+
+li > ol,
+blockquote > ol {
+ margin-left: 24px;
+}
+
+dl {
+ margin: 0 0 28px;
+}
+
+dt {
+ font-weight: bold;
+}
+
+dd {
+ margin: 0 0 28px;
+}
+
+table,
+th,
+td,
+.mce-item-table,
+.mce-item-table th,
+.mce-item-table td {
+ border: 1px solid #d1d1d1;
+}
+
+table a {
+ color: #007acc;
+}
+
+table,
+.mce-item-table {
+ border-collapse: separate;
+ border-spacing: 0;
+ border-width: 1px 0 0 1px;
+ margin: 0 0 28px;
+ width: 100%;
+}
+
+table th,
+.mce-item-table th,
+table caption {
+ border-width: 0 1px 1px 0;
+ font-size: 16px;
+ font-weight: 700;
+ padding: 7px;
+ text-align: left;
+ vertical-align: baseline;
+}
+
+table td,
+.mce-item-table td {
+ border-width: 0 1px 1px 0;
+ font-size: 16px;
+ padding: 7px;
+ vertical-align: baseline;
+}
+
+img {
+ border: 0;
+ height: auto;
+ max-width: 100%;
+ vertical-align: middle;
+}
+
+a img {
+ display: block;
+}
+
+figure {
+ margin: 0;
+}
+
+del {
+ opacity: 0.8;
+}
+
+a {
+ box-shadow: 0 1px 0 0 currentColor;
+ color: #007acc;
+ text-decoration: none;
+}
+
+fieldset {
+ border: 1px solid #d1d1d1;
+ margin: 0 0 28px;
+ padding: 14px;
+}
+
+
+/**
+ * 4.0 - Alignment
+ */
+
+.alignleft {
+ float: left;
+ margin: 6px 28px 28px 0;
+}
+
+.alignright {
+ float: right;
+ margin: 6px 0 28px 28px;
+}
+
+.aligncenter {
+ clear: both;
+ display: block;
+ margin: 0 auto 28px;
+}
+
+
+/**
+ * 5.0 - Caption
+ */
+
+.wp-caption {
+ background: transparent;
+ border: none;
+ margin-bottom: 28px;
+ max-width: 100%;
+ padding: 0;
+ text-align: inherit;
+}
+
+.wp-caption-text,
+.wp-caption-dd {
+ color: #686868;
+ font-size: 13px;
+ font-style: italic;
+ line-height: 1.6153846154;
+ padding-top: 7px;
+}
+
+
+/**
+ * 6.0 - Galleries
+ */
+
+.mce-content-body .wpview-wrap {
+ margin-bottom: 28px;
+}
+
+.gallery {
+ margin: 0 -1.1666667%;
+ padding: 0;
+}
+
+.gallery .gallery-item {
+ display: inline-block;
+ max-width: 33.33%;
+ padding: 0 1.1400652% 2.2801304%;
+ text-align: center;
+ vertical-align: top;
+ width: 100%;
+}
+
+.gallery-columns-1 .gallery-item {
+ max-width: 100%;
+}
+
+.gallery-columns-2 .gallery-item {
+ max-width: 50%;
+}
+
+.gallery-columns-4 .gallery-item {
+ max-width: 25%;
+}
+
+.gallery-columns-5 .gallery-item {
+ max-width: 20%;
+}
+
+.gallery-columns-6 .gallery-item {
+ max-width: 16.66%;
+}
+
+.gallery-columns-7 .gallery-item {
+ max-width: 14.28%;
+}
+
+.gallery-columns-8 .gallery-item {
+ max-width: 12.5%;
+}
+
+.gallery-columns-9 .gallery-item {
+ max-width: 11.11%;
+}
+
+.gallery .gallery-caption {
+ font-size: 13px;
+ margin: 0;
+}
+
+.gallery-columns-6 .gallery-caption,
+.gallery-columns-7 .gallery-caption,
+.gallery-columns-8 .gallery-caption,
+.gallery-columns-9 .gallery-caption {
+ display: none;
+}
+
+
+/**
+ * 7.0 - Audio / Video
+ */
+
+.wp-audio-shortcode a,
+.wp-playlist a {
+ box-shadow: none;
+}
+
+.mce-content-body .wp-audio-playlist {
+ margin: 0;
+ padding-bottom: 0;
+}
+
+.mce-content-body .wp-playlist-tracks {
+ margin-top: 0;
+}
+
+.mce-content-body .wp-playlist-item {
+ padding: 10px 0;
+}
+
+.mce-content-body .wp-playlist-item-length {
+ top: 10px;
+}
+
+
+/**
+ * 8.0 - RTL
+ */
+
+.rtl blockquote {
+ border: 0 solid #1a1a1a;
+ border-right-width: 4px;
+}
+
+.rtl blockquote.alignleft,
+.rtl blockquote.alignright {
+ border: 0 solid #1a1a1a;
+ border-top-width: 4px;
+}
+
+.rtl blockquote:not(.alignleft):not(.alignright) {
+ margin-right: -28px;
+ padding: 0 24px 0 0;
+}
+
+.rtl blockquote blockquote:not(.alignleft):not(.alignright) {
+ margin-right: 0;
+ margin-left: auto;
+}
+
+.rtl li > ul,
+.rtl blockquote > ul {
+ margin-right: 20px;
+ margin-left: auto;
+}
+
+.rtl li > ol,
+.rtl blockquote > ol {
+ margin-right: 24px;
+ margin-left: auto;
+}
+
+.rtl table th,
+.rtl .mce-item-table th,
+.rtl table caption {
+ text-align: right;
+}
--- /dev/null
+/*
+Theme Name: Twenty Sixteen
+Description: Global Styles for older IE versions (previous to IE10).
+*/
+
+.site-header-main:before,
+.site-header-main:after,
+.site-footer:before,
+.site-footer:after {
+ content: "";
+ display: table;
+}
+
+.site-header-main:after,
+.site-footer:after {
+ clear: both;
+}
+
+@media screen and (min-width: 56.875em) {
+ .site-branding,
+ .site-info {
+ float: left;
+ }
+
+ .site-header-menu,
+ .site-footer .social-navigation {
+ float: right;
+ }
+
+ .site-footer .social-navigation {
+ margin-left: 7px;
+ }
+
+ .rtl .site-branding,
+ .rtl .site-info {
+ float: right;
+ }
+
+ .rtl .site-header-menu,
+ .rtl .site-footer .social-navigation {
+ float: left;
+ }
+
+ .rtl .site-footer .social-navigation {
+ margin-right: 7px;
+ margin-left: 0;
+ }
+}
--- /dev/null
+/*
+Theme Name: Twenty Sixteen
+Description: IE7 specific style.
+*/
+
+.site-inner {
+ max-width: 656px;
+}
+
+.post-navigation,
+.pagination,
+.image-navigation,
+.entry-header,
+.entry-summary,
+.entry-content,
+.entry-footer,
+.page-header,
+.page-content,
+.post-thumbnail,
+.content-bottom-widgets,
+.comments-area {
+ margin-right: 28px;
+ margin-left: 28px;
+ max-width: 100%;
+}
+
+.site-header,
+.sidebar,
+.site-footer,
+.widecolumn {
+ padding-right: 28px;
+ padding-left: 28px;
+}
+
+.search-submit {
+ height: auto;
+ margin-top: 28px;
+ padding: 15px 0 8px;
+ position: relative;
+ width: auto;
+}
+
+.search-submit .screen-reader-text {
+ height: auto;
+ position: relative !important;
+ width: auto;
+}
+
+.image-navigation .nav-previous,
+.image-navigation .nav-next,
+.comment-navigation .nav-previous,
+.comment-navigation .nav-next {
+ *display: inline;
+ zoom: 1;
+}
+
+.image-navigation .nav-previous + .nav-next,
+.comment-navigation .nav-previous + .nav-next {
+ margin-left: 14px;
+}
+
+.pagination .nav-links {
+ padding: 0;
+}
+
+.pagination .page-numbers {
+ line-height: 1;
+ margin: -4px 14px 0;
+ padding: 18px 0;
+}
+
+.pagination .prev,
+.pagination .next {
+ display: inline-block;
+ font-size: 16px;
+ font-weight: 700;
+ height: auto;
+ left: 0;
+ line-height: 1;
+ margin: 0;
+ padding: 18px 14px;
+ position: relative;
+ right: 0;
+ text-transform: none;
+ width: auto;
+}
+
+.dropdown-toggle {
+ display: none;
+}
+
+.main-navigation ul ul {
+ display: block;
+}
+
+.social-navigation {
+ margin-top: 1.75em;
+}
+
+.social-navigation a {
+ height: auto;
+ padding: 3px 7px;
+ width: auto;
+}
+
+.social-navigation .screen-reader-text {
+ height: auto;
+ position: relative !important;
+ width: auto;
+}
+
+.site-header-main {
+ overflow : hidden;
+ zoom : 1;
+}
+
+.entry-footer > span {
+ margin-right: 14px;
+}
+
+.site-info .site-title {
+ font-size: 13px;
+ margin-right: 14px;
+}
+
+.gallery-item {
+ max-width: 30%;
+}
+
+.gallery-columns-1 .gallery-item {
+ max-width: 100%;
+}
+
+.gallery-columns-2 .gallery-item {
+ max-width: 46%;
+}
+
+.gallery-columns-4 .gallery-item {
+ max-width: 22%;
+}
+
+.gallery-columns-5 .gallery-item {
+ max-width: 17%;
+}
+
+.gallery-columns-6 .gallery-item {
+ max-width: 13.5%;
+}
+
+.gallery-columns-7 .gallery-item {
+ max-width: 11%;
+}
+
+.gallery-columns-8 .gallery-item {
+ max-width: 9.5%;
+}
+
+.gallery-columns-9 .gallery-item {
+ max-width: 8%;
+}
+
+.rtl .image-navigation .nav-previous + .nav-next,
+.rtl .comment-navigation .nav-previous + .nav-next {
+ margin-right: 14px;
+ margin-left: 0;
+}
+
+.rtl .entry-footer > span {
+ margin-right: 14px;
+ margin-left: 0;
+}
+
+.rtl .site-info .site-title {
+ margin-right: 0;
+ margin-left: 14px;
+}
--- /dev/null
+/*
+Theme Name: Twenty Sixteen
+Description: IE8 specific style.
+*/
+
+code {
+ background-color: transparent;
+ padding: 0;
+}
+
+.entry-content a,
+.entry-summary a,
+.taxonomy-description a,
+.logged-in-as a,
+.comment-content a,
+.pingback .comment-body > a,
+.textwidget a,
+.entry-footer a:hover,
+.site-info a:hover {
+ text-decoration: underline;
+}
+
+.entry-content a:hover,
+.entry-content a:focus,
+.entry-summary a:hover,
+.entry-summary a:focus,
+.taxonomy-description a:hover,
+.taxonomy-description a:focus,
+.logged-in-as a:hover,
+.logged-in-as a:focus,
+.comment-content a:hover,
+.comment-content a:focus,
+.pingback .comment-body > a:hover,
+.pingback .comment-body > a:focus,
+.textwidget a:hover,
+.textwidget a:focus,
+.entry-content .wp-audio-shortcode a,
+.entry-content .wp-playlist a,
+.page-links a {
+ text-decoration: none;
+}
+
+.site {
+ margin: 21px;
+}
+
+.site-inner {
+ max-width: 710px;
+}
+
+.site-header {
+ padding-top: 3.9375em;
+ padding-bottom: 3.9375em;
+}
+
+.site-branding {
+ float: left;
+ margin-top: 1.3125em;
+ margin-bottom: 1.3125em;
+}
+
+.site-title {
+ font-size: 28px;
+ line-height: 1.25;
+}
+
+.site-description {
+ display: block;
+}
+
+.menu-toggle {
+ float: right;
+ font-size: 16px;
+ margin: 1.3125em 0;
+ padding: 0.8125em 0.875em 0.6875em;
+}
+
+.site-header-menu {
+ clear: both;
+ margin: 0;
+ padding: 1.3125em 0;
+}
+
+.site-header .main-navigation + .social-navigation {
+ margin-top: 2.625em;
+}
+
+.header-image {
+ margin: 1.3125em 0;
+}
+
+.site-main {
+ margin-bottom: 5.25em;
+}
+
+.post-navigation {
+ margin-bottom: 5.25em;
+}
+
+.post-navigation .post-title {
+ font-size: 28px;
+ line-height: 1.25;
+}
+
+.pagination {
+ margin: 0 7.6923% 4.421052632em;
+}
+
+.pagination .nav-links:before,
+.pagination .nav-links:after {
+ display: none;
+}
+
+/* restore screen-reader-text */
+.pagination .current .screen-reader-text {
+ position: absolute !important;
+}
+
+.pagination .page-numbers {
+ display: inline-block;
+ font-weight: 400;
+}
+
+.image-navigation .nav-previous,
+.image-navigation .nav-next,
+.comment-navigation .nav-previous,
+.comment-navigation .nav-next {
+ display: inline-block;
+}
+
+.image-navigation .nav-previous + .nav-next:before,
+.comment-navigation .nav-previous + .nav-next:before {
+ content: "\002f";
+ display: inline-block;
+ opacity: 0.7;
+ padding: 0 0.538461538em;
+}
+
+.site-main > article {
+ margin-bottom: 5.25em;
+}
+
+.entry-title {
+ font-size: 33px;
+ line-height: 1.2727272727;
+ margin-bottom: 0.8484848485em;
+}
+
+.entry-content blockquote.alignleft,
+.entry-content blockquote.alignright {
+ border-width: 4px 0 0 0;
+ padding: 0.9473684211em 0 0;
+ width: 50%;
+}
+
+.entry-footer > span:before {
+ content: "\002f";
+ display: inline-block;
+ opacity: 0.7;
+ padding: 0 0.538461538em;
+}
+
+.entry-footer > span:first-child:before {
+ display: none;
+}
+
+.updated {
+ display: none;
+}
+
+.updated.published {
+ display: inline;
+}
+
+.comment-author {
+ margin-bottom: 0;
+}
+
+.comment-author .avatar {
+ height: 42px;
+ position: relative;
+ top: 0.25em;
+ width: 42px;
+}
+
+.comment-list .children > li {
+ padding-left: 1.75em;
+}
+
+.comment-list + .comment-respond,
+.comment-navigation + .comment-respond {
+ padding-top: 3.5em;
+}
+
+.comment-reply-link {
+ margin-top: 0;
+}
+
+.comments-area,
+.widget,
+.content-bottom-widgets .widget-area {
+ margin-bottom: 5.25em;
+}
+
+.sidebar,
+.widecolumn {
+ margin-bottom: 5.25em;
+}
+
+.site-footer .main-navigation,
+.site-footer .social-navigation {
+ display: none;
+}
+
+.rtl .site-branding {
+ float: right;
+}
+
+.rtl .menu-toggle {
+ float: left;
+}
+
+.rtl .comment-list .children > li {
+ padding-right: 1.75em;
+ padding-left: 0;
+}
--- /dev/null
+<?php
+/**
+ * The template for displaying the footer
+ *
+ * Contains the closing of the #content div and all content after
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+?>
+
+ </div><!-- .site-content -->
+
+ <footer id="colophon" class="site-footer" role="contentinfo">
+ <?php if ( has_nav_menu( 'primary' ) ) : ?>
+ <nav class="main-navigation" role="navigation" aria-label="<?php _e( 'Footer Primary Menu', 'twentysixteen' ); ?>">
+ <?php
+ wp_nav_menu( array(
+ 'theme_location' => 'primary',
+ 'menu_class' => 'primary-menu',
+ ) );
+ ?>
+ </nav><!-- .main-navigation -->
+ <?php endif; ?>
+
+ <?php if ( has_nav_menu( 'social' ) ) : ?>
+ <nav class="social-navigation" role="navigation" aria-label="<?php _e( 'Footer Social Links Menu', 'twentysixteen' ); ?>">
+ <?php
+ wp_nav_menu( array(
+ 'theme_location' => 'social',
+ 'menu_class' => 'social-links-menu',
+ 'depth' => 1,
+ 'link_before' => '<span class="screen-reader-text">',
+ 'link_after' => '</span>',
+ ) );
+ ?>
+ </nav><!-- .social-navigation -->
+ <?php endif; ?>
+
+ <div class="site-info">
+ <?php
+ /**
+ * Fires before the twentysixteen footer text for footer customization.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+ do_action( 'twentysixteen_credits' );
+ ?>
+ <span class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span>
+ <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentysixteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentysixteen' ), 'WordPress' ); ?></a>
+ </div><!-- .site-info -->
+ </footer><!-- .site-footer -->
+ </div><!-- .site-inner -->
+</div><!-- .site -->
+
+<?php wp_footer(); ?>
+</body>
+</html>
--- /dev/null
+<?php
+/**
+ * Twenty Sixteen functions and definitions
+ *
+ * Set up the theme and provides some helper functions, which are used in the
+ * theme as custom template tags. Others are attached to action and filter
+ * hooks in WordPress to change core functionality.
+ *
+ * When using a child theme you can override certain functions (those wrapped
+ * in a function_exists() call) by defining them first in your child theme's
+ * functions.php file. The child theme's functions.php file is included before
+ * the parent theme's file, so the child theme functions would be used.
+ *
+ * @link https://codex.wordpress.org/Theme_Development
+ * @link https://codex.wordpress.org/Child_Themes
+ *
+ * Functions that are not pluggable (not wrapped in function_exists()) are
+ * instead attached to a filter or action hook.
+ *
+ * For more information on hooks, actions, and filters,
+ * {@link https://codex.wordpress.org/Plugin_API}
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+/**
+ * Twenty Sixteen only works in WordPress 4.4 or later.
+ */
+if ( version_compare( $GLOBALS['wp_version'], '4.4-alpha', '<' ) ) {
+ require get_template_directory() . '/inc/back-compat.php';
+}
+
+if ( ! function_exists( 'twentysixteen_setup' ) ) :
+/**
+ * Sets up theme defaults and registers support for various WordPress features.
+ *
+ * Note that this function is hooked into the after_setup_theme hook, which
+ * runs before the init hook. The init hook is too late for some features, such
+ * as indicating support for post thumbnails.
+ *
+ * Create your own twentysixteen_setup() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_setup() {
+ /*
+ * Make theme available for translation.
+ * Translations can be filed in the /languages/ directory.
+ * If you're building a theme based on Twenty Sixteen, use a find and replace
+ * to change 'twentysixteen' to the name of your theme in all the template files
+ */
+ load_theme_textdomain( 'twentysixteen', get_template_directory() . '/languages' );
+
+ // Add default posts and comments RSS feed links to head.
+ add_theme_support( 'automatic-feed-links' );
+
+ /*
+ * Let WordPress manage the document title.
+ * By adding theme support, we declare that this theme does not use a
+ * hard-coded <title> tag in the document head, and expect WordPress to
+ * provide it for us.
+ */
+ add_theme_support( 'title-tag' );
+
+ /*
+ * Enable support for Post Thumbnails on posts and pages.
+ *
+ * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
+ */
+ add_theme_support( 'post-thumbnails' );
+ set_post_thumbnail_size( 1200, 0, true );
+
+ // This theme uses wp_nav_menu() in two locations.
+ register_nav_menus( array(
+ 'primary' => __( 'Primary Menu', 'twentysixteen' ),
+ 'social' => __( 'Social Links Menu', 'twentysixteen' ),
+ ) );
+
+ /*
+ * Switch default core markup for search form, comment form, and comments
+ * to output valid HTML5.
+ */
+ add_theme_support( 'html5', array(
+ 'search-form',
+ 'comment-form',
+ 'comment-list',
+ 'gallery',
+ 'caption',
+ ) );
+
+ /*
+ * Enable support for Post Formats.
+ *
+ * See: https://codex.wordpress.org/Post_Formats
+ */
+ add_theme_support( 'post-formats', array(
+ 'aside',
+ 'image',
+ 'video',
+ 'quote',
+ 'link',
+ 'gallery',
+ 'status',
+ 'audio',
+ 'chat',
+ ) );
+
+ /*
+ * This theme styles the visual editor to resemble the theme style,
+ * specifically font, colors, icons, and column width.
+ */
+ add_editor_style( array( 'css/editor-style.css', twentysixteen_fonts_url() ) );
+}
+endif; // twentysixteen_setup
+add_action( 'after_setup_theme', 'twentysixteen_setup' );
+
+/**
+ * Sets the content width in pixels, based on the theme's design and stylesheet.
+ *
+ * Priority 0 to make it available to lower priority callbacks.
+ *
+ * @global int $content_width
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_content_width() {
+ $GLOBALS['content_width'] = apply_filters( 'twentysixteen_content_width', 840 );
+}
+add_action( 'after_setup_theme', 'twentysixteen_content_width', 0 );
+
+/**
+ * Registers a widget area.
+ *
+ * @link https://developer.wordpress.org/reference/functions/register_sidebar/
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_widgets_init() {
+ register_sidebar( array(
+ 'name' => __( 'Sidebar', 'twentysixteen' ),
+ 'id' => 'sidebar-1',
+ 'description' => __( 'Add widgets here to appear in your sidebar.', 'twentysixteen' ),
+ 'before_widget' => '<aside id="%1$s" class="widget %2$s">',
+ 'after_widget' => '</aside>',
+ 'before_title' => '<h2 class="widget-title">',
+ 'after_title' => '</h2>',
+ ) );
+
+ register_sidebar( array(
+ 'name' => __( 'Content Bottom 1', 'twentysixteen' ),
+ 'id' => 'sidebar-2',
+ 'description' => __( 'Appears at the bottom of the content on posts and pages.', 'twentysixteen' ),
+ 'before_widget' => '<aside id="%1$s" class="widget %2$s">',
+ 'after_widget' => '</aside>',
+ 'before_title' => '<h2 class="widget-title">',
+ 'after_title' => '</h2>',
+ ) );
+
+ register_sidebar( array(
+ 'name' => __( 'Content Bottom 2', 'twentysixteen' ),
+ 'id' => 'sidebar-3',
+ 'description' => __( 'Appears at the bottom of the content on posts and pages.', 'twentysixteen' ),
+ 'before_widget' => '<aside id="%1$s" class="widget %2$s">',
+ 'after_widget' => '</aside>',
+ 'before_title' => '<h2 class="widget-title">',
+ 'after_title' => '</h2>',
+ ) );
+}
+add_action( 'widgets_init', 'twentysixteen_widgets_init' );
+
+if ( ! function_exists( 'twentysixteen_fonts_url' ) ) :
+/**
+ * Register Google fonts for Twenty Sixteen.
+ *
+ * Create your own twentysixteen_fonts_url() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @return string Google fonts URL for the theme.
+ */
+function twentysixteen_fonts_url() {
+ $fonts_url = '';
+ $fonts = array();
+ $subsets = 'latin,latin-ext';
+
+ /* translators: If there are characters in your language that are not supported by Merriweather, translate this to 'off'. Do not translate into your own language. */
+ if ( 'off' !== _x( 'on', 'Merriweather font: on or off', 'twentysixteen' ) ) {
+ $fonts[] = 'Merriweather:400,700,900,400italic,700italic,900italic';
+ }
+
+ /* translators: If there are characters in your language that are not supported by Montserrat, translate this to 'off'. Do not translate into your own language. */
+ if ( 'off' !== _x( 'on', 'Montserrat font: on or off', 'twentysixteen' ) ) {
+ $fonts[] = 'Montserrat:400,700';
+ }
+
+ /* translators: If there are characters in your language that are not supported by Inconsolata, translate this to 'off'. Do not translate into your own language. */
+ if ( 'off' !== _x( 'on', 'Inconsolata font: on or off', 'twentysixteen' ) ) {
+ $fonts[] = 'Inconsolata:400';
+ }
+
+ if ( $fonts ) {
+ $fonts_url = add_query_arg( array(
+ 'family' => urlencode( implode( '|', $fonts ) ),
+ 'subset' => urlencode( $subsets ),
+ ), 'https://fonts.googleapis.com/css' );
+ }
+
+ return $fonts_url;
+}
+endif;
+
+/**
+ * Handles JavaScript detection.
+ *
+ * Adds a `js` class to the root `<html>` element when JavaScript is detected.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_javascript_detection() {
+ echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n";
+}
+add_action( 'wp_head', 'twentysixteen_javascript_detection', 0 );
+
+/**
+ * Enqueues scripts and styles.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_scripts() {
+ // Add custom fonts, used in the main stylesheet.
+ wp_enqueue_style( 'twentysixteen-fonts', twentysixteen_fonts_url(), array(), null );
+
+ // Add Genericons, used in the main stylesheet.
+ wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.4.1' );
+
+ // Theme stylesheet.
+ wp_enqueue_style( 'twentysixteen-style', get_stylesheet_uri() );
+
+ // Load the Internet Explorer specific stylesheet.
+ wp_enqueue_style( 'twentysixteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentysixteen-style' ), '20151003' );
+ wp_style_add_data( 'twentysixteen-ie', 'conditional', 'lt IE 10' );
+
+ // Load the Internet Explorer 8 specific stylesheet.
+ wp_enqueue_style( 'twentysixteen-ie8', get_template_directory_uri() . '/css/ie8.css', array( 'twentysixteen-style' ), '20151003' );
+ wp_style_add_data( 'twentysixteen-ie8', 'conditional', 'lt IE 9' );
+
+ // Load the Internet Explorer 7 specific stylesheet.
+ wp_enqueue_style( 'twentysixteen-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'twentysixteen-style' ), '20151003' );
+ wp_style_add_data( 'twentysixteen-ie7', 'conditional', 'lt IE 8' );
+
+ // Load the html5 shiv.
+ wp_enqueue_script( 'twentysixteen-html5', get_template_directory_uri() . '/js/html5.js', array(), '3.7.3' );
+ wp_script_add_data( 'twentysixteen-html5', 'conditional', 'lt IE 9' );
+
+ wp_enqueue_script( 'twentysixteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151003', true );
+
+ if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
+ wp_enqueue_script( 'comment-reply' );
+ }
+
+ if ( is_singular() && wp_attachment_is_image() ) {
+ wp_enqueue_script( 'twentysixteen-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20151003' );
+ }
+
+ wp_enqueue_script( 'twentysixteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20151003', true );
+
+ wp_localize_script( 'twentysixteen-script', 'screenReaderText', array(
+ 'expand' => __( 'expand child menu', 'twentysixteen' ),
+ 'collapse' => __( 'collapse child menu', 'twentysixteen' ),
+ ) );
+}
+add_action( 'wp_enqueue_scripts', 'twentysixteen_scripts' );
+
+/**
+ * Adds custom classes to the array of body classes.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @param array $classes Classes for the body element.
+ * @return array (Maybe) filtered body classes.
+ */
+function twentysixteen_body_classes( $classes ) {
+ // Adds a class of custom-background-image to sites with a custom background image.
+ if ( get_background_image() ) {
+ $classes[] = 'custom-background-image';
+ }
+
+ // Adds a class of group-blog to sites with more than 1 published author.
+ if ( is_multi_author() ) {
+ $classes[] = 'group-blog';
+ }
+
+ // Adds a class of no-sidebar to sites without active sidebar.
+ if ( ! is_active_sidebar( 'sidebar-1' ) ) {
+ $classes[] = 'no-sidebar';
+ }
+
+ return $classes;
+}
+add_filter( 'body_class', 'twentysixteen_body_classes' );
+
+/**
+ * Converts a HEX value to RGB.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @param string $color The original color, in 3- or 6-digit hexadecimal form.
+ * @return array Array containing RGB (red, green, and blue) values for the given
+ * HEX code, empty array otherwise.
+ */
+function twentysixteen_hex2rgb( $color ) {
+ $color = trim( $color, '#' );
+
+ if ( strlen( $color ) == 3 ) {
+ $r = hexdec( substr( $color, 0, 1 ).substr( $color, 0, 1 ) );
+ $g = hexdec( substr( $color, 1, 1 ).substr( $color, 1, 1 ) );
+ $b = hexdec( substr( $color, 2, 1 ).substr( $color, 2, 1 ) );
+ } else if ( strlen( $color ) == 6 ) {
+ $r = hexdec( substr( $color, 0, 2 ) );
+ $g = hexdec( substr( $color, 2, 2 ) );
+ $b = hexdec( substr( $color, 4, 2 ) );
+ } else {
+ return array();
+ }
+
+ return array( 'red' => $r, 'green' => $g, 'blue' => $b );
+}
+
+/**
+ * Custom template tags for this theme.
+ */
+require get_template_directory() . '/inc/template-tags.php';
+
+/**
+ * Customizer additions.
+ */
+require get_template_directory() . '/inc/customizer.php';
--- /dev/null
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<!--
+2015-9-18: Created with FontForge (http://fontforge.org)
+-->
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
+<metadata>
+Created by FontForge 20150618 at Fri Sep 18 10:24:13 2015
+ By Joen Asmussen
+Copyright (c) 2015, Joen Asmussen
+</metadata>
+<defs>
+<font id="Genericons" horiz-adv-x="2048" >
+ <font-face
+ font-family="Genericons"
+ font-weight="400"
+ font-stretch="normal"
+ units-per-em="2048"
+ panose-1="2 0 5 3 0 0 0 0 0 0"
+ ascent="2048"
+ descent="0"
+ bbox="-0.0140489 0 2048.01 2048"
+ underline-thickness="102.4"
+ underline-position="-204.8"
+ unicode-range="U+0020-F517"
+ />
+ <missing-glyph />
+ <glyph glyph-name="space" unicode=" " horiz-adv-x="200"
+ />
+ <glyph glyph-name="uniF413" unicode=""
+d="M256 1280c565.504 0 1024 -458.496 1024 -1024h-256c0 423.552 -344.448 768 -768 768v256zM256 1792c848.256 0 1536 -687.744 1536 -1536h-256c0 705.792 -574.208 1280 -1280 1280v256zM448 640c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192
+s-192 86.0156 -192 192s85.8877 192 192 192z" />
+ <glyph glyph-name="uniF462" unicode=""
+d="M618.502 1337l-213.004 142.004l-303.335 -455.002l303.335 -455.002l213.004 142.004l-208.665 312.998zM1642.5 1479l-213.004 -142.004l208.665 -312.998l-208.665 -312.998l213.004 -142.004l303.335 455.002zM771.821 543.045l248.357 -62.0898l256 1024
+l-248.357 62.0898z" />
+ <glyph glyph-name="uniF457" unicode=""
+d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 512c70.6562 0 128 57.4717 128 128s-57.3438 128 -128 128c-70.7842 0 -128 -57.4717 -128 -128s57.2158 -128 128 -128z
+M1342.72 1155.84c24.832 38.9121 37.248 85.1201 37.1201 138.752c0 74.4961 -27.6475 133.504 -83.7119 176.641c-55.9355 43.2637 -133.632 64.7676 -231.936 64.7676c-119.809 0 -234.496 -31.2324 -344.32 -93.9521l91.9043 -180.096
+c89.2158 47.2314 167.168 70.9121 233.983 70.9121c26.752 0 48.5127 -5.37598 65.2803 -16.2559c17.2803 -10.752 25.4717 -25.4727 25.4717 -44.0322c0 -23.2959 -8.06348 -44.0322 -23.5518 -62.208c-16 -18.0479 -41.4717 -38.4004 -77.1836 -60.9277
+c-45.1846 -28.1602 -76.416 -57.0889 -94.3359 -87.04c-17.5361 -29.6963 -26.3682 -66.4326 -26.3682 -109.44v-56.96h203.647v34.0479c0 18.6885 5.50391 35.2002 17.2803 48.8965c12.0322 14.0801 40.96 36.0957 86.9121 66.0479
+c55.04 34.8154 94.5918 71.6797 119.808 110.848z" />
+ <glyph glyph-name="uniF403" unicode=""
+d="M1541.38 1530.62l506.624 -506.624l-506.624 -506.624c-131.456 -134.272 -314.752 -217.728 -517.376 -217.728c-202.752 0 -386.048 83.4551 -517.504 217.983l-506.496 506.368v0l506.496 506.496c131.456 134.4 314.624 217.984 517.504 217.984
+c202.752 0 385.92 -83.584 517.376 -217.856zM1404.42 651.776l372.096 372.224l-370.943 370.944c-102.528 104.704 -237.568 161.536 -381.568 161.536c-144.128 0 -279.168 -56.9609 -380.288 -160.385l-372.096 -372.096l370.688 -370.56
+c102.528 -104.96 237.696 -161.792 381.824 -161.792c144 0 279.168 56.832 380.288 160.128zM1408 1024zM640 1024c0 212.096 172.032 384 384 384s384 -171.904 384 -384c0 -211.968 -172.032 -384 -384 -384s-384 172.032 -384 384zM768 1152
+c0 -70.6562 57.2158 -128 128 -128c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128c-70.7842 0 -128 -57.3438 -128 -128z" />
+ <glyph glyph-name="uniF505" unicode=""
+d="M256 1408v256h256v-256h-256zM768 1664h1024v-256h-1024v256zM256 896v256h256v-256h-256zM1408 1152v-256h-640v256h640zM256 384v256h256v-256h-256zM768 384v256h896v-256h-896z" />
+ <glyph glyph-name="uniF50F" unicode=""
+d="M1920 1024l-384 -384v256h-384v-384h256l-384 -384l-384 384h256v384h-384v-256l-384 384l384 384v-256h384v384h-256l384 384l384 -384h-256v-384h384v256z" />
+ <glyph glyph-name="uniF307" unicode=""
+d="M768 640v128h128v-128h-128zM768 896v128h128v-128h-128zM768 1152v128h128v-128h-128zM512 640v128h128v-128h-128zM512 896v128h128v-128h-128zM1280 896v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 1152v128h128v-128h-128zM1408 1664h256v-1280h-1408
+v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128zM1024 896v128h128v-128h-128zM1024 640v128h128v-128h-128z
+" />
+ <glyph glyph-name="uniF460" unicode=""
+d="M1664 1280h128l-256 -768h-768l256 768h128l86.2725 256h339.455zM1300.86 1280h214.271l-43.1357 128h-128zM809.728 1536l86.2725 -256l-256 -768h-128l-256 768h128l86.2725 256h339.455zM532.864 1280h214.271l-43.1357 128h-128z" />
+ <glyph glyph-name="uniF430" unicode=""
+d="M1024 1453.31l86.6562 -86.6553l-342.656 -342.656h896v-128h-896l342.656 -342.656l-86.6562 -86.6553l-493.312 493.312z" />
+ <glyph glyph-name="uniF515" unicode=""
+d="M1024 1920c499.2 0 896 -396.8 896 -896s-396.8 -896 -896 -896s-896 396.8 -896 896s396.8 896 896 896zM1382.4 601.6c38.3994 0 64 25.6006 64 51.2002c0 38.4004 -12.8008 51.2002 -38.4004 64c-153.6 89.6006 -332.8 140.8 -524.8 140.8
+c-115.2 0 -217.601 -25.5996 -320 -51.1992c-25.6006 -12.8008 -51.2002 -25.6006 -51.2002 -64c0 -25.6006 12.7998 -51.2002 51.2002 -51.2002c0 0 25.5996 12.7998 38.3994 12.7998c89.6006 12.7998 192 25.5996 281.601 25.5996
+c166.399 0 332.8 -38.3994 460.8 -115.199c12.7998 -12.8008 25.5996 -12.8008 38.4004 -12.8008zM1484.8 832c38.4004 0 64 38.4004 64 76.7998c0 38.4004 -12.7998 64 -38.3994 76.7998c-179.2 102.4 -409.601 166.4 -640 166.4c-153.601 0 -256 -25.5996 -358.4 -51.2002
+c-38.4004 -12.7998 -51.2002 -38.3994 -51.2002 -76.7998s38.4004 -76.7998 76.7998 -89.5996c12.8008 0 25.6006 12.7998 38.4004 12.7998c76.7998 25.5996 179.2 38.3994 294.4 38.3994c217.6 0 422.399 -51.1992 563.199 -140.8
+c25.6006 0 25.6006 -12.7998 51.2002 -12.7998zM1600 1113.6c38.4004 0 76.7998 38.4004 76.7998 89.6006c0 38.3994 -25.5996 64 -51.2002 76.7998c-204.8 128 -473.6 179.2 -742.399 179.2c-153.601 0 -294.4 -12.7998 -422.4 -51.2002
+c-38.3994 -12.7998 -64 -38.4004 -64 -89.5996c0 -51.2002 38.4004 -89.6006 89.6006 -89.6006c25.5996 0 38.3994 12.7998 51.1992 12.7998c115.2 25.6006 230.4 38.4004 358.4 38.4004c243.2 0 486.4 -51.2002 652.8 -153.6
+c25.6006 -12.8008 38.4004 -12.8008 51.2002 -12.8008z" />
+ <glyph glyph-name="uniF448" unicode=""
+d="M512 384v1280h384v-1280h-384zM1152 1664h384v-1280h-384v1280z" />
+ <glyph glyph-name="uniF453" unicode=""
+d="M1536 2048c141.312 0 256 -114.688 256 -256v-1536c0 -141.312 -114.688 -256 -256 -256h-1024c-141.312 0 -256 114.688 -256 256v1536c0 141.312 114.688 256 256 256h1024zM1024 128c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
+c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1536 512v1280h-1024v-1280h1024z" />
+ <glyph glyph-name="uniF419" unicode=""
+d="M0 256v256h2048v-256h-2048zM0 1792h2048v-256h-2048v256zM0 896v256h2048v-256h-2048z" />
+ <glyph glyph-name="uniF423" unicode=""
+d="M567.936 1440.9l-267.136 -480.896h403.2v-384h-128v256h-492.8l372.864 671.104zM1644.8 960h403.2v-384h-128v256h-492.8l372.864 671.104l112 -62.207zM1088 1344c176.768 0 320 -143.232 320 -320s-143.232 -320 -320 -320s-320 143.232 -320 320
+s143.232 320 320 320zM1088 832c105.856 0 192 86.1436 192 192s-86.1436 192 -192 192s-192 -86.1436 -192 -192s86.1436 -192 192 -192z" />
+ <glyph glyph-name="uniF512" unicode=""
+d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312z" />
+ <glyph glyph-name="uniF417" unicode=""
+d="M960 1792c318.08 0 576 -257.92 576 -576c0 -159.232 -64.6396 -303.36 -169.088 -407.68l-406.912 -407.04l-406.912 407.04c-104.448 104.319 -169.088 248.447 -169.088 407.68c0 318.08 257.92 576 576 576zM960 896c176.64 0 320 143.36 320 320
+s-143.36 320 -320 320c-176.768 0 -320 -143.36 -320 -320s143.232 -320 320 -320z" />
+ <glyph glyph-name="uniF410" unicode=""
+d="M256 1536h1536v-128l-768 -384l-768 384v128zM256 1216l768 -384l768 384v-704h-1536v704z" />
+ <glyph glyph-name="uniF449" unicode=""
+d="M512 512v1024h1024v-1024h-1024z" />
+ <glyph glyph-name="uniF467" unicode=""
+d="M1280 1280c282.752 0 512 -229.248 512 -512v-299.904l-150.016 149.889c-99.9688 99.9678 -231.04 150.016 -361.984 150.016h-256v-384l-640 640l640 640v-384h256z" />
+ <glyph glyph-name="uniF224" unicode=""
+d="M1536 1792c141.312 0 256 -114.688 256 -256v-384c0 -424.064 -343.936 -768 -768 -768s-768 343.936 -768 768v384c0 141.312 114.688 256 256 256h1024zM1498.5 1189.5c50.0479 50.0479 50.0479 131.072 0 180.992c-50.0479 50.0479 -130.944 50.0479 -180.992 0
+l-293.504 -293.504l-293.504 293.504c-50.0479 50.0479 -131.072 50.0479 -180.992 0c-50.0479 -49.9199 -50.0479 -130.944 0 -180.992l361.984 -361.984l4.22363 4.22461c22.4004 -37.376 61.5684 -63.7441 108.288 -63.7441s85.8877 26.3682 108.288 63.7441
+l4.22363 -4.22461z" />
+ <glyph glyph-name="uniF203" unicode=""
+d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-281.856v711.168h269.44l12.416 259.456h-281.984v192.384v0.255859v12.0322c0 71.2959 15.2324 114.432 108.544 114.432c86.6562 0 166.017 -0.639648 166.017 -0.639648
+l5.8877 242.304s-77.6963 9.98438 -182.528 9.98438c-259.584 0 -372.096 -159.872 -372.096 -333.952v-236.8h-254.336v-259.328h254.336v-711.296h-723.84c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280z" />
+ <glyph glyph-name="uniF502" unicode=""
+d="M128 2048h1920l-960 -960z" />
+ <glyph glyph-name="uniF412" unicode=""
+d="M1920 832l-640 -640v448h-1024v704l384 384v-704h640v448z" />
+ <glyph glyph-name="uniF440" unicode=""
+d="M1152 640v-256h256l-384 -384l-384 384h256v256h256zM1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-384v256h-512v-256h-384c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.40039c-4.09668 20.7363 -6.40039 42.1123 -6.40039 64
+c0 176.768 143.232 320 320 320c89.3438 0 169.984 -36.7363 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
+ <glyph glyph-name="uniF305" unicode=""
+d="M1408 1664h256v-1280h-1408v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128zM960 1280
+c35.3281 0 64 -28.6719 64 -64v-512c0 -35.3281 -28.6719 -64 -64 -64s-64 28.6719 -64 64v448h-64c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h128z" />
+ <glyph glyph-name="uniF443" unicode=""
+d="M1152 1664l384 -384v-121.472v-6.52832v-768h-1024v1280h512h128zM1408 512v640h-256h-128v128v256h-384v-1024h768z" />
+ <glyph glyph-name="uniF411" unicode=""
+d="M1280 1728l448 -448l-896 -896h-448v448zM1280 1536l-594.688 -594.688l96 -96l594.688 594.688zM768 512l128 128l-96 96v0l-64 64v0l-96 96l-128 -128zM845.312 781.312l96 -96l594.688 594.688l-96 96z" />
+ <glyph glyph-name="uniF402" unicode=""
+d="M896 1536v-256h256v-128h-256v-256h-128v256h-256v128h256v256h128zM1297.15 878.848l494.848 -494.848l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576
+c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM832 768c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448s200.576 -448 448 -448z" />
+ <glyph glyph-name="uniF420" unicode=""
+d="M483.2 1564.8l-227.2 227.2h640v-640l-232.32 232.32c-93.0557 -92.1602 -151.68 -218.88 -151.68 -360.32c0 -238.208 163.584 -436.736 384 -493.824v-262.656c-363.008 61.0566 -640 376.064 -640 756.48c0 212.096 88.0645 402.048 227.2 540.8zM1792 1024
+c0 -212.096 -88.0645 -401.92 -227.2 -540.8l227.2 -227.2h-640v640l18.5596 -18.5596l213.761 -213.761c93.0557 92.1602 151.68 218.88 151.68 360.32c0 238.208 -163.584 436.736 -384 493.824v262.656c363.008 -61.0566 640 -376.064 640 -756.48z" />
+ <glyph glyph-name="uniF425" unicode=""
+d="M704 1024c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64s-64 28.6719 -64 64s28.6719 64 64 64zM704 1280c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64s-64 28.6719 -64 64s28.6719 64 64 64zM704 768c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64
+s-64 28.6719 -64 64s28.6719 64 64 64zM896 896v128h384v-128h-384zM896 640v128h384v-128h-384zM1280 1664h256v-1280h-1152v1280h256c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM832 1664c-35.3281 0 -64 -28.6719 -64 -64s28.6719 -64 64 -64
+h256c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256zM1408 512v1024h-128v-128h-640v128h-128v-1024h896zM896 1152v128h384v-128h-384z" />
+ <glyph glyph-name="uniF508" unicode=""
+d="M1450.5 1395.2c45.6963 -69.376 124.288 -115.2 213.504 -115.2c5.50391 0 10.4961 1.28027 15.8721 1.66406l-399.872 -799.872l-256 512l-256 -512l-128 256l-256 -512l-299.776 599.424l228.992 114.561l70.7842 -141.568l256 512l128 -256l256 512l256 -512z
+M1664 1728c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192s-192 86.0156 -192 192s85.8877 192 192 192z" />
+ <glyph glyph-name="uniF507" unicode=""
+d="M1792 604.544c76.2881 -44.416 128 -126.08 128 -220.544c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256c0 94.5918 51.7119 176.128 128 220.544v163.456c0 70.7842 -57.2158 128 -128 128h-256v-291.456c76.2881 -44.416 128 -126.08 128 -220.544
+c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256c0 94.4639 51.8398 176.128 128 220.544v291.456h-256c-70.6562 0 -128 -57.2158 -128 -128v-163.456c76.1602 -44.416 128 -126.08 128 -220.544c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256
+c0 94.4639 51.8398 176.128 128 220.544v163.456c0 212.096 171.904 384 384 384h256v291.456c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256c0 -94.4639 -51.7119 -176.128 -128 -220.544v-291.456h256
+c211.968 0 384 -171.904 384 -384v-163.456zM1024 1792c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM384 256c70.6562 0 128 57.2158 128 128s-57.3438 128 -128 128s-128 -57.2158 -128 -128
+s57.3438 -128 128 -128zM1024 256c70.6562 0 128 57.2158 128 128s-57.3438 128 -128 128s-128 -57.2158 -128 -128s57.3438 -128 128 -128zM1664 256c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128s-128 -57.2158 -128 -128s57.2158 -128 128 -128z" />
+ <glyph glyph-name="uniF306" unicode=""
+d="M1151.87 1219.46c0.12793 -0.511719 0.12793 -0.896484 0.12793 -1.4082v-1.79199v-0.255859c0 -5.12012 -0.639648 -10.3682 -1.91992 -15.4883l-128 -512c-8.57617 -34.1758 -43.2637 -55.04 -77.5684 -46.5918c-34.3037 8.57617 -55.168 43.2637 -46.5918 77.5684
+l108.16 432.512h-174.08c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h256h1.53613h1.28027c1.02344 -0.12793 1.91992 -0.12793 2.81543 -0.255859h0.255859c30.3359 -2.68848 54.5283 -26.624 57.8564 -56.96v0c0 -0.768555 0.12793 -1.4082 0.12793 -2.04785
+v-1.28027zM1408 1664h256v-1280h-1408v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128z" />
+ <glyph glyph-name="uniF406" unicode=""
+d="M2048 1920l-832 -832l832 -832l-128 -128l-832 832l-832 -832l-128 128l832 832l-832 832l128 128l832 -832l832 832z" />
+ <glyph glyph-name="uniF215" unicode=""
+d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280zM1024 1408c-212.096 0 -384 -171.904 -384 -384c0 -211.968 171.904 -384 384 -384
+c211.968 0 384 172.032 384 384c0 212.096 -172.032 384 -384 384zM1792 384v768h-274.176c10.624 -41.0879 18.1758 -83.4561 18.1758 -128c0 -282.752 -229.248 -512 -512 -512s-512 229.248 -512 512c0 44.5439 7.42383 86.9121 18.1758 128h-274.176v-768
+c0 -70.7842 57.3438 -128 128 -128h1280c70.7842 0 128 57.2158 128 128zM1792 1536v128c0 70.6562 -57.2158 128 -128 128h-128c-70.7842 0 -128 -57.3438 -128 -128v-128c0 -70.6562 57.2158 -128 128 -128h128c70.7842 0 128 57.3438 128 128z" />
+ <glyph glyph-name="uniF202" unicode=""
+d="M1920 1583.74c-49.2803 -73.7285 -111.744 -138.368 -183.552 -190.208c0.767578 -15.7441 1.2793 -31.6162 1.2793 -47.4883c0 -485.76 -369.92 -1046.02 -1046.27 -1046.02c-207.616 0 -400.768 60.7998 -563.456 165.248
+c28.7998 -3.45605 58.1123 -5.24805 87.8076 -5.24805c172.032 0 330.752 58.752 456.448 157.439c-160.768 2.81641 -296.576 108.929 -343.424 255.104c22.5283 -3.96777 45.4404 -6.52832 69.248 -6.52832c33.5361 0 65.9199 4.48047 96.7676 12.7998
+c-168.319 33.792 -294.912 182.272 -294.912 360.448v4.73633c49.6641 -27.5205 106.368 -44.0322 166.528 -45.9521c-98.6875 65.9199 -163.456 178.432 -163.456 305.92c0 67.3281 18.1758 130.688 49.792 184.96c181.376 -222.464 452.353 -368.768 757.889 -384.128
+c-6.27246 26.8799 -9.60059 54.9121 -9.60059 83.7119c0 203.008 164.608 367.616 367.616 367.616c105.855 0 201.472 -44.6719 268.544 -116.096c83.584 16.5117 162.304 47.1035 233.216 89.2158c-27.3916 -85.8887 -85.7598 -157.952 -161.536 -203.393
+c74.3682 8.83203 145.152 28.5439 211.072 57.8564z" />
+ <glyph glyph-name="uniF222" unicode=""
+d="M1223.94 775.936c20.0967 20.0967 52.0967 19.9688 72.0645 0c19.9678 -19.9678 19.9678 -52.9912 0 -72.96c-56.96 -56.96 -145.92 -86.0156 -270.976 -86.0156c-126.977 0 -216.064 29.0557 -273.024 86.0156c-19.9678 19.9688 -19.9678 52.9922 0 72.96
+c19.9678 19.9688 51.9678 19.9688 71.9355 0c38.0166 -38.0156 103.04 -56.0635 199.04 -56.0635c97.9209 0 162.944 18.0479 200.96 56.0635zM894.976 982.016c0 -61.0557 -49.9199 -112 -112 -112c-60.9277 0 -110.976 50.9443 -110.976 112
+c0 61.9521 49.9199 112 110.976 112c61.9521 0 112 -50.0479 112 -112zM1265.02 1094.02c61.9512 0 112 -50.0479 112 -112c0 -61.0557 -50.0488 -112 -112 -112c-61.9521 0 -112 50.9443 -112 112c0 61.9521 50.0479 112 112 112zM1698.05 1089.02
+c24.96 17.9199 43.0078 45.9512 43.1357 78.9756c0 54.0156 -44.0312 98.0479 -98.0479 98.0479c-32 0 -57.9834 -16 -76.0322 -39.04c53.8887 -39.9355 98.9443 -87.04 130.944 -137.983zM1021.06 500.992c347.904 0 631.937 177.023 632.064 393.983
+c0 219.009 -284.032 396.032 -632.064 396.032c-349.056 0 -632.96 -177.023 -632.96 -395.008s283.904 -395.008 632.96 -395.008zM306.944 1168c0 -30.9756 16 -57.9844 39.9355 -74.8799c32 50.9443 76.9277 97.0234 131.968 136.96
+c-17.9199 22.0156 -43.0078 35.9678 -72.96 35.9678c-54.9121 0 -98.9434 -44.0322 -98.9434 -98.0479zM1600 1805.06c-41.9844 0 -77.0557 -35.0713 -77.0557 -77.0557s35.0713 -77.0557 77.0557 -77.0557s77.0557 34.9434 77.0557 77.0557
+s-35.0713 77.0557 -77.0557 77.0557zM1842.94 1168c0 -75.0078 -41.9844 -137.984 -101.889 -173.056c8.95996 -32 13.9521 -64.8965 13.9521 -98.9443c0 -274.944 -329.088 -498.048 -734.08 -498.048s-734.976 222.976 -734.976 497.023
+c0 35.9688 6.01562 70.0166 16.1279 104.064c-57.9844 34.9443 -97.0244 97.0244 -97.0244 168.96c0 110.976 89.9844 200.96 200.96 200.96c66.0488 0 124.032 -32.8955 160 -82.9443c114.944 60.9287 257.024 99.9688 411.904 105.984l92.0322 456.96
+c3.07227 14.0801 11.0078 25.9844 23.04 33.0244c12.0322 8.06348 25.9834 9.9834 39.04 7.04004l312.96 -72.0645c30.9756 52.9922 88.96 89.9844 155.008 89.9844c98.9443 0 179.072 -80 179.072 -178.944s-80 -178.944 -178.944 -178.944
+c-95.1035 0 -172.032 73.9844 -178.048 167.937l-262.016 60.0322l-77.0566 -386.049c148.992 -7.93555 285.952 -46.9756 397.057 -108.031c35.9678 51.9678 94.9756 86.0156 162.943 86.0156c109.952 0 199.937 -89.9844 199.937 -200.96z" />
+ <glyph glyph-name="uniF214" unicode=""
+d="M1091.2 1920v-452.992h425.216v-281.216h-425.216v-459.52c0 -103.937 5.50391 -170.624 16.6396 -200.192c10.8799 -29.3125 31.4883 -52.8643 61.3125 -70.5283c39.6797 -23.8076 84.8633 -35.7119 135.936 -35.7119c90.624 0 180.864 29.4404 270.72 88.4482v-282.624
+c-76.6719 -35.9678 -146.048 -61.3125 -208 -75.9043c-61.9512 -14.4639 -129.023 -21.7598 -201.216 -21.7598c-81.9199 0 -154.368 10.3682 -217.344 30.9756c-62.9756 20.6084 -116.608 50.3047 -161.024 88.4482c-44.5439 38.2725 -75.2637 78.9766 -92.416 122.112
+c-17.1514 43.1357 -25.7275 105.6 -25.7275 187.52v628.736h-198.016v253.568c70.3994 22.9121 130.688 55.6797 180.863 98.4316c50.3047 42.624 90.4961 93.8242 120.832 153.856c30.3359 59.7754 51.2002 135.808 62.7207 228.352h254.72z" />
+ <glyph glyph-name="uniF104" unicode=""
+d="M512 1664l1152 -640l-1152 -640v1280z" />
+ <glyph glyph-name="uniF50B" unicode=""
+d="M1408 1152l-384 -384l-384 384h256v512h256v-512h256zM384 640h1280v-256h-1280v256z" />
+ <glyph glyph-name="uniF409" unicode=""
+d="M1024 1664l640 -512l-128 -128v-512h-1024v512l-128 128zM1152 576v448h-256v-448h256z" />
+ <glyph glyph-name="uniF458" unicode=""
+d="M1920 1024l-1024 -640v480l-768 -480v1280l768 -480v480z" />
+ <glyph glyph-name="uniF218" unicode=""
+d="M729.6 1152h550.4s12.7998 -38.4004 12.7998 -89.5996c0 -332.801 -230.399 -563.2 -563.2 -563.2c-320 0 -588.8 268.8 -588.8 588.8s281.601 588.8 588.8 588.8c153.601 0 294.4 -51.2002 384 -153.6l-153.6 -153.601c-38.4004 25.6006 -102.4 76.8008 -230.4 76.8008
+c-204.8 0 -371.199 -166.4 -371.199 -371.2s166.399 -371.2 371.199 -371.2c230.4 0 320 166.4 332.801 243.2h-332.801v204.8zM1664 1152h128v-128h-128v-128h-128v128h-128v128h128v128h128v-128z" />
+ <glyph glyph-name="uniF513" unicode=""
+d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312zM1024 807.68l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456l-118.016 358.528v-702.849z
+" />
+ <glyph glyph-name="uniF301" unicode=""
+d="M704 1152h960l-256 -640h-1024v1024h384l64 -128h448v-128h-640l-128 -256h128z" />
+ <glyph glyph-name="uniF474" unicode=""
+d="M128 1408v384h384zM640 768v512h768v-512h-768zM1536 1792h384v-384zM128 640l384 -384h-384v384zM1536 256l384 384v-384h-384zM1536 1408l256 384l128 -128zM1536 640l384 -256l-128 -128zM128 384l384 256l-256 -384zM128 1664l128 128l256 -384z" />
+ <glyph glyph-name="uniF438" unicode=""
+d="M1280 1792c141.312 0 256 -114.688 256 -256v-1024c0 -141.312 -114.688 -256 -256 -256h-512c-141.312 0 -256 114.688 -256 256v384h128v-128h768v768h-768v-128h-128v128c0 141.312 114.688 256 256 256h512zM1024 384c70.7842 0 128 57.2158 128 128
+s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM768 896v128h-512v256h512v128l384 -256z" />
+ <glyph glyph-name="uniF451" unicode=""
+d="M256 384v1280l1024 -640zM1408 1664h384v-1280h-384v1280z" />
+ <glyph glyph-name="uniF404" unicode=""
+d="M1024 640c-19.8398 0 -39.04 2.43164 -57.8564 5.63184l436.225 436.225c3.2002 -18.8164 5.63184 -38.0166 5.63184 -57.8564c0 -211.968 -172.032 -384 -384 -384zM1696.26 1375.74l351.744 -351.744l-506.624 -506.624
+c-131.456 -134.272 -314.752 -217.728 -517.376 -217.728c-117.248 0 -226.944 29.3115 -324.864 79.1035l147.072 146.944c56.7041 -20.6084 115.968 -34.0479 177.92 -34.0479c144 0 279.168 56.832 380.288 160.128l372.096 372.224l-216.063 215.936zM1606.02 1722.11
+l128.641 -129.024l-1279.87 -1279.87l-128.896 128.769l128 128.128l-453.888 453.888v0l506.496 506.496c131.456 134.4 314.624 217.984 517.504 217.984c170.368 0 324.48 -61.8242 448 -160.385zM896 1024c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128
+c-70.7842 0 -128 -57.3438 -128 -128s57.2158 -128 128 -128zM1229.18 1345.28l105.729 105.728c-90.752 66.8164 -197.12 105.473 -310.912 105.473c-144.128 0 -279.168 -56.9609 -380.288 -160.385l-372.096 -372.096l318.208 -318.336l113.023 113.024
+c-38.6553 59.5195 -62.8477 129.023 -62.8477 205.312c0 212.096 172.032 384 384 384c76.2881 0 145.792 -24.1924 205.184 -62.7197z" />
+ <glyph glyph-name="uniF209" unicode=""
+d="M1073.15 2048c481.664 0 798.976 -348.672 798.976 -722.944c0 -495.104 -275.328 -865.151 -680.96 -865.151c-136.32 0 -264.448 73.7275 -308.352 157.439c0 0 -73.2168 -290.943 -88.832 -347.136c-26.8809 -97.2803 -79.2324 -194.56 -127.104 -270.208
+l-148.992 54.0156c-3.58398 88.3203 -0.639648 194.049 22.0166 289.92c24.1914 102.4 162.304 687.744 162.304 687.744s-40.3203 80.6406 -40.3203 199.809c0 187.008 108.544 326.784 243.456 326.784c114.816 0 170.24 -86.1445 170.24 -189.44
+c0 -115.328 -73.7275 -288 -111.488 -448c-31.6152 -133.632 67.2002 -242.816 199.168 -242.816c239.232 0 400.128 307.072 400.128 670.977c0 276.607 -186.367 483.712 -525.184 483.712c-382.72 0 -621.312 -285.568 -621.312 -604.544
+c0 -110.08 32.5117 -187.521 83.1992 -247.424c23.5527 -27.7764 26.624 -38.9121 18.3047 -70.6562c-6.0166 -23.04 -19.9688 -78.9766 -25.7285 -101.248c-8.44824 -32 -34.3037 -43.2637 -63.2314 -31.3604c-176.257 71.6807 -258.433 264.96 -258.433 482.048
+c0 358.656 302.336 788.48 902.145 788.48z" />
+ <glyph glyph-name="uniF217" unicode=""
+d="M1024 1920c494.08 0 896 -402.048 896 -896c0 -494.08 -401.92 -896 -896 -896c-493.952 0 -896 401.92 -896 896c0 493.952 402.048 896 896 896zM1112.83 1769.47c-211.2 10.4961 -420.864 -73.4717 -564.608 -220.16
+c-146.432 -144.256 -216.063 -354.176 -189.695 -551.68c23.4238 -197.248 142.592 -378.496 307.584 -476.032c160.768 -96 365.312 -104.191 530.943 -29.0557c-47.1035 -13.0557 -96.6396 -20.3516 -147.712 -20.3516c-303.487 0 -550.399 246.911 -550.399 550.399
+c0 143.872 55.6797 274.944 146.304 373.12c1.02441 1.02441 1.91992 1.91992 2.81641 2.94434c4.60742 4.73535 9.08789 9.47168 13.6953 14.208c0.512695 0.383789 0.896484 1.02344 1.4082 1.2793c128 148.353 317.056 242.177 528.256 242.177
+c221.057 0 418.176 -102.912 546.048 -263.424c-20.8633 33.5352 -44.0312 65.6631 -69.376 95.6152c-137.983 168.832 -343.68 273.408 -555.264 280.96zM1415.04 1006.21c4.35156 -90.3682 -25.3438 -182.912 -80.7676 -257.152
+c-55.5527 -73.8555 -135.169 -129.664 -225.28 -156.928c-74.8799 -22.7842 -156.544 -25.5996 -234.112 -7.04004c54.0166 -21.6318 112.896 -33.6641 174.464 -33.6641c259.968 0 471.296 211.456 471.296 471.296c0 0.768555 -0.12793 1.66406 -0.12793 2.68848
+c-13.6953 142.336 -88.1914 276.352 -200.319 359.168c-137.345 104.576 -332.288 116.864 -479.232 38.0156c-73.2158 -38.5273 -136.832 -97.1514 -176.896 -166.912c-40.5762 -69.8877 -58.4961 -151.68 -52.2246 -230.912
+c10.624 -158.976 124.8 -305.023 271.616 -345.216c146.432 -44.0322 313.344 19.584 391.936 142.849c82.5605 120.447 62.7207 293.119 -36.3516 391.68c-94.0801 104.192 -260.992 115.968 -367.872 36.8643c-54.0156 -38.6562 -92.5439 -94.3359 -105.344 -157.057
+c-13.3125 -62.0801 -1.66406 -128.64 30.4639 -181.76c32.1279 -53.7598 83.7119 -93.5684 141.952 -108.032c58.2402 -15.1035 121.6 -4.86328 171.52 25.6006c50.5605 30.4639 87.5518 80.1279 97.9199 135.68c11.3926 55.2959 -1.66406 114.432 -34.3037 158.848
+c-32.1279 45.5684 -82.8164 73.3447 -135.936 76.9287c-52.9922 4.0957 -105.856 -17.2803 -141.568 -54.2725c-36.6084 -35.9678 -52.0957 -89.0879 -44.6719 -137.855c7.55176 -48.6406 38.2715 -93.6963 80 -115.584c26.4961 -14.7207 57.4717 -19.8408 86.9121 -16.3848
+c-62.0801 1.53613 -114.177 43.2646 -131.456 100.097c-0.512695 0.767578 -1.02441 1.66406 -1.4082 2.6875c-17.9199 41.4717 -13.0557 94.3359 16.1279 133.376c28.416 38.7842 77.5684 63.3604 128.768 60.7998c51.0723 -1.66406 101.376 -33.0234 128 -78.9756
+c27.3926 -45.8242 32 -106.752 7.80859 -158.336c-24.0645 -51.7119 -73.7285 -90.2402 -131.584 -101.632c-57.4717 -12.416 -122.752 4.73535 -167.68 47.3594c-44.8008 40.96 -72.0645 104.192 -67.4561 168.32c3.83984 133.12 150.911 237.44 287.104 200.96
+c138.368 -31.6162 226.944 -196.736 173.824 -338.304c-48.6406 -142.72 -224.769 -225.536 -373.888 -166.912c-74.1123 27.5195 -134.784 85.8877 -169.729 157.568c-34.9443 72.1914 -42.2402 158.592 -17.9199 237.695c47.8721 161.664 226.176 269.185 398.848 238.464
+c175.36 -25.5996 313.217 -192.64 317.568 -374.016zM1024 207.488c319.232 0 595.968 184.319 730.112 451.712c37.248 84.7354 58.8799 175.744 58.8799 265.728c0 318.977 -247.04 554.368 -553.216 607.616c154.496 -64 279.296 -200.32 331.52 -362.496
+c70.1445 -203.136 20.8643 -447.872 -133.12 -608.896c-148.224 -162.944 -384.384 -245.633 -608.128 -206.208c-226.048 35.584 -422.912 198.271 -517.504 407.936c-97.792 209.408 -90.3682 468.224 26.8799 674.432c116.736 206.337 329.344 354.433 566.272 395.009
+c11.7754 2.17578 23.6797 3.96777 35.584 5.37598c-420.992 -32.1279 -753.664 -384.641 -753.664 -813.696c0 -450.304 366.208 -816.512 816.384 -816.512z" />
+ <glyph glyph-name="uniF469" unicode=""
+d="M256 1280h1536v-768h-256v384h-1024v-384h-256v768zM1408 1664v-256h-768v256h768zM1408 640c0 -98.3037 37.5039 -196.48 112.512 -271.488l112.513 -112.512h-768l-112.513 112.512c-75.0078 75.0078 -112.512 173.185 -112.512 271.488v128h768v-128z" />
+ <glyph glyph-name="uniF476" unicode=""
+d="M384 1248c123.776 0 224 -100.224 224 -224c0 -123.648 -100.224 -224 -224 -224s-224 100.352 -224 224c0 123.776 100.224 224 224 224zM1024 1248c123.648 0 224 -100.224 224 -224c0 -123.648 -100.352 -224 -224 -224c-123.776 0 -224 100.352 -224 224
+c0 123.776 100.224 224 224 224zM1664 1248c123.648 0 224 -100.224 224 -224c0 -123.648 -100.352 -224 -224 -224s-224 100.352 -224 224c0 123.776 100.352 224 224 224z" />
+ <glyph glyph-name="uniF211" unicode=""
+d="M1472 1440c229.888 0 416 -186.24 416 -416s-186.112 -416 -416 -416s-416 186.24 -416 416s186.112 416 416 416zM576 1440c229.76 0 416 -186.24 416 -416s-186.24 -416 -416 -416s-416 186.24 -416 416s186.24 416 416 416z" />
+ <glyph glyph-name="uniF456" unicode=""
+d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896
+l51.584 640h-281.6l51.2002 -640h178.815z" />
+ <glyph glyph-name="uniF471" unicode=""
+d="M512 1664h358.656c163.328 0 281.855 -23.2959 355.712 -69.7598c73.7275 -46.4639 110.592 -120.448 110.592 -221.824c0 -68.8643 -16.1279 -125.312 -48.3838 -169.344c-32.3838 -44.1602 -75.2646 -70.6562 -128.769 -79.6162v-7.93652
+c72.96 -16.2559 125.568 -46.7197 157.952 -91.3916c32.2559 -44.6719 48.5127 -104.063 48.5127 -178.048c0 -105.088 -38.0166 -187.008 -113.921 -245.888c-76.0312 -58.8809 -178.943 -88.1924 -309.248 -88.1924h-431.104v1152zM768 1207.81h130.176
+c66.3047 0 114.176 10.2402 143.872 30.7207c29.5684 20.4795 44.5439 54.3994 44.5439 101.632c0 44.1602 -16.1279 75.7754 -48.5117 94.9756c-32.3838 19.0723 -83.4561 28.7998 -153.344 28.7998h-116.736v-256.128zM768 1013.89v-300.16h147.456
+c67.2002 0 116.864 12.9287 148.864 38.6562c32.1279 25.7285 48.1279 65.1523 48.1279 118.145c0 95.6152 -68.3525 143.487 -204.929 143.487h-139.52v-0.12793z" />
+ <glyph glyph-name="uniF433" unicode=""
+d="M0 896l896 -896h-896v896z" />
+ <glyph glyph-name="uniF447" unicode=""
+d="M1408 512c70.7842 0 128 -57.2158 128 -128s-57.2158 -128 -128 -128s-128 57.2158 -128 128s57.2158 128 128 128zM640 512c70.6562 0 128 -57.2158 128 -128s-57.3438 -128 -128 -128s-128 57.2158 -128 128s57.3438 128 128 128zM1536 896h-896v-128h896v-128h-1024
+v1024h-256v128h384v-256h1152z" />
+ <glyph glyph-name="uniF511" unicode=""
+d="M1024 1510.53l-118.016 -358.528h-371.328l300.288 -209.92l-118.272 -353.28l307.328 218.88l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456zM1024 1920v0l210.688 -640h685.312l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496
+l212.991 636.032l-555.264 387.968h685.312z" />
+ <glyph glyph-name="uniF427" unicode=""
+d="M1717.72 1436.21c99.7246 -99.7246 99.7246 -261.281 0 -361.006l-232.861 -232.989c-98.5723 -98.5723 -257.44 -99.3398 -357.421 -2.81543l-455.353 -455.354h-288.036v287.908l455.097 454.969l-0.767578 0.768555c-99.5967 99.5957 -99.5967 261.408 0 361.005
+l232.989 232.989c99.5957 99.7246 261.408 99.7246 361.005 0zM1344.04 1104.01l160.02 160.021l-256.031 256.031l-160.021 -160.02z" />
+ <glyph glyph-name="uniF219" unicode=""
+d="M1438.08 1832.7c0 0 563.456 -229.376 370.176 -838.4c-267.264 -554.496 -784.64 -349.056 -784.64 -349.056v-277.504s-19.7119 -153.344 -202.88 -220.288c-183.296 -66.6885 -351.616 59.5195 -351.616 59.5195v279.809
+c83.584 -85.5039 195.712 -134.272 240.128 -9.98438v945.92h311.68v-537.472s460.416 -138.496 522.368 289.792c9.85645 475.392 -546.944 472.832 -546.944 472.832s-349.184 22.2715 -522.495 -257.536c-131.2 -222.848 37.1191 -423.424 37.1191 -423.424
+l-225.279 -200.448s-339.2 418.433 -7.42383 871.552c430.848 487.681 1159.81 194.688 1159.81 194.688z" />
+ <glyph glyph-name="uniF100" unicode=""
+d="M512 1408h1024v-128h-1024v128zM1152 1152v-128h-640v128h640zM1280 1024v128h256v-128h-256zM896 768v128h640v-128h-640zM768 896v-128h-256v128h256zM512 512v128h768v-128h-768z" />
+ <glyph glyph-name="uniF400" unicode=""
+d="M1792 384l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM384 1216c0 -247.424 200.576 -448 448 -448
+c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448z" />
+ <glyph glyph-name="uniF439" unicode=""
+d="M896 1664v-384h-256v384c0 70.7842 57.3438 128 128 128s128 -57.2158 128 -128zM1408 1664v-384h-256v384c0 70.7842 57.2158 128 128 128s128 -57.2158 128 -128zM384 1152h1280c0 -309.632 -219.904 -567.68 -512 -627.072v-268.928h-256v268.928
+c-292.096 59.2646 -512 317.44 -512 627.072z" />
+ <glyph glyph-name="uniF509" unicode=""
+d="M1534.21 717.824l147.712 -88.5762c-134.4 -223.36 -378.24 -373.248 -657.92 -373.248c-279.552 0 -523.52 149.888 -657.92 373.248l147.712 88.7041c92.1602 -98.1758 226.816 -168.96 382.208 -194.688v500.736h-128v128h128v163.456
+c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256c0 -94.4639 -51.7119 -176.128 -128 -220.544v-163.456h128v-128h-128v-500.864c155.52 25.7285 289.92 96.3838 382.208 194.688zM1024 1664
+c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128c70.7842 0 128 57.3438 128 128s-57.2158 128 -128 128z" />
+ <glyph glyph-name="uniF510" unicode=""
+d="M1664 1152v-256h-512v-512h-256v512h-512v256h512v512h256v-512h512z" />
+ <glyph glyph-name="uniF445" unicode=""
+d="M1888 748.032l-57.5996 -139.648l-305.408 21.8887c-31.3604 -39.9365 -66.9443 -75.6484 -106.88 -107.009l21.7598 -305.536l-139.264 -57.5996l-200.704 231.552c-25.2158 -3.07129 -49.9199 -7.67969 -75.9043 -7.67969c-25.7275 0 -50.1758 4.6084 -75.1357 7.67969
+l-200.96 -231.808l-139.393 57.7275l21.7607 305.408c-39.9365 31.3604 -75.5205 66.9443 -107.009 106.88l-305.536 -21.7598l-57.7275 139.264l231.68 200.832c-3.07129 25.0879 -7.67969 49.792 -7.67969 75.7764c0 25.7275 4.6084 50.1758 7.55176 75.1357
+l-231.552 200.96l57.7275 139.393l305.28 -21.7607c31.4883 39.9365 67.2002 75.7764 107.265 107.265l-21.7607 305.408l139.137 57.5996l200.96 -231.68c24.96 2.94336 49.5352 7.67969 75.3916 7.67969s50.4316 -4.73633 75.3916 -7.67969l200.96 231.68
+l139.265 -57.5996l-21.8887 -305.408c39.9365 -31.3604 75.6484 -67.0723 107.137 -107.008l305.408 21.6318l57.5996 -139.136l-231.552 -200.832c3.07129 -25.0889 7.67969 -49.6641 7.67969 -75.6484c0 -25.7275 -4.6084 -50.3037 -7.67969 -75.2637zM1280 1024
+c0 141.312 -114.688 256 -256 256s-256 -114.688 -256 -256s114.688 -256 256 -256s256 114.688 256 256z" />
+ <glyph glyph-name="uniF516" unicode=""
+d="M1024 1452.42v-467.328h-155.776v467.328h155.776zM1408 1452.42v-467.328h-155.776v467.328h155.776zM323.2 1920h1596.8v-1090.82l-467.456 -445.184h-350.464l-233.6 -256h-228.48v256h-512v1224.32zM1764.22 907.136v857.088h-1285.5v-1129.73h350.977v-211.328
+l233.472 211.328h428.16z" />
+ <glyph glyph-name="uniF435" unicode=""
+d="M384 512l640 640l640 -640h-1280zM384 1408h1280v-128h-1280v128z" />
+ <glyph glyph-name="uniF300" unicode=""
+d="M1536 1536c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-448l-448 -448v448h-128c-141.312 0 -256 114.688 -256 256v384c0 141.312 114.688 256 256 256h1024z" />
+ <glyph glyph-name="uniF514" unicode=""
+d="M1664 768v128l256 -256l-256 -256v128h-256c-282.752 0 -512 229.248 -512 512c0 141.312 -114.688 256 -256 256h-384v256h384c282.752 0 512 -229.248 512 -512c0 -141.312 114.688 -256 256 -256h256zM1408 1280c-61.8242 0 -117.888 -22.9121 -162.176 -59.3916
+c-27.3926 83.9678 -70.7842 160 -128 224.768c82.5596 56.96 182.271 90.624 290.176 90.624h256v128l256 -256l-256 -256v128h-256zM640 768c61.8242 0 117.888 22.9121 162.176 59.3916c27.3926 -83.9678 70.7842 -160 128 -224.768
+c-82.5596 -56.832 -182.271 -90.624 -290.176 -90.624h-384v256h384z" />
+ <glyph glyph-name="uniF102" unicode=""
+d="M1408 1408l512 -128v-896h-1792v896l512 128l128 256h512zM1024 512.256c247.552 0 448 200.448 448 448c0 247.424 -200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448c0 -247.552 200.576 -448 448 -448zM512 1600v-96.1279l-256 -64v160.128h256z
+M1024 1280.13c176.768 0 320 -143.231 320 -320c0 -176.768 -143.232 -320 -320 -320s-320 143.232 -320 320c0 176.769 143.232 320 320 320z" />
+ <glyph glyph-name="uniF466" unicode=""
+d="M640 1344l-320 -320l320 -320v-320l-640 640l640 640v-320zM1408 1280c282.752 0 512 -229.248 512 -512v-299.904l-150.016 149.889c-99.9688 99.9678 -231.04 150.016 -361.984 150.016h-256v-384l-640 640l640 640v-384h256z" />
+ <glyph glyph-name="uniF463" unicode=""
+d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
+M1920 640v128h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
+ <glyph glyph-name="uniF422" unicode=""
+d="M384 1536h1152v-1024h-1152v1024zM1408 640v640h-896v-640h896z" />
+ <glyph glyph-name="uniF201" unicode=""
+d="M1024 128c128 0 256 32 368 80c-16 144 -64 368 -208 688c-288 -96 -560 -304 -704 -576c144 -128 336 -192 544 -192zM1536 288c208 144 352 384 384 640c-192 32 -368 32 -576 0c16 -32 128 -304 192 -640zM128 1088v-64c0 -224 80 -432 224 -592
+c176 288 496 496 784 592c-16 48 -48 112 -80 176c-368 -112 -592 -144 -928 -112zM1760 1536c-160 -128 -368 -192 -560 -288c48 -64 64 -112 96 -176c208 48 480 32 624 0c-16 176 -64 336 -160 464zM672 1856c-256 -112 -448 -336 -512 -624c288 -32 688 48 832 96
+c-96 192 -192 352 -320 528zM1024 1920c-64 0 -128 -16 -192 -16c128 -208 192 -320 304 -512c128 48 384 128 528 256c-160 160 -384 272 -640 272zM1024 2048c560 0 1024 -464 1024 -1024s-464 -1024 -1024 -1024s-1024 464 -1024 1024s464 1024 1024 1024z" />
+ <glyph glyph-name="uniF426" unicode=""
+d="M1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.52832c-4.35254 20.8643 -6.52832 41.9844 -6.52832 64c0 176.768 143.232 320 320 320
+c89.3438 0 169.984 -36.8643 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
+ <glyph glyph-name="uniF446" unicode=""
+d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM1536 1024c0 282.752 -229.248 512 -512 512c-94.8477 0 -182.528 -27.5195 -258.688 -72.4482l698.368 -698.24
+c44.8008 76.1602 72.3203 163.969 72.3203 258.688zM512 1024c0 -282.752 229.248 -512 512 -512c94.7197 0 182.4 27.5195 258.56 72.3203l-698.239 698.239c-44.8008 -76.1592 -72.3203 -163.84 -72.3203 -258.56z" />
+ <glyph glyph-name="uniF504" unicode=""
+d="M1664 1536c0 -94.4639 -51.7119 -176.128 -128 -220.544v-163.456c0 -282.752 -229.248 -512 -512 -512c-141.312 0 -256 -114.688 -256 -256v-128h-256v1059.46c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256
+c0 -94.4639 -51.8398 -176.128 -128 -220.544v-490.496c75.5195 44.0322 162.304 71.04 256 71.04c141.312 0 256 114.688 256 256v163.456c-76.2881 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256zM640 1664
+c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM1408 1408c70.7842 0 128 57.3438 128 128s-57.2158 128 -128 128s-128 -57.3438 -128 -128s57.2158 -128 128 -128z" />
+ <glyph glyph-name="uniF465" unicode=""
+d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
+M1531.52 384l452.48 452.48l-90.4961 90.4951l-361.984 -361.983l-180.991 180.992l-90.4961 -90.4961z" />
+ <glyph glyph-name="uniF424" unicode=""
+d="M1408 1792l384 -384v-768l-384 -384h-768l-384 384v768l384 384h768zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896l51.584 640h-281.6l51.2002 -640h178.815z" />
+ <glyph glyph-name="uniF418" unicode=""
+d="M1408 1504l128 -96l-512 -768h-128l-288 416l128 128l224 -192z" />
+ <glyph glyph-name="uniF429" unicode=""
+d="M1024 1453.31l493.312 -493.312l-493.312 -493.312l-86.6562 86.6553l342.656 342.656h-896v128h896l-342.656 342.656z" />
+ <glyph glyph-name="uniF308" unicode=""
+d="M477.696 568.192l543.104 543.104l90.3682 -90.624l-542.976 -542.976c-100.225 -100.353 -152.32 -115.84 -226.305 -135.809c20.0967 74.1123 35.584 126.08 135.809 226.305zM1189.5 1732.61l180.992 180.991l542.976 -543.104l-180.991 -180.992
+c-50.0488 50.0479 -130.944 50.0479 -180.992 0l-180.992 -180.992c-50.0479 -50.0479 -50.0479 -130.943 0 -180.992l-180.992 -180.991l-543.104 542.976l180.991 180.992c50.0488 -50.0479 131.072 -50.0479 181.12 0l180.992 181.12
+c50.0479 50.0479 50.0479 130.943 0 180.992z" />
+ <glyph glyph-name="uniF226" unicode=""
+d="M1477.76 1792c120.32 0 152.576 -68.6084 126.464 -195.584l-51.8398 -258.688c-40.96 -206.848 -88.0635 -445.695 -94.0801 -470.144c-11.0078 -44.1602 -27.9033 -119.168 -132.992 -119.168h-250.367c-9.98438 0 -9.98438 0 -20.0967 -10.1123
+c-6.65527 -6.65527 -393.344 -455.424 -393.344 -455.424c-30.208 -34.6875 -80.3838 -28.5439 -98.6875 -21.1201c-18.3047 7.2959 -50.6885 29.6963 -50.6885 89.9844v1301.63s33.2803 138.624 146.304 138.624h819.328zM1394.94 1391.1l34.3037 179.2
+c6.27148 29.6963 -16.3838 52.4805 -40.5762 52.4805h-657.536c-29.8242 0 -49.792 -26.8799 -49.792 -49.792v-1015.68c0 -3.19922 2.43262 -3.83984 4.86426 -1.15137c0 0 242.304 290.815 269.184 324.352c26.8809 33.4082 39.168 38.6562 79.3604 38.6562h221.184
+c30.208 0 47.2324 25.3438 50.3047 40.1924c3.2002 14.8477 28.9277 149.12 34.4316 176.256s-19.3281 54.9121 -44.7998 54.9121h-270.976c-35.9688 0 -61.8242 25.4717 -61.8242 61.3115v39.04c0 35.9678 25.7275 60.416 61.5674 60.416h319.232
+s46.9756 20.4805 51.0723 39.8076z" />
+ <glyph glyph-name="uniF205" unicode=""
+d="M1024 1920c493.952 0 896 -401.92 896 -896c0 -493.952 -402.048 -896 -896 -896c-494.08 0 -896 402.048 -896 896c0 494.08 401.92 896 896 896zM218.496 1024c0 -318.848 185.216 -594.432 454.016 -724.992l-384.256 1052.93
+c-44.6719 -100.224 -69.7598 -211.071 -69.7598 -327.936zM1024 218.496c93.8242 0 183.808 16.1279 267.648 45.5684c-2.17676 3.45508 -4.09668 7.16797 -5.76074 11.2637l-247.552 678.271l-241.92 -702.336c72.1924 -21.248 148.48 -32.7676 227.584 -32.7676z
+M1134.98 1401.73l291.072 -866.176l80.3838 268.544c34.9443 111.488 61.3125 191.488 61.3125 260.48c0 99.584 -35.8398 168.576 -66.4326 222.08c-40.7031 66.4316 -78.9756 122.624 -78.9756 189.056c0 74.1123 56.1924 142.977 135.168 142.977
+c3.58398 0 7.04004 -0.384766 10.4961 -0.640625c-143.36 131.328 -334.208 211.456 -544 211.456c-281.472 0 -529.024 -144.256 -673.024 -363.008c18.9443 -0.639648 36.7363 -0.896484 51.8408 -0.896484c84.2236 0 214.655 10.2402 214.655 10.2402
+c43.3926 2.56055 48.5127 -61.3115 5.24805 -66.4316c0 0 -43.7754 -5.12012 -92.1602 -7.68066l293.12 -872.575l176.256 528.64l-125.439 343.936c-43.3926 2.56055 -84.4805 7.68066 -84.4805 7.68066c-43.2637 2.55957 -38.2715 68.9922 5.12012 66.4316
+c0 0 132.992 -10.2402 212.225 -10.2402c84.2236 0 214.783 10.2402 214.783 10.2402c43.3926 2.56055 48.5127 -61.3115 5.12012 -66.4316c0 0 -43.6475 -5.12012 -92.2881 -7.68066zM1730.82 1410.56c3.58398 -25.7275 5.50391 -53.248 5.63184 -82.8154
+c0 -81.792 -15.4883 -173.696 -61.3125 -288.512l-246.144 -711.425c239.488 139.521 400.512 399.104 400.512 696.192c0 140.16 -35.8398 271.872 -98.6875 386.56z" />
+ <glyph glyph-name="uniF472" unicode=""
+d="M1368.06 1408h-128l-240.129 -768h128l-39.9355 -128h-448l39.9355 128h128l240.129 768h-128l39.9355 128h448z" />
+ <glyph glyph-name="uniF216" unicode=""
+d="M1791.62 1265.92c0.383789 -2.94434 0.639648 -5.75977 0.639648 -8.7041v-466.943c0 -2.94434 -0.255859 -5.76074 -0.511719 -8.96094c-0.12793 -0.767578 -0.383789 -1.79199 -0.511719 -2.81543c-0.384766 -1.79199 -0.640625 -3.58398 -1.15234 -5.50391
+c-0.255859 -1.02441 -0.768555 -2.04785 -1.02441 -3.07227c-0.639648 -1.66406 -1.15137 -3.2002 -1.79199 -4.86426c-0.511719 -1.02344 -1.02344 -2.04785 -1.53613 -3.07129c-0.639648 -1.53613 -1.40723 -2.94434 -2.30371 -4.48047
+c-0.511719 -0.895508 -1.28027 -1.91992 -1.91992 -2.94434c-0.767578 -1.2793 -1.66406 -2.55957 -2.6875 -3.96777c-0.768555 -0.895508 -1.53613 -1.79199 -2.30469 -2.81543c-1.02344 -1.02441 -2.04785 -2.30469 -3.32812 -3.45605
+c-0.767578 -0.896484 -1.66406 -1.79199 -2.6875 -2.68848c-1.02441 -0.895508 -2.30371 -2.04785 -3.71191 -3.07227c-0.768555 -0.767578 -1.79199 -1.53516 -2.81641 -2.30371l-1.15137 -0.767578l-702.208 -467.072
+c-11.1367 -7.42383 -23.8086 -11.0078 -36.6084 -11.0078s-25.4717 3.58398 -36.7363 11.2637l-702.208 467.072c-0.255859 0.255859 -0.639648 0.511719 -1.02344 0.767578l-2.94434 2.30469c-1.28027 0.895508 -2.55957 2.04785 -3.71191 3.07129
+c-0.895508 0.896484 -1.79199 1.79199 -2.6875 2.68848c-1.02441 1.02344 -2.17676 2.30371 -3.2002 3.45605c-0.768555 0.895508 -1.53613 1.79199 -2.30469 2.81543c-0.895508 1.28027 -1.79199 2.56055 -2.6875 3.96875
+c-0.768555 0.895508 -1.4082 1.91992 -1.91992 2.94336c-0.896484 1.53613 -1.66406 2.94434 -2.30371 4.48047c-0.512695 0.895508 -1.02441 1.91992 -1.53613 3.07129c-0.640625 1.66406 -1.15234 3.2002 -1.66406 4.86426
+c-0.383789 0.896484 -0.768555 1.91992 -1.02441 3.07227c-0.511719 1.91992 -0.767578 3.71191 -1.15137 5.50391c-0.128906 1.02441 -0.384766 2.04785 -0.512695 2.94434c-0.383789 2.81543 -0.639648 5.75977 -0.639648 8.57617v466.943
+c0 2.94434 0.255859 5.75977 0.639648 8.7041c0.12793 0.896484 0.383789 1.79199 0.512695 2.81641c0.383789 1.91992 0.639648 3.71191 1.15137 5.50391c0.255859 1.15137 0.640625 2.17578 1.02441 3.2002c0.511719 1.53516 1.02344 3.19922 1.66406 4.86328
+c0.511719 1.02441 1.02344 2.04785 1.53613 3.2002c0.639648 1.53613 1.40723 2.81641 2.30371 4.48047c0.639648 0.895508 1.28027 1.91992 1.91992 2.94336c0.767578 1.28027 1.79199 2.68848 2.6875 3.96875c0.640625 1.02344 1.4082 1.79199 2.30469 2.81543
+c1.02344 1.28027 2.04785 2.43164 3.2002 3.58398c0.895508 0.768555 1.79199 1.66406 2.6875 2.68848c1.15234 1.02344 2.43164 2.04785 3.71191 3.07129l2.94434 2.17676c0.383789 0.255859 0.767578 0.639648 1.15137 0.895508l702.208 466.944
+c22.1445 14.7197 51.0723 14.7197 73.2168 0l702.08 -467.2c0.383789 -0.255859 0.767578 -0.639648 1.15137 -0.896484c0.896484 -0.767578 1.91992 -1.53516 2.81641 -2.30371c1.2793 -0.895508 2.55957 -1.91992 3.71191 -3.07227
+c1.02344 -0.895508 1.91992 -1.79199 2.6875 -2.6875c1.15234 -1.02441 2.17676 -2.17578 3.32812 -3.45605c0.768555 -0.896484 1.53613 -1.79199 2.30469 -2.81641c0.895508 -1.2793 1.79199 -2.55957 2.6875 -3.96777
+c0.639648 -0.895508 1.4082 -1.91992 1.91992 -2.94434c0.896484 -1.53516 1.66406 -2.81543 2.30371 -4.35156c0.512695 -1.02441 1.02441 -2.04785 1.53613 -3.2002c0.640625 -1.66406 1.15234 -3.2002 1.79199 -4.73535
+c0.255859 -1.02441 0.768555 -2.04883 1.02441 -3.2002c0.511719 -1.79199 0.767578 -3.58398 1.15137 -5.50391c0.128906 -0.896484 0.384766 -1.79199 0.512695 -2.81641zM1090.05 1601.28v-307.328l286.208 -190.977l231.168 154.24zM957.952 1601.28l-517.248 -344.064
+l231.04 -154.24l286.208 191.104v307.2zM387.84 1133.95v-220.416l165.12 110.208zM957.952 446.208v307.328l-286.208 190.976l-231.04 -154.111zM1024 867.84l233.472 155.904l-233.472 155.904l-233.472 -155.904zM1090.05 446.208l517.376 344.064l-231.168 154.111
+l-286.208 -190.976v-307.2zM1660.29 913.536v220.416l-165.248 -110.208z" />
+ <glyph glyph-name="uniF475" unicode=""
+d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM476.16 1340.54l-2.81641 3.96777c-4.60742 -7.93555 -8.83203 -16.1279 -13.1836 -24.3193l4.47949 1.02344l17.5361 6.27246l30.208 2.6875zM1024 384
+c265.088 0 493.056 162.176 590.208 392.576l-6.52832 10.4961l14.9766 50.8154l-34.6885 25.2158l-25.3438 7.55273l-23.5518 19.8398l-55.8086 -21.1201l-52.7354 -3.07227l-39.9365 29.0566l-39.04 53.5039l-0.767578 32.5117l0.895508 54.2725l5.63184 7.55176
+l4.86426 18.1758l22.7842 35.0723l13.3125 13.0557l18.6875 20.7363l13.0557 25.5996l36.8643 34.9443l37.7598 -0.383789l27.6484 9.59961l66.4316 7.16797l25.9844 -36.8643l24.1924 -10.4961c-8.44824 39.4248 -20.2246 77.6963 -35.585 114.049l-5.50391 5.11914
+l-13.4395 -6.65527l-28.9277 -2.68848l-23.8086 -21.248l-25.9834 -35.0723l-50.6885 -11.6475l-23.5518 9.21582l2.6875 40.5762l13.3125 25.2158l46.4639 -2.6875l8.57617 21.8877l-24.0645 26.624l20.6084 8.32031l40.4482 22.0156l14.4639 11.6484
+c-49.1523 77.6953 -113.664 144.256 -190.721 194.688l-4.35156 -1.79199l20.3516 -17.792l-32.8955 5.24805l-4.6084 -9.34375l21.248 -2.56055l-7.93555 -8.95996l-59.9043 -10.3682l-77.3115 -34.3037l-59.9043 -28.9277l-6.27246 59.6475l16.8965 32.6406
+l-12.416 21.7598l-45.9521 19.4561l-22.1436 17.1523l32.1279 7.67969l69.1201 16.8955l29.8232 1.66406c-64.7676 22.1445 -132.991 36.7363 -205.056 36.7363c-146.56 0 -280.064 -51.4561 -388.096 -134.656l38.2715 1.15234l47.7441 -12.2881l32 -8.19238
+l34.8164 7.80859l47.6152 -6.0166l29.9521 7.2959l5.63184 18.0488l28.1602 -2.94434l11.0078 -22.7842l47.6162 4.35254l-74.752 -24.7041l-36.0957 -20.8643l-55.168 -42.2402l13.6963 -14.9756l38.3994 -18.0479l27.3926 -28.0322l33.6641 34.4316l19.4551 37.8887
+l33.0244 22.6553l33.0244 -16.7676l9.08789 -18.4316l28.9277 10.2393l10.2402 -55.168l20.4795 -20.0957l-74.752 -19.0723l-54.7842 -21.5039l42.752 11.7764l-5.24707 -17.1523l13.5674 -15.3604l11.2646 -7.16797l-45.9521 -18.6875l16.1279 18.8154l-25.9844 -5.63184
+l-31.2314 -14.8477l-14.208 -16.5117l-34.9443 -19.3281l-25.6006 -20.2246l-9.72754 -23.4238l-32.7676 -26.752l-25.8564 -59.3916l-8.06348 -25.7285l-23.6807 47.4883l-46.208 -0.12793l-38.3994 0.255859l-49.2803 -39.6797l-6.52832 -43.5205l29.6963 -32.3838
+l57.2158 30.7197l-14.8477 -43.5195l-40.4482 -26.1123l-39.2959 9.47266l-43.5205 18.1758l-49.9199 79.1035l-22.1436 47.2324l-5.24805 16.2559l7.42383 -66.0479l-0.639648 -17.1523l-8.19238 10.2402l-4.99219 16.6396l-9.9834 12.416l-5.12012 22.9121
+l-0.255859 35.9678l-26.752 46.3359c-17.4082 -58.1113 -29.5684 -118.399 -29.5684 -182.144c0 -295.936 202.88 -543.232 476.16 -616.192l-4.0957 12.6729l-9.60059 137.6l-11.1357 62.8477l-67.3281 65.792l-31.7441 56.3203l-10.624 27.9043l7.67969 16.5117
+l14.0801 52.9922l7.55273 61.6953l-8.32031 4.73633l-14.9756 -10.8799l-19.9688 9.34375l13.4404 6.27246l59.9043 13.8242l39.4238 17.6631l-2.43262 -26.752l14.5928 24.1924l19.7119 -6.91211l67.7119 -21.6318l48.5117 -33.6641l34.9443 -19.3281l8.31934 -5.50391
+l-8.19141 -48.7676l33.4082 9.47168l-8.32031 -16.6396l47.3604 -10.1123l48 -3.96777l31.3594 -19.7119l1.28027 -57.3447l-22.7842 -65.4072l-27.6475 -68.0967l-50.1768 -30.8477l-39.9355 -90.8799l-36.0957 5.12012l17.1514 -23.4238l-1.91992 -16.5127
+l-33.2803 -26.4961c19.4561 -1.79199 38.1445 -5.8877 57.9844 -5.8877z" />
+ <glyph glyph-name="uniF432" unicode=""
+d="M1408 640l-448 448l-448 -448l-128 128l576 576l576 -576z" />
+ <glyph glyph-name="uniF210" unicode=""
+d="M1024 2048c565.632 0 1024 -458.496 1024 -1024c0 -565.632 -458.368 -1024 -1024 -1024c-100.864 0 -198.016 14.7197 -290.176 42.1123c38.7842 61.4395 81.2793 140.288 103.04 219.264c12.6719 45.5684 72.0635 281.6 72.0635 281.6
+c35.7119 -67.9678 139.648 -127.743 250.24 -127.743c329.088 0 552.448 300.159 552.448 701.823c0 303.744 -257.28 586.624 -648.192 586.624c-486.527 0 -731.904 -348.8 -731.904 -639.744c0 -176.128 66.5605 -332.928 209.664 -391.168
+c23.4248 -9.59961 44.416 -0.511719 51.2002 25.4727c4.73633 18.0479 16 63.4873 20.9922 82.1758c6.78418 25.7275 4.0957 34.6875 -14.8477 57.2158c-41.0879 48.6406 -67.4561 111.488 -67.4561 200.704c0 258.816 193.536 490.496 504.063 490.496
+c274.944 0 426.112 -168.064 426.112 -392.448c0 -295.296 -130.432 -544.384 -324.608 -544.384c-107.136 0 -187.264 88.5762 -161.664 197.12c30.7207 129.664 90.4961 269.824 90.4961 363.392c0 83.8398 -44.9277 153.729 -138.111 153.729
+c-109.44 0 -197.504 -113.28 -197.504 -265.088c0 -96.6406 32.7676 -162.049 32.7676 -162.049s-112.128 -474.88 -131.712 -557.951c-18.4316 -77.8242 -20.7363 -163.456 -17.9199 -235.137c-360.832 158.336 -612.992 518.784 -612.992 937.984
+c0 565.504 458.496 1024 1024 1024z" />
+ <glyph glyph-name="uniF437" unicode=""
+d="M1280 1792c141.312 0 256 -114.688 256 -256v-1024c0 -141.312 -114.688 -256 -256 -256h-512c-141.312 0 -256 114.688 -256 256v1024c0 141.312 114.688 256 256 256h512zM1024 384c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
+c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1408 768v768h-768v-768h768z" />
+ <glyph glyph-name="uniF468" unicode=""
+d="M256 256v1536h256v-1536h-256zM1536 1664h256v-768h-256c-256 0 -256 128 -512 128s-256 -128 -384 -128v768c128 0 128 128 384 128s256 -128 512 -128z" />
+ <glyph glyph-name="uniF107" unicode=""
+d="M1088 1792c176.768 0 320 -143.232 320 -320v-384c0 -131.2 -78.9756 -243.584 -192 -292.992v150.912c39.04 35.2002 64 85.6318 64 142.08v384c0 105.856 -86.1436 192 -192 192s-192 -86.1436 -192 -192v-384c0 -56.4482 24.96 -106.88 64 -142.08v-150.912
+c-112.896 49.4082 -192 161.792 -192 292.992v384c0 176.768 143.232 320 320 320zM960 1380.99c112.896 -49.4082 192 -161.792 192 -292.992v-384c0 -176.768 -143.232 -320 -320 -320s-320 143.232 -320 320v384c0 131.2 79.1035 243.584 192 292.992v-150.912
+c-39.04 -35.2002 -64 -85.6318 -64 -142.08v-384c0 -105.856 86.1436 -192 192 -192s192 86.1436 192 192v384c0 56.4482 -24.96 106.88 -64 142.08v150.912z" />
+ <glyph glyph-name="uniF442" unicode=""
+d="M1280 640v256l128 128v-512h-896v896h512l-128 -128h-256v-640h640zM1024 1664h640v-640h-128v421.504l-549.504 -549.504l-90.4961 90.4961l549.504 549.504h-421.504v128z" />
+ <glyph glyph-name="uniF221" unicode=""
+d="M1664 1024c0 -55.9355 -35.9678 -102.912 -85.8877 -120.32c13.8232 -20.6074 21.8877 -45.0557 21.8877 -71.6797c0 -55.8076 -35.9678 -102.784 -85.8877 -120.32c13.8232 -20.6074 21.8877 -45.0557 21.8877 -71.6797c0 -70.6562 -57.3438 -128 -128 -128h-64
+c70.6562 0 128 -57.3438 128 -128s-57.3438 -128 -128 -128h-448c-192 0 -256 128 -384 128h-128v640h192c128 0 320 256 320 640c0 0 0 128 64 128s192 -144 192 -320c0 -192 -32 -320 -32 -320h416c70.6562 0 128 -57.3438 128 -128z" />
+ <glyph glyph-name="uniF50A" unicode=""
+d="M1856 1024c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64h-204.928c-9.85645 -48.7676 -26.624 -94.5918 -46.8486 -138.624c116.608 -134.528 187.776 -309.376 187.776 -501.376v-64c0 -35.2002 -28.6719 -64 -64 -64s-64 28.7998 -64 64v64
+c0 144.896 -48.7676 277.888 -130.048 385.152c-116.736 -155.265 -300.672 -257.152 -509.952 -257.152c-208.768 0 -392.448 101.504 -509.312 256.128c-81.2803 -106.88 -130.688 -239.231 -130.688 -384.128v-64c0 -35.2002 -28.6719 -64 -64 -64s-64 28.7998 -64 64v64
+c0 192 71.2959 366.72 187.904 501.376c-20.3525 44.0322 -36.9922 89.8564 -46.9766 138.624h-204.928c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h192c0 61.6963 12.1602 119.936 29.0557 176c-98.1758 129.024 -157.056 289.408 -157.056 464v64
+c0 35.3281 28.6719 64 64 64s64 -28.6719 64 -64v-64c0 -353.408 286.592 -640 640 -640c353.536 0 640 286.592 640 640v64c0 35.3281 28.6719 64 64 64s64 -28.6719 64 -64v-64c0 -173.952 -58.4961 -333.824 -156.032 -462.592
+c17.2803 -56.3203 28.0322 -115.328 28.0322 -177.408h192zM1024 1152c-208.896 0 -388.352 126.08 -467.84 305.92c116.864 126.08 282.496 206.08 467.84 206.08c185.472 0 350.976 -80 467.84 -206.08c-79.4883 -179.84 -258.815 -305.92 -467.84 -305.92z" />
+ <glyph glyph-name="uniF455" unicode=""
+d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 1536c-70.7842 0 -128 -57.3438 -128 -128s57.2158 -128 128 -128c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128zM1280 512
+v128h-160v512h-320.128v-128h128.128v-384h-160v-128h512z" />
+ <glyph glyph-name="uniF223" unicode=""
+d="M1105.28 1232.51v92.9287c0 44.1592 -36.4805 79.8711 -81.2803 79.8711s-81.2803 -35.7119 -81.2803 -79.8711l-0.383789 -481.024c-2.55957 -184.192 -155.008 -332.416 -342.912 -332.416c-189.696 0 -343.424 150.912 -343.424 337.28v209.151h262.784v-206.592
+c0 -43.9043 36.3516 -79.7441 81.2803 -79.7441c44.9277 0 81.2793 35.7119 81.2793 79.7441v487.168c6.65625 180.48 157.185 324.992 342.656 324.992c186.112 0 337.152 -145.536 342.656 -327.04v-106.624l-156.416 -45.8242zM1529.22 1058.43h262.784v-209.151
+c0 -186.368 -153.728 -337.28 -343.424 -337.28c-188.544 0 -341.632 149.376 -343.296 334.08v210.304l104.96 -48l156.288 45.8242v-211.84c0 -44.2881 36.3516 -80 81.4072 -80c44.9287 0 81.2803 35.7119 81.2803 80v216.063z" />
+ <glyph glyph-name="uniF212" unicode=""
+d="M1658.75 1791.87c184.192 -5.37598 270.976 -123.776 260.352 -355.072c-7.93555 -172.928 -129.792 -409.472 -365.439 -710.016c-243.584 -313.729 -449.792 -470.784 -618.368 -470.784c-104.448 0 -192.896 95.6162 -264.96 286.72
+c-48.2559 175.232 -96.5117 350.336 -144.64 525.568c-53.6318 190.976 -111.232 286.592 -172.672 286.592c-13.4404 0 -60.416 -27.7764 -140.673 -83.584l-84.3516 107.648c88.4482 77.0557 175.616 154.111 261.504 231.168
+c117.888 100.991 206.464 154.111 265.472 159.487c139.521 13.3125 225.28 -81.2793 257.536 -283.392c34.8164 -218.24 58.8799 -353.92 72.4482 -407.04c40.1924 -180.992 84.4805 -271.36 132.736 -271.36c37.5039 0 93.8232 58.752 169.088 176.128
+c75.0078 117.376 115.2 206.849 120.576 268.16c10.624 101.376 -29.4404 152.192 -120.576 152.192c-43.0078 0 -87.2959 -9.98438 -132.736 -29.1846c88.0645 285.952 256.512 424.704 504.704 416.769z" />
+ <glyph glyph-name="uniF206" unicode=""
+d="M729.6 1152h550.4s12.7998 -38.4004 12.7998 -89.5996c0 -332.801 -230.399 -563.2 -563.2 -563.2c-320 0 -588.8 268.8 -588.8 588.8s281.601 588.8 588.8 588.8c153.601 0 294.4 -51.2002 384 -153.6l-153.6 -153.601c-38.4004 25.6006 -102.4 76.8008 -230.4 76.8008
+c-204.8 0 -371.199 -166.4 -371.199 -371.2s166.399 -371.2 371.199 -371.2c230.4 0 320 166.4 332.801 243.2h-332.801v204.8zM1664 1152h128v-128h-128v-128h-128v128h-128v128h128v128h128v-128z" />
+ <glyph glyph-name="uniF407" unicode=""
+d="M1280 1536l256 -128v-128h-128h-128h-128h-128h-128h-128h-128h-128h-128v128l256 128c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM1088 1408c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256c-35.3281 0 -64 -28.6719 -64 -64
+s28.6719 -64 64 -64h256zM1280 1216h128v-704c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.6562 0 -128 57.2158 -128 128v704h128v-704h128v704h128v-704h128v704h128v-704h128v704z" />
+ <glyph glyph-name="uniF414" unicode=""
+d="M1996.03 601.984c116.992 -190.208 29.6953 -345.984 -193.536 -345.984h-1556.99c-223.231 0 -310.528 155.776 -193.536 345.984l759.552 1236.99c116.864 190.336 308.097 190.336 424.961 0zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
+c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896l51.584 640h-281.6l51.2002 -640h178.815z" />
+ <glyph glyph-name="uniF50E" unicode=""
+d="M384 896v256h1280v-256h-1280z" />
+ <glyph glyph-name="uniF461" unicode=""
+d="M1024 384l-647.552 612.992c-149.376 141.312 -161.408 383.231 -27.1367 540.288c134.4 157.184 364.416 169.855 513.792 28.5439l160.896 -152.32l160.768 152.32c149.248 141.184 379.393 128.64 513.792 -28.5439
+c134.656 -157.057 122.368 -398.977 -27.0078 -540.416z" />
+ <glyph glyph-name="uniF470" unicode=""
+d="M1536 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-1024c-70.6562 0 -128 57.2158 -128 128v640c0 70.6562 57.3438 128 128 128v128c0 282.752 229.248 512 512 512s512 -229.248 512 -512v-128zM768 1152h512v128
+c0 141.312 -114.688 256 -256 256s-256 -114.688 -256 -256v-128z" />
+ <glyph glyph-name="uniF50C" unicode=""
+d="M1479.55 819.2c98.5605 -32 203.137 -51.2002 312.448 -51.2002v-512c-848.256 0 -1536 687.744 -1536 1536h512c0 -162.048 38.5283 -314.752 105.856 -450.816l-189.185 -189.184c136.192 -235.008 344.96 -422.4 595.328 -532.224z" />
+ <glyph glyph-name="uniF220" unicode=""
+d="M1856.77 834.048c32.3848 -65.6641 50.6885 -138.88 50.3047 -217.344c0 -269.696 -218.88 -488.704 -488.576 -488.704c-83.584 0 -161.92 21.376 -230.656 58.1123c-50.4316 -8.83203 -102.016 -13.8242 -154.496 -13.8242
+c-465.279 0 -842.624 377.216 -842.624 842.496c0 58.2402 6.14453 114.688 17.2803 169.6c-42.4961 72.1924 -67.0723 156.8 -67.0723 246.912c0 269.824 218.88 488.704 488.704 488.704c95.7441 0 184.704 -27.3916 260.225 -75.0078
+c46.4639 7.80762 94.5918 12.416 143.871 12.416c465.408 0 842.624 -377.344 842.624 -842.624c0 -62.0801 -6.65527 -122.752 -19.584 -180.736zM1466.11 612.096c38.9121 55.5527 58.624 118.656 58.752 188.16c0 58.2402 -11.2646 107.904 -34.1758 148.353
+c-22.9121 40.3193 -54.7842 73.8555 -95.2324 100.224c-39.168 25.7275 -87.8076 48.1279 -143.744 66.0479c-55.4238 17.9199 -118.271 34.1758 -186.496 48.6396c-53.7598 12.416 -93.0557 21.8887 -116.479 28.6729c-23.04 6.14355 -45.4404 15.2314 -67.8398 26.3672
+c-21.8887 10.624 -38.5283 23.5527 -50.4326 38.0166c-11.1357 13.9521 -16.7676 30.3359 -16.7676 49.2803c0 31.2314 16.8955 57.4717 52.2236 80.5117c36.3525 23.5518 85.6318 35.9678 146.048 35.9678c64.8965 0 112.384 -11.2637 140.544 -32.6396
+c29.1846 -21.6318 54.2725 -53.6318 75.5205 -93.3125c18.5596 -31.3594 34.9434 -53.248 50.6875 -67.2002c16.3838 -14.5918 40.5762 -22.3994 71.9365 -22.3994c34.9434 0 63.8721 12.416 86.9121 36.4795c23.04 23.4248 34.6875 50.8164 34.6875 81.1523
+c0 31.3604 -9.08789 63.3604 -25.2158 95.7441c-17.2803 32.3838 -44.7998 63.1035 -81.9199 92.2881c-36.8643 28.5439 -83.8398 52.0957 -139.008 69.5039c-55.8086 16.7676 -121.729 25.5996 -196.736 25.5996c-94.7197 0 -177.536 -13.1836 -247.424 -39.04
+c-70.5283 -26.3682 -125.952 -64.3838 -163.584 -113.664c-38.0166 -49.2793 -56.96 -106.496 -56.96 -170.239c0 -67.2002 17.792 -123.776 54.2715 -169.217c35.0723 -44.1592 83.9688 -79.8721 144.385 -105.728c58.752 -25.2158 133.247 -47.3604 220.672 -66.0479
+c64.2559 -13.3125 115.712 -26.2402 154.239 -38.0166c36.8643 -11.2637 67.3281 -27.9033 89.9844 -49.2793c22.1436 -20.7363 32.6396 -46.9766 32.6396 -80.1279c0 -42.3682 -20.2236 -76.8008 -62.0801 -105.345c-43.1357 -29.0557 -100.352 -43.9033 -169.728 -43.9033
+c-50.9443 0 -92.416 7.16797 -122.624 21.6318c-30.3359 13.9521 -54.2715 32.5117 -70.5283 54.2715c-17.2793 22.6562 -33.4072 51.4561 -48.6396 85.7607c-13.4404 31.3594 -29.5684 55.8076 -49.2803 72.0635c-20.7354 17.2803 -45.3115 25.7285 -74.4961 25.7285
+c-35.0713 0 -64.7676 -10.3682 -87.8076 -32.3848c-23.5518 -21.8877 -35.3281 -48.6396 -35.3281 -79.6152c0 -48.8965 17.9199 -100.608 53.8877 -152.192c35.0723 -50.9443 82.3047 -92.416 138.752 -123.136c79.3604 -41.8564 180.864 -63.1045 301.696 -63.1045
+c100.736 0 189.44 15.4883 263.04 46.208c75.3926 30.9766 132.225 74.4961 171.648 129.92z" />
+ <glyph glyph-name="uniF415" unicode=""
+d="M1408 1024h512v-256h-310.016c-98.8164 -225.92 -323.584 -384 -585.984 -384c-176.768 0 -335.488 72.832 -451.072 188.928l0.640625 0.640625c-50.0488 50.0479 -50.0488 130.943 0 180.991c50.0479 50.0488 130.943 50.1768 180.991 0
+c69.376 -69.6318 163.456 -114.56 269.44 -114.56c212.096 0 384 171.904 384 384zM1024 1408c-212.096 0 -384 -171.904 -384 -384h-512v256h310.016c98.8164 225.92 323.712 384 585.984 384c176.896 0 335.488 -72.96 451.072 -188.928
+c50.0479 -50.0479 50.0479 -130.944 0 -180.992s-130.944 -50.0479 -180.992 0l-0.639648 -0.639648c-69.376 69.6318 -163.328 114.56 -269.44 114.56zM832 1024c0 106.112 86.0156 192 192 192c106.112 0 192 -85.8877 192 -192s-85.8877 -192 -192 -192
+c-105.984 0 -192 85.8877 -192 192z" />
+ <glyph glyph-name="uniF207" unicode=""
+d="M604.672 256h-329.216v990.72h329.216v-990.72zM440.064 1381.89h-2.04883c-110.464 0 -182.016 76.1602 -182.016 171.137c0 97.1514 73.5996 171.136 186.368 171.136c112.512 0 181.888 -74.1123 184.063 -171.136c0 -94.9766 -71.5518 -171.137 -186.367 -171.137z
+M1792 256h-329.216v530.048c0 133.12 -47.3604 224 -166.656 224c-91.1357 0 -145.28 -61.1836 -169.088 -120.32c-8.57617 -21.2471 -10.752 -50.9434 -10.752 -80.5117v-553.216h-329.344s4.35156 897.792 0 990.72h329.344v-140.416
+c43.7764 67.4561 121.984 163.584 296.448 163.584c216.704 0 379.264 -141.567 379.264 -445.823v-568.064z" />
+ <glyph glyph-name="uniF500" unicode=""
+d="M2048 0h-1920l960 959.872z" />
+ <glyph glyph-name="uniF302" unicode=""
+d="M1024 1536h512v-512l-768 -768l-512 512zM1280 1152c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128s-128 -57.2158 -128 -128s57.2158 -128 128 -128z" />
+ <glyph glyph-name="uniF108" unicode=""
+d="M1664 1536c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-128v-448l-448 448h-331.008l128 128h395.008c211.712 0 384 172.288 384 384v384zM1280 1792c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-448
+l-448 -448v448h-128c-141.312 0 -256 114.688 -256 256v384c0 141.312 114.688 256 256 256h1024z" />
+ <glyph glyph-name="uniF405" unicode=""
+d="M1536 1408l-320 -320l320 -320l-128 -128l-320 320l-320 -320l-128 128l320 320l-320 320l128 128l320 -320l320 320z" />
+ <glyph glyph-name="uniF501" unicode=""
+d="M0 128v1920l960 -960z" />
+ <glyph glyph-name="uniF50D" unicode=""
+d="M1024.13 896c-105.984 0 -192.128 86.0156 -192.128 192v512c0 105.856 86.1436 192 192.128 192c106.112 0 191.872 -86.1436 191.872 -192v-512c0 -105.984 -85.7598 -192 -191.872 -192zM1401.47 1024h192c-27.3916 -244.48 -206.464 -441.984 -441.472 -496v-272
+h-256v272c-234.88 54.0156 -414.08 251.52 -441.472 496h192c30.5918 -181.504 187.52 -320 377.472 -320c190.208 0 347.008 138.496 377.472 320z" />
+ <glyph glyph-name="uniF503" unicode=""
+d="M2048 2048v-1920l-960 960z" />
+ <glyph glyph-name="uniF101" unicode=""
+d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM1024 768c141.312 0 256 114.688 256 256s-114.688 256 -256 256s-256 -114.688 -256 -256s114.688 -256 256 -256z" />
+ <glyph glyph-name="uniF204" unicode=""
+d="M1182.21 1271.81h328.704l-14.4639 -302.72h-314.24v-841.088h-320.128v841.088h-222.08v302.72h222.08v258.561c0 203.008 131.456 389.632 434.176 389.632c122.496 0 212.992 -11.6484 212.992 -11.6484l-7.04004 -282.624s-92.5439 0.640625 -193.536 0.640625
+c-108.928 0 -126.464 -50.3037 -126.464 -133.504c0 -12.416 0 -15.3604 0 -13.9521v-207.104z" />
+ <glyph glyph-name="uniF444" unicode=""
+d="M1600 640c-70.7842 0 -128 -57.2158 -128 -128s57.2158 -128 128 -128h64v-128h-1024c-141.312 0 -256 114.688 -256 256v1024c0 141.312 114.688 256 256 256h1024v-1152h-64zM640 384h817.92c-30.7197 34.0479 -49.9199 78.5918 -49.9199 128
+s19.2002 93.9521 49.9199 128h-817.92c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128z" />
+ <glyph glyph-name="uniF416" unicode=""
+d="M1088 1792c176.768 0 320 -143.232 320 -320v-640c0 -247.424 -200.576 -448 -448 -448s-448 200.576 -448 448v320h128v-320c0 -176.768 143.232 -320 320 -320c176.64 0 320 143.232 320 320v640c0 105.984 -86.0156 192 -192 192c-106.112 0 -192 -86.0156 -192 -192
+v-512c0 -35.3281 28.6719 -64 64 -64s64 28.6719 64 64v451.968h128v-451.968c0 -105.984 -86.0156 -192 -192 -192c-106.112 0 -192 86.0156 -192 192v512c0 176.768 143.232 320 320 320z" />
+ <glyph glyph-name="uniF459" unicode=""
+d="M1920 1664v-1280l-768 480v-480l-1024 640l1024 640v-480z" />
+ <glyph glyph-name="uniF441" unicode=""
+d="M1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-512v256h256l-384 384l-384 -384h256v-256h-512c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.40039c-4.09668 20.7363 -6.40039 42.1123 -6.40039 64c0 176.768 143.232 320 320 320
+c89.3438 0 169.984 -36.7363 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
+ <glyph glyph-name="uniF506" unicode=""
+d="M768 1920l489.344 -489.472l-640 -640l-268.928 269.056c-49.792 49.792 -49.792 131.2 0 180.992l292.864 292.735l-1.28027 2.68848s128 128 128 384zM1738.24 565.76c33.1514 -32.7676 53.7598 -78.208 53.7598 -128.64c0 -99.9678 -81.1523 -181.12 -181.12 -181.12
+c-50.4316 0 -95.7441 20.6084 -128.64 53.7598l-330.24 330.24v128l-64 64c-35.2002 35.2002 -104.704 23.2959 -154.496 -26.4961l-75.0078 -75.0078c-49.792 -49.792 -131.2 -49.792 -180.992 0l-14.8477 14.8477l640 640l14.8477 -14.8477
+c49.792 -49.792 49.792 -131.2 0 -180.992l-75.0078 -75.0078c-49.792 -49.792 -61.6963 -119.296 -26.4961 -154.496l64 -64h128zM1610.88 373.12c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64s-64 -28.6719 -64 -64s28.6719 -64 64 -64z" />
+ <glyph glyph-name="uniF105" unicode=""
+d="M1408 1408c0 -167.04 -107.264 -307.584 -256 -360.448v-535.552l-256 -128v663.552c-148.864 52.8643 -256 193.408 -256 360.448c0 212.096 171.904 384 384 384c211.968 0 384 -171.904 384 -384z" />
+ <glyph glyph-name="uniF473" unicode=""
+d="M384 1664h1280v-1280h-1280v1280zM768 1408c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM1536 512v576l-128 192l-448 -672l-192 288l-256 -384h1024z" />
+ <glyph glyph-name="uniF452" unicode=""
+d="M512 1664l1024 -640l-1024 -640v1280z" />
+ <glyph glyph-name="uniF408" unicode=""
+d="M1792 1150.72l-475.904 -329.983l182.528 -535.04l-474.624 331.903l-474.624 -331.903l182.528 535.04l-475.904 329.983l587.52 -1.02344l180.48 535.68l180.48 -535.68z" />
+ <glyph glyph-name="uniF450" unicode=""
+d="M768 1024l1024 640v-1280zM256 384v1280h384v-1280h-384z" />
+ <glyph glyph-name="uniF517" unicode=""
+d="M1408 1152l384 384v-1024l-384 384v-256c0 -70.7842 -57.2158 -128 -128 -128h-896c-70.6562 0 -128 57.2158 -128 128v768c0 70.6562 57.3438 128 128 128h896c70.7842 0 128 -57.3438 128 -128v-256z" />
+ <glyph glyph-name="uniF106" unicode=""
+d="M256 896v640h640v-640c0 -282.752 -229.248 -512 -512 -512v256c141.312 0 256 114.688 256 256h-384zM1152 1536h640v-640c0 -282.752 -229.248 -512 -512 -512v256c141.312 0 256 114.688 256 256h-384v640z" />
+ <glyph glyph-name="uniF208" unicode=""
+d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280zM663.168 384v792.96h-263.552v-792.96h263.552zM531.328 1285.25
+c91.9043 0 149.12 60.9277 149.12 136.96c-1.66406 77.6963 -57.2158 136.96 -147.328 136.96c-90.2402 0 -149.12 -59.2637 -149.12 -136.96c0 -76.0322 57.2158 -136.96 145.664 -136.96h1.66406zM1613.44 384v454.656c0 243.456 -130.049 356.863 -303.488 356.863
+c-139.776 0 -202.496 -76.9277 -237.44 -130.943v112.384h-263.552c3.45605 -74.3682 0 -792.96 0 -792.96h263.552v442.88c0 23.6797 1.79199 47.3604 8.57617 64.1279c19.0723 47.3604 62.4639 96.3838 135.296 96.3838c95.4883 0 133.504 -72.7031 133.504 -179.199
+v-424.192h263.553z" />
+ <glyph glyph-name="uniF304" unicode=""
+d="M1024 1152c-141.312 0 -256 114.688 -256 256s114.688 256 256 256s256 -114.688 256 -256s-114.688 -256 -256 -256zM1152 1024c211.968 0 384 -171.904 384 -384v-256h-1024v256c0 212.096 172.032 384 384 384h256z" />
+ <glyph glyph-name="uniF225" unicode=""
+d="M655.104 1857.54l368.896 -307.968l-531.456 -328.192l-364.544 291.84zM128 929.536l364.544 291.84l531.456 -328.064l-368.896 -308.096zM1024 893.312l531.456 328.064l364.544 -291.84l-527.232 -344.32zM1920 1513.22l-364.544 -291.84l-531.456 328.192
+l368.768 307.968zM1025.02 826.88l369.92 -306.944l158.464 103.297v-115.713l-528.384 -317.056l-528.257 317.056v115.713l158.336 -103.297z" />
+ <glyph glyph-name="uniF103" unicode=""
+d="M1152 1408h896v-896h-896v896zM128 1024v384h896v-384h-896zM640 512v384h384v-384h-384zM128 512v384h384v-384h-384z" />
+ <glyph glyph-name="uniF431" unicode=""
+d="M1408 1280l128 -128l-576 -576l-576 576l128 128l448 -448z" />
+ <glyph glyph-name="uniF200" unicode=""
+d="M1024 2048c565.504 0 1024 -458.496 1024 -1024c0 -452.224 -293.12 -835.712 -699.776 -971.392c-51.9678 -9.98438 -70.3994 21.7598 -70.3994 49.2793c0 33.4082 1.2793 144 1.2793 280.704c0 95.7441 -32.7676 158.208 -69.5039 189.696
+c228.097 25.3438 467.456 112 467.456 505.344c0 111.744 -39.5518 203.136 -105.088 274.688c10.4961 25.8555 45.6963 130.048 -10.2402 270.976c0 0 -85.8877 27.5205 -281.344 -104.96c-81.792 22.7842 -169.344 34.0479 -256.384 34.4316
+c-87.04 -0.383789 -174.592 -11.6475 -256.384 -34.4316c-195.584 132.48 -281.601 104.96 -281.601 104.96c-55.6797 -140.928 -20.4795 -244.992 -9.85547 -270.976c-65.5361 -71.5527 -105.472 -162.944 -105.472 -274.688c0 -392.32 239.104 -480.384 466.432 -506.112
+c-29.3125 -25.7275 -55.6797 -70.6553 -65.0244 -136.96c-58.2393 -26.2393 -206.72 -71.2959 -297.983 85.248c0 0 -54.1445 98.1768 -156.929 105.473c0 0 -100.096 1.2793 -7.04004 -62.208c0 0 67.0723 -31.4883 113.664 -150.017c0 0 60.0322 -198.912 344.96 -137.216
+c0.512695 -85.248 1.4082 -149.76 1.4082 -173.952c0 -27.2637 -18.6875 -58.752 -69.8877 -49.5361c-406.912 135.425 -700.288 519.168 -700.288 971.648c0 565.504 458.496 1024 1024 1024z" />
+ <glyph glyph-name="uniF421" unicode=""
+d="M384 896v256h1152v-256h-1152z" />
+ <glyph glyph-name="uniF454" unicode=""
+d="M640 896v128h-512v256h512v128l384 -256zM1536 2048c141.312 0 256 -114.688 256 -256v-1536c0 -141.312 -114.688 -256 -256 -256h-1024c-141.312 0 -256 114.688 -256 256v640h256v-384h1024v1280h-1024v-384h-256v384c0 141.312 114.688 256 256 256h1024zM1024 128
+c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128z" />
+ <glyph glyph-name="uniF213" unicode=""
+d="M1536 1664c211.968 0 384 -171.904 384 -384v-512c0 -212.096 -172.032 -384 -384 -384h-1024c-212.096 0 -384 171.904 -384 384v512c0 212.096 171.904 384 384 384h1024zM768 640l640 384l-640 384v-768z" />
+ <glyph glyph-name="uniF401" unicode=""
+d="M1297.15 878.848l494.848 -494.848l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM832 768
+c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448s200.576 -448 448 -448zM512 1152v128h640v-128h-640z" />
+ <glyph glyph-name="uniF436" unicode=""
+d="M512 1408v128h128v-128h-128zM768 1408v128h128v-128h-128zM1024 1408v128h128v-128h-128zM1280 1536h128v-128h-128v128zM512 1152v128h128v-128h-128zM768 1152v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 1152v128h128v-128h-128zM512 896v128h128v-128
+h-128zM768 896v128h128v-128h-128zM1024 896v128h128v-128h-128zM1280 896v128h128v-128h-128zM512 640v128h128v-128h-128zM768 640v128h128v-128h-128zM1024 640v128h128v-128h-128zM1280 640v128h128v-128h-128z" />
+ <glyph glyph-name="uniF434" unicode=""
+d="M1152 0l896 896v-896h-896z" />
+ <glyph glyph-name="uniF303" unicode=""
+d="M960 1792c388.736 0 704 -315.136 704 -704c0 -388.736 -315.264 -704 -704 -704c-388.864 0 -704 315.264 -704 704c0 388.864 315.136 704 704 704zM960 512c317.952 0 576 257.92 576 576s-258.048 576 -576 576c-318.08 0 -576 -257.92 -576 -576
+s257.92 -576 576 -576zM1024 1536v-421.504l297.984 -297.984l-90.4961 -90.4961l-335.488 335.488v474.496h128z" />
+ <glyph glyph-name="uniF464" unicode=""
+d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
+M1920 640v128h-640v-128h640z" />
+ <glyph glyph-name="uniF109" unicode=""
+d="M256 1280h384l384 384v-1280l-384 384h-384v512zM1295.49 1295.62c69.5039 -69.5039 112.512 -165.504 112.512 -271.616s-43.0078 -202.112 -112.512 -271.488l-90.4961 90.4961c46.3359 46.208 75.0078 110.208 75.0078 180.992
+c0 70.6562 -28.6719 134.656 -75.0078 181.12zM1476.61 1476.61c115.712 -115.841 187.392 -275.841 187.392 -452.608c0 -176.896 -71.6797 -336.896 -187.392 -452.608l-90.4961 90.4961c92.6719 92.6719 149.888 220.672 149.888 362.112
+c0 141.312 -57.2158 269.44 -149.888 361.984z" />
+ <glyph glyph-name="uniF428" unicode=""
+d="M1024 1280c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256s-256 114.688 -256 256s114.688 256 256 256z" />
+ </font>
+</defs></svg>
--- /dev/null
+# Genericons
+
+Genericons are vector icons embedded in a webfont designed to be clean and simple keeping with a generic aesthetic.
+
+Use genericons for instant HiDPI, to change icon colors on the fly, or even with CSS effects such as drop-shadows or gradients!
+
+
+## Usage
+
+To use it, place the `genericons` folder in your stylesheet directory and enqueue the genericons.css file. Now you can create an icon like this:
+
+```
+.my-icon:before {
+ content: '\f101';
+ font: normal 16px/1 'Genericons';
+ display: inline-block;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+```
+
+This will output a comment icon before every element with the class "my-icon". The `content: '\f101';` part of this CSS is easily copied from the helper tool at http://genericons.com/, or `example.html` in the `font` directory.
+
+You can also use the bundled example.css if you'd rather insert the icons using HTML tags.
+
+
+## Building your own Genericons
+
+In the `source` directory, you'll find all Genericons source icons in SVG format. This will allow you to bake your own flavor of Genericons using a tool such as FontCustom (http://fontcustom.com) or Fontello (http://fontello.com). Perhaps you need more logos than are available in the base Genericons package? Just add those logos and bake your own expanded set. Maybe you need just a few of the icons Genericons provides, but would like to trim the fat? Remove the ones you won't need!
+
+
+### FontCustom instructions
+
+FontCustom is a powerful commandline tool which which bakes icon fonts from the SVG source files. It's the tool Genericons is built on, and it provides highly accurate and perfectly crisp icons, *provided all SVGs have the same pixel height*.
+
+It's not that hard to use, and once it's installed you'll never think of icon-fonts the same way again. Seriously, you should try it. Icon fonts for everyone!
+
+1. Install FontCustom. Follow the instructions on the website: http://fontcustom.com/
+2. In the `source` directory from the Genericons download, open the file called `fontcustom.yml` in a text editor. Customize the `font_name` and `css_selector`.
+3. Open a terminal. Browse to the `source` directory. Type `fontcustom compile`.
+
+You'll now receive a brand new subdirectory called `fontcustom-webfont`. Inside here you'll find your very own flavor of Genericons, with only the icons you want, including a handy example page that'll help you copy/paste the necessary glyphs or CSS values.
+
+*Please note*: In the source directory, there's a hidden file called `.fontcustom-manifest.json`. This file is auto-generated by the FontCustom tool, and holds codepoints (unicode addresses) for every glyph, so its address doesn't change when you add or remove icons. If you feel the need to "start fresh" with the unicode addresses, you should delete this file.
+
+
+### Fontello instructions
+
+Fontello is very easy to use. Just drop the SVG files of the icons you want onto their website and download the font. The downside is that Fontello seems to ignore the 16px pixelgrid, so you'll end up with fuzzy icons. Buyer beware.
+
+
+## Notes
+
+**Photoshop mockups**
+
+The `Genericons.ttf` file can be placed in your system fonts folder and used Photoshop or other graphics apps if you like.
+
+If you're using Genericons in your Photoshop mockups, please remember to delete the old version of the font from Font Book, and grab the new one from the zip file. This also affects using it in your webdesigns: if you have an old version of the font installed locally, that's the font that'll be used in your website as well, so if you're missing icons, check for old versions of the font on your system.
+
+**Pixel grid**
+
+Genericons has been designed for a 16x16px grid. That means it'll look sharp at font-size: 16px exactly. It'll also be crisp at multiples thereof, such as 32px or 64px. It'll look reasonably crisp at in-between font sizes such as 24px or 48px, but not quite as crisp as 16 or 32. Please don't set the font-size to 17px, though, that'll just look terrible blurry.
+
+**Antialiasing**
+
+If you keep intact the `-webkit-font-smoothing: antialiased;` and `-moz-osx-font-smoothing: grayscale;` CSS properties. That'll make the icons look their best possible, in Firefox and WebKit based browsers.
+
+**optimizeLegibility**
+
+Note: On Android browsers with version 4.2, 4.3, and probably later, Genericons will simply not show up if you're using the CSS property "text-rendering" set to "optimizeLegibility.
+
+**Updates**
+
+We don't often update icons, but do very carefully when we get good feedback suggesting improvements. Please be mindful if you upgrade, and check that the updated icons behave as you intended.
+
+**Base64 encoding**
+
+By default, Genericons ships with a stylesheet that includes a base64 encoded version of the font. This is to sidestep issues with cross-origin requests for fonts, that happen when a stylesheet loads a font that's stored on a different domain or subdomain. This is very common when using caching plugins.
+
+Base64 encoding comes with a 25% filesize overhead compared to just loading the WOFF file directly. If you know that you won't be loading fonts across domains, or have the ability to edit your server config files to allow it, you can get slightly faster performance by loading Genericons without the base64 encoding. Simply edit `genericons.css` and edit the `@font-face` declaration to match this:
+
+```
+@font-face {
+ font-family: 'Genericons';
+ src: url('Genericons.woff') format('woff'),
+ url('Genericons.ttf') format('truetype'),
+ url('Genericons.svg#genericonsregular') format('svg');
+ font-weight: normal;
+ font-style: normal;
+}
+```
+
+
+
+## Changelog
+
+**3.4.1**
+
+* IE8 support restored.
+
+**3.4**
+
+* Updated: Update Google Plus icon to new geometric version. This also *retires* the "alt" version, so *please be mindful if you choose to update, make sure you use the `f206` glyph, not the `f218` glyph, as it no longer exists!
+* New: Added helper rotation classes to the base CSS, thanks to geminorum. Apply `genericon-rotate-90` to rotate 90 degrees, -180, -270. Or `genericon-flip-horizontal` or -vertical.
+
+*Again, it is important if you choose to update to this version, make sure you're not using `genericon-googleplus-alt` or unicode character `f218`, as that has been retired! Use `genericon-googleplus` and glyph `f206` instead!*
+
+**3.3.1**
+
+Security Hardening: Remove Genericons example.html file. Please visit genericons.com instead.
+
+**3.3**
+
+The Open Source release.
+
+You can now build your own flavors of Genericons with all the SVGs provided.
+
+
+**3.2**
+
+A number of new icons and a couple of quick updates.
+
+* New: Activity
+* New: HTML anchor
+* New: Bug
+* New: Download
+* New: Handset
+* New: Microphone
+* New: Minus
+* New: Plus
+* New: Move
+* New: Rating stars, empty, half, full
+* New: Shuffle
+* New: video camera
+* New: Spotify
+* New: Twitch
+* Update: Fixed geometry in Edit icon
+* Update: Updated Foursquare icon
+* IE8 bugfix, slipstreamed into this.
+
+Twitch and Spotify mark the last social icons that will be added to Genericons.
+Future social icons will have to happen in a separate font.
+
+**3.1**
+
+Genericons is now generated using a commandline tool called FontCustom. This makes it far easier to add new icons to the font, but the switch means the download zip now has a different layout, fonts have different filenames, there's now no .otf font included (but the .ttf should suffice), and the font now has slightly different metrics. I've taken great care to ensure this new version should work as a drop-in replacement, but please be mindful and test carefully if you choose to upgrade.
+
+* Per feedback, the baked-in 16px width and height has been removed from the helper CSS. It wasn't really necessary (the glyph itself has these dimensions naturally), and it caused some headaches.
+* Base64 encoding is now included by default in the helper CSS. This makes it drop-in easy to get Genericons working in Firefox even when using a CDN.
+* Title attribute on website tool.
+* New: Website.
+* New: Ellipsis.
+* New: Foursquare.
+* New: X-post.
+* New: Sitemap.
+* New: Hierarchy.
+* New: Paintbrush.
+* Updated: Show and Hide icons were updated for clarity.
+
+**3.0.3**
+
+Bunch of updates mostly.
+
+* Two new icons, Dropbox and Fullscreen.
+* Updates to all icons containing an exclamation mark.
+* Updates to Image and Quote.
+* Nicer "Share" icon.
+* Bigger default Linkedin icon.
+
+**3.0.2**
+
+A slew of new stuff and updates.
+
+* Social icons: Skype, Digg, Reddit, Stumbleupon, Pocket.
+* New generic icons: heart, lock and print.
+* New editing icons: code, bold, italic, image
+* New interaction icons: subscribe, unsubscribe, subscribed, reply all, reply, flag.
+* The hyperlink icon has been updated to be clearer, chunkier.
+* The "home" icon has been updated for style, size and clarity.
+* The email icon has been updated for style and clarity, and to fit with the new subscribe icons.
+* The document icon has been updated for style.
+* The "pin" icon has been updated for style and clarity.
+* The Twitter icon has been scaled down to fit with the other social icons.
+
+**3.0.1**
+
+Mostly maintenance.
+
+* Fixed an issue with the example page that showed an old "top" icon instead of the actual NEW "refresh" icon.
+* Added inverse Google+ and Path.
+* Replaced tabs with spaces in the helper CSS.
+* Changed the Genericons.com copy/paste tool to serve span's instead of div's for casual icon insertion. It's being converted to "inline-block" anyway.
+
+**3.0**
+
+Mainly maintenance and a few new icons.
+
+* Fast forward, rewind, PollDaddy, Notice, Info, Help, Portfolio
+* Updated the feed icon. It's a bit smaller now for consistency, the previous one was rather big.
+* So, the previous version numbering, 2.09, wasn't very PHP version compare friendly. So from now on it'll be 3.0, 3.1 etc. Props Ipstenu.
+* Genericons.com now has a mini release blog.
+* The CSS has prettier formatting, props Konstantin Obenland.
+
+**2.09**
+
+Updated Facebook icon to new version. Updated Instagram logo to use new one-color version. Updated Google+ icon to use same radius as Instagram and Facebook. Added a bunch of new icons, cog, unapprove, cart, media player buttons, tablet, send to tablet.
+
+**2.06**
+
+Included Base64 encoded version. This is necessary for Genericons to work with CDNs in Firefox. Firefox blocks fonts linked from a different domain. A CDN (typically s.example.com) usually puts the font on a subdomain, and is hence blocked in Firefox.
+
+**2.05**
+
+Added a bunch of new icons, including upload to cloud, download to cloud, many more.
+
+**2.0**
+
+Initial public release
--- /dev/null
+/**
+
+ Genericons
+
+*/
+
+
+/* IE8 and below use EOT and allow cross-site embedding.
+ IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
+ So unfortunately, IE9 will throw a console error, but it'll still work.
+ When the font is base64 encoded, cross-site embedding works in Firefox */
+@font-face {
+ font-family: "Genericons";
+ src: url("./Genericons.eot");
+ src: url("./Genericons.eot?") format("embedded-opentype");
+ font-weight: normal;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "Genericons";
+ src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAADakAA0AAAAAVqwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAA2iAAAABoAAAAcdeu6KE9TLzIAAAGgAAAARQAAAGBkLHXFY21hcAAAAogAAACWAAABsqlys6FjdnQgAAADIAAAAAQAAAAEAEQFEWdhc3AAADaAAAAACAAAAAj//wADZ2x5ZgAABFQAAC7AAABIkKrsSc5oZWFkAAABMAAAAC8AAAA2C2BCV2hoZWEAAAFgAAAAHQAAACQQuAgGaG10eAAAAegAAACfAAABOFjwU3Jsb2NhAAADJAAAATAAAAEwy4vdrm1heHAAAAGAAAAAIAAAACAA6QEZbmFtZQAAMxQAAAE5AAACN1KGf59wb3N0AAA0UAAAAjAAAAXo9iKXv3jaY2BkYGAAYqUtWvLx/DZfGbg5GEDgkmLVWhj9/ycDAwcbWJyDgQlEAQABJgkgAHjaY2BkYOBgAIIdHAz/fwLZbAyMDKiAFQBE7gLWAAAAAAEAAACXAOgAEAAAAAAAAgAAAAEAAQAAAEAALgAAAAB42mNgYf/MOIGBlYGB1Zh1JgMDoxyEZr7OkMYkxMDAxMDKzAADjAIMCBCQ5prC0MCg8FWcA8TdwQFVg6REgYERAPvTCMQAAAB42i1PsRXCUAg8SAprl7FN4QZqb2WZGRjAIVLrHj4be4ews7OJHAd54cMBd+Af7JHmt3RPYAOHAYFweFhmYE4jlj+uVb8nshCzd/qVeNUCLysG8lgwrojfSW/pcTK6o7rWX82En6HJwIEv+wbi28IwpndxRu/JaJGStHRDq5EB+OKCNumZLlSVl2TnOFVtl9nR5t7woR0QzVT+D7cKLeIAeNpjYGBgZoBgGQZGBhBYA+QxgvksDBOAtAIQsoDoj5yfOD9JflL7zPGF84vkF80vll88v0R+yfxS9lX8/3+wCoZPDJ8EPil8ZvjC8EXgi8IXgy8OXwK+JHwp+Mrw////x/wsfHx8HHxMvJo8Rjw6PGo8CjxSPCI8fDwc3PVQ2/ECRjYGuDJGJiDBhK4A4pXhDABtHClYAAAARAURAAAALAAsACwALABaAIQAzADyAQABHAFGAZQBzgIIArIDTAOkA+AEEgTCBRYFYgW+BjAGwgbkByQHSAeCB+AI2Ao4CowLGgvQDBwM6g08DX4Nug4kDkYOYg6ADsoO7A8yD4gP8hAwEGYQpBDuEUgRshHUEfYSQBJeEnoSlhLEEtwTIBNYE6oT6hQaFC4UShSQFJ4UtBTyFSAVjBW4FegV+hYUFiwWQBZWFmQWchaIFuYXFhdUF4gXyhgEGCwYThh8GNYZEhlCGVgZZhl8GZIZoBnQGhIaShp8GtIa6Br+GzAbVBt+G8Ib/Bw6HGgciBy8HOwdHh1WHXAdmB3eHvYfIB8uHzofSB9WH6of4CA4IMghACFCIcQh4CIGIjoiSCJ8IpYiyCLmIxAjWiPwJCQkSHja1Xx5YFTVvf/53nUm++zJJJnMkpkJJJkss5GFMIQ9w04IS0BZRSJLMIIo1l4XFETQFkVFBKwVrbuWpRaXPOtalZaCPKu1D2yf28NX21qfQubk9z3nzoSAS//+Mbn3nnvuuWc/n+/n+z3fCxHIaEKEJfJMIhKVhJ4GUtP8jCqRz+ufVuQ/NT8jChgkT4ssWmbRz6gK9DU/Ayw+bPKY/B6TZ7TgpuVwN71Unnnm0dHS24QQRSACUYis8XyzST6xEAch4LF5ZJsnKkc9NsDDj2ETXgUikT4iaClNJEBSGoZIP74qa+l//YRfKB5EAEyj4g/ztWBZbslcIEjucqHATOpjkYBXsYo18DNYeOQI3UMvonuOHIHXj+/YcXyHSs7FLGQp+o7sYA8IFq+BpmqKhtk6SDEZinWVWfMsHlLfIkRCgjdPsLpAtMlRUu8CmzVP8HlDEInJmkC+wcbihT54cN/6cePW79Mv/f1E+MUT2zvCM68cOWt7Rwc2pk8TNQ3IWW0gEbuI3yxI7KW9HdtnjbxyZrhj+xPbWX0EYhjcf9h3Jg9gldjBfhLm1af1ERF7BTAEmoxngQDeU35mB/YPsDiFtU0gxChgX2tn8S6FP3zG38O+zMWEVkU1yaYQRCMxt13WblvTT9bcdgpaTsnahlcqUp9owt0Vr2zYc+oUHwN8S2FjwMYV62PNA5+pPhaFc0EP4JhuPr2la4eQCVCsNRvnLac3A9nRNShIBFZPXpciEmHjareZsEbRWNTEBhVvHDasmyniwP7HJ+4AhlsgbmOP7PUsWVA8DFmHuzoSa3avSXR09XZ0HaZfHa7raOARKjm8kWoLdwfuamwHbcqaNVOo1t54V2D3QtA2nsQL1TYePrwRtMTaWUWYhvI0gGlYz5FeldWtgPiwvfW8bpVgAk/cwxqtR/hwhHxeVq9YWNG6duzo0miCHtBgy55TlN/jbYIHFGwyi6IJ6NVO7RG0c7c7ugBDRITMuMlYqovNAFYeuNg4BWPRSBCDBRhsEaKRQJCl5mOvSfmxpqbY3GQSCmYvXjy7s6bVP2WcjI/P4iEUxG7ddWt0brKrC5/P+Yz2fTans2bNjWMvPTwOi8B2Vhtw5pEr+cpyCWabVVAkVQngpGDFtChYcIsQCIYgT1ADQUUNifmQB7g4HIrN6pIdiponhCAYkoJDMd7ucEkOlxK32q02qxIMlAewtuYWQVwLdsg6+fyNbcufpfRunw+CruicxZMm1JYsV4zGfIuUV9+8OH7VzTdfFV80IpSVVZBvMErLS2rHT140JxrJtYfGjRjrFIyl3liplFNkNDlFY6nTmwuKwx0fu6gZfL67aOrZ5W03Pn/SQNiZfrXlIfr62RfrVXeh9JvpoxY4FUt5/eRFm2bsvTy/YvzFdSDK5jq/F8DrrzMpglAxtSFekt2zZ/rmRZPr/WYl1JmVJxdEq6VcX3GhoGY7zaAUuoZ5pNwhrqF5WabyKXVZhW4l/MJZaHhoC28cdiIDKkJ4nxqIiZQittSTBJlKiL8+LogKUe3+mDleLrvAjLhidsRIPBDMAda9LsERkxwCsETlccHiVXx2S4sUD1SBWyIIewRxjzDgk8iBw54n/0w3db0rjt/1ViE9TY/nNXaeue+KFT+Cxz4uSNCP6Bp5+biD/9dsLw0qj8DEq51nG1+if695Cb68Zevjbs19yW+VvZO2LB9yLT1Er4JdsAEsP/85/ZxupEvw+PznPweLNhWq4MY2evS13r0roL03FCq+m/5W2Jx4iP5u/dsQm1SrddTDuw0Xd7lKw+05HqUYSuGfM+nhE/bxIXBCrGAf3Sc0ultay6/9qXZB5lggL5R1FyAeVyEef0Aa8EZR7Qi4kuRz++3helzyOL0wgJfhOL8YXsXtkgNnaIsQrrc7YvE8UGOqllwpVM/Vnvo9pdvoEdpfVTXzgZ+MuPJ5n99dV/vjhyfPTs6uvwVu+TCrcfGm5OQt4R+tsLY3rFJquycX25Yff/vwfT0jH5QDY+vEbavV3KI3b5QrxfqfXbS445E3s4dUtm1a3Dg8XpRILPfm6vUlKD9UjQQH0MGHKG3xDEcZEXbEAz4UIKUIiyg0zwMI+hHk5dCPKlv3yZOWX/TT2VWUpqrYAxUR4SxB6HwNpN6c5jj8Iyt28drRp2lfqmFHl4xPOLZjufLHWK6b4YPIBAMrI9IiYU+Ugejl5YrSbpiQT1+lvX/+s6N6/EXXtsW7nE51/pKKiNMofU2P9h0SJ0ANCJEFs8bHShVRpB+Z/NVeUTASRJ9M2yyIzB6yhKzi2GA3s0HxeXFFF5hjgDMXFKjHuZsNdgtYYvEWMRphQGBA6AjXOwLlPq+kqPXh+tgIiNkVVVHBIiKOxBz2c3F+HGpVjJmjEbENVsDEL7aN7Nn38idXH6T7v9i27Qv6pzNv0x+PFQO3XC8JX/+j+y/gmypIBXkW1VFoBYdslvMkVZjcCMZV9NN7b6H9R8YXF/lX+Lw2S561qhb8T13bbs23WjdOCVzm82GkrVLwycO/OvSeqmHu+w9e/cnL+3pGbvsCJvLSU3mn6YYlUul9fTUhWREeSo30SHv7dkOOklNXNzZcGJoT9Qp+gzu7JL/Qlt3QAUu6Ox9YJQsilHlFWei7SzDBbFXwuiErE6lWVN68M9XQBT3vH2FzXSC3wj9Rlm4ldWQ4G0W73q8hITOh1ZARh5FBLM5+Me7xh20+my/qi4ajYeE9IZAbGLPkmh3T1723++JF9797+do3WncKVqO9oMjucpWblz66ZMmjS0d2j48VSXS/uE9nVJIWDE/fcc2SMYGLd7+3bu37uy+ePPEeyFVzDdmqURIXP/rbRxeXx8Y0Fb3Nk2M9RZ13Kc8jJzFjXTkjCTJxx4YX4R/FPkZF2FQHFYWyxxz02FoUfCbYhPn0ILQ9KExbumxGvL0KqjrkAnpoWkfluKG52fSQJMGEbJvbUxNuLZ++eVkDEPG/bl40oW1h9aS62kmhszsF8/Ir/WF3cSz1n+L187eaSnzFxZbs+GWPr2ZcKT0/Gct0k+ZBKzC91Bg/saCYDoEPiYTVjhG8moIa9dgLbCrWOs672mbSVyVbeCiGHfSbG0ZPg6mto6ZPGyk1PbSpftowbwH9GgAMhixvg3fMyMwy1ZfkGSIW9X0sbpzS2DxpclPjlL4N8NqTB4sqg4XdHtpz4CAcrrQ5h5Re3E5nY2c+isJhGsqFqazGLkkf9kBQwJURDMQtbALEWKWsrD/ZGsFVEULemYdJkQSpeewvyOeJLNWt++MT2xZEqmdctePgksVPeicUeOffqZb+TMqzb71kxuxAc57j6iVrn1005obXfzT/0ZtXTQjOMKuqaBVUn33munj5xBV3/fIvBhJftGnvgfkbPnxx18rm+Qn6wbAN22MPXy08ZfQsj9x6+LLp4e3/0bD49l9B3cFLn76uLTSt+6a7p965yOYszJmSVWgy+u54rnvS7nu3rp9Vr+N4RvYtzvCJAiFPwGYGY3ELn8/AGiXqjbI77AgbEI8Fgmk0x6nD2CRS7TinOWxuYboywE5yBMiFXCIt5+/YliwZX7J12lW/u31a0+W73u5Zd3T3tVOGdC0zl8iCSZDlvNHjtN41Sx/oGjZ1x0XRdn9Odp1r3KjY3GiBwbjG4pAP0NO7BjMH+hn9iuU/dP1icEaTlx0G8c7Ox+9YnYhfdM3td7bdcmyoIc9iSGRZbaYpVy185uZpzctvm7n96zujndGaXVcObZ01+upk5TSLhfpnLNo8BRyw7sgAQRDIXmGBukDei4srn/PeAuS2BeXpq2yF2V9+SR/+MnVFOiDvZecv03d41eUlUW9Xc4gXbyQR+bkP0TuIkwWpYhx/FrPDjCITQxhlVjaAtSAHlaGfpu5bsco7bZ71qvaN1z0152hdxNo8YdiabkPBpsSYG1VioA/SFB1Oh0AZ3HYtlLWvuKLnboOV/p7+agr9+1NPzbu7FB5nbcjoT/mIDd9af0ZBIag27OnjZ+CanoKsl/J7Ac99nL0SgHeJplTgWvbqWgUqEw47kw9xEwoHnDaMeEZNvihvVFwaBb+gs0wF1c0TN93cM3/+ig0XXzSqNfJqVzIZqjapGm2iH9PIrqoqZ/ls+lHMbi8ra2i8boOwNuVLJObO2cKm52D8cJBqjsEX1J+4lQK7O1aANeKr0c05B9bNHkb2b8J5WQlepRSs9iaojw2GELGMvnSKqVBIzf/XvPk0/ez0ZjP932RUJtFkMqqlT+ejCCWn9Lf6TolkbCMqSKg7NY1JsVekA5l3knxp9QOooPSTbeSnZAe5h9xH7icPkoeZNodNsNUq7M+q1KHOoNQpqpWdFBsDFOxOJR9A8QahtgYCwdpANKB3byAYCfIVGIhiZAS7IFobi8bqIqzPo/VxftV/I6A2DrF6B9Ta62rtYbtj4GdjRy37szqsdXYwyXEjOPyyLQ4mv+qPB1UjBGV/VFVx1Pk/Af+E9BkvqVZThSnVCiLgdBZZrADn/RNgIDGKVuEFTC68AAIM5JHOCDArcH2cujJ19mNwpV59EO6kH34sjPv000+hUpA/ph8KjQ9K/5AlWi2oAkjsHVaowIpM54D5A63OzoFjLPt0TUX+HC+AL+GLEhyTZAFkEPCWHew1ngE7H8vOptXpFop6jqwMlgzfgCn07Rd3wmz68M4X9/5pVeoFiLx47+Rdu3ZhaPbOF+//06rz56oF5dwL5GM2V5GJFaCO5uaqVQsSYVTXBJQPDrsUV9I8AjEVgXUEMEzFFKiHWTgDUxiRRmStjdQhVQuUsyj+aoyBcAgUPUI4B8whIRjggocnY1Qcc2MP2T0TSiIqi0GO1w6XiLfsjfStAPXlOINQiAVZlojhEpYZDJjjMYyPK5KCcG+2SxI5yJgfI2T0Dkb8OAc8tpueWLlyidW075r14N4wIbn6rTtmlSdC2KNGEUb+/OVlD4Brodt/KX3/dnHo0I4tV6xrn7vgyWuT2V3tl9AvV14xvCXLsHPlqv9qanEkQxs3RTsstnBBVbS0am4gEDEYzEUFlfXFzki1udghK5VlFTWh8bmohxlt9jGBwFirTTYbi70V9spOj9cvCh0bW8Mza3Js5qmXrBtWPjJsKjaaHRsebp91+0y64TRsuqRp1o43eibdsNAZG9/TTQ899BD9dFxb7qzZUP2MyXwv/fSNdde9DyGdd+rNZLQzzUDvMqxdfRn945139E8Yn9dgm739re6xm9bWY1uzBEiuaLp1Q7j62jtTWaNuGtYz1FfiTV775ALhshdbJlmbWpZfds3637g80+d3fpgMV1uDwxcsnFlcWaZm5zkc44YMbfc4PBZByHGai9v8/haTXYFhlQKUTSh1eQSo9Pnag1aP0yIZi8rcc2pHXhYy5Yy5aHU00l5tsOfVDC+Pb2ieclU0P2flA303f/3WTTeuPXrvZVb3yq3T7qJPrN/QXer8rz27YOU99/7BJQk5t7xL/7x7H/3D+9f//8R1mT73Y3W4ej25BG9cuAjy5BAqSKY8A858HnIJsTiKJ5eI+ngspPiC3kAeJgOXWAZqSMLF0iK6RIe8Wy2aMGb26CZnXlnlitVXdl86K2E2I+waTFa3P1IaWdU+xmzxjB41rACGKdbEiNmTpo+oyxLKW6Z3zpsx0mKRCsKR5NgZ48aXFBeJJmeR0XhKdTQOKc0eP2rMww899bO7N8xzqkPEnKH1M+ffsO3QojmbZ8Qtcm6uqtD/EVS7w+3yuUqzzUKRKycXCr2VeeXV4jOpjwQ5W5It1aMuGzPx+s62Km++ASFJyS+sCCerqxdMm9hYlZP9htG9fNWD9786b/LlTW4hr6QoKz2GiEFXIAYNIddh79hVbgwNMqiRUCwy5iaivseUAtlmBWapCgz+YRqmD9rTgn3gORITJpusg2SINS3zB57bMnQgpo4Mw6QbDiy5auWUiZe//yukq6ZRdZ3r75y69cq2sYteeHB7z4wqekmT1ze8qX368g6Xu9xtKYjEOxdVDvWUOIpqIj5vkXPYsBkzu7ctXzGsIR7tnL1xXsswr6el9dLJ1aFCp8NWUlYV8/pikVlXHrxnVbfYuuzyJQdumNSYN3zFrmff62mfefnGqXeu76xL5lTN6Nn+4AuL5tPftl86e3hzRbDY6bAYjeZ8zCPkLXe7W0I2e3l5dai+FqmIMzhkQtuCS0a3BgMlVrPJ46ofMbTKbvN4orWFRagDJSdNrBkRCnH+jKyIKMzuGGESHXFX1wbwrFQiS+EcJSRUgomjOO94Zp1Gwe6ptyuaPVhkZ0cymmCsgSZGXjFu7lCtt27VwgSoiACeOWMLDAbYG01KpLiu3OAJ6mdM3ZWsqK0QtIvu/3qzbKr2lLTvnD5zrz+Q1Cn927BVDas93KIVJLVkBBmPesxmrGUMq6UPWwSJAY4VYC3TWqK9nKkzCrvzxzidV+0oE1iQWwesdgmsjhgzlyjEqzCzbsRi1e0/gBKO866MXoTpLCimHHILYgXrCtQSgn7R7mD3LpBezx/qyu949nBHvmto/rDbfkL/1hoKjRwZCrXC6HmtrfNaBU9lw5DqshmpLY+C75FH6AePPkY/eOQR8KU+rKiZWVo1pFGuxoEYUb1vWCjvilfoF/QE/eKVtQWllUXrZtTNKDn03/Nks9kGDYXT69qWL2+rmVIn0jOT/vxkycz62LyYaMh3VeZ3dORXuvKHgRJqxeJbW/VzKDS8rHZIQ3B4alnXgctWHOzqOnjiYJdwb03JxOHlDUJ7qCVUnUg9Fe8srq9b+uzGKVM2/mop6n/hkb4Z66oDC43whj07Rx4/pG75HcurJ4Wa6bU5CypCsXlsfSK/Znq6RnwkjuPBjDBM7RX5loUwHDw23VzOu81hU2VPRscKRh1x/aE0ze63e2sA5t03f4w2LwZqzega+bUtW16X7kMaoc7bPX/+7nmw/D6Mlo7Os/ttIS8tm3vPnGjnj0YfPeKpqfHAx5uef3HTZdU/Ptq5a+6cnZ1/qA0dZ/FEryPbP8B5nU/KM3ybb+Lo+jrbxkF+yPZyHBB3IamOOxRkxpn9GyTW7wWSXX76Hn3P35UMwHLZ1DC6wSSr3Kx+VN/iOcrs6Kl9LAF9H/z8hR1Sqc9XKhHdrvUCcqnWgT0WByFG0WTMiduMEHUIt8Ga1Od0O6wULBTDggVWpv4u5NPtqc9hDb0dLt+d+iL1xW61lb5FD0F56lnw0V/RtyAC4+kH9CFxL/0TTIDI2W/o28t66EvQ0rOMt10ghCpzsO0uMoa3XRUFNU9iKoQKeaBrOEwcMr6F65vtb8TNyLCYcqGzMKaZcMuiBxVo+dXZjdbIHFlWrEU1rjMGWaVX5g11Z1vL8suaK4RTXtlpSa2ylcr/dFpLyz6wFouCS5RcFvr3Yp+vGEZk2wtUsmgRpbTFarVV2MyCgTYU5IqyWlkh2xxVVSV09S/tZW5zn0GRcZ4U5jnzDLtyrT5vcbDYk2PhOMX2R9h+0GDtb9BmCPnezY/0bgfHOgFnLd9TYnsdqPw5PDaPGBZ6xd5+wjRETJ7i8jylIRPW+klmLmHJCmPHOdwqZYTMRqCESyFFKBHf7GKApmAwRdg+U5Ldk8weC5+HZcSftmtm2DQza+q7f4hNeCdZTKhsmcQ6cIH8XHf3c/Qs/ZCefX716ufhjrXv3NvZee87a3fRr3buhKw/wdBO+rRKVj+vJ2LJkefji8+fXd2588RnJ3Z27qRf0dcxuUToXPqfnTAV3tPnB9aJ8L1IE957GY7arSLrVQ/rTKmL72ZqTGs+tUfS+B4m/ezUnn7siD2nCBncrmxSTKp0W53JEw3b8LAw45c+rbj+mh4vNlQ+VlhYRqFzBg9NwM5ORvu4xiniOdXrRKYcSODZqWhn2RLStLOYjCVIsbNwIOCkhD2HXkx5fl1cZChpxLrUoqasioxHxS16iZ4mqK0PowJRAnU/VFUJy1JC4RJ1xRO8DMK0KYebmya/s8bSb0AwqFij4pxQETyNVRLcDtTnDn9X5QnJGajr4H3rYpwblaQJZdwohqdhm5g+MmFPOowc1Wb6oZ7OvHtuO5vVmF+/pwGU6GnYM37Q9DVzFsh3NQWi+qY5Xx8zYaZ6tXo1tseNCAcOQB2tRYA4qAFvPt+jUyFurx+BsAt/Fsrmpk6VNzUGvTnWYcLX+4WyA/6uwIFCs7lwf+rkgQCG/cIwnspfU5pnDIWnS88dSJ3c7/cfKGptLTwglGHwoL9rYG1ynC8gJdh3KqCUZjv15W7JjOyOIM9HBEMJhdhHNGq6+9n0+oFhkLVzdd/q9Ue+PLKenQAb/LfVmSe4dHY9eze8mX64fv2AfTpdFm/pBcWRdFGoXtgtUY9NNsHfvlVmauxAngZBE1dT07fKpd+cq5VhsG2cr7cSUsFtVza2FeOJMjj6gXqIOIw4UGzpCv+mOkomIb6S+jf14vKNQKWBKO+QXKxTKaJbNdv/Z9AWNEIMqyIagXe8EZi2FUNVI8aNjgLnXYifMpyl8hL6JfKeL5dSBc4shRwYCjl+WEu3Tnrl3Zcn0lvh8kmvrFjxypQUYWauU/SlhRxbZXyTypf09CyDM3BmWU9PXyVcAT2TZ0yfTG+lW/EKL+3RXzglRDk6n1dn5ofh46uOgDcIjDWyuiOtjDNLeByCFgcE46whqEtk8N7PmSM2KK7zTYkUeWC/ckoAWMBbcucvdm2/qH3FK0lY+8fQdWfJdRpt5M268//eSG3h1YC3u257eAVvWsuaEaf2rEDIgf2eoj2nhJN0L2vTlO3e6ZPhinfhQ54DvMoauDf1Fm/4V13LeRNfWrNgJQdjEBho6b4S2P/M7IX1MwIKo15IaLSX9mqQ4CdIyBfcayxNen+R29HPz8NA+nrFhNbX29eriQl+EhPqBfcaS8PmqJaWKxbEsyjzcLFVGqJ+ziLsKutBhlWIVHJ4wPgZPveTiQ44mo49ySgg0DCB4OxPA76mg4+eQuGJEYoOIOjiX2+KqyACXjMH5w1QirxhBzGy9WrBP5CLQSW0/BD1U/8hWi5M3L9f+jE9mPoUJtL9ggPaQHCkPmXYovMFDbs2i692BN4gMxqj1Ne0PqKJuGAUBpiUGahTvdBLE+f4MeMLRu6TZAT8M3kYi0jhT8TfGQxzF5pedmJVJRLvv16lF98zkDzGdIwCW90OHIoaQfXjfMQ+6u3TaELUUo8vEGak9moLEgs0mIThBQqW3qdBL7acPetbwJ/lskdp/oS5syE2Ztx8VOQ5jPYgDCVS/E1WFegdjDc5uLY5g+a+Gp6IUO4z1aMYcwLeZEGgCnxmphyhmAWi7zm09ZMjdPfvj8I2mAYlr67qJ/Me/Jx+TA880b23G//kjLvE72HREZGsepX+lT5JLz/6BCSh6PMH5/VpPB2X7f3fADEo6ovYG07uo+JCecJ1UlyiLcgsBpZmMXgs6luVeZErZnxzunVZs8PhE76u7L68u5L+H193f4zQj8LC3LHa/LgvMbNrmPTO2AkTxp45ylcVRNmeAQ5MZp/BhtgQ1nkNQwXUXeJc3+RIhqCG6Oth0GB3sMYH1ZAgcBqleJnHFv1tkv7mpVkPbm0E1AoC0S2TmIMOHqi+JmH4S9d/MofFg2/G4i95YyWcSo8dD7U3AWoT/tjwU0IZ28h47PiSOSwCyutLaS3vPd3fivsxVWa8mPLAyzg9Liu7m7sz+bwDTkt8rXGazJ2XOIJrLLRmytRuXDcauzLXpZR2NcP2qxk2MD8lQZuypntqmmy9TJvZnUA2snUBP1HY3Mgjhbp/HIKnyrA+GjGjClHAii+wi+VccsyZSpfT5VPn7IR9Nz733I2Ys0qYNFl7DB/AXVOPrd0FWSnnc2B4jjlTMTxbwPBMPsmWEJIJH8QdMucl9KR2Uj65IEVgr9aLY4Vz1EAGuBQpwsFi48WuBvI10Q82k3GZ4pHionAQZ7CQIZhHEFd1HrMLO0w4iKwJzALi8JjKcIJxDwMTTn34y18E7ZOa0f4/PnTz6UcXrZc3DVs69i8pzfLO+KlLnljF4pRSvP8k1L1xzNP0b1X0jH3zqyDeugvsdPKlrz48Dt+3vDP215euPbKtFBR8SFNMJxGxrZLGW8OWpcb87tL1ZPjDOoG1j89EfzrFWVRP+vC9PsKd3RjSzBASBtZnKtczy9gq5/wgfQGHlN7vM6fXizCM/gu2a9QCa6UH04HuvlE4Mdgw/H33mjW718j30zLEJyLsSZ3Sry0L2VOcPvTwGpbkPG6icj7L8IW7kg1emTL3HUNVCa+QPLceEYnTsSJ3IBu8GAnLisuUdN4ZphzXmTJJ4475gqs/7f2pM2Vd/Mhc8Hi4EEK1Ecmzz8TSCPu48Bj8B2nnRuZHmRFDNKGrA/ycwMqx5zgI/A3QX6T6ZZ9OjCVOm5lE0nM9yzVK5oTKCB0j4kRlumgJ12d1cRiJNUHajsVtTNw+OWizT1UPb2xdVxV67vI9pwolwvWyHWWejYfD1Us3nNrT0srXpqaCKqf9Ye1Wxr+DbGEEA5ERbCdNRFquHEwmP207mqQN9CS8Bm1tnyaPt83e20/2yruSx/ARjKcN4GaPjuNdW2rHXiAMkIHJLpnRKPVc/4t6RWS9Qtym+Af5f+UnuKwRsPCoByQCn1PLLJjFXFTpL+THqYVaOmCWBrO4HRIX2B8UTX8H1zySWyS1EplFf8G8UGHWLGqRH++gv8B3O+BzrssnFFYPxuiYgASEiFRvCllNr8xksYDUJsHTMSxJsHRYFyMm41YCIYE/jQlsDKZ6B3wJRKwe88bEGSxyd9o+Pg8BVyhWTX+Gc5st0syzNE+QNe6STIwiq7zGSBmbAWeJoDsecx5fwG5kTfm2/ucjQZzZNShz4lwTJBl9jx3xsM03+D48SB/8vnthgEylMqE+7cLAgAN0xgP6e0K8awRuB+G2DFbnb+1iZ5CF4ZisG2T4WbeNMEMJs5718TiJObNo6dUu4qM0jvD8GX4FLsg/zASuzRcdVI4YZYownCtKYxlpmQI5K2NWwEyZqOExxfhcwQeYituv2xAydnCGM8U6FjN5Lqev4LEKCiOAIRBEfIc3iF/6cJBv+vQn/eQnn96kcODglnD9mnrzbvqvX5bSf0Ju6S8hm9FEoq97Ja3FMXxOAwBDq8Eg4IIBFJCwesz1FnDe8NZi43SHX0U5vLGqfVypDgoCVk3HLmBmGyZH8OJ2bzzsqHSlMeIc9pQPYI9ej+8rPe1JSDJ10If1/JI5HOnQ+R1lCtxfn/EqI7fgmdjWlkfl8hqBGDECFy3zLmf6JzNHpN6bKwToXIGNEMV1xy1yKMD38Qfn2bDymZgo5c4cePJFue86MKjFNP2MZbNhuUpNsdXI8gaUm/q6TY+5iY84kxBNyGrTs5nVLRCJc41F4apFIjN1+4hYX1/fd4TZo9hU0vT5fBZLi/80zjRNAdFyj7pAXUCq+M6K6ldUixpkRDFoCQTlINMf48G4HIuLcQeictwh2h1+h2rHseaT216vLmikv6tptm95Y4Sz5Y0ttqZa+rvGTwyGTxqhrrbJtuWNkdaRb9xqb6qFOhZNN3H4FU7fam+uOZdSzyA3O4E5NNfoST/RM771dcy4jGM3ucDGYEV9/rwvH4Ab+VWI+fnOaRyUC7+BkOo3n96yaYNweHwf4aHUmPHf+iAidWTL6c3jU2M2bGJX4fCGb/GH4nNypTyjVyCgstXPlrusc4eUfmEsCGGYsEkj4ezRY/XF/SaTwWx1n5srOo8y6SyRxWZEvUx0qGbceoBz8ZTsyxH965GBbxIyOK+7D4n48AwrnmTwftD+QyYtkiELm576dyB6iSkuIAa+nyCDvp/A0tLfT4jAHbwN34u5ZBDm6kbwNNalQRc7x4AAeEZfsXj+OgO6vKoixyOWv4LaFcNcjqnG84rxpH+DihPS4CoMFAm82rj0M0XzL1Gw/0UtUzy+hO1mrR+oxoXzznLhvJMym3TI1zy2MDK3C+edsExH+720V9v7rQlXz4vpSzJooWk5dl55ju/+wodx1m995ZMazFsvKOjskfP0yPPKCH93GfrONa4qB9+uZkDLfqUQjnIPqO8pH170t7ffsf/n825aUlHkLCyKjC52vmUyj5n+fXUSGhqndSdGXrR/XEFBia+k2Du0umpkg7fUaquOpH3hdZ1Xn9Xsp+K8YYYKjrknqRuHzQ0nL0jLEhpZ2hSOvESYwZ6lZcyHupk9I2MHYUzHTOz4RhgVg7AFj6DPb0HNLlzMggqjGimWeQe00/85UamlPuvgtkitYwTeybwu3I7JE6bDvO7/xPrkKtvYTgbTQFsEexnEW8CF0horv35CU/DGZ1+YcP/9E1741caK5gk4ZZeO+c1r97YMHXP33WOGttz7+ktj2Jwgl8BJdafixhWsfw3F7F8iqBbRwQzaQeGyE/Qo1Jw4Kh09cfToCag52/U1kK/lhm3IoRu2QQO8to2+Rl/bBq/RshaJtDCdjOunaTtQEdv9MQpRFLSoxX3LgTjKtTREubBJNxIpiCqsnX0oqges7lEm33UTrcxhhFnz8IRU9lwKbtMfMPp+ux6lP1wP2w+Xn/p3JWvkO8os+4EyLSj+g+oPldoHL8+lOw50/lDJOH1e7mSJGIqm56iMcgzLNRkF5rRgCqIIY/Y0k8CtngyARYJyaEfbc0v6OR7LCWYdpb18CrMPyujxHW0Tqabfp/0ldFzP4z7Vg3OVL8iLfMf752wPIuuTjCzycgdl0Weq5w4WHD0kPsnHrk4mV48dt6Il3ODzNYRbVozjMcB7SsaVxzRSdogDoUEYx/lRNrPSQBrEeYnMv9kT5Fv1wC0jDLgljS2shmHdKdLtDxcxNS/FxaPE51EfSW6Nr1lTPvfiem0wd+K2hguHlDkEurFzZE+Uf1qncEW4j583nwb76c1slxR5h3TeGGq6J6rG6SbTNwQiz8I2FBAn99f1cJRUVBt3QfF5mCmOQWglFOlBH8qkZV+uXr1w6sqFf/0NnQbk+iVz6uouXbt96YK3FG3smHuW3ZinFt20+r6nhV8NH9daWkpb6PFJU28jaTs6kTP7wz4xrHriYYsv7pFna19oFTRRwS6oXnKFikvOtM1b49wim2EQ6+eMYwmYgswRk7MLOJCWxzhxe/s5Vko6Xel7U0j0phaAm00QI/ezZv3KeIOR5HB/ZxuOIMp+i8ljYR8asNk2BEC3DKt+I6BKr+nKDWjf8DHTzS2gm5i1bzROhPFeThNjiqVnDC9shEHjLErjagYztmnny0kz+Y/zZZgjqKgjuLtlMF4j5EONMEJ1jIAyCNRAvhQcAY54cIQQCKoO/MsXWSK8RVkXR3jmCeP5QhnGYaAM8iGuloEazzcEK/HGEccMJYdaIyvMXdNRI48QkDiPEPBtScWkIuboyMdZd6GIzBPFLNnkEsjLkGhT8n1FhcMiFUEAWXbkWnL9geJRzsJch5xX6nCGC8XcGkOhrSJ/Yo9k9Ug2Q/OkZqUgJ2R3j3FdtuidJwO1bl+NSynJrk2Wx3ODxV6Lx2MszbYmY0PlvOxQgbMsz+fMcjsNhaFgnVLamD8kWIUKowEMcpYMTtc1726SsrJHubPUPIMh35rbHBTyLaPrvEaDx1BTWyY4Suoryk2CRxr6LcH9L0mxIMPum/zHp7LCRQaLTSyNueOq2ZdndfogS/VnNcdkVbD7so0VTtHuNNqz1ycFk5wlGLN8pc0em9VkMIH/ZsgxGBTVLDrkItvQfHOJN+AwmbPiVos9x1SgWixyvsliLXQ2O2srKt2uSqfRPKW2oNWUZcpxlIcWz/gJ7X+mPOeWEa3DSgqiLXK2Uc01Fxepdq9FrjMWZEuWxpGjyzplh8mpcBm6V3SrC6SMDfJbPH6Az/t+fcMNv75BFAdfpJM38Ougv7SfJLO79DJUxzlvIF9rYq84YK/BGwNbKyRqArEXUb8vwd6REnwvC+ORa/BYA+lLcDtOIr3PJXD+wqL1PAfbACpILRmmf6+sey4hJ/Po3y2nv5YxIWOLDYd0VHl6wUtpYodI08i/Ru4njWOZLtwYuPqmrh083KfvRQrJtMPI2LXeB5jc6NIkn3fdGIZ8oY5WB7WP29H1gHftWIyw87QHMoRZGdAtzv/2PS1LMps7me+4gejSpI8wBV5EAU55jMhAgmlOeFCSCQHnYXqY41ucY4BGcvX9EKOIOjEEWyS+Y+rzBiEaDCj5oDBfLodubiyDcyYaAp9igf/0+8EP3MtP/G0M2xGjBxPOTv9Ef5c/X9Dy/RjKdya0p6KBQNSvatSBtDPX3xWAclG2jZu+8QyNTkx2xaBNSzjzMbH+VheGOp2J1L/wJX+UkMHfEo4mE0k7mUeW8D2jtE9gC8SZU6DHNBDDfGzZ8A6KiHLlf2C0mdUHrxlQH/D8ueCqDgx1Mpoe9rGN/Sjx0kG2m5MOMiealD4N+tJq2vmX+fq484nwAJKqD9L3Y9Z5wZeMPpCeJ3j7wJ5TkJk2OJPoB6f2pMXKmeQgZTiZmTsC9skpNaH08v00ou/Lh42CiGzXwbZHM2tWfsS3plXMFmh3v84k6fH/Hsc9A/Cnb0TJPdEWoe+kwGcPqoOzerYxkxi7F36W3sETYBWuqZ/imvLwvRYH9w6Iu8BhYh7XgzrZFrb5TC2Q6WaZ3rGMPkCX0AeW3TH2lR5NS/edpvW8Qn+kd9OROY/+9s1H5rRdYoF/aQ+c64UHNJptWSqm0o0W0nOCkMk4H3SLVyX75tdcCqytwyESZFt85UFlIMIcDwR9ujUsEg+YeC3xoUtwtwjML47dFah2m98bCOreoI48QeWbBG/neucuCkQC18+lX+28h/5rzg14s3iOJ+9t9rS39D68XfrY5yB9/thSDO4qSWk7U8Pn/mNT5+M/aarY8mu+qTCybRnt38rzS5x49MpbNl/52HH9bivAsgmtmGTqgiMg6HHXY1aY5fX6He0/0tmh/WLzwpXhzsTcWyZnbF3aoL1swZNGC1nTTXps3TOeInHGwMaQMgSAAQ7AuI09bPJWAclCLcHqUO3EIb9+371H6eX0SfrXV1cJpOv5S6D+sBgOU7LqVSiBabDt6Ocnnn+a/m06r8OrOBca+f8FUcr9zjhX5CTaGg8rAjOvBoRg2AXumDR1z5o1UyJzws/2Wr98up88/aW11/EOFB8XtTVTBDJlTXhOhJKpBYfoF0PoF1AwBAoObT50KO3TLGJLB++pySS9p3buO2pHxoLDDZ+mwWE13SeDzpxAZc6MOn1XPKTfy+gJvL+zM9+Z6T/mLsDwltnSGbHWQ6y/+TduhNfNyHbRQPTIoh//PCIKMe654JHIOroVqtahHh25Eqro1nXHhMdT77yTOpE68U7qHeFx+WN6zx/onvffh4V/EFENodekboRb6DrhGrgx8917poyMP4SnGFCFH5TJsWOo7g96Mb0ZN7h++YPfFnklL8zjWKaK386MVrD6wbK07x7X1ezI8CuZ/cmIs4vtZnOc9nBvczbv1EAQYZk9hfq43cFs1gof036udnWxweCBueOHzLphj77r20f0O8q4MQcyLpaBpP/TkKZrF3Xq8ZSH4cLv9arJBLLoO7029Z3hgId9i8x2j+3hWJhv3NnjulJSnv5M2Wp31PNHkqPebhl4xp+EM0/s4njohol/27r1b3Q/vZ3uZyGxy+LKN+bn/Z3+NXb1xNEmk6nI6cz95SU//uKiXK2kPLiJPvPIuFunjA6HyhSn0vPLn0OgK8epuWrCd9Dr3+l7JBEO5Lvlx359GGZfXaRqg7OGiby4s8vykRcX5qlbTWaTIbvYbHPlOpsacj6qcTVYJ8/GEk3NJZGs3GDbqFxwRvxh57xZYduYQDg3MCWZc15fidybtIjNdh//TwL4ZrzoyzARWxxn7y6hZFffxcpwWk3v/+yvlChLzpyFiz+Fx+THaDUcYwccP/s8HcUIiPR6apQ45+yOY8c4DqVtSen95cHaJhPPusJznmcmV3XYyuQx/Pz/AAfdhq542o2QsWrDMBCGfyVOSjOUDn4AdSlJiY1sMCTZ0hQHQqcM6RyMahsSKVj2EChd+wgd+wZ9s7xDz4pKl0IrkO7T3a+73wZwhU8wnNcNHhwzDPDiuIMLvDvu4hYnxx4G7M5xD9fsyXGf8q+kZN4l3e7tq5YZfDw77tDcN8ddPOLDsQef+Y574Cxx3Kd8gQU0DjiiQokcBWpwDJFhRDGGQIQEY+IV6SQU0RwGezR0GpvBQh+OVZkXNR9mIx6LKBnzlZaKz82+MUaSZGmV0k7JqJOit1hKJasy04p4TcWcmu6wJRHWMm92W4LUimsbK1JIayskYxwz2r81PlciTBBgSvv7M5BqVae6yiWPQ8Fn/McAXaJJMA1a8/9wu7FFQ2Vtf4mwE0IbW2fYyMqUWnEholAIwf/u+QXtVlqxAAAAeNpt0meTFVUUheH7DhkJEgQJgpIFhdvn7NM9gxKGCZKzKGZyUHJGySAgSq7i5wrFfYdPdFXX+tRP9V61Wl2tt8//rdbh1vueV29eWl2tYXQxjOGMYCSjGM0YxvIB4xjPBCbyIZOYzBSm8hHTmM7HzGAms5jNJ8xhLp/yGfOYzwIWsojFLOFzlrKML/iS5aygTUUiExRqGrrpYSVf8TWrWM0a1tLLOvroZ4BBvmE9G9jIJjazha1sYzs72MkudvMte/iO79nLD/zIT/zML/zKb+xjPwc4yCEOc4SjHOM4v/MHJzjJKU5zhrOc4zwXuMglLnOFq/zJX1zjOje4yS1uc4e73ONv7vOAh/zDI/7lPx7zhKc84zkveDnqwsljg1W7bVZmMrMZZjFrszG7zZ63mfSSXtJLekkv6SW9pJf00pBX6VV6lV6lV+lVepVepVfpVXpJL+klvaSX9JJe6njZu7J3Ze/K3pW9K3tXbg9915id/wid0Amd0Amd0Amd0Il3TueesJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn0h6SS/pZb2sl/WyXtbLelkv62W9rBd6oRd6oRd6oRd6oRd6oVf0il7RK3pFr+gVvaJX9IperVfr1Xq1Xq1X69V6tV6tV+s1eo1eo9foNXqNXtPxijsr7qy4s+LOijsr7qy0h75rzG6zx+w115l9Zr85YA520l0Wd1ncZXGXxV0Wd1ncZama1x+EcTsAAAAB//8AAnjaY2BgYGQAgosrjpwF0ZcUq9bCaABTzgdAAAA=") format("woff"),
+ url("./Genericons.ttf") format("truetype"),
+ url("./Genericons.svg#Genericons") format("svg");
+ font-weight: normal;
+ font-style: normal;
+}
+
+@media screen and (-webkit-min-device-pixel-ratio:0) {
+ @font-face {
+ font-family: "Genericons";
+ src: url("./Genericons.svg#Genericons") format("svg");
+ }
+}
+
+
+/**
+ * All Genericons
+ */
+
+.genericon {
+ font-size: 16px;
+ vertical-align: top;
+ text-align: center;
+ -moz-transition: color .1s ease-in 0;
+ -webkit-transition: color .1s ease-in 0;
+ display: inline-block;
+ font-family: "Genericons";
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ line-height: 1;
+ text-decoration: inherit;
+ text-transform: none;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ speak: none;
+}
+
+
+/**
+ * Helper classes
+ */
+
+.genericon-rotate-90 {
+ -webkit-transform: rotate(90deg);
+ -moz-transform: rotate(90deg);
+ -ms-transform: rotate(90deg);
+ -o-transform: rotate(90deg);
+ transform: rotate(90deg);
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
+}
+
+.genericon-rotate-180 {
+ -webkit-transform: rotate(180deg);
+ -moz-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ -o-transform: rotate(180deg);
+ transform: rotate(180deg);
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
+}
+
+.genericon-rotate-270 {
+ -webkit-transform: rotate(270deg);
+ -moz-transform: rotate(270deg);
+ -ms-transform: rotate(270deg);
+ -o-transform: rotate(270deg);
+ transform: rotate(270deg);
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
+}
+
+.genericon-flip-horizontal {
+ -webkit-transform: scale(-1, 1);
+ -moz-transform: scale(-1, 1);
+ -ms-transform: scale(-1, 1);
+ -o-transform: scale(-1, 1);
+ transform: scale(-1, 1);
+}
+
+.genericon-flip-vertical {
+ -webkit-transform: scale(1, -1);
+ -moz-transform: scale(1, -1);
+ -ms-transform: scale(1, -1);
+ -o-transform: scale(1, -1);
+ transform: scale(1, -1);
+}
+
+
+/**
+ * Individual icons
+ */
+
+.genericon-404:before { content: "\f423"; }
+.genericon-activity:before { content: "\f508"; }
+.genericon-anchor:before { content: "\f509"; }
+.genericon-aside:before { content: "\f101"; }
+.genericon-attachment:before { content: "\f416"; }
+.genericon-audio:before { content: "\f109"; }
+.genericon-bold:before { content: "\f471"; }
+.genericon-book:before { content: "\f444"; }
+.genericon-bug:before { content: "\f50a"; }
+.genericon-cart:before { content: "\f447"; }
+.genericon-category:before { content: "\f301"; }
+.genericon-chat:before { content: "\f108"; }
+.genericon-checkmark:before { content: "\f418"; }
+.genericon-close:before { content: "\f405"; }
+.genericon-close-alt:before { content: "\f406"; }
+.genericon-cloud:before { content: "\f426"; }
+.genericon-cloud-download:before { content: "\f440"; }
+.genericon-cloud-upload:before { content: "\f441"; }
+.genericon-code:before { content: "\f462"; }
+.genericon-codepen:before { content: "\f216"; }
+.genericon-cog:before { content: "\f445"; }
+.genericon-collapse:before { content: "\f432"; }
+.genericon-comment:before { content: "\f300"; }
+.genericon-day:before { content: "\f305"; }
+.genericon-digg:before { content: "\f221"; }
+.genericon-document:before { content: "\f443"; }
+.genericon-dot:before { content: "\f428"; }
+.genericon-downarrow:before { content: "\f502"; }
+.genericon-download:before { content: "\f50b"; }
+.genericon-draggable:before { content: "\f436"; }
+.genericon-dribbble:before { content: "\f201"; }
+.genericon-dropbox:before { content: "\f225"; }
+.genericon-dropdown:before { content: "\f433"; }
+.genericon-dropdown-left:before { content: "\f434"; }
+.genericon-edit:before { content: "\f411"; }
+.genericon-ellipsis:before { content: "\f476"; }
+.genericon-expand:before { content: "\f431"; }
+.genericon-external:before { content: "\f442"; }
+.genericon-facebook:before { content: "\f203"; }
+.genericon-facebook-alt:before { content: "\f204"; }
+.genericon-fastforward:before { content: "\f458"; }
+.genericon-feed:before { content: "\f413"; }
+.genericon-flag:before { content: "\f468"; }
+.genericon-flickr:before { content: "\f211"; }
+.genericon-foursquare:before { content: "\f226"; }
+.genericon-fullscreen:before { content: "\f474"; }
+.genericon-gallery:before { content: "\f103"; }
+.genericon-github:before { content: "\f200"; }
+.genericon-googleplus:before { content: "\f206"; }
+.genericon-googleplus-alt:before { content: "\f218"; }
+.genericon-handset:before { content: "\f50c"; }
+.genericon-heart:before { content: "\f461"; }
+.genericon-help:before { content: "\f457"; }
+.genericon-hide:before { content: "\f404"; }
+.genericon-hierarchy:before { content: "\f505"; }
+.genericon-home:before { content: "\f409"; }
+.genericon-image:before { content: "\f102"; }
+.genericon-info:before { content: "\f455"; }
+.genericon-instagram:before { content: "\f215"; }
+.genericon-italic:before { content: "\f472"; }
+.genericon-key:before { content: "\f427"; }
+.genericon-leftarrow:before { content: "\f503"; }
+.genericon-link:before { content: "\f107"; }
+.genericon-linkedin:before { content: "\f207"; }
+.genericon-linkedin-alt:before { content: "\f208"; }
+.genericon-location:before { content: "\f417"; }
+.genericon-lock:before { content: "\f470"; }
+.genericon-mail:before { content: "\f410"; }
+.genericon-maximize:before { content: "\f422"; }
+.genericon-menu:before { content: "\f419"; }
+.genericon-microphone:before { content: "\f50d"; }
+.genericon-minimize:before { content: "\f421"; }
+.genericon-minus:before { content: "\f50e"; }
+.genericon-month:before { content: "\f307"; }
+.genericon-move:before { content: "\f50f"; }
+.genericon-next:before { content: "\f429"; }
+.genericon-notice:before { content: "\f456"; }
+.genericon-paintbrush:before { content: "\f506"; }
+.genericon-path:before { content: "\f219"; }
+.genericon-pause:before { content: "\f448"; }
+.genericon-phone:before { content: "\f437"; }
+.genericon-picture:before { content: "\f473"; }
+.genericon-pinned:before { content: "\f308"; }
+.genericon-pinterest:before { content: "\f209"; }
+.genericon-pinterest-alt:before { content: "\f210"; }
+.genericon-play:before { content: "\f452"; }
+.genericon-plugin:before { content: "\f439"; }
+.genericon-plus:before { content: "\f510"; }
+.genericon-pocket:before { content: "\f224"; }
+.genericon-polldaddy:before { content: "\f217"; }
+.genericon-portfolio:before { content: "\f460"; }
+.genericon-previous:before { content: "\f430"; }
+.genericon-print:before { content: "\f469"; }
+.genericon-quote:before { content: "\f106"; }
+.genericon-rating-empty:before { content: "\f511"; }
+.genericon-rating-full:before { content: "\f512"; }
+.genericon-rating-half:before { content: "\f513"; }
+.genericon-reddit:before { content: "\f222"; }
+.genericon-refresh:before { content: "\f420"; }
+.genericon-reply:before { content: "\f412"; }
+.genericon-reply-alt:before { content: "\f466"; }
+.genericon-reply-single:before { content: "\f467"; }
+.genericon-rewind:before { content: "\f459"; }
+.genericon-rightarrow:before { content: "\f501"; }
+.genericon-search:before { content: "\f400"; }
+.genericon-send-to-phone:before { content: "\f438"; }
+.genericon-send-to-tablet:before { content: "\f454"; }
+.genericon-share:before { content: "\f415"; }
+.genericon-show:before { content: "\f403"; }
+.genericon-shuffle:before { content: "\f514"; }
+.genericon-sitemap:before { content: "\f507"; }
+.genericon-skip-ahead:before { content: "\f451"; }
+.genericon-skip-back:before { content: "\f450"; }
+.genericon-skype:before { content: "\f220"; }
+.genericon-spam:before { content: "\f424"; }
+.genericon-spotify:before { content: "\f515"; }
+.genericon-standard:before { content: "\f100"; }
+.genericon-star:before { content: "\f408"; }
+.genericon-status:before { content: "\f105"; }
+.genericon-stop:before { content: "\f449"; }
+.genericon-stumbleupon:before { content: "\f223"; }
+.genericon-subscribe:before { content: "\f463"; }
+.genericon-subscribed:before { content: "\f465"; }
+.genericon-summary:before { content: "\f425"; }
+.genericon-tablet:before { content: "\f453"; }
+.genericon-tag:before { content: "\f302"; }
+.genericon-time:before { content: "\f303"; }
+.genericon-top:before { content: "\f435"; }
+.genericon-trash:before { content: "\f407"; }
+.genericon-tumblr:before { content: "\f214"; }
+.genericon-twitch:before { content: "\f516"; }
+.genericon-twitter:before { content: "\f202"; }
+.genericon-unapprove:before { content: "\f446"; }
+.genericon-unsubscribe:before { content: "\f464"; }
+.genericon-unzoom:before { content: "\f401"; }
+.genericon-uparrow:before { content: "\f500"; }
+.genericon-user:before { content: "\f304"; }
+.genericon-video:before { content: "\f104"; }
+.genericon-videocamera:before { content: "\f517"; }
+.genericon-vimeo:before { content: "\f212"; }
+.genericon-warning:before { content: "\f414"; }
+.genericon-website:before { content: "\f475"; }
+.genericon-week:before { content: "\f306"; }
+.genericon-wordpress:before { content: "\f205"; }
+.genericon-xpost:before { content: "\f504"; }
+.genericon-youtube:before { content: "\f213"; }
+.genericon-zoom:before { content: "\f402"; }
+
+
+
+
--- /dev/null
+<?php
+/**
+ * The template for displaying the header
+ *
+ * Displays all of the head element and everything up until the "site-content" div.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+?><!DOCTYPE html>
+<html <?php language_attributes(); ?> class="no-js">
+<head>
+ <meta charset="<?php bloginfo( 'charset' ); ?>">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="profile" href="http://gmpg.org/xfn/11">
+ <?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
+ <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
+ <?php endif; ?>
+ <?php wp_head(); ?>
+</head>
+
+<body <?php body_class(); ?>>
+<div id="page" class="hfeed site">
+ <div class="site-inner">
+ <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentysixteen' ); ?></a>
+
+ <header id="masthead" class="site-header" role="banner">
+ <div class="site-header-main">
+ <div class="site-branding">
+ <?php if ( is_front_page() && is_home() ) : ?>
+ <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
+ <?php else : ?>
+ <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
+ <?php endif;
+
+ $description = get_bloginfo( 'description', 'display' );
+ if ( $description || is_customize_preview() ) : ?>
+ <p class="site-description"><?php echo $description; ?></p>
+ <?php endif; ?>
+ </div><!-- .site-branding -->
+
+ <?php if ( has_nav_menu( 'primary' ) || has_nav_menu( 'social' ) ) : ?>
+ <button id="menu-toggle" class="menu-toggle"><?php _e( 'Menu', 'twentysixteen' ); ?></button>
+
+ <div id="site-header-menu" class="site-header-menu">
+ <?php if ( has_nav_menu( 'primary' ) ) : ?>
+ <nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php _e( 'Primary Menu', 'twentysixteen' ); ?>">
+ <?php
+ wp_nav_menu( array(
+ 'theme_location' => 'primary',
+ 'menu_class' => 'primary-menu',
+ ) );
+ ?>
+ </nav><!-- .main-navigation -->
+ <?php endif; ?>
+
+ <?php if ( has_nav_menu( 'social' ) ) : ?>
+ <nav id="social-navigation" class="social-navigation" role="navigation" aria-label="<?php _e( 'Social Links Menu', 'twentysixteen' ); ?>">
+ <?php
+ wp_nav_menu( array(
+ 'theme_location' => 'social',
+ 'menu_class' => 'social-links-menu',
+ 'depth' => 1,
+ 'link_before' => '<span class="screen-reader-text">',
+ 'link_after' => '</span>',
+ ) );
+ ?>
+ </nav><!-- .social-navigation -->
+ <?php endif; ?>
+ </div><!-- .site-header-menu -->
+ <?php endif; ?>
+ </div><!-- .site-header-main -->
+
+ <?php if ( get_header_image() ) : ?>
+ <div class="header-image">
+ <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
+ <img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
+ </a>
+ </div>
+ <?php endif; // End header image check. ?>
+ </header><!-- .site-header -->
+
+ <div id="content" class="site-content">
--- /dev/null
+<?php
+/**
+ * The template for displaying image attachments
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+get_header(); ?>
+
+ <div id="primary" class="content-area">
+ <main id="main" class="site-main" role="main">
+
+ <?php
+ // Start the loop.
+ while ( have_posts() ) : the_post();
+ ?>
+
+ <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+
+ <nav id="image-navigation" class="navigation image-navigation">
+ <div class="nav-links">
+ <div class="nav-previous"><?php previous_image_link( false, __( 'Previous Image', 'twentysixteen' ) ); ?></div>
+ <div class="nav-next"><?php next_image_link( false, __( 'Next Image', 'twentysixteen' ) ); ?></div>
+ </div><!-- .nav-links -->
+ </nav><!-- .image-navigation -->
+
+ <header class="entry-header">
+ <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
+ </header><!-- .entry-header -->
+
+ <div class="entry-content">
+
+ <div class="entry-attachment">
+ <?php
+ /**
+ * Filter the default twentysixteen image attachment size.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @param string $image_size Image size. Default 'large'.
+ */
+ $image_size = apply_filters( 'twentysixteen_attachment_size', 'large' );
+
+ echo wp_get_attachment_image( get_the_ID(), $image_size );
+ ?>
+
+ <?php twentysixteen_excerpt( 'entry-caption' ); ?>
+
+ </div><!-- .entry-attachment -->
+
+ <?php
+ the_content();
+ wp_link_pages( array(
+ 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>',
+ 'after' => '</div>',
+ 'link_before' => '<span>',
+ 'link_after' => '</span>',
+ 'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%',
+ 'separator' => '<span class="screen-reader-text">, </span>',
+ ) );
+ ?>
+ </div><!-- .entry-content -->
+
+ <footer class="entry-footer">
+ <?php twentysixteen_entry_meta(); ?>
+ <?php
+ // Retrieve attachment metadata.
+ $metadata = wp_get_attachment_metadata();
+ if ( $metadata ) {
+ printf( '<span class="full-size-link"><span class="screen-reader-text">%1$s </span><a href="%2$s">%3$s × %4$s</a></span>',
+ esc_html_x( 'Full size', 'Used before full size attachment link.', 'twentysixteen' ),
+ esc_url( wp_get_attachment_url() ),
+ absint( $metadata['width'] ),
+ absint( $metadata['height'] )
+ );
+ }
+ ?>
+ <?php
+ edit_post_link(
+ sprintf(
+ /* translators: %s: Name of current post */
+ __( 'Edit %s', 'twentysixteen' ),
+ the_title( '<span class="screen-reader-text">', '</span>', false )
+ ),
+ '<span class="edit-link">',
+ '</span>'
+ );
+ ?>
+ </footer><!-- .entry-footer -->
+ </article><!-- #post-## -->
+
+ <?php
+ // If comments are open or we have at least one comment, load up the comment template.
+ if ( comments_open() || get_comments_number() ) {
+ comments_template();
+ }
+
+ // Parent post navigation.
+ the_post_navigation( array(
+ 'prev_text' => _x( '<span class="meta-nav">Published in</span><span class="post-title">%title</span>', 'Parent post link', 'twentysixteen' ),
+ ) );
+ // End the loop.
+ endwhile;
+ ?>
+
+ </main><!-- .site-main -->
+ </div><!-- .content-area -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
--- /dev/null
+<?php
+/**
+ * Twenty Sixteen back compat functionality
+ *
+ * Prevents Twenty Sixteen from running on WordPress versions prior to 4.4,
+ * since this theme is not meant to be backward compatible beyond that and
+ * relies on many newer functions and markup changes introduced in 4.4.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+/**
+ * Prevent switching to Twenty Sixteen on old versions of WordPress.
+ *
+ * Switches to the default theme.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_switch_theme() {
+ switch_theme( WP_DEFAULT_THEME, WP_DEFAULT_THEME );
+
+ unset( $_GET['activated'] );
+
+ add_action( 'admin_notices', 'twentysixteen_upgrade_notice' );
+}
+add_action( 'after_switch_theme', 'twentysixteen_switch_theme' );
+
+/**
+ * Adds a message for unsuccessful theme switch.
+ *
+ * Prints an update nag after an unsuccessful attempt to switch to
+ * Twenty Sixteen on WordPress versions prior to 4.4.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @global string $wp_version WordPress version.
+ */
+function twentysixteen_upgrade_notice() {
+ $message = sprintf( __( 'Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'twentysixteen' ), $GLOBALS['wp_version'] );
+ printf( '<div class="error"><p>%s</p></div>', $message );
+}
+
+/**
+ * Prevents the Customizer from being loaded on WordPress versions prior to 4.4.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @global string $wp_version WordPress version.
+ */
+function twentysixteen_customize() {
+ wp_die( sprintf( __( 'Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'twentysixteen' ), $GLOBALS['wp_version'] ), '', array(
+ 'back_link' => true,
+ ) );
+}
+add_action( 'load-customize.php', 'twentysixteen_customize' );
+
+/**
+ * Prevents the Theme Preview from being loaded on WordPress versions prior to 4.4.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @global string $wp_version WordPress version.
+ */
+function twentysixteen_preview() {
+ if ( isset( $_GET['preview'] ) ) {
+ wp_die( sprintf( __( 'Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'twentysixteen' ), $GLOBALS['wp_version'] ) );
+ }
+}
+add_action( 'template_redirect', 'twentysixteen_preview' );
--- /dev/null
+<?php
+/**
+ * Twenty Sixteen Customizer functionality
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+/**
+ * Sets up the WordPress core custom header and custom background features.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @see twentysixteen_header_style()
+ */
+function twentysixteen_custom_header_and_background() {
+ $color_scheme = twentysixteen_get_color_scheme();
+ $default_background_color = trim( $color_scheme[0], '#' );
+ $default_text_color = trim( $color_scheme[3], '#' );
+
+ /**
+ * Filter the arguments used when adding 'custom-background' support in Twenty Sixteen.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @param array $args {
+ * An array of custom-background support arguments.
+ *
+ * @type string $default-color Default color of the background.
+ * }
+ */
+ add_theme_support( 'custom-background', apply_filters( 'twentysixteen_custom_background_args', array(
+ 'default-color' => $default_background_color,
+ ) ) );
+
+ /**
+ * Filter the arguments used when adding 'custom-header' support in Twenty Sixteen.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @param array $args {
+ * An array of custom-header support arguments.
+ *
+ * @type string $default-text-color Default color of the header text.
+ * @type int $width Width in pixels of the custom header image. Default 1200.
+ * @type int $height Height in pixels of the custom header image. Default 280.
+ * @type bool $flex-height Whether to allow flexible-height header images. Default true.
+ * @type callable $wp-head-callback Callback function used to style the header image and text
+ * displayed on the blog.
+ * }
+ */
+ add_theme_support( 'custom-header', apply_filters( 'twentysixteen_custom_header_args', array(
+ 'default-text-color' => $default_text_color,
+ 'width' => 1200,
+ 'height' => 280,
+ 'flex-height' => true,
+ 'wp-head-callback' => 'twentysixteen_header_style',
+ ) ) );
+}
+add_action( 'after_setup_theme', 'twentysixteen_custom_header_and_background' );
+
+if ( ! function_exists( 'twentysixteen_header_style' ) ) :
+/**
+ * Styles the header text displayed on the site.
+ *
+ * Create your own twentysixteen_header_style() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @see twentysixteen_custom_header_and_background().
+ */
+function twentysixteen_header_style() {
+ // If the header text option is untouched, let's bail.
+ if ( display_header_text() ) {
+ return;
+ }
+
+ // If the header text has been hidden.
+ ?>
+ <style type="text/css" id="twentysixteen-header-css">
+ .site-branding {
+ margin: 0 auto 0 0;
+ }
+
+ .site-branding .site-title,
+ .site-description {
+ clip: rect(1px, 1px, 1px, 1px);
+ position: absolute;
+ }
+ </style>
+ <?php
+}
+endif; // twentysixteen_header_style
+
+/**
+ * Adds postMessage support for site title and description for the Customizer.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @param WP_Customize_Manager $wp_customize The Customizer object.
+ */
+function twentysixteen_customize_register( $wp_customize ) {
+ $color_scheme = twentysixteen_get_color_scheme();
+
+ $wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
+ $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
+
+ // Add color scheme setting and control.
+ $wp_customize->add_setting( 'color_scheme', array(
+ 'default' => 'default',
+ 'sanitize_callback' => 'twentysixteen_sanitize_color_scheme',
+ 'transport' => 'postMessage',
+ ) );
+
+ $wp_customize->add_control( 'color_scheme', array(
+ 'label' => __( 'Base Color Scheme', 'twentysixteen' ),
+ 'section' => 'colors',
+ 'type' => 'select',
+ 'choices' => twentysixteen_get_color_scheme_choices(),
+ 'priority' => 1,
+ ) );
+
+ // Add page background color setting and control.
+ $wp_customize->add_setting( 'page_background_color', array(
+ 'default' => $color_scheme[1],
+ 'sanitize_callback' => 'sanitize_hex_color',
+ 'transport' => 'postMessage',
+ ) );
+
+ $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'page_background_color', array(
+ 'label' => __( 'Page Background Color', 'twentysixteen' ),
+ 'section' => 'colors',
+ ) ) );
+
+ // Remove the core header textcolor control, as it shares the main text color.
+ $wp_customize->remove_control( 'header_textcolor' );
+
+ // Add link color setting and control.
+ $wp_customize->add_setting( 'link_color', array(
+ 'default' => $color_scheme[2],
+ 'sanitize_callback' => 'sanitize_hex_color',
+ 'transport' => 'postMessage',
+ ) );
+
+ $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'link_color', array(
+ 'label' => __( 'Link Color', 'twentysixteen' ),
+ 'section' => 'colors',
+ ) ) );
+
+ // Add main text color setting and control.
+ $wp_customize->add_setting( 'main_text_color', array(
+ 'default' => $color_scheme[3],
+ 'sanitize_callback' => 'sanitize_hex_color',
+ 'transport' => 'postMessage',
+ ) );
+
+ $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'main_text_color', array(
+ 'label' => __( 'Main Text Color', 'twentysixteen' ),
+ 'section' => 'colors',
+ ) ) );
+
+ // Add secondary text color setting and control.
+ $wp_customize->add_setting( 'secondary_text_color', array(
+ 'default' => $color_scheme[4],
+ 'sanitize_callback' => 'sanitize_hex_color',
+ 'transport' => 'postMessage',
+ ) );
+
+ $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'secondary_text_color', array(
+ 'label' => __( 'Secondary Text Color', 'twentysixteen' ),
+ 'section' => 'colors',
+ ) ) );
+}
+add_action( 'customize_register', 'twentysixteen_customize_register', 11 );
+
+/**
+ * Registers color schemes for Twenty Sixteen.
+ *
+ * Can be filtered with {@see 'twentysixteen_color_schemes'}.
+ *
+ * The order of colors in a colors array:
+ * 1. Main Background Color.
+ * 2. Page Background Color.
+ * 3. Link Color.
+ * 4. Main Text Color.
+ * 5. Secondary Text Color.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @return array An associative array of color scheme options.
+ */
+function twentysixteen_get_color_schemes() {
+ /**
+ * Filter the color schemes registered for use with Twenty Sixteen.
+ *
+ * The default schemes include 'default', 'dark', 'gray', 'green', and 'yellow'.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @param array $schemes {
+ * Associative array of color schemes data.
+ *
+ * @type array $slug {
+ * Associative array of information for setting up the color scheme.
+ *
+ * @type string $label Color scheme label.
+ * @type array $colors HEX codes for default colors prepended with a hash symbol ('#').
+ * Colors are defined in the following order: Main background, page
+ * background, link, main text, secondary text.
+ * }
+ * }
+ */
+ return apply_filters( 'twentysixteen_color_schemes', array(
+ 'default' => array(
+ 'label' => __( 'Default', 'twentysixteen' ),
+ 'colors' => array(
+ '#1a1a1a',
+ '#ffffff',
+ '#007acc',
+ '#1a1a1a',
+ '#686868',
+ ),
+ ),
+ 'dark' => array(
+ 'label' => __( 'Dark', 'twentysixteen' ),
+ 'colors' => array(
+ '#262626',
+ '#1a1a1a',
+ '#9adffd',
+ '#e5e5e5',
+ '#c1c1c1',
+ ),
+ ),
+ 'gray' => array(
+ 'label' => __( 'Gray', 'twentysixteen' ),
+ 'colors' => array(
+ '#616a73',
+ '#4d545c',
+ '#aaaaaa',
+ '#ededed',
+ '#ededed',
+ ),
+ ),
+ 'green' => array(
+ 'label' => __( 'Green', 'twentysixteen' ),
+ 'colors' => array(
+ '#ffffff',
+ '#acc1a2',
+ '#6d8c87',
+ '#ffffff',
+ '#efeef4',
+ ),
+ ),
+ 'yellow' => array(
+ 'label' => __( 'Yellow', 'twentysixteen' ),
+ 'colors' => array(
+ '#3b3721',
+ '#ffef8e',
+ '#7f7d6f',
+ '#3b3721',
+ '#774e24',
+ ),
+ ),
+ ) );
+}
+
+if ( ! function_exists( 'twentysixteen_get_color_scheme' ) ) :
+/**
+ * Retrieves the current Twenty Sixteen color scheme.
+ *
+ * Create your own twentysixteen_get_color_scheme() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @return array An associative array of either the current or default color scheme HEX values.
+ */
+function twentysixteen_get_color_scheme() {
+ $color_scheme_option = get_theme_mod( 'color_scheme', 'default' );
+ $color_schemes = twentysixteen_get_color_schemes();
+
+ if ( array_key_exists( $color_scheme_option, $color_schemes ) ) {
+ return $color_schemes[ $color_scheme_option ]['colors'];
+ }
+
+ return $color_schemes['default']['colors'];
+}
+endif; // twentysixteen_get_color_scheme
+
+if ( ! function_exists( 'twentysixteen_get_color_scheme_choices' ) ) :
+/**
+ * Retrieves an array of color scheme choices registered for Twenty Sixteen.
+ *
+ * Create your own twentysixteen_get_color_scheme_choices() function to override
+ * in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @return array Array of color schemes.
+ */
+function twentysixteen_get_color_scheme_choices() {
+ $color_schemes = twentysixteen_get_color_schemes();
+ $color_scheme_control_options = array();
+
+ foreach ( $color_schemes as $color_scheme => $value ) {
+ $color_scheme_control_options[ $color_scheme ] = $value['label'];
+ }
+
+ return $color_scheme_control_options;
+}
+endif; // twentysixteen_get_color_scheme_choices
+
+
+if ( ! function_exists( 'twentysixteen_sanitize_color_scheme' ) ) :
+/**
+ * Handles sanitization for Twenty Sixteen color schemes.
+ *
+ * Create your own twentysixteen_sanitize_color_scheme() function to override
+ * in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @param string $value Color scheme name value.
+ * @return string Color scheme name.
+ */
+function twentysixteen_sanitize_color_scheme( $value ) {
+ $color_schemes = twentysixteen_get_color_scheme_choices();
+
+ if ( ! array_key_exists( $value, $color_schemes ) ) {
+ return 'default';
+ }
+
+ return $value;
+}
+endif; // twentysixteen_sanitize_color_scheme
+
+/**
+ * Enqueues front-end CSS for color scheme.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @see wp_add_inline_style()
+ */
+function twentysixteen_color_scheme_css() {
+ $color_scheme_option = get_theme_mod( 'color_scheme', 'default' );
+
+ // Don't do anything if the default color scheme is selected.
+ if ( 'default' === $color_scheme_option ) {
+ return;
+ }
+
+ $color_scheme = twentysixteen_get_color_scheme();
+
+ // Convert main text hex color to rgba.
+ $color_textcolor_rgb = twentysixteen_hex2rgb( $color_scheme[3] );
+
+ // If the rgba values are empty return early.
+ if ( empty( $color_textcolor_rgb ) ) {
+ return;
+ }
+
+ // If we get this far, we have a custom color scheme.
+ $colors = array(
+ 'background_color' => $color_scheme[0],
+ 'page_background_color' => $color_scheme[1],
+ 'link_color' => $color_scheme[2],
+ 'main_text_color' => $color_scheme[3],
+ 'secondary_text_color' => $color_scheme[4],
+ 'border_color' => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.2)', $color_textcolor_rgb ),
+
+ );
+
+ $color_scheme_css = twentysixteen_get_color_scheme_css( $colors );
+
+ wp_add_inline_style( 'twentysixteen-style', $color_scheme_css );
+}
+add_action( 'wp_enqueue_scripts', 'twentysixteen_color_scheme_css' );
+
+/**
+ * Binds the JS listener to make Customizer color_scheme control.
+ *
+ * Passes color scheme data as colorScheme global.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_customize_control_js() {
+ wp_enqueue_script( 'color-scheme-control', get_template_directory_uri() . '/js/color-scheme-control.js', array( 'customize-controls', 'iris', 'underscore', 'wp-util' ), '20151003', true );
+ wp_localize_script( 'color-scheme-control', 'colorScheme', twentysixteen_get_color_schemes() );
+}
+add_action( 'customize_controls_enqueue_scripts', 'twentysixteen_customize_control_js' );
+
+/**
+ * Binds JS handlers to make the Customizer preview reload changes asynchronously.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_customize_preview_js() {
+ wp_enqueue_script( 'twentysixteen-customize-preview', get_template_directory_uri() . '/js/customize-preview.js', array( 'customize-preview' ), '20151003', true );
+}
+add_action( 'customize_preview_init', 'twentysixteen_customize_preview_js' );
+
+/**
+ * Returns CSS for the color schemes.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @param array $colors Color scheme colors.
+ * @return string Color scheme CSS.
+ */
+function twentysixteen_get_color_scheme_css( $colors ) {
+ $colors = wp_parse_args( $colors, array(
+ 'background_color' => '',
+ 'page_background_color' => '',
+ 'link_color' => '',
+ 'main_text_color' => '',
+ 'secondary_text_color' => '',
+ 'border_color' => '',
+ ) );
+
+ return <<<CSS
+ /* Color Scheme */
+
+ /* Background Color */
+ body {
+ background-color: {$colors['background_color']};
+ }
+
+ /* Page Background Color */
+ .site {
+ background-color: {$colors['page_background_color']};
+ }
+
+ mark,
+ ins,
+ button,
+ button[disabled]:hover,
+ button[disabled]:focus,
+ input[type="button"],
+ input[type="button"][disabled]:hover,
+ input[type="button"][disabled]:focus,
+ input[type="reset"],
+ input[type="reset"][disabled]:hover,
+ input[type="reset"][disabled]:focus,
+ input[type="submit"],
+ input[type="submit"][disabled]:hover,
+ input[type="submit"][disabled]:focus,
+ .menu-toggle.toggled-on,
+ .menu-toggle.toggled-on:hover,
+ .menu-toggle.toggled-on:focus,
+ .pagination .prev,
+ .pagination .next,
+ .pagination .prev:hover,
+ .pagination .prev:focus,
+ .pagination .next:hover,
+ .pagination .next:focus,
+ .pagination .nav-links:before,
+ .pagination .nav-links:after,
+ .widget_calendar tbody a,
+ .widget_calendar tbody a:hover,
+ .widget_calendar tbody a:focus,
+ .page-links a,
+ .page-links a:hover,
+ .page-links a:focus {
+ color: {$colors['page_background_color']};
+ }
+
+ /* Link Color */
+ .menu-toggle:hover,
+ .menu-toggle:focus,
+ a,
+ .main-navigation a:hover,
+ .main-navigation a:focus,
+ .dropdown-toggle:hover,
+ .dropdown-toggle:focus,
+ .social-navigation a:hover:before,
+ .social-navigation a:focus:before,
+ .post-navigation a:hover .post-title,
+ .post-navigation a:focus .post-title,
+ .tagcloud a:hover,
+ .tagcloud a:focus,
+ .site-branding .site-title a:hover,
+ .site-branding .site-title a:focus,
+ .entry-title a:hover,
+ .entry-title a:focus,
+ .entry-footer a:hover,
+ .entry-footer a:focus,
+ .comment-metadata a:hover,
+ .comment-metadata a:focus,
+ .pingback .comment-edit-link:hover,
+ .pingback .comment-edit-link:focus,
+ .comment-reply-link,
+ .comment-reply-link:hover,
+ .comment-reply-link:focus,
+ .required,
+ .site-info a:hover,
+ .site-info a:focus {
+ color: {$colors['link_color']};
+ }
+
+ mark,
+ ins,
+ button:hover,
+ button:focus,
+ input[type="button"]:hover,
+ input[type="button"]:focus,
+ input[type="reset"]:hover,
+ input[type="reset"]:focus,
+ input[type="submit"]:hover,
+ input[type="submit"]:focus,
+ .pagination .prev:hover,
+ .pagination .prev:focus,
+ .pagination .next:hover,
+ .pagination .next:focus,
+ .widget_calendar tbody a,
+ .page-links a:hover,
+ .page-links a:focus {
+ background-color: {$colors['link_color']};
+ }
+
+ input[type="text"]:focus,
+ input[type="email"]:focus,
+ input[type="url"]:focus,
+ input[type="password"]:focus,
+ input[type="search"]:focus,
+ textarea:focus,
+ .tagcloud a:hover,
+ .tagcloud a:focus,
+ .menu-toggle:hover,
+ .menu-toggle:focus {
+ border-color: {$colors['link_color']};
+ }
+
+ /* Main Text Color */
+ body,
+ select,
+ blockquote cite,
+ blockquote small,
+ .main-navigation a,
+ .menu-toggle,
+ .dropdown-toggle,
+ .social-navigation a,
+ .post-navigation a,
+ .pagination a:hover,
+ .pagination a:focus,
+ .widget-title a,
+ .site-branding .site-title a,
+ .entry-title a,
+ .page-links > .page-links-title,
+ .comment-author,
+ .comment-reply-title small a:hover,
+ .comment-reply-title small a:focus {
+ color: {$colors['main_text_color']};
+ }
+
+ blockquote,
+ .menu-toggle.toggled-on,
+ .menu-toggle.toggled-on:hover,
+ .menu-toggle.toggled-on:focus,
+ .post-navigation,
+ .post-navigation div + div,
+ .pagination,
+ .widget,
+ .page-header,
+ .page-links a,
+ .comments-title,
+ .comment-reply-title {
+ border-color: {$colors['main_text_color']};
+ }
+
+ button,
+ button[disabled]:hover,
+ button[disabled]:focus,
+ input[type="button"],
+ input[type="button"][disabled]:hover,
+ input[type="button"][disabled]:focus,
+ input[type="reset"],
+ input[type="reset"][disabled]:hover,
+ input[type="reset"][disabled]:focus,
+ input[type="submit"],
+ input[type="submit"][disabled]:hover,
+ input[type="submit"][disabled]:focus,
+ .menu-toggle.toggled-on,
+ .menu-toggle.toggled-on:hover,
+ .menu-toggle.toggled-on:focus,
+ .pagination:before,
+ .pagination:after,
+ .pagination .prev,
+ .pagination .next,
+ .page-links a {
+ background-color: {$colors['main_text_color']};
+ }
+
+ /* Secondary Text Color */
+
+ /**
+ * IE8 and earlier will drop any block with CSS3 selectors.
+ * Do not combine these styles with the next block.
+ */
+ body:not(.search-results) .entry-summary {
+ color: {$colors['secondary_text_color']};
+ }
+
+ blockquote,
+ .post-password-form label,
+ a:hover,
+ a:focus,
+ a:active,
+ .post-navigation .meta-nav,
+ .image-navigation,
+ .comment-navigation,
+ .widget_recent_entries .post-date,
+ .widget_rss .rss-date,
+ .widget_rss cite,
+ .site-description,
+ .author-bio,
+ .entry-footer,
+ .entry-footer a,
+ .sticky-post,
+ .taxonomy-description,
+ .entry-caption,
+ .comment-metadata,
+ .pingback .edit-link,
+ .comment-metadata a,
+ .pingback .comment-edit-link,
+ .comment-form label,
+ .comment-notes,
+ .comment-awaiting-moderation,
+ .logged-in-as,
+ .form-allowed-tags,
+ .site-info,
+ .site-info a,
+ .wp-caption .wp-caption-text,
+ .gallery-caption,
+ .widecolumn label,
+ .widecolumn .mu_register label {
+ color: {$colors['secondary_text_color']};
+ }
+
+ .widget_calendar tbody a:hover,
+ .widget_calendar tbody a:focus {
+ background-color: {$colors['secondary_text_color']};
+ }
+
+ /* Border Color */
+ fieldset,
+ pre,
+ abbr,
+ acronym,
+ table,
+ th,
+ td,
+ input[type="text"],
+ input[type="email"],
+ input[type="url"],
+ input[type="password"],
+ input[type="search"],
+ textarea,
+ .main-navigation li,
+ .main-navigation .primary-menu,
+ .menu-toggle,
+ .dropdown-toggle:after,
+ .social-navigation a,
+ .image-navigation,
+ .comment-navigation,
+ .tagcloud a,
+ .author-info,
+ .page-links a,
+ .page-links > span,
+ .comment-list article,
+ .comment-list .pingback,
+ .comment-list .trackback,
+ .comment-reply-link,
+ .no-comments {
+ border-color: {$colors['main_text_color']}; /* Fallback for IE7 and IE8 */
+ border-color: {$colors['border_color']};
+ }
+
+ hr,
+ code {
+ background-color: {$colors['main_text_color']}; /* Fallback for IE7 and IE8 */
+ background-color: {$colors['border_color']};
+ }
+
+ @media screen and (min-width: 56.875em) {
+ .main-navigation li:hover > a,
+ .main-navigation li.focus > a {
+ color: {$colors['link_color']};
+ }
+
+ .main-navigation ul ul,
+ .main-navigation ul ul li {
+ border-color: {$colors['border_color']};
+ }
+
+ .main-navigation ul ul:before {
+ border-top-color: {$colors['border_color']};
+ border-bottom-color: {$colors['border_color']};
+ }
+
+ .main-navigation ul ul li {
+ background-color: {$colors['page_background_color']};
+ }
+
+ .main-navigation ul ul:after {
+ border-top-color: {$colors['page_background_color']};
+ border-bottom-color: {$colors['page_background_color']};
+ }
+ }
+
+CSS;
+}
+
+
+/**
+ * Outputs an Underscore template for generating CSS for the color scheme.
+ *
+ * The template generates the css dynamically for instant display in the
+ * Customizer preview.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_color_scheme_css_template() {
+ $colors = array(
+ 'background_color' => '{{ data.background_color }}',
+ 'page_background_color' => '{{ data.page_background_color }}',
+ 'link_color' => '{{ data.link_color }}',
+ 'main_text_color' => '{{ data.main_text_color }}',
+ 'secondary_text_color' => '{{ data.secondary_text_color }}',
+ 'border_color' => '{{ data.border_color }}',
+ );
+ ?>
+ <script type="text/html" id="tmpl-twentysixteen-color-scheme">
+ <?php echo twentysixteen_get_color_scheme_css( $colors ); ?>
+ </script>
+ <?php
+}
+add_action( 'customize_controls_print_footer_scripts', 'twentysixteen_color_scheme_css_template' );
+
+/**
+ * Enqueues front-end CSS for the page background color.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @see wp_add_inline_style()
+ */
+function twentysixteen_page_background_color_css() {
+ $color_scheme = twentysixteen_get_color_scheme();
+ $default_color = $color_scheme[1];
+ $page_background_color = get_theme_mod( 'page_background_color', $default_color );
+
+ // Don't do anything if the current color is the default.
+ if ( $page_background_color === $default_color ) {
+ return;
+ }
+
+ $css = '
+ /* Custom Page Background Color */
+ .site {
+ background-color: %1$s;
+ }
+
+ mark,
+ ins,
+ button,
+ button[disabled]:hover,
+ button[disabled]:focus,
+ input[type="button"],
+ input[type="button"][disabled]:hover,
+ input[type="button"][disabled]:focus,
+ input[type="reset"],
+ input[type="reset"][disabled]:hover,
+ input[type="reset"][disabled]:focus,
+ input[type="submit"],
+ input[type="submit"][disabled]:hover,
+ input[type="submit"][disabled]:focus,
+ .menu-toggle.toggled-on,
+ .menu-toggle.toggled-on:hover,
+ .menu-toggle.toggled-on:focus,
+ .pagination .prev,
+ .pagination .next,
+ .pagination .prev:hover,
+ .pagination .prev:focus,
+ .pagination .next:hover,
+ .pagination .next:focus,
+ .pagination .nav-links:before,
+ .pagination .nav-links:after,
+ .widget_calendar tbody a,
+ .widget_calendar tbody a:hover,
+ .widget_calendar tbody a:focus,
+ .page-links a,
+ .page-links a:hover,
+ .page-links a:focus {
+ color: %1$s;
+ }
+
+ @media screen and (min-width: 56.875em) {
+ .main-navigation ul ul li {
+ background-color: %1$s;
+ }
+
+ .main-navigation ul ul:after {
+ border-top-color: %1$s;
+ border-bottom-color: %1$s;
+ }
+ }
+ ';
+
+ wp_add_inline_style( 'twentysixteen-style', sprintf( $css, $page_background_color ) );
+}
+add_action( 'wp_enqueue_scripts', 'twentysixteen_page_background_color_css', 11 );
+
+/**
+ * Enqueues front-end CSS for the link color.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @see wp_add_inline_style()
+ */
+function twentysixteen_link_color_css() {
+ $color_scheme = twentysixteen_get_color_scheme();
+ $default_color = $color_scheme[2];
+ $link_color = get_theme_mod( 'link_color', $default_color );
+
+ // Don't do anything if the current color is the default.
+ if ( $link_color === $default_color ) {
+ return;
+ }
+
+ $css = '
+ /* Custom Link Color */
+ .menu-toggle:hover,
+ .menu-toggle:focus,
+ a,
+ .main-navigation a:hover,
+ .main-navigation a:focus,
+ .dropdown-toggle:hover,
+ .dropdown-toggle:focus,
+ .social-navigation a:hover:before,
+ .social-navigation a:focus:before,
+ .post-navigation a:hover .post-title,
+ .post-navigation a:focus .post-title,
+ .tagcloud a:hover,
+ .tagcloud a:focus,
+ .site-branding .site-title a:hover,
+ .site-branding .site-title a:focus,
+ .entry-title a:hover,
+ .entry-title a:focus,
+ .entry-footer a:hover,
+ .entry-footer a:focus,
+ .comment-metadata a:hover,
+ .comment-metadata a:focus,
+ .pingback .comment-edit-link:hover,
+ .pingback .comment-edit-link:focus,
+ .comment-reply-link,
+ .comment-reply-link:hover,
+ .comment-reply-link:focus,
+ .required,
+ .site-info a:hover,
+ .site-info a:focus {
+ color: %1$s;
+ }
+
+ mark,
+ ins,
+ button:hover,
+ button:focus,
+ input[type="button"]:hover,
+ input[type="button"]:focus,
+ input[type="reset"]:hover,
+ input[type="reset"]:focus,
+ input[type="submit"]:hover,
+ input[type="submit"]:focus,
+ .pagination .prev:hover,
+ .pagination .prev:focus,
+ .pagination .next:hover,
+ .pagination .next:focus,
+ .widget_calendar tbody a,
+ .page-links a:hover,
+ .page-links a:focus {
+ background-color: %1$s;
+ }
+
+ input[type="text"]:focus,
+ input[type="email"]:focus,
+ input[type="url"]:focus,
+ input[type="password"]:focus,
+ input[type="search"]:focus,
+ textarea:focus,
+ .tagcloud a:hover,
+ .tagcloud a:focus,
+ .menu-toggle:hover,
+ .menu-toggle:focus {
+ border-color: %1$s;
+ }
+
+ @media screen and (min-width: 56.875em) {
+ .main-navigation li:hover > a,
+ .main-navigation li.focus > a {
+ color: %1$s;
+ }
+ }
+ ';
+
+ wp_add_inline_style( 'twentysixteen-style', sprintf( $css, $link_color ) );
+}
+add_action( 'wp_enqueue_scripts', 'twentysixteen_link_color_css', 11 );
+
+/**
+ * Enqueues front-end CSS for the main text color.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @see wp_add_inline_style()
+ */
+function twentysixteen_main_text_color_css() {
+ $color_scheme = twentysixteen_get_color_scheme();
+ $default_color = $color_scheme[3];
+ $main_text_color = get_theme_mod( 'main_text_color', $default_color );
+
+ // Don't do anything if the current color is the default.
+ if ( $main_text_color === $default_color ) {
+ return;
+ }
+
+ // Convert main text hex color to rgba.
+ $main_text_color_rgb = twentysixteen_hex2rgb( $main_text_color );
+
+ // If the rgba values are empty return early.
+ if ( empty( $main_text_color_rgb ) ) {
+ return;
+ }
+
+ // If we get this far, we have a custom color scheme.
+ $border_color = vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.2)', $main_text_color_rgb );
+
+ $css = '
+ /* Custom Main Text Color */
+ body,
+ select,
+ blockquote cite,
+ blockquote small,
+ .main-navigation a,
+ .menu-toggle,
+ .dropdown-toggle,
+ .social-navigation a,
+ .post-navigation a,
+ .pagination a:hover,
+ .pagination a:focus,
+ .widget-title a,
+ .site-branding .site-title a,
+ .entry-title a,
+ .page-links > .page-links-title,
+ .comment-author,
+ .comment-reply-title small a:hover,
+ .comment-reply-title small a:focus {
+ color: %1$s
+ }
+
+ blockquote,
+ .menu-toggle.toggled-on,
+ .menu-toggle.toggled-on:hover,
+ .menu-toggle.toggled-on:focus,
+ .post-navigation,
+ .post-navigation div + div,
+ .pagination,
+ .widget,
+ .page-header,
+ .page-links a,
+ .comments-title,
+ .comment-reply-title {
+ border-color: %1$s;
+ }
+
+ button,
+ button[disabled]:hover,
+ button[disabled]:focus,
+ input[type="button"],
+ input[type="button"][disabled]:hover,
+ input[type="button"][disabled]:focus,
+ input[type="reset"],
+ input[type="reset"][disabled]:hover,
+ input[type="reset"][disabled]:focus,
+ input[type="submit"],
+ input[type="submit"][disabled]:hover,
+ input[type="submit"][disabled]:focus,
+ .menu-toggle.toggled-on,
+ .menu-toggle.toggled-on:hover,
+ .menu-toggle.toggled-on:focus,
+ .pagination:before,
+ .pagination:after,
+ .pagination .prev,
+ .pagination .next,
+ .page-links a {
+ background-color: %1$s;
+ }
+
+ /* Border Color */
+ fieldset,
+ pre,
+ abbr,
+ acronym,
+ table,
+ th,
+ td,
+ input[type="text"],
+ input[type="email"],
+ input[type="url"],
+ input[type="password"],
+ input[type="search"],
+ textarea,
+ .main-navigation li,
+ .main-navigation .primary-menu,
+ .menu-toggle,
+ .dropdown-toggle:after,
+ .social-navigation a,
+ .image-navigation,
+ .comment-navigation,
+ .tagcloud a,
+ .author-info,
+ .page-links a,
+ .page-links > span,
+ .comment-list article,
+ .comment-list .pingback,
+ .comment-list .trackback,
+ .comment-reply-link,
+ .no-comments {
+ border-color: %1$s; /* Fallback for IE7 and IE8 */
+ border-color: %2$s;
+ }
+
+ hr,
+ code {
+ background-color: %1$s; /* Fallback for IE7 and IE8 */
+ background-color: %2$s;
+ }
+
+ @media screen and (min-width: 56.875em) {
+ .main-navigation ul ul,
+ .main-navigation ul ul li {
+ border-color: %2$s;
+ }
+
+ .main-navigation ul ul:before {
+ border-top-color: %2$s;
+ border-bottom-color: %2$s;
+ }
+ }
+ ';
+
+ wp_add_inline_style( 'twentysixteen-style', sprintf( $css, $main_text_color, $border_color ) );
+}
+add_action( 'wp_enqueue_scripts', 'twentysixteen_main_text_color_css', 11 );
+
+/**
+ * Enqueues front-end CSS for the secondary text color.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @see wp_add_inline_style()
+ */
+function twentysixteen_secondary_text_color_css() {
+ $color_scheme = twentysixteen_get_color_scheme();
+ $default_color = $color_scheme[4];
+ $secondary_text_color = get_theme_mod( 'secondary_text_color', $default_color );
+
+ // Don't do anything if the current color is the default.
+ if ( $secondary_text_color === $default_color ) {
+ return;
+ }
+
+ $css = '
+ /* Custom Secondary Text Color */
+
+ /**
+ * IE8 and earlier will drop any block with CSS3 selectors.
+ * Do not combine these styles with the next block.
+ */
+ body:not(.search-results) .entry-summary {
+ color: %1$s;
+ }
+
+ blockquote,
+ .post-password-form label,
+ a:hover,
+ a:focus,
+ a:active,
+ .post-navigation .meta-nav,
+ .image-navigation,
+ .comment-navigation,
+ .widget_recent_entries .post-date,
+ .widget_rss .rss-date,
+ .widget_rss cite,
+ .site-description,
+ .author-bio,
+ .entry-footer,
+ .entry-footer a,
+ .sticky-post,
+ .taxonomy-description,
+ .entry-caption,
+ .comment-metadata,
+ .pingback .edit-link,
+ .comment-metadata a,
+ .pingback .comment-edit-link,
+ .comment-form label,
+ .comment-notes,
+ .comment-awaiting-moderation,
+ .logged-in-as,
+ .form-allowed-tags,
+ .site-info,
+ .site-info a,
+ .wp-caption .wp-caption-text,
+ .gallery-caption,
+ .widecolumn label,
+ .widecolumn .mu_register label {
+ color: %1$s;
+ }
+
+ .widget_calendar tbody a:hover,
+ .widget_calendar tbody a:focus {
+ background-color: %1$s;
+ }
+ ';
+
+ wp_add_inline_style( 'twentysixteen-style', sprintf( $css, $secondary_text_color ) );
+}
+add_action( 'wp_enqueue_scripts', 'twentysixteen_secondary_text_color_css', 11 );
--- /dev/null
+<?php
+/**
+ * Custom Twenty Sixteen template tags
+ *
+ * Eventually, some of the functionality here could be replaced by core features.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+if ( ! function_exists( 'twentysixteen_entry_meta' ) ) :
+/**
+ * Prints HTML with meta information for the categories, tags.
+ *
+ * Create your own twentysixteen_entry_meta() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_entry_meta() {
+ if ( 'post' === get_post_type() ) {
+ $author_avatar_size = apply_filters( 'twentysixteen_author_avatar_size', 49 );
+ printf( '<span class="byline"><span class="author vcard">%1$s<span class="screen-reader-text">%2$s </span> <a class="url fn n" href="%3$s">%4$s</a></span></span>',
+ get_avatar( get_the_author_meta( 'user_email' ), $author_avatar_size ),
+ _x( 'Author', 'Used before post author name.', 'twentysixteen' ),
+ esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
+ get_the_author()
+ );
+ }
+
+ if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) ) {
+ twentysixteen_entry_date();
+ }
+
+ $format = get_post_format();
+ if ( current_theme_supports( 'post-formats', $format ) ) {
+ printf( '<span class="entry-format">%1$s<a href="%2$s">%3$s</a></span>',
+ sprintf( '<span class="screen-reader-text">%s </span>', _x( 'Format', 'Used before post format.', 'twentysixteen' ) ),
+ esc_url( get_post_format_link( $format ) ),
+ get_post_format_string( $format )
+ );
+ }
+
+ if ( 'post' === get_post_type() ) {
+ twentysixteen_entry_taxonomies();
+ }
+
+ if ( ! is_singular() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
+ echo '<span class="comments-link">';
+ comments_popup_link( sprintf( __( 'Leave a comment<span class="screen-reader-text"> on %s</span>', 'twentysixteen' ), get_the_title() ) );
+ echo '</span>';
+ }
+}
+endif;
+
+if ( ! function_exists( 'twentysixteen_entry_date' ) ) :
+/**
+ * Prints HTML with date information for current post.
+ *
+ * Create your own twentysixteen_entry_date() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_entry_date() {
+ $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
+
+ if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
+ $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
+ }
+
+ $time_string = sprintf( $time_string,
+ esc_attr( get_the_date( 'c' ) ),
+ get_the_date(),
+ esc_attr( get_the_modified_date( 'c' ) ),
+ get_the_modified_date()
+ );
+
+ printf( '<span class="posted-on"><span class="screen-reader-text">%1$s </span><a href="%2$s" rel="bookmark">%3$s</a></span>',
+ _x( 'Posted on', 'Used before publish date.', 'twentysixteen' ),
+ esc_url( get_permalink() ),
+ $time_string
+ );
+}
+endif;
+
+if ( ! function_exists( 'twentysixteen_entry_taxonomies' ) ) :
+/**
+ * Prints HTML with category and tags for current post.
+ *
+ * Create your own twentysixteen_entry_taxonomies() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_entry_taxonomies() {
+ $categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'twentysixteen' ) );
+ if ( $categories_list && twentysixteen_categorized_blog() ) {
+ printf( '<span class="cat-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
+ _x( 'Categories', 'Used before category names.', 'twentysixteen' ),
+ $categories_list
+ );
+ }
+
+ $tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'twentysixteen' ) );
+ if ( $tags_list ) {
+ printf( '<span class="tags-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
+ _x( 'Tags', 'Used before tag names.', 'twentysixteen' ),
+ $tags_list
+ );
+ }
+}
+endif;
+
+if ( ! function_exists( 'twentysixteen_post_thumbnail' ) ) :
+/**
+ * Displays an optional post thumbnail.
+ *
+ * Wraps the post thumbnail in an anchor element on index views, or a div
+ * element when on single views.
+ *
+ * Create your own twentysixteen_post_thumbnail() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_post_thumbnail() {
+ if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) {
+ return;
+ }
+
+ if ( is_singular() ) :
+ ?>
+
+ <div class="post-thumbnail">
+ <?php the_post_thumbnail(); ?>
+ </div><!-- .post-thumbnail -->
+
+ <?php else : ?>
+
+ <a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true">
+ <?php the_post_thumbnail( 'post-thumbnail', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?>
+ </a>
+
+ <?php endif; // End is_singular()
+}
+endif;
+
+if ( ! function_exists( 'twentysixteen_excerpt' ) ) :
+ /**
+ * Displays the optional excerpt.
+ *
+ * Wraps the excerpt in a div element.
+ *
+ * Create your own twentysixteen_excerpt() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @param string $class Optional. Class string of the div element. Defaults to 'entry-summary'.
+ */
+ function twentysixteen_excerpt( $class = 'entry-summary' ) {
+ $class = esc_attr( $class );
+
+ if ( has_excerpt() || is_search() ) : ?>
+ <div class="<?php echo $class; ?>">
+ <?php the_excerpt(); ?>
+ </div><!-- .<?php echo $class; ?> -->
+ <?php endif;
+ }
+endif;
+
+if ( ! function_exists( 'twentysixteen_excerpt_more' ) && ! is_admin() ) :
+/**
+ * Replaces "[...]" (appended to automatically generated excerpts) with ... and
+ * a 'Continue reading' link.
+ *
+ * Create your own twentysixteen_excerpt_more() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @return string 'Continue reading' link prepended with an ellipsis.
+ */
+function twentysixteen_excerpt_more() {
+ $link = sprintf( '<a href="%1$s" class="more-link">%2$s</a>',
+ esc_url( get_permalink( get_the_ID() ) ),
+ /* translators: %s: Name of current post */
+ sprintf( __( 'Continue reading %s', 'twentysixteen' ), '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span>' )
+ );
+ return ' … ' . $link;
+}
+add_filter( 'excerpt_more', 'twentysixteen_excerpt_more' );
+endif;
+
+/**
+ * Determines whether blog/site has more than one category.
+ *
+ * Create your own twentysixteen_categorized_blog() function to override in a child theme.
+ *
+ * @since Twenty Sixteen 1.0
+ *
+ * @return bool True if there is more than one category, false otherwise.
+ */
+function twentysixteen_categorized_blog() {
+ if ( false === ( $all_the_cool_cats = get_transient( 'twentysixteen_categories' ) ) ) {
+ // Create an array of all the categories that are attached to posts.
+ $all_the_cool_cats = get_categories( array(
+ 'fields' => 'ids',
+ // We only need to know if there is more than one category.
+ 'number' => 2,
+ ) );
+
+ // Count the number of categories that are attached to the posts.
+ $all_the_cool_cats = count( $all_the_cool_cats );
+
+ set_transient( 'twentysixteen_categories', $all_the_cool_cats );
+ }
+
+ if ( $all_the_cool_cats > 1 ) {
+ // This blog has more than 1 category so twentysixteen_categorized_blog should return true.
+ return true;
+ } else {
+ // This blog has only 1 category so twentysixteen_categorized_blog should return false.
+ return false;
+ }
+}
+
+/**
+ * Flushes out the transients used in twentysixteen_categorized_blog().
+ *
+ * @since Twenty Sixteen 1.0
+ */
+function twentysixteen_category_transient_flusher() {
+ if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
+ return;
+ }
+ // Like, beat it. Dig?
+ delete_transient( 'twentysixteen_categories' );
+}
+add_action( 'edit_category', 'twentysixteen_category_transient_flusher' );
+add_action( 'save_post', 'twentysixteen_category_transient_flusher' );
--- /dev/null
+<?php
+/**
+ * The main template file
+ *
+ * This is the most generic template file in a WordPress theme
+ * and one of the two required files for a theme (the other being style.css).
+ * It is used to display a page when nothing more specific matches a query.
+ * E.g., it puts together the home page when no home.php file exists.
+ *
+ * @link http://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+get_header(); ?>
+
+ <div id="primary" class="content-area">
+ <main id="main" class="site-main" role="main">
+
+ <?php if ( have_posts() ) : ?>
+
+ <?php if ( is_home() && ! is_front_page() ) : ?>
+ <header>
+ <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
+ </header>
+ <?php endif; ?>
+
+ <?php
+ // Start the loop.
+ while ( have_posts() ) : the_post();
+
+ /*
+ * Include the Post-Format-specific template for the content.
+ * If you want to override this in a child theme, then include a file
+ * called content-___.php (where ___ is the Post Format name) and that will be used instead.
+ */
+ get_template_part( 'template-parts/content', get_post_format() );
+
+ // End the loop.
+ endwhile;
+
+ // Previous/next page navigation.
+ the_posts_pagination( array(
+ 'prev_text' => __( 'Previous page', 'twentysixteen' ),
+ 'next_text' => __( 'Next page', 'twentysixteen' ),
+ 'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>',
+ ) );
+
+ // If no content, include the "No posts found" template.
+ else :
+ get_template_part( 'template-parts/content', 'none' );
+
+ endif;
+ ?>
+
+ </main><!-- .site-main -->
+ </div><!-- .content-area -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
--- /dev/null
+/* global colorScheme, Color */
+/**
+ * Add a listener to the Color Scheme control to update other color controls to new values/defaults.
+ * Also trigger an update of the Color Scheme CSS when a color is changed.
+ */
+
+( function( api ) {
+ var cssTemplate = wp.template( 'twentysixteen-color-scheme' ),
+ colorSchemeKeys = [
+ 'background_color',
+ 'page_background_color',
+ 'link_color',
+ 'main_text_color',
+ 'secondary_text_color'
+ ],
+ colorSettings = [
+ 'background_color',
+ 'page_background_color',
+ 'link_color',
+ 'main_text_color',
+ 'secondary_text_color'
+ ];
+
+ api.controlConstructor.select = api.Control.extend( {
+ ready: function() {
+ if ( 'color_scheme' === this.id ) {
+ this.setting.bind( 'change', function( value ) {
+ var colors = colorScheme[value].colors;
+
+ // Update Background Color.
+ var color = colors[0];
+ api( 'background_color' ).set( color );
+ api.control( 'background_color' ).container.find( '.color-picker-hex' )
+ .data( 'data-default-color', color )
+ .wpColorPicker( 'defaultColor', color );
+
+ // Update Page Background Color.
+ color = colors[1];
+ api( 'page_background_color' ).set( color );
+ api.control( 'page_background_color' ).container.find( '.color-picker-hex' )
+ .data( 'data-default-color', color )
+ .wpColorPicker( 'defaultColor', color );
+
+ // Update Link Color.
+ color = colors[2];
+ api( 'link_color' ).set( color );
+ api.control( 'link_color' ).container.find( '.color-picker-hex' )
+ .data( 'data-default-color', color )
+ .wpColorPicker( 'defaultColor', color );
+
+ // Update Main Text Color.
+ color = colors[3];
+ api( 'main_text_color' ).set( color );
+ api.control( 'main_text_color' ).container.find( '.color-picker-hex' )
+ .data( 'data-default-color', color )
+ .wpColorPicker( 'defaultColor', color );
+
+ // Update Secondary Text Color.
+ color = colors[4];
+ api( 'secondary_text_color' ).set( color );
+ api.control( 'secondary_text_color' ).container.find( '.color-picker-hex' )
+ .data( 'data-default-color', color )
+ .wpColorPicker( 'defaultColor', color );
+ } );
+ }
+ }
+ } );
+
+ // Generate the CSS for the current Color Scheme.
+ function updateCSS() {
+ var scheme = api( 'color_scheme' )(),
+ css,
+ colors = _.object( colorSchemeKeys, colorScheme[ scheme ].colors );
+
+ // Merge in color scheme overrides.
+ _.each( colorSettings, function( setting ) {
+ colors[ setting ] = api( setting )();
+ } );
+
+ // Add additional color.
+ // jscs:disable
+ colors.border_color = Color( colors.main_text_color ).toCSS( 'rgba', 0.2 );
+ // jscs:enable
+
+ css = cssTemplate( colors );
+
+ api.previewer.send( 'update-color-scheme-css', css );
+ }
+
+ // Update the CSS whenever a color setting is changed.
+ _.each( colorSettings, function( setting ) {
+ api( setting, function( setting ) {
+ setting.bind( updateCSS );
+ } );
+ } );
+} )( wp.customize );
--- /dev/null
+/**
+ * Live-update changed settings in real time in the Customizer preview.
+ */
+
+( function( $ ) {
+ var style = $( '#twentysixteen-color-scheme-css' ),
+ api = wp.customize;
+
+ if ( ! style.length ) {
+ style = $( 'head' ).append( '<style type="text/css" id="twentysixteen-color-scheme-css" />' )
+ .find( '#twentysixteen-color-scheme-css' );
+ }
+
+ // Site title.
+ api( 'blogname', function( value ) {
+ value.bind( function( to ) {
+ $( '.site-title a' ).text( to );
+ } );
+ } );
+
+ // Site tagline.
+ api( 'blogdescription', function( value ) {
+ value.bind( function( to ) {
+ $( '.site-description' ).text( to );
+ } );
+ } );
+
+ // Add custom-background-image body class when background image is added.
+ api( 'background_image', function( value ) {
+ value.bind( function( to ) {
+ $( 'body' ).toggleClass( 'custom-background-image', '' !== to );
+ } );
+ } );
+
+ // Color Scheme CSS.
+ api.bind( 'preview-ready', function() {
+ api.preview.bind( 'update-color-scheme-css', function( css ) {
+ style.html( css );
+ } );
+ } );
+} )( jQuery );
--- /dev/null
+/* global screenReaderText */
+/**
+ * Theme functions file.
+ *
+ * Contains handlers for navigation and widget area.
+ */
+
+( function( $ ) {
+ var body, masthead, menuToggle, siteNavigation, socialNavigation, siteHeaderMenu, resizeTimer;
+
+ function initMainNavigation( container ) {
+
+ // Add dropdown toggle that display child menu items.
+ var dropdownToggle = $( '<button />', {
+ 'class': 'dropdown-toggle',
+ 'aria-expanded': false
+ } ).append( $( '<span />', {
+ 'class': 'screen-reader-text',
+ text: screenReaderText.expand
+ } ) );
+
+ container.find( '.menu-item-has-children > a' ).after( dropdownToggle );
+
+ // Toggle buttons and submenu items with active children menu items.
+ container.find( '.current-menu-ancestor > button' ).addClass( 'toggled-on' );
+ container.find( '.current-menu-ancestor > .sub-menu' ).addClass( 'toggled-on' );
+
+ // Add menu items with submenus to aria-haspopup="true".
+ container.find( '.menu-item-has-children' ).attr( 'aria-haspopup', 'true' );
+
+ container.find( '.dropdown-toggle' ).click( function( e ) {
+ var _this = $( this ),
+ screenReaderSpan = _this.find( '.screen-reader-text' );
+
+ e.preventDefault();
+ _this.toggleClass( 'toggled-on' );
+ _this.next( '.children, .sub-menu' ).toggleClass( 'toggled-on' );
+
+ // jscs:disable
+ _this.attr( 'aria-expanded', _this.attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
+ // jscs:enable
+ screenReaderSpan.text( screenReaderSpan.text() === screenReaderText.expand ? screenReaderText.collapse : screenReaderText.expand );
+ } );
+ }
+ initMainNavigation( $( '.main-navigation' ) );
+
+ masthead = $( '#masthead' );
+ menuToggle = masthead.find( '#menu-toggle' );
+ siteHeaderMenu = masthead.find( '#site-header-menu' );
+ siteNavigation = masthead.find( '#site-navigation' );
+ socialNavigation = masthead.find( '#social-navigation' );
+
+ // Enable menuToggle.
+ ( function() {
+
+ // Return early if menuToggle is missing.
+ if ( ! menuToggle.length ) {
+ return;
+ }
+
+ // Add an initial values for the attribute.
+ menuToggle.add( siteNavigation ).add( socialNavigation ).attr( 'aria-expanded', 'false' );
+
+ menuToggle.on( 'click.twentysixteen', function() {
+ $( this ).add( siteHeaderMenu ).toggleClass( 'toggled-on' );
+
+ // jscs:disable
+ $( this ).add( siteNavigation ).add( socialNavigation ).attr( 'aria-expanded', $( this ).add( siteNavigation ).add( socialNavigation ).attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
+ // jscs:enable
+ } );
+ } )();
+
+ // Fix sub-menus for touch devices and better focus for hidden submenu items for accessibility.
+ ( function() {
+ if ( ! siteNavigation.length || ! siteNavigation.children().length ) {
+ return;
+ }
+
+ // Toggle `focus` class to allow submenu access on tablets.
+ function toggleFocusClassTouchScreen() {
+ if ( window.innerWidth > 910 ) {
+ siteNavigation.find( '.menu-item-has-children > a' ).on( 'touchstart.twentysixteen', function( e ) {
+ var el = $( this ).parent( 'li' );
+
+ if ( ! el.hasClass( 'focus' ) ) {
+ e.preventDefault();
+ el.toggleClass( 'focus' );
+ el.siblings( '.focus' ).removeClass( 'focus' );
+ }
+ } );
+ } else {
+ siteNavigation.find( '.menu-item-has-children > a' ).unbind( 'touchstart.twentysixteen' );
+ }
+ }
+
+ if ( 'ontouchstart' in window ) {
+ $( window ).on( 'resize.twentysixteen', toggleFocusClassTouchScreen );
+ toggleFocusClassTouchScreen();
+ }
+
+ siteNavigation.find( 'a' ).on( 'focus.twentysixteen blur.twentysixteen', function() {
+ $( this ).parents( '.menu-item' ).toggleClass( 'focus' );
+ } );
+ } )();
+
+ // Add the default ARIA attributes for the menu toggle and the navigations.
+ function onResizeARIA() {
+ if ( window.innerWidth < 910 ) {
+ if ( menuToggle.hasClass( 'toggled-on' ) ) {
+ menuToggle.attr( 'aria-expanded', 'true' );
+ } else {
+ menuToggle.attr( 'aria-expanded', 'false' );
+ }
+
+ if ( siteHeaderMenu.hasClass( 'toggled-on' ) ) {
+ siteNavigation.attr( 'aria-expanded', 'true' );
+ socialNavigation.attr( 'aria-expanded', 'true' );
+ } else {
+ siteNavigation.attr( 'aria-expanded', 'false' );
+ socialNavigation.attr( 'aria-expanded', 'false' );
+ }
+
+ menuToggle.attr( 'aria-controls', 'site-navigation social-navigation' );
+ } else {
+ menuToggle.removeAttr( 'aria-expanded' );
+ siteNavigation.removeAttr( 'aria-expanded' );
+ socialNavigation.removeAttr( 'aria-expanded' );
+ menuToggle.removeAttr( 'aria-controls' );
+ }
+ }
+
+ // Add 'below-entry-meta' class to elements.
+ function belowEntryMetaClass( param ) {
+ if ( body.hasClass( 'page' ) || body.hasClass( 'search' ) || body.hasClass( 'single-attachment' ) || body.hasClass( 'error404' ) ) {
+ return;
+ }
+
+ $( '.entry-content' ).find( param ).each( function() {
+ var element = $( this ),
+ elementPos = element.offset(),
+ elementPosTop = elementPos.top,
+ entryFooter = element.closest( 'article' ).find( '.entry-footer' ),
+ entryFooterPos = entryFooter.offset(),
+ entryFooterPosBottom = entryFooterPos.top + ( entryFooter.height() + 28 ),
+ caption = element.closest( 'figure' ),
+ newImg;
+
+ // Add 'below-entry-meta' to elements below the entry meta.
+ if ( elementPosTop > entryFooterPosBottom ) {
+
+ // Check if full-size images and captions are larger than or equal to 840px.
+ if ( 'img.size-full' === param ) {
+
+ // Create an image to find native image width of resized images (i.e. max-width: 100%).
+ newImg = new Image();
+ newImg.src = element.attr( 'src' );
+
+ $( newImg ).load( function() {
+ if ( newImg.width >= 840 ) {
+ element.addClass( 'below-entry-meta' );
+
+ if ( caption.hasClass( 'wp-caption' ) ) {
+ caption.addClass( 'below-entry-meta' );
+ caption.removeAttr( 'style' );
+ }
+ }
+ } );
+ } else {
+ element.addClass( 'below-entry-meta' );
+ }
+ } else {
+ element.removeClass( 'below-entry-meta' );
+ caption.removeClass( 'below-entry-meta' );
+ }
+ } );
+ }
+
+ $( document ).ready( function() {
+ body = $( document.body );
+
+ $( window )
+ .on( 'load.twentysixteen', onResizeARIA )
+ .on( 'resize.twentysixteen', function() {
+ clearTimeout( resizeTimer );
+ resizeTimer = setTimeout( function() {
+ belowEntryMetaClass( 'img.size-full' );
+ belowEntryMetaClass( 'blockquote.alignleft, blockquote.alignright' );
+ }, 300 );
+ onResizeARIA();
+ } );
+
+ belowEntryMetaClass( 'img.size-full' );
+ belowEntryMetaClass( 'blockquote.alignleft, blockquote.alignright' );
+ } );
+} )( jQuery );
--- /dev/null
+/**
+* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
+*/
+;(function(window, document) {
+/*jshint evil:true */
+ /** version */
+ var version = '3.7.3';
+
+ /** Preset options */
+ var options = window.html5 || {};
+
+ /** Used to skip problem elements */
+ var reSkip = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i;
+
+ /** Not all elements can be cloned in IE **/
+ var saveClones = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i;
+
+ /** Detect whether the browser supports default html5 styles */
+ var supportsHtml5Styles;
+
+ /** Name of the expando, to work with multiple documents or to re-shiv one document */
+ var expando = '_html5shiv';
+
+ /** The id for the the documents expando */
+ var expanID = 0;
+
+ /** Cached data for each document */
+ var expandoData = {};
+
+ /** Detect whether the browser supports unknown elements */
+ var supportsUnknownElements;
+
+ (function() {
+ try {
+ var a = document.createElement('a');
+ a.innerHTML = '<xyz></xyz>';
+ //if the hidden property is implemented we can assume, that the browser supports basic HTML5 Styles
+ supportsHtml5Styles = ('hidden' in a);
+
+ supportsUnknownElements = a.childNodes.length == 1 || (function() {
+ // assign a false positive if unable to shiv
+ (document.createElement)('a');
+ var frag = document.createDocumentFragment();
+ return (
+ typeof frag.cloneNode == 'undefined' ||
+ typeof frag.createDocumentFragment == 'undefined' ||
+ typeof frag.createElement == 'undefined'
+ );
+ }());
+ } catch(e) {
+ // assign a false positive if detection fails => unable to shiv
+ supportsHtml5Styles = true;
+ supportsUnknownElements = true;
+ }
+
+ }());
+
+ /*--------------------------------------------------------------------------*/
+
+ /**
+ * Creates a style sheet with the given CSS text and adds it to the document.
+ * @private
+ * @param {Document} ownerDocument The document.
+ * @param {String} cssText The CSS text.
+ * @returns {StyleSheet} The style element.
+ */
+ function addStyleSheet(ownerDocument, cssText) {
+ var p = ownerDocument.createElement('p'),
+ parent = ownerDocument.getElementsByTagName('head')[0] || ownerDocument.documentElement;
+
+ p.innerHTML = 'x<style>' + cssText + '</style>';
+ return parent.insertBefore(p.lastChild, parent.firstChild);
+ }
+
+ /**
+ * Returns the value of `html5.elements` as an array.
+ * @private
+ * @returns {Array} An array of shived element node names.
+ */
+ function getElements() {
+ var elements = html5.elements;
+ return typeof elements == 'string' ? elements.split(' ') : elements;
+ }
+
+ /**
+ * Extends the built-in list of html5 elements
+ * @memberOf html5
+ * @param {String|Array} newElements whitespace separated list or array of new element names to shiv
+ * @param {Document} ownerDocument The context document.
+ */
+ function addElements(newElements, ownerDocument) {
+ var elements = html5.elements;
+ if(typeof elements != 'string'){
+ elements = elements.join(' ');
+ }
+ if(typeof newElements != 'string'){
+ newElements = newElements.join(' ');
+ }
+ html5.elements = elements +' '+ newElements;
+ shivDocument(ownerDocument);
+ }
+
+ /**
+ * Returns the data associated to the given document
+ * @private
+ * @param {Document} ownerDocument The document.
+ * @returns {Object} An object of data.
+ */
+ function getExpandoData(ownerDocument) {
+ var data = expandoData[ownerDocument[expando]];
+ if (!data) {
+ data = {};
+ expanID++;
+ ownerDocument[expando] = expanID;
+ expandoData[expanID] = data;
+ }
+ return data;
+ }
+
+ /**
+ * returns a shived element for the given nodeName and document
+ * @memberOf html5
+ * @param {String} nodeName name of the element
+ * @param {Document|DocumentFragment} ownerDocument The context document.
+ * @returns {Object} The shived element.
+ */
+ function createElement(nodeName, ownerDocument, data){
+ if (!ownerDocument) {
+ ownerDocument = document;
+ }
+ if(supportsUnknownElements){
+ return ownerDocument.createElement(nodeName);
+ }
+ if (!data) {
+ data = getExpandoData(ownerDocument);
+ }
+ var node;
+
+ if (data.cache[nodeName]) {
+ node = data.cache[nodeName].cloneNode();
+ } else if (saveClones.test(nodeName)) {
+ node = (data.cache[nodeName] = data.createElem(nodeName)).cloneNode();
+ } else {
+ node = data.createElem(nodeName);
+ }
+
+ // Avoid adding some elements to fragments in IE < 9 because
+ // * Attributes like `name` or `type` cannot be set/changed once an element
+ // is inserted into a document/fragment
+ // * Link elements with `src` attributes that are inaccessible, as with
+ // a 403 response, will cause the tab/window to crash
+ // * Script elements appended to fragments will execute when their `src`
+ // or `text` property is set
+ return node.canHaveChildren && !reSkip.test(nodeName) && !node.tagUrn ? data.frag.appendChild(node) : node;
+ }
+
+ /**
+ * returns a shived DocumentFragment for the given document
+ * @memberOf html5
+ * @param {Document} ownerDocument The context document.
+ * @returns {Object} The shived DocumentFragment.
+ */
+ function createDocumentFragment(ownerDocument, data){
+ if (!ownerDocument) {
+ ownerDocument = document;
+ }
+ if(supportsUnknownElements){
+ return ownerDocument.createDocumentFragment();
+ }
+ data = data || getExpandoData(ownerDocument);
+ var clone = data.frag.cloneNode(),
+ i = 0,
+ elems = getElements(),
+ l = elems.length;
+ for(;i<l;i++){
+ clone.createElement(elems[i]);
+ }
+ return clone;
+ }
+
+ /**
+ * Shivs the `createElement` and `createDocumentFragment` methods of the document.
+ * @private
+ * @param {Document|DocumentFragment} ownerDocument The document.
+ * @param {Object} data of the document.
+ */
+ function shivMethods(ownerDocument, data) {
+ if (!data.cache) {
+ data.cache = {};
+ data.createElem = ownerDocument.createElement;
+ data.createFrag = ownerDocument.createDocumentFragment;
+ data.frag = data.createFrag();
+ }
+
+
+ ownerDocument.createElement = function(nodeName) {
+ //abort shiv
+ if (!html5.shivMethods) {
+ return data.createElem(nodeName);
+ }
+ return createElement(nodeName, ownerDocument, data);
+ };
+
+ ownerDocument.createDocumentFragment = Function('h,f', 'return function(){' +
+ 'var n=f.cloneNode(),c=n.createElement;' +
+ 'h.shivMethods&&(' +
+ // unroll the `createElement` calls
+ getElements().join().replace(/[\w\-:]+/g, function(nodeName) {
+ data.createElem(nodeName);
+ data.frag.createElement(nodeName);
+ return 'c("' + nodeName + '")';
+ }) +
+ ');return n}'
+ )(html5, data.frag);
+ }
+
+ /*--------------------------------------------------------------------------*/
+
+ /**
+ * Shivs the given document.
+ * @memberOf html5
+ * @param {Document} ownerDocument The document to shiv.
+ * @returns {Document} The shived document.
+ */
+ function shivDocument(ownerDocument) {
+ if (!ownerDocument) {
+ ownerDocument = document;
+ }
+ var data = getExpandoData(ownerDocument);
+
+ if (html5.shivCSS && !supportsHtml5Styles && !data.hasCSS) {
+ data.hasCSS = !!addStyleSheet(ownerDocument,
+ // corrects block display not defined in IE6/7/8/9
+ 'article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}' +
+ // adds styling not present in IE6/7/8/9
+ 'mark{background:#FF0;color:#000}' +
+ // hides non-rendered elements
+ 'template{display:none}'
+ );
+ }
+ if (!supportsUnknownElements) {
+ shivMethods(ownerDocument, data);
+ }
+ return ownerDocument;
+ }
+
+ /*--------------------------------------------------------------------------*/
+
+ /**
+ * The `html5` object is exposed so that more elements can be shived and
+ * existing shiving can be detected on iframes.
+ * @type Object
+ * @example
+ *
+ * // options can be changed before the script is included
+ * html5 = { 'elements': 'mark section', 'shivCSS': false, 'shivMethods': false };
+ */
+ var html5 = {
+
+ /**
+ * An array or space separated string of node names of the elements to shiv.
+ * @memberOf html5
+ * @type Array|String
+ */
+ 'elements': options.elements || 'abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video',
+
+ /**
+ * current version of html5shiv
+ */
+ 'version': version,
+
+ /**
+ * A flag to indicate that the HTML5 style sheet should be inserted.
+ * @memberOf html5
+ * @type Boolean
+ */
+ 'shivCSS': (options.shivCSS !== false),
+
+ /**
+ * Is equal to true if a browser supports creating unknown/HTML5 elements
+ * @memberOf html5
+ * @type boolean
+ */
+ 'supportsUnknownElements': supportsUnknownElements,
+
+ /**
+ * A flag to indicate that the document's `createElement` and `createDocumentFragment`
+ * methods should be overwritten.
+ * @memberOf html5
+ * @type Boolean
+ */
+ 'shivMethods': (options.shivMethods !== false),
+
+ /**
+ * A string to describe the type of `html5` object ("default" or "default print").
+ * @memberOf html5
+ * @type String
+ */
+ 'type': 'default',
+
+ // shivs the document according to the specified `html5` object options
+ 'shivDocument': shivDocument,
+
+ //creates a shived element
+ createElement: createElement,
+
+ //creates a shived documentFragment
+ createDocumentFragment: createDocumentFragment,
+
+ //extends list of elements
+ addElements: addElements
+ };
+
+ /*--------------------------------------------------------------------------*/
+
+ // expose html5
+ window.html5 = html5;
+
+ // shiv the document
+ shivDocument(document);
+
+ if(typeof module == 'object' && module.exports){
+ module.exports = html5;
+ }
+
+}(typeof window !== "undefined" ? window : this, document));
\ No newline at end of file
--- /dev/null
+/**
+ * Twenty Sixteen keyboard support for image navigation.
+ */
+
+( function( $ ) {
+ $( document ).on( 'keydown.twentysixteen', function( e ) {
+ var url = '';
+
+ // Left arrow key code.
+ if ( 37 === e.which ) {
+ url = $( '.nav-previous a' ).attr( 'href' );
+
+ // Right arrow key code.
+ } else if ( 39 === e.which ) {
+ url = $( '.nav-next a' ).attr( 'href' );
+
+ // Other key code.
+ } else {
+ return;
+ }
+
+ if ( '' !== url && ! $( 'textarea, input' ).is( ':focus' ) ) {
+ window.location = url;
+ }
+ } );
+} )( jQuery );
--- /dev/null
+/**
+ * Makes "skip to content" link work correctly in IE9, Chrome, and Opera
+ * for better accessibility.
+ *
+ * @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/
+ */
+
+ ( function() {
+ var isWebkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1,
+ isOpera = navigator.userAgent.toLowerCase().indexOf( 'opera' ) > -1,
+ isIE = navigator.userAgent.toLowerCase().indexOf( 'msie' ) > -1;
+
+ if ( ( isWebkit || isOpera || isIE ) && document.getElementById && window.addEventListener ) {
+ window.addEventListener( 'hashchange', function() {
+ var id = location.hash.substring( 1 ),
+ element;
+
+ if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) {
+ return;
+ }
+
+ element = document.getElementById( id );
+
+ if ( element ) {
+ if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
+ element.tabIndex = -1;
+ }
+
+ element.focus();
+ }
+ }, false );
+ }
+} )();
--- /dev/null
+# Copyright (C) 2015 the WordPress team
+# This file is distributed under the GNU General Public License v2 or later.
+msgid ""
+msgstr ""
+"Project-Id-Version: Twenty Sixteen 0.1.20150828\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/twentysixteen\n"
+"POT-Creation-Date: 2015-09-10 05:46:09+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+
+#: 404.php:17
+msgid "Oops! That page can’t be found."
+msgstr ""
+
+#: 404.php:21
+msgid "It looks like nothing was found at this location. Maybe try a search?"
+msgstr ""
+
+#: archive.php:49 index.php:45 search.php:37
+msgid "Previous page"
+msgstr ""
+
+#: archive.php:50 index.php:46 search.php:38
+msgid "Next page"
+msgstr ""
+
+#: archive.php:51 image.php:64 index.php:47 search.php:39
+#: template-parts/content-page.php:27 template-parts/content-single.php:33
+#: template-parts/content.php:43
+msgid "Page"
+msgstr ""
+
+#: comments.php:28
+msgctxt "comments title"
+msgid "One thought on “%2$s”"
+msgid_plural "%1$s thoughts on “%2$s”"
+msgstr[0] ""
+msgstr[1] ""
+
+#: comments.php:53
+msgid "Comments are closed."
+msgstr ""
+
+#. #-#-#-#-# twentysixteen.pot (Twenty Sixteen 0.1.20150828) #-#-#-#-#
+#. Author URI of the plugin/theme
+#: footer.php:51
+msgid "https://wordpress.org/"
+msgstr ""
+
+#: footer.php:51
+msgid "Proudly powered by %s"
+msgstr ""
+
+#: functions.php:73
+msgid "Primary Menu"
+msgstr ""
+
+#: functions.php:74
+msgid "Social Links Menu"
+msgstr ""
+
+#: functions.php:126
+msgid "Sidebar"
+msgstr ""
+
+#: functions.php:136
+msgid "Content Bottom 1"
+msgstr ""
+
+#: functions.php:138 functions.php:148
+msgid "Appears at the bottom of the content on posts and pages."
+msgstr ""
+
+#: functions.php:146
+msgid "Content Bottom 2"
+msgstr ""
+
+#. translators: If there are characters in your language that are not supported
+#. by Merriweather, translate this to 'off'. Do not translate into your own
+#. language.
+#: functions.php:171
+msgctxt "Merriweather font: on or off"
+msgid "on"
+msgstr ""
+
+#. translators: If there are characters in your language that are not supported
+#. by Montserrat, translate this to 'off'. Do not translate into your own
+#. language.
+#: functions.php:176
+msgctxt "Montserrat font: on or off"
+msgid "on"
+msgstr ""
+
+#. translators: If there are characters in your language that are not supported
+#. by Inconsolata, translate this to 'off'. Do not translate into your own
+#. language.
+#: functions.php:181
+msgctxt "Inconsolata font: on or off"
+msgid "on"
+msgstr ""
+
+#: functions.php:245
+msgid "expand child menu"
+msgstr ""
+
+#: functions.php:246
+msgid "collapse child menu"
+msgstr ""
+
+#: header.php:24
+msgid "Skip to content"
+msgstr ""
+
+#: header.php:42
+msgid "Menu"
+msgstr ""
+
+#: image.php:24
+msgid "Previous Image"
+msgstr ""
+
+#: image.php:25
+msgid "Next Image"
+msgstr ""
+
+#: image.php:60 template-parts/content-page.php:23
+#: template-parts/content-single.php:29 template-parts/content.php:39
+msgid "Pages:"
+msgstr ""
+
+#: image.php:77
+msgctxt "Used before full size attachment link."
+msgid "Full size"
+msgstr ""
+
+#: image.php:84 template-parts/content-page.php:33
+#: template-parts/content-search.php:28 template-parts/content-search.php:33
+#: template-parts/content-single.php:45 template-parts/content.php:51
+msgid "Edit"
+msgstr ""
+
+#: image.php:96
+msgctxt "Parent post link"
+msgid ""
+"<span class=\"meta-nav\">Published in</span><span class=\"post-title\">"
+"%title</span>"
+msgstr ""
+
+#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
+msgid ""
+"Twenty Sixteen requires at least WordPress version 4.4. You are running "
+"version %s. Please upgrade and try again."
+msgstr ""
+
+#: inc/customizer.php:31
+msgid "Base Color Scheme"
+msgstr ""
+
+#: inc/customizer.php:46
+msgid "Page Background Color"
+msgstr ""
+
+#: inc/customizer.php:61
+msgid "Link Color"
+msgstr ""
+
+#: inc/customizer.php:73
+msgid "Main Text Color"
+msgstr ""
+
+#: inc/customizer.php:85
+msgid "Secondary Text Color"
+msgstr ""
+
+#: inc/customizer.php:110
+msgid "Default"
+msgstr ""
+
+#: inc/customizer.php:120
+msgid "Dark"
+msgstr ""
+
+#: inc/customizer.php:130
+msgid "Gray"
+msgstr ""
+
+#: inc/customizer.php:140
+msgid "Green"
+msgstr ""
+
+#: inc/customizer.php:150
+msgid "Yellow"
+msgstr ""
+
+#: inc/template-tags.php:23
+msgid "Comment navigation"
+msgstr ""
+
+#: inc/template-tags.php:26
+msgid "Older Comments"
+msgstr ""
+
+#: inc/template-tags.php:30
+msgid "Newer Comments"
+msgstr ""
+
+#: inc/template-tags.php:54
+msgctxt "Used before post author name."
+msgid "Author"
+msgstr ""
+
+#: inc/template-tags.php:67
+msgctxt "Used before post format."
+msgid "Format"
+msgstr ""
+
+#: inc/template-tags.php:79
+msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
+msgstr ""
+
+#: inc/template-tags.php:108
+msgctxt "Used before publish date."
+msgid "Posted on"
+msgstr ""
+
+#: inc/template-tags.php:124 inc/template-tags.php:132
+msgctxt "Used between list items, there is a space after the comma."
+msgid ", "
+msgstr ""
+
+#: inc/template-tags.php:127
+msgctxt "Used before category names."
+msgid "Categories"
+msgstr ""
+
+#: inc/template-tags.php:135
+msgctxt "Used before tag names."
+msgid "Tags"
+msgstr ""
+
+#. translators: %s: Name of current post
+#: inc/template-tags.php:185 template-parts/content.php:34
+msgid "Continue reading %s"
+msgstr ""
+
+#: search.php:18
+msgid "Search Results for: %s"
+msgstr ""
+
+#: single.php:28
+msgid "Next"
+msgstr ""
+
+#: single.php:29
+msgid "Next post:"
+msgstr ""
+
+#: single.php:31
+msgid "Previous"
+msgstr ""
+
+#: single.php:32
+msgid "Previous post:"
+msgstr ""
+
+#: template-parts/biography.php:28
+msgid "Author:"
+msgstr ""
+
+#: template-parts/biography.php:33
+msgid "View all posts by %s"
+msgstr ""
+
+#: template-parts/content-none.php:15
+msgid "Nothing Found"
+msgstr ""
+
+#: template-parts/content-none.php:21
+msgid ""
+"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
+msgstr ""
+
+#: template-parts/content-none.php:25
+msgid ""
+"Sorry, but nothing matched your search terms. Please try again with some "
+"different keywords."
+msgstr ""
+
+#: template-parts/content-none.php:30
+msgid ""
+"It seems we can’t find what you’re looking for. Perhaps "
+"searching can help."
+msgstr ""
+
+#: template-parts/content.php:15
+msgid "Featured"
+msgstr ""
+
+#. Theme Name of the plugin/theme
+msgid "Twenty Sixteen"
+msgstr ""
+
+#. Theme URI of the plugin/theme
+msgid "https://wordpress.org/themes/twentysixteen/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Twenty Sixteen is a modernized take on an ever-popular WordPress layout — "
+"the horizontal masthead with an optional right sidebar that works perfectly "
+"for blogs and websites. It has custom color options with beautiful default "
+"color schemes, a harmonious fluid grid using a mobile-first approach, and "
+"impeccable polish in every detail. Twenty Sixteen will make your WordPress "
+"look beautiful everywhere."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "the WordPress team"
+msgstr ""
--- /dev/null
+=== Twenty Sixteen ===
+Contributors: the WordPress team
+Requires at least: WordPress 4.4
+Tested up to: WordPress 4.4
+Version: 1.0
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Tags: black, blue, gray, green, white, yellow, dark, light, one-column, two-columns, right-sidebar, fixed-layout, responsive-layout, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
+
+== Description ==
+Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
+
+* Mobile-first, Responsive Layout
+* Custom Colors
+* Custom Header
+* Social Links
+* Post Formats
+* The GPL v2.0 or later license. :) Use it to make something cool.
+
+For more information about Twenty Sixteen please go to https://codex.wordpress.org/Twenty_Sixteen.
+
+== Installation ==
+
+1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button.
+2. Type in Twenty Sixteen in the search form and press the 'Enter' key on your keyboard.
+3. Click on the 'Activate' button to use your new theme right away.
+4. Go to https://codex.wordpress.org/Twenty_Sixteen for a guide on how to customize this theme.
+5. Navigate to Appearance > Customize in your admin panel and customize to taste.
+
+== Copyright ==
+
+Twenty Sixteen WordPress Theme, Copyright 2014-2015 WordPress.org
+Twenty Sixteen is distributed under the terms of the GNU GPL
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+Twenty Sixteen Theme bundles the following third-party resources:
+
+HTML5 Shiv v3.7.0, Copyright 2014 Alexander Farkas
+Licenses: MIT/GPL2
+Source: https://github.com/aFarkas/html5shiv
+
+Genericons icon font, Copyright 2013-2015 Automattic.com
+License: GNU GPL, Version 2 (or later)
+Source: http://www.genericons.com
+
+Image used in screenshot.png: A photo by Austin Schmid (https://unsplash.com/schmidy/), licensed under Creative Commons Zero(http://creativecommons.org/publicdomain/zero/1.0/)
+
+== Notes ==
+
+Only the default and dark color schemes are accessibility ready.
--- /dev/null
+/*
+Theme Name: Twenty Sixteen
+Description: Adds support for languages written in a Right To Left (RTL) direction.
+It's easy, just a matter of overwriting all the horizontal positioning attributes
+of your CSS stylesheet in a separate stylesheet file named rtl.css.
+
+See: https://codex.wordpress.org/Right_to_Left_Language_Support
+*/
+
+/**
+ * Table of Contents:
+ *
+ * 1.0 - Normalize
+ * 2.0 - Typography
+ * 3.0 - Elements
+ * 4.0 - Forms
+ * 5.0 - Navigations
+ * 6.0 - Accessibility
+ * 7.0 - Widgets
+ * 8.0 - Content
+ * 8.1 - Header
+ * 8.2 - Posts and pages
+ * 8.3 - Comments
+ * 8.4 - Footer
+ * 9.0 - Multisites
+ * 10.0 - Media Queries
+ * 10.1 - >= 710px
+ * 10.2 - >= 910px
+ * 10.3 - >= 985px
+ * 10.4 - >= 1200px
+ */
+
+
+/**
+ * 1.0 - Normalize
+ */
+
+body {
+ direction: rtl;
+ unicode-bidi: embed;
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+ margin-right: auto;
+ margin-left: 0.4375em;
+}
+
+
+/**
+ * 2.0 - Typography
+ */
+
+body,
+button,
+button[disabled]:hover,
+button[disabled]:focus,
+input[type="button"],
+input[type="button"][disabled]:hover,
+input[type="button"][disabled]:focus,
+input[type="reset"],
+input[type="reset"][disabled]:hover,
+input[type="reset"][disabled]:focus,
+input[type="submit"],
+input[type="submit"][disabled]:hover,
+input[type="submit"][disabled]:focus,
+input,
+select,
+textarea,
+.post-password-form label,
+.main-navigation,
+.post-navigation,
+.post-navigation .post-title,
+.pagination,
+.image-navigation,
+.comment-navigation,
+.site .skip-link,
+.logged-in .site .skip-link,
+.widget .widget-title,
+.widget_recent_entries .post-date,
+.widget_rss .rss-date,
+.widget_rss cite,
+.tagcloud a,
+.site-title,
+.entry-title,
+.entry-footer,
+.sticky-post,
+.page-title,
+.page-links,
+.comments-title,
+.comment-reply-title,
+.comment-metadata,
+.pingback .edit-link,
+.comment-reply-link,
+.comment-form label,
+.no-comments,
+.required,
+.site-footer .site-title,
+.site-footer .site-title:after,
+.widecolumn label,
+.widecolumn .mu_register label {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+::-webkit-input-placeholder {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+:-moz-placeholder {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+::-moz-placeholder {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+:-ms-input-placeholder {
+ font-family: Arial, Tahoma, sans-serif;
+}
+
+blockquote {
+ border-right-width: 4px;
+ border-left-width: 0;
+ padding-right: 1.263157895em;
+ padding-left: 0;
+}
+
+.entry-content h1,
+.entry-content h2,
+.entry-content h3,
+.entry-content h4,
+.entry-content h5,
+.entry-content h6,
+.entry-summary h1,
+.entry-summary h2,
+.entry-summary h3,
+.entry-summary h4,
+.entry-summary h5,
+.entry-summary h6,
+.comment-content h1,
+.comment-content h2,
+.comment-content h3,
+.comment-content h4,
+.comment-content h5,
+.comment-content h6,
+.textwidget h1,
+.textwidget h2,
+.textwidget h3,
+.textwidget h4,
+.textwidget h5,
+.textwidget h6,
+.entry-content .author-title,
+.widget_calendar caption,
+.widecolumn h2 {
+ font-weight: 700;
+}
+
+
+/**
+ * 3.0 - Elements
+ */
+
+ul,
+ol {
+ margin: 0 1.25em 1.75em 0;
+}
+
+ol {
+ margin-right: 1.5em;
+ margin-left: 0;
+}
+
+caption,
+th,
+td {
+ text-align: right;
+}
+
+
+/**
+ * 4.0 - Forms
+ */
+
+input[type="search"].search-field {
+ padding-right: 0.4375em;
+ padding-left: 49px;
+}
+
+.search-submit:before {
+ left: 1px;
+}
+
+.search-submit {
+ border-radius: 2px 0 0 2px;
+ left: 0;
+ right: auto;
+}
+
+
+/**
+ * 5.0 - Navigation
+ */
+
+.main-navigation ul ul {
+ margin-right: 0.875em;
+ margin-left: auto;
+}
+
+.main-navigation .menu-item-has-children > a {
+ margin-right: auto;
+ margin-left: 56px;
+}
+
+.dropdown-toggle {
+ left: 0;
+ right: auto;
+}
+
+.dropdown-toggle:after {
+ border-right-width: 1px;
+ border-left-width: 0;
+ left: auto;
+ right: 1px;
+}
+
+.social-navigation li {
+ float: right;
+ margin: 0 0 0.4375em 0.4375em;
+}
+
+.pagination:before {
+ left: 0;
+ right: auto;
+}
+
+.pagination:after {
+ left: 54px;
+ right: auto;
+}
+
+.pagination .nav-links {
+ padding-right: 0;
+ padding-left: 106px;
+}
+
+.pagination .nav-links:before {
+ content: "\f430";
+ left: -1px;
+ right: auto;
+}
+
+.pagination .nav-links:after {
+ content: "\f429";
+ left: 55px;
+ right: auto;
+}
+
+.pagination .page-numbers {
+ margin: 0 -0.7368421053em 0 0.7368421053em;
+}
+
+.pagination .prev,
+.pagination .next {
+ margin: 0;
+}
+
+.pagination .prev {
+ left: 54px;
+ right: auto;
+}
+
+.pagination .prev:before {
+ content: "\f429";
+ left: auto;
+ right: -1px;
+}
+
+.pagination .next {
+ left: 0;
+ right: auto;
+}
+
+.pagination .next:before {
+ content: "\f430";
+ left: -1px;
+ right: auto;
+}
+
+.comment-navigation {
+ margin-right: 0;
+ margin-left: 0;
+}
+
+
+/**
+ * 6.0 - Accessibility
+ */
+
+.site .skip-link {
+ left: auto;
+ right: -9999em;
+}
+
+.site .skip-link:focus {
+ left: auto;
+ right: 6px;
+}
+
+
+/**
+ * 7.0 - Widgets
+ */
+
+.tagcloud a {
+ margin-right: 0;
+ margin-left: 0.1875em;
+}
+
+
+/**
+ * 8.0 - Content
+ */
+
+
+/**
+ * 8.1 - Header
+ */
+
+.site-branding {
+ margin-right: 0;
+ margin-left: auto;
+}
+
+
+/**
+ * 8.2 - Posts and pages
+ */
+
+.author-avatar .avatar {
+ float: right;
+ margin-right: 0;
+ margin-left: 1.75em;
+}
+
+.entry-footer .avatar {
+ margin-right: 0;
+ margin-left: 0.5384615385em;
+}
+
+.page-links a,
+.page-links > span {
+ margin-right: auto;
+ margin-left: 0.3076923077em;
+}
+
+.page-links > .page-links-title {
+ padding-right: 0;
+ padding-left: 0.6153846154em;
+}
+
+body:not(.search-results) .entry-summary .alignright {
+ margin: 0.2631578947em 0 1.4736842105em 1.4736842105em;
+}
+
+body:not(.search-results) .entry-summary .alignleft {
+ margin: 0.2631578947em 1.4736842105em 1.4736842105em 0;
+}
+
+
+/**
+ * 8.3 - Comments
+ */
+
+.comment-list .children > li {
+ padding-right: 0.875em;
+ padding-left: 0;
+}
+
+.comment-author .avatar {
+ float: right;
+ margin-right: auto;
+ margin-left: 0.875em;
+}
+
+.bypostauthor > article .fn:after {
+ left: auto;
+ right: 3px;
+}
+
+.comment-content ul,
+.comment-content ol {
+ margin: 0 1.25em 1.5em 0;
+}
+
+.comment-reply-title small a {
+ float: left;
+}
+
+
+/**
+ * 8.4 - Footer
+ */
+
+.site-footer .site-title:after {
+ padding-right: 0.538461538em;
+ padding-left: 0.307692308em;
+}
+
+
+/**
+ * 9.0 - Multisites
+ */
+
+.widecolumn .mu_register label {
+ margin-right: 0;
+ margin-left: 0.7692307692em;
+}
+
+
+/**
+ * 10.0 - Media Queries
+ */
+
+
+/**
+ * 10.1 - >= 710px
+ */
+
+@media screen and (min-width: 44.375em) {
+ .pagination {
+ margin: 0 7.6923% 4.421052632em 23.0769%;
+ }
+
+ .entry-header,
+ .post-thumbnail,
+ .entry-content,
+ .entry-summary,
+ .entry-footer,
+ .comments-area,
+ .image-navigation,
+ .post-navigation,
+ .page-header,
+ .page-content,
+ .content-bottom-widgets {
+ margin-right: 7.6923%;
+ margin-left: 23.0769%;
+ }
+
+ .entry-content blockquote:not(.alignright):not(.alignleft),
+ .entry-summary blockquote,
+ .comment-content blockquote {
+ margin-right: -1.473684211em;
+ margin-left: auto;
+ }
+
+ .entry-content blockquote blockquote:not(.alignright):not(.alignleft),
+ .entry-summary blockquote blockquote,
+ .comment-content blockquote blockquote {
+ margin-right: 0;
+ margin-left: auto;
+ }
+
+ .entry-content ul,
+ .entry-summary ul,
+ .comment-content ul,
+ .entry-content ol,
+ .entry-summary ol,
+ .comment-content ol {
+ margin-right: 0;
+ margin-left: auto;
+ }
+
+ .entry-content li > ul,
+ .entry-summary li > ul,
+ .comment-content li > ul,
+ .entry-content blockquote > ul,
+ .entry-summary blockquote > ul,
+ .comment-content blockquote > ul {
+ margin-right: 1.25em;
+ margin-left: auto;
+ }
+
+ .entry-content li > ol,
+ .entry-summary li > ol,
+ .comment-content li > ol,
+ .entry-content blockquote > ol,
+ .entry-summary blockquote > ol,
+ .comment-content blockquote > ol {
+ margin-right: 1.5em;
+ margin-left: auto;
+ }
+
+ .comment-list .children > li {
+ padding-right: 1.75em;
+ padding-left: 0;
+ }
+
+ .sidebar,
+ .widecolumn {
+ padding-right: 7.6923%;
+ padding-left: 23.0769%;
+ }
+
+ body:not(.search-results) .entry-summary li > ul,
+ body:not(.search-results) .entry-summary blockquote > ul {
+ margin-right: 1.157894737em;
+ margin-left: auto;
+ }
+
+ body:not(.search-results) .entry-summary li > ol,
+ body:not(.search-results) .entry-summary blockquote > ol {
+ margin-right: 1.473684211em;
+ margin-left: auto;
+ }
+}
+
+
+/**
+ * 10.2 - >= 910px
+ */
+
+@media screen and (min-width: 56.875em) {
+ .main-navigation li {
+ float: right;
+ }
+
+ .main-navigation ul ul {
+ left: auto;
+ margin: 0;
+ right: -999em;
+ }
+
+ .main-navigation ul ul ul {
+ left: auto;
+ right: -999em;
+ }
+
+ .main-navigation ul ul li:hover > ul,
+ .main-navigation ul ul li.focus > ul {
+ left: auto;
+ right: 100%;
+ }
+
+ .main-navigation ul ul:before {
+ left: auto;
+ right: 7px;
+ }
+
+ .main-navigation ul ul:after {
+ left: auto;
+ right: 9px;
+ }
+
+ .main-navigation li:hover > ul,
+ .main-navigation li.focus > ul {
+ right: auto;
+ }
+
+ .main-navigation .menu-item-has-children > a {
+ margin: 0;
+ padding-right: 0.875em;
+ padding-left: 2.25em;
+ }
+
+ .main-navigation .menu-item-has-children > a:after {
+ left: 0.625em;
+ right: auto;
+ }
+
+ .main-navigation ul ul .menu-item-has-children > a {
+ padding-right: 0.875em;
+ padding-left: 2.0625em;
+ }
+
+ .main-navigation ul ul .menu-item-has-children > a:after {
+ left: 0.5625em;
+ right: auto;
+ -webkit-transform: rotate(90deg);
+ -moz-transform: rotate(90deg);
+ -ms-transform: rotate(90deg);
+ transform: rotate(90deg);
+ }
+
+ .content-area {
+ float: right;
+ margin-right: auto;
+ margin-left: -100%;
+ }
+
+ .entry-header,
+ .post-thumbnail,
+ .entry-content,
+ .entry-summary,
+ .entry-footer,
+ .comments-area,
+ .image-navigation,
+ .post-navigation,
+ .pagination,
+ .page-header,
+ .page-content,
+ .content-bottom-widgets {
+ margin-right: 0;
+ margin-left: 0;
+ }
+
+ .sidebar {
+ float: right;
+ margin-right: 75%;
+ margin-left: auto;
+ padding: 0;
+ }
+
+ .widget blockquote {
+ padding-right: 1.0625em;
+ padding-left: 0;
+ }
+
+ .widget .alignright {
+ margin: 0.2307692308em 0 1.6153846154em 1.6153846154em;
+ }
+
+ .widget .alignleft {
+ margin: 0.2307692308em 1.6153846154em 1.6153846154em 0;
+ }
+
+ .widget input[type="search"].search-field {
+ padding-right: 0.5384615385em;
+ padding-left: 42px;
+ }
+
+ .widget .search-submit:before {
+ left: 1px;
+ }
+
+ .tagcloud a {
+ margin: 0 0 0.5384615385em 0.2307692308em;
+ }
+
+ .content-bottom-widgets .widget-area:nth-child(1):nth-last-child(2),
+ .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1) {
+ float: right;
+ margin-right: auto;
+ margin-left: 7.1428571%;
+ }
+
+ .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1):last-of-type {
+ margin-right: auto;
+ margin-left: 0;
+ }
+
+ .site-info {
+ margin: 0.538461538em 0 0.538461538em auto;
+ }
+
+ .no-sidebar .entry-header,
+ .no-sidebar .entry-content,
+ .no-sidebar .entry-summary,
+ .no-sidebar .entry-footer,
+ .no-sidebar .comments-area,
+ .no-sidebar .image-navigation,
+ .no-sidebar .post-navigation,
+ .no-sidebar .pagination,
+ .no-sidebar .page-header,
+ .no-sidebar .page-content,
+ .no-sidebar .content-bottom-widgets {
+ margin-right: 15%;
+ margin-left: 15%;
+ }
+
+ .no-sidebar .post-thumbnail {
+ margin-right: 0;
+ margin-left: 0;
+ }
+
+ .widecolumn {
+ padding-right: 15%;
+ padding-left: 15%;
+ }
+}
+
+
+/**
+ * 10.3 - >= 985px
+ */
+
+@media screen and (min-width: 61.5625em) {
+ body:not(.search-results) article:not(.type-page) .entry-content {
+ float: left;
+ }
+
+ body:not(.search-results) article:not(.type-page) .entry-content > blockquote.alignleft.below-entry-meta {
+ margin-right: 1.473684211em;
+ margin-left: 0;
+ width: -webkit-calc(50% - 0.736842105em);
+ width: calc(50% - 0.736842105em);;
+ }
+
+ body:not(.search-results) article:not(.type-page) .entry-content > blockquote.alignright.below-entry-meta {
+ margin-right: -40%;
+ margin-left: 1.473684211em;
+ width: -webkit-calc(60% - 1.4736842105em);
+ width: calc(60% - 1.4736842105em);
+ }
+
+ body:not(.search-results) article:not(.type-page) img.below-entry-meta,
+ body:not(.search-results) article:not(.type-page) figure.below-entry-meta {
+ margin-right: -40%;
+ margin-left: 0;
+ }
+
+ body:not(.search-results) article:not(.type-page) .entry-footer {
+ float: right;
+ }
+
+ body.no-sidebar:not(.search-results) article:not(.type-page) .entry-content {
+ float: right;
+ margin-right: 34.99999999%;
+ margin-left: -100%;
+ }
+
+ body.no-sidebar:not(.search-results) article:not(.type-page) .entry-footer {
+ margin-right: 15%;
+ margin-left: -100%;
+ }
+}
+
+
+/**
+ * 10.4 - >= 1200px
+ */
+
+@media screen and (min-width: 75em) {
+ body:not(.search-results) .entry-summary li > ul,
+ body:not(.search-results) .entry-summary blockquote > ul {
+ margin-right: 0.956521739em;
+ margin-left: auto;
+ }
+
+ body:not(.search-results) .entry-summary li > ol,
+ body:not(.search-results) .entry-summary blockquote > ol {
+ margin-right: 1.52173913em;
+ margin-left: auto;
+ }
+
+ body:not(.search-results) .entry-summary blockquote {
+ padding-right: 1.347826087em;
+ padding-left: 0;
+ }
+
+ body:not(.search-results) .entry-summary blockquote:not(.alignright):not(.alignleft) {
+ margin-right: -1.52173913em;
+ margin-left: auto;
+ }
+
+ body:not(.search-results) .entry-summary blockquote blockquote:not(.alignright):not(.alignleft) {
+ margin-right: 0;
+ margin-left: auto;
+ }
+
+ body:not(.search-results) .entry-summary .alignright {
+ margin: 0.2608695652em 0 1.5217391304em 1.5217391304em;
+ }
+
+ body:not(.search-results) .entry-summary .alignleft {
+ margin: 0.2608695652em 1.5217391304em 1.5217391304em 0;
+ }
+}
--- /dev/null
+<?php
+/**
+ * The template for displaying search results pages
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+get_header(); ?>
+
+ <section id="primary" class="content-area">
+ <main id="main" class="site-main" role="main">
+
+ <?php if ( have_posts() ) : ?>
+
+ <header class="page-header">
+ <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentysixteen' ), '<span>' . esc_html( get_search_query() ) . '</span>' ); ?></h1>
+ </header><!-- .page-header -->
+
+ <?php
+ // Start the loop.
+ while ( have_posts() ) : the_post();
+
+ /**
+ * Run the loop for the search to output the results.
+ * If you want to overload this in a child theme then include a file
+ * called content-search.php and that will be used instead.
+ */
+ get_template_part( 'template-parts/content', 'search' );
+
+ // End the loop.
+ endwhile;
+
+ // Previous/next page navigation.
+ the_posts_pagination( array(
+ 'prev_text' => __( 'Previous page', 'twentysixteen' ),
+ 'next_text' => __( 'Next page', 'twentysixteen' ),
+ 'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>',
+ ) );
+
+ // If no content, include the "No posts found" template.
+ else :
+ get_template_part( 'template-parts/content', 'none' );
+
+ endif;
+ ?>
+
+ </main><!-- .site-main -->
+ </section><!-- .content-area -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
--- /dev/null
+<?php
+/**
+ * Template for displaying search forms in Twenty Sixteen
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+?>
+
+<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
+ <label>
+ <span class="screen-reader-text"><?php echo _x( 'Search for:', 'label', 'twentysixteen' ); ?></span>
+ <input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search …', 'placeholder', 'twentysixteen' ); ?>" value="<?php echo get_search_query(); ?>" name="s" title="<?php echo esc_attr_x( 'Search for:', 'label', 'twentysixteen' ); ?>" />
+ </label>
+ <button type="submit" class="search-submit"><span class="screen-reader-text"><?php echo _x( 'Search', 'submit button', 'twentysixteen' ); ?></span></button>
+</form>
--- /dev/null
+<?php
+/**
+ * The template for the content bottom widget areas on posts and pages
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+if ( ! is_active_sidebar( 'sidebar-2' ) && ! is_active_sidebar( 'sidebar-3' ) ) {
+ return;
+}
+
+// If we get this far, we have widgets. Let's do this.
+?>
+<div id="content-bottom-widgets" class="content-bottom-widgets" role="complementary">
+ <?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
+ <div class="widget-area">
+ <?php dynamic_sidebar( 'sidebar-2' ); ?>
+ </div><!-- .widget-area -->
+ <?php endif; ?>
+
+ <?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
+ <div class="widget-area">
+ <?php dynamic_sidebar( 'sidebar-3' ); ?>
+ </div><!-- .widget-area -->
+ <?php endif; ?>
+</div><!-- .content-bottom-widgets -->
--- /dev/null
+<?php
+/**
+ * The template for the sidebar containing the main widget area
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+?>
+
+<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
+ <div id="secondary" class="sidebar widget-area" role="complementary">
+ <?php dynamic_sidebar( 'sidebar-1' ); ?>
+ </div><!-- .sidebar .widget-area -->
+<?php endif; ?>
--- /dev/null
+<?php
+/**
+ * The template for displaying all pages, single posts and attachments
+ *
+ * This is a new template file that WordPress introduced in
+ * version 4.3. Note that it uses conditional logic to display
+ * different content based on the post type.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+
+get_header(); ?>
+
+<div id="primary" class="content-area">
+ <main id="main" class="site-main" role="main">
+ <?php
+ // Start the loop.
+ while ( have_posts() ) : the_post();
+
+ // Include the page content template.
+ if ( is_singular( 'page' ) ) {
+ get_template_part( 'template-parts/content', 'page' );
+ } else {
+ get_template_part( 'template-parts/content', 'single' );
+ }
+
+ // If comments are open or we have at least one comment, load up the comment template.
+ if ( comments_open() || get_comments_number() ) {
+ comments_template();
+ }
+
+ if ( is_singular( 'attachment' ) ) {
+ // Parent post navigation
+ the_post_navigation( array(
+ 'prev_text' => _x( '<span class="meta-nav">Published in</span><span class="post-title">%title</span>', 'Parent post link', 'twentysixteen' ),
+ ) );
+ } elseif ( is_singular( 'post' ) ) {
+ // Previous/next post navigation.
+ the_post_navigation( array(
+ 'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'twentysixteen' ) . '</span> ' .
+ '<span class="screen-reader-text">' . __( 'Next post:', 'twentysixteen' ) . '</span> ' .
+ '<span class="post-title">%title</span>',
+ 'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'twentysixteen' ) . '</span> ' .
+ '<span class="screen-reader-text">' . __( 'Previous post:', 'twentysixteen' ) . '</span> ' .
+ '<span class="post-title">%title</span>',
+ ) );
+ }
+
+ // End of the loop.
+ endwhile;
+ ?>
+
+ </main><!-- .site-main -->
+
+ <?php get_sidebar( 'content-bottom' ); ?>
+
+</div><!-- .content-area -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
--- /dev/null
+/*
+Theme Name: Twenty Sixteen
+Theme URI: https://wordpress.org/themes/twentysixteen/
+Author: the WordPress team
+Author URI: https://wordpress.org/
+Description: Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
+Version: 0.1.20151003
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Tags: black, blue, gray, green, white, yellow, dark, light, one-column, two-columns, right-sidebar, fixed-layout, responsive-layout, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
+Text Domain: twentysixteen
+
+This theme, like WordPress, is licensed under the GPL.
+Use it to make something cool, have fun, and share what you've learned with others.
+*/
+
+
+/**
+ * Table of Contents
+ *
+ * 1.0 - Normalize
+ * 2.0 - Genericons
+ * 3.0 - Typography
+ * 4.0 - Elements
+ * 5.0 - Forms
+ * 6.0 - Navigation
+ * 6.1 - Links
+ * 6.2 - Menus
+ * 7.0 - Accessibility
+ * 8.0 - Alignments
+ * 9.0 - Clearings
+ * 10.0 - Widgets
+ * 11.0 - Content
+ * 11.1 - Header
+ * 11.2 - Posts and pages
+ * 11.3 - Post Formats
+ * 11.4 - Comments
+ * 11.5 - Sidebar
+ * 11.6 - Footer
+ * 12.0 - Media
+ * 12.1 - Captions
+ * 12.2 - Galleries
+ * 13.0 - Multisite
+ * 14.0 - Media Queries
+ * 14.1 - >= 710px
+ * 14.2 - >= 783px
+ * 14.3 - >= 910px
+ * 14.4 - >= 985px
+ * 14.5 - >= 1200px
+ * 15.0 - Print
+ */
+
+
+/**
+ * 1.0 - Normalize
+ *
+ * Normalizing styles have been helped along thanks to the fine work of
+ * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
+ */
+
+html {
+ font-family: sans-serif;
+ -webkit-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%;
+}
+
+body {
+ margin: 0;
+}
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+main,
+menu,
+nav,
+section,
+summary {
+ display: block;
+}
+
+audio,
+canvas,
+progress,
+video {
+ display: inline-block;
+ vertical-align: baseline;
+}
+
+audio:not([controls]) {
+ display: none;
+ height: 0;
+}
+
+[hidden],
+template {
+ display: none;
+}
+
+a {
+ background-color: transparent;
+}
+
+abbr[title] {
+ border-bottom: 1px dotted;
+}
+
+b,
+strong {
+ font-weight: 700;
+}
+
+small {
+ font-size: 80%;
+}
+
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+
+sup {
+ top: -0.5em;
+}
+
+sub {
+ bottom: -0.25em;
+}
+
+img {
+ border: 0;
+}
+
+svg:not(:root) {
+ overflow: hidden;
+}
+
+figure {
+ margin: 0;
+}
+
+hr {
+ box-sizing: content-box;
+}
+
+code,
+kbd,
+pre,
+samp {
+ font-size: 1em;
+}
+
+button,
+input,
+optgroup,
+select,
+textarea {
+ color: inherit;
+ font: inherit;
+ margin: 0;
+}
+
+select {
+ text-transform: none;
+}
+
+button {
+ overflow: visible;
+}
+
+button,
+input,
+select,
+textarea {
+ max-width: 100%;
+}
+
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+ -webkit-appearance: button;
+ cursor: pointer;
+}
+
+button[disabled],
+html input[disabled] {
+ cursor: default;
+ opacity: .5;
+}
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+ border: 0;
+ padding: 0;
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+ box-sizing: border-box;
+ margin-right: 0.4375em;
+ padding: 0;
+}
+
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+ height: auto;
+}
+
+input[type="search"] {
+ -webkit-appearance: textfield;
+}
+
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+
+fieldset {
+ border: 1px solid #d1d1d1;
+ margin: 0 0 1.75em;
+ padding: 0.875em;
+}
+
+fieldset > :last-child {
+ margin-bottom: 0;
+}
+
+legend {
+ border: 0;
+ padding: 0;
+}
+
+textarea {
+ overflow: auto;
+ vertical-align: top;
+}
+
+optgroup {
+ font-weight: bold;
+}
+
+
+/**
+ * 2.0 - Genericons
+ */
+
+.menu-item-has-children a:after,
+.social-navigation a:before,
+.dropdown-toggle:after,
+.bypostauthor > article .fn:after,
+.comment-reply-title small a:before,
+.pagination .prev:before,
+.pagination .next:before,
+.pagination .nav-links:before,
+.pagination .nav-links:after,
+.search-submit:before {
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ display: inline-block;
+ font-family: "Genericons";
+ font-size: 16px;
+ font-style: normal;
+ font-variant: normal;
+ font-weight: normal;
+ line-height: 1;
+ speak: none;
+ text-align: center;
+ text-decoration: inherit;
+ text-transform: none;
+ vertical-align: top;
+}
+
+
+/**
+ * 3.0 - Typography
+ */
+
+body,
+button,
+input,
+select,
+textarea {
+ color: #1a1a1a;
+ font-family: Merriweather, Georgia, serif;
+ font-size: 16px;
+ font-size: 1rem;
+ line-height: 1.75;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ clear: both;
+ -webkit-font-variant-ligatures: common-ligatures;
+ font-variant-ligatures: common-ligatures;
+ font-weight: 700;
+ margin: 0;
+ text-rendering: optimizeLegibility;
+}
+
+p {
+ margin: 0 0 1.75em;
+}
+
+dfn,
+cite,
+em,
+i {
+ font-style: italic;
+}
+
+blockquote {
+ border: 0 solid #1a1a1a;
+ border-left-width: 4px;
+ color: #686868;
+ font-size: 19px;
+ font-size: 1.1875rem;
+ font-style: italic;
+ line-height: 1.4736842105;
+ margin: 0 0 1.4736842105em;
+ padding: 0 0 0 1.263157895em;
+}
+
+blockquote,
+q {
+ quotes: none;
+}
+
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+ content: "";
+}
+
+blockquote p {
+ margin-bottom: 1.4736842105em;
+}
+
+blockquote cite,
+blockquote small {
+ color: #1a1a1a;
+ display: block;
+ font-size: 16px;
+ font-size: 1rem;
+ line-height: 1.75;
+}
+
+blockquote cite:before,
+blockquote small:before {
+ content: "\2014\00a0";
+}
+
+blockquote em,
+blockquote i,
+blockquote cite {
+ font-style: normal;
+}
+
+blockquote strong,
+blockquote b {
+ font-weight: 400;
+}
+
+blockquote > :last-child {
+ margin-bottom: 0;
+}
+
+address {
+ font-style: italic;
+ margin: 0 0 1.75em;
+}
+
+code,
+kbd,
+tt,
+var,
+samp,
+pre {
+ font-family: Inconsolata, monospace;
+}
+
+pre {
+ border: 1px solid #d1d1d1;
+ font-size: 16px;
+ font-size: 1rem;
+ line-height: 1.3125;
+ margin: 0 0 1.75em;
+ max-width: 100%;
+ overflow: auto;
+ padding: 1.75em;
+ white-space: pre;
+ white-space: pre-wrap;
+ word-wrap: break-word;
+}
+
+code {
+ background-color: #d1d1d1;
+ padding: 0.125em 0.25em;
+}
+
+abbr,
+acronym {
+ border-bottom: 1px dotted #d1d1d1;
+ cursor: help;
+}
+
+mark,
+ins {
+ background: #007acc;
+ color: #fff;
+ padding: 0.125em 0.25em;
+ text-decoration: none;
+}
+
+big {
+ font-size: 125%;
+}
+
+
+/**
+ * 4.0 - Elements
+ */
+
+html {
+ box-sizing: border-box;
+}
+
+*,
+*:before,
+*:after {
+ /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
+ box-sizing: inherit;
+}
+
+body {
+ background: #1a1a1a;
+ /* Fallback for when there is no custom background color defined. */
+}
+
+hr {
+ background-color: #d1d1d1;
+ border: 0;
+ height: 1px;
+ margin-bottom: 1.75em;
+}
+
+ul,
+ol {
+ margin: 0 0 1.75em 1.25em;
+ padding: 0;
+}
+
+ul {
+ list-style: disc;
+}
+
+ol {
+ list-style: decimal;
+ margin-left: 1.5em;
+}
+
+li > ul,
+li > ol {
+ margin-bottom: 0;
+}
+
+dl {
+ margin: 0 0 1.75em;
+}
+
+dt {
+ font-weight: 700;
+}
+
+dd {
+ margin: 0 0 1.75em;
+}
+
+img {
+ height: auto;
+ /* Make sure images are scaled correctly. */
+ max-width: 100%;
+ /* Adhere to container width. */
+ vertical-align: middle;
+}
+
+del {
+ opacity: 0.8;
+}
+
+table,
+th,
+td {
+ border: 1px solid #d1d1d1;
+}
+
+table {
+ border-collapse: separate;
+ border-spacing: 0;
+ border-width: 1px 0 0 1px;
+ margin: 0 0 1.75em;
+ table-layout: fixed;
+ /* Prevents HTML tables from becoming too wide */
+ width: 100%;
+}
+
+caption,
+th,
+td {
+ font-weight: normal;
+ text-align: left;
+}
+
+th {
+ border-width: 0 1px 1px 0;
+ font-weight: 700;
+}
+
+td {
+ border-width: 0 1px 1px 0;
+}
+
+th,
+td {
+ padding: 0.4375em;
+}
+
+/* Placeholder text color -- selectors need to be separate to work. */
+::-webkit-input-placeholder {
+ color: #686868;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+}
+
+:-moz-placeholder {
+ color: #686868;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+}
+
+::-moz-placeholder {
+ color: #686868;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ opacity: 1;
+ /* Since FF19 lowers the opacity of the placeholder by default */
+}
+
+:-ms-input-placeholder {
+ color: #686868;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+}
+
+
+/**
+ * 5.0 - Forms
+ */
+
+input {
+ line-height: normal;
+}
+
+button,
+button[disabled]:hover,
+button[disabled]:focus,
+input[type="button"],
+input[type="button"][disabled]:hover,
+input[type="button"][disabled]:focus,
+input[type="reset"],
+input[type="reset"][disabled]:hover,
+input[type="reset"][disabled]:focus,
+input[type="submit"],
+input[type="submit"][disabled]:hover,
+input[type="submit"][disabled]:focus {
+ background: #1a1a1a;
+ border: 0;
+ border-radius: 2px;
+ color: #fff;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-weight: 700;
+ letter-spacing: 0.046875em;
+ line-height: 1;
+ padding: 0.84375em 0.875em 0.78125em;
+ text-transform: uppercase;
+}
+
+button:hover,
+button:focus,
+input[type="button"]:hover,
+input[type="button"]:focus,
+input[type="reset"]:hover,
+input[type="reset"]:focus,
+input[type="submit"]:hover,
+input[type="submit"]:focus {
+ background: #007acc;
+}
+
+button:focus,
+input[type="button"]:focus,
+input[type="reset"]:focus,
+input[type="submit"]:focus {
+ outline: thin dotted;
+ outline-offset: -4px;
+}
+
+input[type="text"],
+input[type="email"],
+input[type="url"],
+input[type="password"],
+input[type="search"],
+input[type="tel"],
+input[type="number"],
+textarea {
+ background: #f7f7f7;
+ background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
+ border: 1px solid #d1d1d1;
+ border-radius: 2px;
+ color: #686868;
+ padding: 0.625em 0.4375em;
+ width: 100%;
+}
+
+input[type="text"]:focus,
+input[type="email"]:focus,
+input[type="url"]:focus,
+input[type="password"]:focus,
+input[type="search"]:focus,
+input[type="tel"]:focus,
+input[type="number"]:focus,
+textarea:focus {
+ background-color: #fff;
+ border-color: #007acc;
+ color: #1a1a1a;
+ outline: 0;
+}
+
+.post-password-form {
+ margin-bottom: 1.75em;
+}
+
+.post-password-form label {
+ color: #686868;
+ display: block;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ letter-spacing: 0.076923077em;
+ line-height: 1.6153846154;
+ margin-bottom: 1.75em;
+ text-transform: uppercase;
+}
+
+.post-password-form input[type="password"] {
+ margin-top: 0.4375em;
+}
+
+.post-password-form > :last-child {
+ margin-bottom: 0;
+}
+
+.search-form {
+ position: relative;
+}
+
+input[type="search"].search-field {
+ padding-right: 49px;
+}
+
+.search-submit:before {
+ content: "\f400";
+ font-size: 24px;
+ left: 2px;
+ line-height: 42px;
+ position: relative;
+ width: 42px;
+}
+
+.search-submit {
+ border-radius: 0 2px 2px 0;
+ bottom: 0;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 42px;
+}
+
+
+/**
+ * 6.0 - Navigation
+ */
+
+/**
+ * 6.1 - Links
+ */
+
+a {
+ color: #007acc;
+ text-decoration: none;
+}
+
+a:hover,
+a:focus,
+a:active {
+ color: #686868;
+}
+
+a:focus {
+ outline: thin dotted;
+}
+
+a:hover,
+a:active {
+ outline: 0;
+}
+
+.entry-content a,
+.entry-summary a,
+.taxonomy-description a,
+.logged-in-as a,
+.comment-content a,
+.pingback .comment-body > a,
+.textwidget a,
+.entry-footer a:hover,
+.site-info a:hover {
+ box-shadow: 0 1px 0 0 currentColor;
+}
+
+.entry-content a:hover,
+.entry-content a:focus,
+.entry-summary a:hover,
+.entry-summary a:focus,
+.taxonomy-description a:hover,
+.taxonomy-description a:focus,
+.logged-in-as a:hover,
+.logged-in-as a:focus,
+.comment-content a:hover,
+.comment-content a:focus,
+.pingback .comment-body > a:hover,
+.pingback .comment-body > a:focus,
+.textwidget a:hover,
+.textwidget a:focus {
+ box-shadow: none;
+}
+
+
+/**
+ * 6.2 - Menus
+ */
+
+.site-header-menu {
+ display: none;
+ -webkit-flex: 0 1 100%;
+ -ms-flex: 0 1 100%;
+ flex: 0 1 100%;
+ margin: 0.875em 0;
+}
+
+.site-header-menu.toggled-on,
+.no-js .site-header-menu {
+ display: block;
+}
+
+.main-navigation {
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+}
+
+.site-footer .main-navigation {
+ margin-bottom: 1.75em;
+}
+
+.main-navigation ul {
+ list-style: none;
+ margin: 0;
+}
+
+.main-navigation li {
+ border-top: 1px solid #d1d1d1;
+ position: relative;
+}
+
+.main-navigation a {
+ color: #1a1a1a;
+ display: block;
+ line-height: 1.3125;
+ outline-offset: -1px;
+ padding: 0.84375em 0;
+}
+
+.main-navigation a:hover,
+.main-navigation a:focus {
+ color: #007acc;
+}
+
+.main-navigation .current-menu-item > a,
+.main-navigation .current_page_ancestor > a {
+ font-weight: 700;
+}
+
+.main-navigation ul ul {
+ display: none;
+ margin-left: 0.875em;
+}
+
+.no-js .main-navigation ul ul {
+ display: block;
+}
+
+.main-navigation ul .toggled-on {
+ display: block;
+}
+
+.main-navigation .primary-menu {
+ border-bottom: 1px solid #d1d1d1;
+}
+
+.main-navigation .menu-item-has-children > a {
+ margin-right: 56px;
+}
+
+.dropdown-toggle {
+ background-color: transparent;
+ border: 0;
+ border-radius: 0;
+ color: #1a1a1a;
+ content: "";
+ height: 48px;
+ padding: 0;
+ position: absolute;
+ right: 0;
+ text-transform: none;
+ top: 0;
+ width: 48px;
+}
+
+.dropdown-toggle:after {
+ border: 0 solid #d1d1d1;
+ border-left-width: 1px;
+ content: "\f431";
+ font-size: 24px;
+ left: 1px;
+ position: relative;
+ width: 48px;
+}
+
+.dropdown-toggle:hover,
+.dropdown-toggle:focus {
+ background-color: transparent;
+ color: #007acc;
+}
+
+.dropdown-toggle:focus {
+ outline: thin dotted;
+ outline-offset: -1px;
+}
+
+.dropdown-toggle:focus:after {
+ border-color: transparent;
+}
+
+.dropdown-toggle.toggled-on:after {
+ content: "\f432";
+}
+
+.site-header .main-navigation + .social-navigation {
+ margin-top: 1.75em;
+}
+
+.site-footer .social-navigation {
+ margin-bottom: 1.75em;
+}
+
+.social-navigation ul {
+ list-style: none;
+ margin: 0 0 -0.4375em;
+}
+
+.social-navigation li {
+ float: left;
+ margin: 0 0.4375em 0.4375em 0;
+}
+
+.social-navigation a {
+ border: 1px solid #d1d1d1;
+ border-radius: 50%;
+ color: #1a1a1a;
+ display: block;
+ height: 35px;
+ position: relative;
+ width: 35px;
+}
+
+.social-navigation a:before {
+ content: "\f415";
+ height: 33px;
+ line-height: 33px;
+ text-align: center;
+ width: 33px;
+}
+
+.social-navigation a:hover:before,
+.social-navigation a:focus:before {
+ color: #007acc;
+}
+
+.social-navigation a[href*="codepen.io"]:before {
+ content: "\f216";
+}
+
+.social-navigation a[href*="digg.com"]:before {
+ content: "\f221";
+}
+
+.social-navigation a[href*="dribbble.com"]:before {
+ content: "\f201";
+}
+
+.social-navigation a[href*="dropbox.com"]:before {
+ content: "\f225";
+}
+
+.social-navigation a[href*="facebook.com"]:before {
+ content: "\f203";
+}
+
+.social-navigation a[href*="flickr.com"]:before {
+ content: "\f211";
+}
+
+.social-navigation a[href*="foursquare.com"]:before {
+ content: "\f226";
+}
+
+.social-navigation a[href*="plus.google.com"]:before {
+ content: "\f206";
+}
+
+.social-navigation a[href*="github.com"]:before {
+ content: "\f200";
+}
+
+.social-navigation a[href*="instagram.com"]:before {
+ content: "\f215";
+}
+
+.social-navigation a[href*="linkedin.com"]:before {
+ content: "\f208";
+}
+
+.social-navigation a[href*="path.com"]:before {
+ content: "\f219";
+}
+
+.social-navigation a[href*="pinterest.com"]:before {
+ content: "\f210";
+}
+
+.social-navigation a[href*="getpocket.com"]:before {
+ content: "\f224";
+}
+
+.social-navigation a[href*="polldaddy.com"]:before {
+ content: "\f217";
+}
+
+.social-navigation a[href*="reddit.com"]:before {
+ content: "\f222";
+}
+
+.social-navigation a[href*="skype.com"]:before {
+ content: "\f220";
+}
+
+.social-navigation a[href*="stumbleupon.com"]:before {
+ content: "\f223";
+}
+
+.social-navigation a[href*="tumblr.com"]:before {
+ content: "\f214";
+}
+
+.social-navigation a[href*="twitter.com"]:before {
+ content: "\f202";
+}
+
+.social-navigation a[href*="vimeo.com"]:before {
+ content: "\f212";
+}
+
+.social-navigation a[href*="wordpress.com"]:before,
+.social-navigation a[href*="wordpress.org"]:before {
+ content: "\f205";
+}
+
+.social-navigation a[href*="youtube.com"]:before {
+ content: "\f213";
+}
+
+.social-navigation a[href^="mailto:"]:before {
+ content: "\f410";
+}
+
+.social-navigation a[href*="spotify.com"]:before {
+ content: "\f515";
+}
+
+.social-navigation a[href*="twitch.tv"]:before {
+ content: "\f516";
+}
+
+.social-navigation a[href$="/feed/"]:before {
+ content: "\f413";
+}
+
+.post-navigation {
+ border-top: 4px solid #1a1a1a;
+ border-bottom: 4px solid #1a1a1a;
+ clear: both;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ margin: 0 7.6923% 3.5em;
+}
+
+.post-navigation a {
+ color: #1a1a1a;
+ display: block;
+ padding: 1.75em 0;
+}
+
+.post-navigation span {
+ display: block;
+}
+
+.post-navigation .meta-nav {
+ color: #686868;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ letter-spacing: 0.076923077em;
+ line-height: 1.6153846154;
+ margin-bottom: 0.5384615385em;
+ text-transform: uppercase;
+}
+
+.post-navigation .post-title {
+ display: inline;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 23px;
+ font-size: 1.4375rem;
+ -webkit-font-variant-ligatures: common-ligatures;
+ font-variant-ligatures: common-ligatures;
+ font-weight: 700;
+ line-height: 1.2173913043;
+ text-rendering: optimizeLegibility;
+}
+
+.post-navigation a:hover .post-title,
+.post-navigation a:focus .post-title {
+ color: #007acc;
+}
+
+.post-navigation div + div {
+ border-top: 4px solid #1a1a1a;
+}
+
+.pagination {
+ border-top: 4px solid #1a1a1a;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 19px;
+ font-size: 1.1875rem;
+ margin: 0 7.6923% 2.947368421em;
+ min-height: 56px;
+ position: relative;
+}
+
+.pagination:before,
+.pagination:after {
+ background-color: #1a1a1a;
+ content: "";
+ height: 52px;
+ position: absolute;
+ top:0;
+ width: 52px;
+ z-index: 0;
+}
+
+.pagination:before {
+ right: 0;
+}
+
+.pagination:after {
+ right: 54px;
+}
+
+.pagination a:hover,
+.pagination a:focus {
+ color: #1a1a1a;
+}
+
+.pagination .nav-links {
+ padding-right: 106px;
+ position: relative;
+}
+
+.pagination .nav-links:before,
+.pagination .nav-links:after {
+ color: #fff;
+ font-size: 32px;
+ line-height: 51px;
+ opacity: 0.3;
+ position: absolute;
+ width: 52px;
+ z-index: 1;
+}
+
+.pagination .nav-links:before {
+ content: "\f429";
+ right: -1px;
+}
+
+.pagination .nav-links:after {
+ content: "\f430";
+ right: 55px;
+}
+
+/* reset screen-reader-text */
+.pagination .current .screen-reader-text {
+ position: static !important;
+}
+
+.pagination .page-numbers {
+ display: none;
+ letter-spacing: 0.013157895em;
+ line-height: 1;
+ margin: 0 0.7368421053em 0 -0.7368421053em;
+ padding: 0.8157894737em 0.7368421053em 0.3947368421em;
+ text-transform: uppercase;
+}
+
+.pagination .current {
+ display: inline-block;
+ font-weight: 700;
+}
+
+.pagination .prev,
+.pagination .next {
+ background-color: #1a1a1a;
+ color: #fff;
+ display: inline-block;
+ height: 52px;
+ margin: 0;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ top: 0;
+ width: 52px;
+ z-index: 2;
+}
+
+.pagination .prev:before,
+.pagination .next:before {
+ font-size: 32px;
+ height: 52px;
+ line-height: 52px;
+ position: relative;
+ width: 52px;
+}
+
+.pagination .prev:hover,
+.pagination .prev:focus,
+.pagination .next:hover,
+.pagination .next:focus {
+ background-color: #007acc;
+ color: #fff;
+}
+
+.pagination .prev:focus,
+.pagination .next:focus {
+ outline: 0;
+}
+
+.pagination .prev {
+ right: 54px;
+}
+
+.pagination .prev:before {
+ content: "\f430";
+ left: -1px;
+ top: -1px;
+}
+
+.pagination .next {
+ right: 0;
+}
+
+.pagination .next:before {
+ content: "\f429";
+ right: -1px;
+ top: -1px;
+}
+
+.image-navigation,
+.comment-navigation {
+ border-top: 1px solid #d1d1d1;
+ border-bottom: 1px solid #d1d1d1;
+ color: #686868;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+ margin: 0 7.6923% 2.1538461538em;
+ padding: 1.0769230769em 0;
+}
+
+.comment-navigation {
+ margin-right: 0;
+ margin-left: 0;
+}
+
+.comments-title + .comment-navigation {
+ border-bottom: 0;
+ margin-bottom: 0;
+}
+
+.image-navigation .nav-previous:not(:empty),
+.image-navigation .nav-next:not(:empty),
+.comment-navigation .nav-previous:not(:empty),
+.comment-navigation .nav-next:not(:empty) {
+ display: inline-block;
+}
+
+.image-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before,
+.comment-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before {
+ content: "\002f";
+ display: inline-block;
+ opacity: 0.7;
+ padding: 0 0.538461538em;
+}
+
+
+/**
+ * 7.0 - Accessibility
+ */
+
+/* Text meant only for screen readers */
+.says,
+.screen-reader-text {
+ clip: rect(1px, 1px, 1px, 1px);
+ height: 1px;
+ overflow: hidden;
+ position: absolute !important;
+ width: 1px;
+ /* many screen reader and browser combinations announce broken words as they would appear visually */
+ word-wrap: normal !important;
+}
+
+/* must have higher specificity than alternative color schemes inline styles */
+.site .skip-link {
+ background-color: #f1f1f1;
+ box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
+ color: #21759b;
+ display: block;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 14px;
+ font-weight: 700;
+ left: -9999em;
+ outline: none;
+ padding: 15px 23px 14px;
+ text-decoration: none;
+ text-transform: none;
+ top: -9999em;
+}
+
+.logged-in .site .skip-link {
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
+ font-family: "Open Sans", sans-serif;
+}
+
+.site .skip-link:focus {
+ clip: auto;
+ height: auto;
+ left: 6px;
+ top: 7px;
+ width: auto;
+ z-index: 100000;
+}
+
+
+/**
+ * 8.0 - Alignments
+ */
+
+.alignleft {
+ float: left;
+ margin: 0.375em 1.75em 1.75em 0;
+}
+
+.alignright {
+ float: right;
+ margin: 0.375em 0 1.75em 1.75em;
+}
+
+.aligncenter {
+ clear: both;
+ display: block;
+ margin: 0 auto 1.75em;
+}
+
+blockquote.alignleft {
+ margin: 0.3157894737em 1.4736842105em 1.473684211em 0;
+}
+
+blockquote.alignright {
+ margin: 0.3157894737em 0 1.473684211em 1.4736842105em;
+}
+
+blockquote.aligncenter {
+ margin-bottom: 1.473684211em;
+}
+
+
+/**
+ * 9.0 - Clearings
+ */
+
+.clear:before,
+.clear:after,
+blockquote:before,
+blockquote:after,
+.entry-content:before,
+.entry-content:after,
+.entry-summary:before,
+.entry-summary:after,
+.comment-content:before,
+.comment-content:after,
+.site-content:before,
+.site-content:after,
+.site-main > article:before,
+.site-main > article:after,
+.primary-menu:before,
+.primary-menu:after,
+.social-links-menu:before,
+.social-links-menu:after,
+.textwidget:before,
+.textwidget:after,
+.content-bottom-widgets:before,
+.content-bottom-widgets:after {
+ content: "";
+ display: table;
+}
+
+.clear:after,
+blockquote:after,
+.entry-content:after,
+.entry-summary:after,
+.comment-content:after,
+.site-content:after,
+.site-main > article:after,
+.primary-menu:after,
+.social-links-menu:after,
+.textwidget:after,
+.content-bottom-widgets:after {
+ clear: both;
+}
+
+
+/**
+ * 10.0 - Widgets
+ */
+
+.widget {
+ border-top: 4px solid #1a1a1a;
+ margin-bottom: 3.5em;
+ padding-top: 1.75em;
+}
+
+.widget-area > :last-child,
+.widget > :last-child {
+ margin-bottom: 0;
+}
+
+.widget .widget-title {
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 16px;
+ font-size: 1rem;
+ letter-spacing: 0.046875em;
+ line-height: 1.3125;
+ margin: 0 0 1.75em;
+ text-transform: uppercase;
+}
+
+.widget .widget-title:empty {
+ margin-bottom: 0;
+}
+
+.widget-title a {
+ color: #1a1a1a;
+}
+
+/* Calendar widget */
+.widget.widget_calendar table {
+ margin: 0;
+}
+
+.widget_calendar td,
+.widget_calendar th {
+ line-height: 2.5625;
+ padding: 0;
+ text-align: center;
+}
+
+.widget_calendar caption {
+ font-weight: 900;
+ margin-bottom: 1.75em;
+}
+
+.widget_calendar tbody a {
+ background-color: #007acc;
+ color: #fff;
+ display: block;
+ font-weight: 700;
+}
+
+.widget_calendar tbody a:hover,
+.widget_calendar tbody a:focus {
+ background-color: #686868;
+ color: #fff;
+}
+
+/* Recent Posts widget */
+.widget_recent_entries .post-date {
+ color: #686868;
+ display: block;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.615384615;
+ margin-bottom: 0.538461538em;
+}
+
+.widget_recent_entries li:last-child .post-date {
+ margin-bottom: 0;
+}
+
+/* RSS widget */
+.widget_rss .rsswidget img {
+ margin-top: -0.375em;
+}
+
+.widget_rss .rss-date,
+.widget_rss cite {
+ color: #686868;
+ display: block;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ font-style: normal;
+ line-height: 1.615384615;
+ margin-bottom: 0.538461538em;
+}
+
+.widget_rss .rssSummary:last-child {
+ margin-bottom: 2.1538461538em;
+}
+
+.widget_rss li:last-child :last-child {
+ margin-bottom: 0;
+}
+
+/* Tag Cloud widget */
+.tagcloud a {
+ border: 1px solid #d1d1d1;
+ border-radius: 2px;
+ display: inline-block;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: inherit !important;
+ line-height: 1;
+ margin: 0 0.1875em 0.4375em 0;
+ padding: 0.5625em 0.4375em 0.5em;
+}
+
+.tagcloud a:hover,
+.tagcloud a:focus {
+ border-color: #007acc;
+ color: #007acc;
+ outline: 0;
+}
+
+
+/**
+ * 11.0 - Content
+ */
+
+.site {
+ background-color: #fff;
+}
+
+.site-inner {
+ margin: 0 auto;
+ max-width: 1320px;
+ position: relative;
+}
+
+.site-content {
+ word-wrap: break-word;
+}
+
+.site-main {
+ margin-bottom: 3.5em;
+}
+
+.site-main > :last-child {
+ margin-bottom: 0;
+}
+
+
+/**
+ * 11.1 - Header
+ */
+
+.site-header {
+ padding: 2.625em 7.6923%;
+}
+
+.site-header-main {
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+}
+
+.site-branding {
+ margin: 0.875em auto 0.875em 0;
+}
+
+.site-title {
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 23px;
+ font-size: 1.4375rem;
+ font-weight: 700;
+ line-height: 1.2173913043;
+ margin: 0;
+}
+
+.site-branding .site-title a {
+ color: #1a1a1a;
+}
+
+.site-branding .site-title a:hover,
+.site-branding .site-title a:focus {
+ color: #007acc;
+}
+
+.site-description {
+ color: #686868;
+ display: none;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ font-weight: 400;
+ line-height: 1.0769230769;
+ margin: 0.538461538em 0 0;
+}
+
+.menu-toggle {
+ background-color: transparent;
+ border: 1px solid #d1d1d1;
+ color: #1a1a1a;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ margin: 1.076923077em 0;
+ padding: 0.769230769em;
+}
+
+.no-js .menu-toggle {
+ display: none;
+}
+
+.menu-toggle:hover,
+.menu-toggle:focus {
+ background-color: transparent;
+ border-color: #007acc;
+ color: #007acc;
+}
+
+.menu-toggle.toggled-on,
+.menu-toggle.toggled-on:hover,
+.menu-toggle.toggled-on:focus {
+ background-color: #1a1a1a;
+ border-color: #1a1a1a;
+ color: #fff;
+}
+
+.menu-toggle:focus {
+ outline: 0;
+}
+
+.menu-toggle.toggled-on:focus {
+ outline: thin dotted;
+}
+
+.header-image {
+ clear: both;
+ margin: 0.875em 0;
+}
+
+.header-image a {
+ display: block;
+}
+
+.header-image a:hover img,
+.header-image a:focus img {
+ opacity: 0.85;
+}
+
+
+/**
+ * 11.2 - Posts and pages
+ */
+
+.site-main > article {
+ margin-bottom: 3.5em;
+ position: relative;
+}
+
+.entry-header,
+.entry-summary,
+.entry-content,
+.entry-footer,
+.page-content {
+ margin-right: 7.6923%;
+ margin-left: 7.6923%;
+}
+
+.entry-title {
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 28px;
+ font-size: 1.75rem;
+ font-weight: 700;
+ line-height: 1.25;
+ margin-bottom: 1em;
+}
+
+.entry-title a {
+ color: #1a1a1a;
+}
+
+.entry-title a:hover,
+.entry-title a:focus {
+ color: #007acc;
+}
+
+.post-thumbnail {
+ display: block;
+ margin: 0 7.6923% 1.75em;
+}
+
+.post-thumbnail img {
+ display: block;
+}
+
+.no-sidebar .post-thumbnail img {
+ margin: 0 auto;
+}
+
+a.post-thumbnail:hover,
+a.post-thumbnail:focus {
+ opacity: 0.85;
+}
+
+.entry-content h1,
+.entry-summary h1,
+.comment-content h1,
+.textwidget h1 {
+ font-size: 28px;
+ font-size: 1.75rem;
+ line-height: 1.25;
+ margin-top: 2em;
+ margin-bottom: 1em;
+}
+
+.entry-content h2,
+.entry-summary h2,
+.comment-content h2,
+.textwidget h2 {
+ font-size: 23px;
+ font-size: 1.4375rem;
+ line-height: 1.2173913043;
+ margin-top: 2.4347826087em;
+ margin-bottom: 1.2173913043em;
+}
+
+.entry-content h3,
+.entry-summary h3,
+.comment-content h3,
+.textwidget h3 {
+ font-size: 19px;
+ font-size: 1.1875rem;
+ line-height: 1.1052631579;
+ margin-top: 2.9473684211em;
+ margin-bottom: 1.4736842105em;
+}
+
+.entry-content h4,
+.entry-content h5,
+.entry-content h6,
+.entry-summary h4,
+.entry-summary h5,
+.entry-summary h6,
+.comment-content h4,
+.comment-content h5,
+.comment-content h6,
+.textwidget h4,
+.textwidget h5,
+.textwidget h6 {
+ font-size: 16px;
+ font-size: 1rem;
+ line-height: 1.3125;
+ margin-top: 3.5em;
+ margin-bottom: 1.75em;
+}
+
+.entry-content h4,
+.entry-summary h4,
+.comment-content h4,
+.textwidget h4 {
+ letter-spacing: 0.140625em;
+ text-transform: uppercase;
+}
+
+.entry-content h6,
+.entry-summary h6,
+.comment-content h6,
+.textwidget h6 {
+ font-style: italic;
+}
+
+.entry-content h1,
+.entry-content h2,
+.entry-content h3,
+.entry-content h4,
+.entry-content h5,
+.entry-content h6,
+.entry-summary h1,
+.entry-summary h2,
+.entry-summary h3,
+.entry-summary h4,
+.entry-summary h5,
+.entry-summary h6,
+.comment-content h1,
+.comment-content h2,
+.comment-content h3,
+.comment-content h4,
+.comment-content h5,
+.comment-content h6,
+.textwidget h1,
+.textwidget h2,
+.textwidget h3,
+.textwidget h4,
+.textwidget h5,
+.textwidget h6 {
+ font-weight: 900;
+}
+
+.entry-content h1:first-child,
+.entry-content h2:first-child,
+.entry-content h3:first-child,
+.entry-content h4:first-child,
+.entry-content h5:first-child,
+.entry-content h6:first-child,
+.entry-summary h1:first-child,
+.entry-summary h2:first-child,
+.entry-summary h3:first-child,
+.entry-summary h4:first-child,
+.entry-summary h5:first-child,
+.entry-summary h6:first-child,
+.comment-content h1:first-child,
+.comment-content h2:first-child,
+.comment-content h3:first-child,
+.comment-content h4:first-child,
+.comment-content h5:first-child,
+.comment-content h6:first-child,
+.textwidget h1:first-child,
+.textwidget h2:first-child,
+.textwidget h3:first-child,
+.textwidget h4:first-child,
+.textwidget h5:first-child,
+.textwidget h6:first-child {
+ margin-top: 0;
+}
+
+.post-navigation .post-title,
+.entry-title,
+.comments-title {
+ -webkit-hyphens: auto;
+ -moz-hyphens: auto;
+ -ms-hyphens: auto;
+ hyphens: auto;
+}
+
+body:not(.search-results) .entry-summary {
+ color: #686868;
+ font-size: 19px;
+ font-size: 1.1875rem;
+ line-height: 1.4736842105;
+ margin-bottom: 1.4736842105em;
+}
+
+body:not(.search-results) .entry-header + .entry-summary {
+ margin-top: -0.736842105em;
+}
+
+body:not(.search-results) .entry-summary p,
+body:not(.search-results) .entry-summary address,
+body:not(.search-results) .entry-summary hr,
+body:not(.search-results) .entry-summary ul,
+body:not(.search-results) .entry-summary ol,
+body:not(.search-results) .entry-summary dl,
+body:not(.search-results) .entry-summary dd,
+body:not(.search-results) .entry-summary table {
+ margin-bottom: 1.4736842105em;
+}
+
+body:not(.search-results) .entry-summary li > ul,
+body:not(.search-results) .entry-summary li > ol {
+ margin-bottom: 0;
+}
+
+body:not(.search-results) .entry-summary th,
+body:not(.search-results) .entry-summary td {
+ padding: 0.3684210526em;
+}
+
+body:not(.search-results) .entry-summary fieldset {
+ margin-bottom: 1.4736842105em;
+ padding: 0.3684210526em;
+}
+
+body:not(.search-results) .entry-summary blockquote {
+ border-color: currentColor;
+}
+
+body:not(.search-results) .entry-summary blockquote > :last-child {
+ margin-bottom: 0;
+}
+
+body:not(.search-results) .entry-summary .alignleft {
+ margin: 0.2631578947em 1.4736842105em 1.4736842105em 0;
+}
+
+body:not(.search-results) .entry-summary .alignright {
+ margin: 0.2631578947em 0 1.4736842105em 1.4736842105em;
+}
+
+body:not(.search-results) .entry-summary .aligncenter {
+ margin-bottom: 1.4736842105em;
+}
+
+.entry-content > :last-child,
+.entry-summary > :last-child,
+body:not(.search-results) .entry-summary > :last-child,
+.page-content > :last-child,
+.comment-content > :last-child,
+.textwidget > :last-child {
+ margin-bottom: 0;
+}
+
+.more-link {
+ white-space: nowrap;
+}
+
+.author-info {
+ border-top: 1px solid #d1d1d1;
+ border-bottom: 1px solid #d1d1d1;
+ clear: both;
+ margin-top: 1.75em;
+ padding-top: 1.75em;
+ padding-bottom: 1.75em;
+}
+
+.author-avatar .avatar {
+ float: left;
+ height: 42px;
+ margin: 0 1.75em 1.75em 0;
+ width: 42px;
+}
+
+.author-description > :last-child {
+ margin-bottom: 0;
+}
+
+.entry-content .author-title {
+ clear: none;
+ font-size: 16px;
+ font-size: 1rem;
+ font-weight: 900;
+ line-height: 1.75;
+ margin: 0;
+}
+
+.author-bio {
+ color: #686868;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+ margin-bottom: 1.6153846154em;
+ overflow: hidden;
+}
+
+.author-link {
+ white-space: nowrap;
+}
+
+.entry-footer {
+ color: #686868;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+ margin-top: 2.1538461538em;
+}
+
+.entry-footer:empty {
+ margin: 0;
+}
+
+.entry-footer a {
+ color: #686868;
+}
+
+.entry-footer a:hover,
+.entry-footer a:focus {
+ color: #007acc;
+}
+
+.entry-footer > span:not(:first-child):before {
+ content: "\002f";
+ display: inline-block;
+ opacity: 0.7;
+ padding: 0 0.538461538em;
+}
+
+.entry-footer .avatar {
+ height: 21px;
+ margin: -0.1538461538em 0.5384615385em 0 0;
+ width: 21px;
+}
+
+.sticky-post {
+ color: #686868;
+ display: block;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ letter-spacing: 0.076923077em;
+ line-height: 1.6153846154;
+ margin-bottom: 0.5384615385em;
+ text-transform: uppercase;
+}
+
+/**
+ * IE8 and earlier will drop any block with CSS3 selectors.
+ * Do not combine these styles with the next block.
+ */
+.updated:not(.published) {
+ display: none;
+}
+
+.sticky .posted-on,
+.byline {
+ display: none;
+}
+
+.single .byline,
+.group-blog .byline {
+ display: inline;
+}
+
+.page-header {
+ border-top: 4px solid #1a1a1a;
+ margin: 0 7.6923% 3.5em;
+ padding-top: 1.75em;
+}
+
+body.error404 .page-header,
+body.search-no-results .page-header {
+ border-top: 0;
+ padding-top: 0;
+}
+
+.page-title {
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 23px;
+ font-size: 1.4375rem;
+ line-height: 1.2173913043;
+}
+
+.taxonomy-description {
+ color: #686868;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+}
+
+.taxonomy-description p {
+ margin: 0.5384615385em 0 1.6153846154em;
+}
+
+.taxonomy-description > :last-child {
+ margin-bottom: 0;
+}
+
+.page-links {
+ clear: both;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ margin: 0 0 1.75em;
+}
+
+.page-links a,
+.page-links > span {
+ border: 1px solid #d1d1d1;
+ border-radius: 2px;
+ display: inline-block;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ height: 1.8461538462em;
+ line-height: 1.6923076923em;
+ margin-right: 0.3076923077em;
+ text-align: center;
+ width: 1.8461538462em;
+}
+
+.page-links a {
+ background-color: #1a1a1a;
+ border-color: #1a1a1a;
+ color: #fff;
+}
+
+.page-links a:hover,
+.page-links a:focus {
+ background-color: #007acc;
+ border-color: transparent;
+ color: #fff;
+}
+
+.page-links > .page-links-title {
+ border: 0;
+ color: #1a1a1a;
+ height: auto;
+ margin: 0;
+ padding-right: 0.6153846154em;
+ width: auto;
+}
+
+.entry-attachment {
+ margin-bottom: 1.75em;
+}
+
+.entry-caption {
+ color: #686868;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ font-style: italic;
+ line-height: 1.6153846154;
+ padding-top: 1.0769230769em;
+}
+
+.entry-caption > :last-child {
+ margin-bottom: 0;
+}
+
+.content-bottom-widgets {
+ margin: 0 7.6923%;
+}
+
+.content-bottom-widgets .widget-area {
+ margin-bottom: 3.5em;
+}
+
+
+/**
+ * 11.3 - Post Formats
+ */
+
+.format-aside .entry-title,
+.format-image .entry-title,
+.format-video .entry-title,
+.format-quote .entry-title,
+.format-gallery .entry-title,
+.format-status .entry-title,
+.format-link .entry-title,
+.format-audio .entry-title,
+.format-chat .entry-title {
+ font-size: 19px;
+ font-size: 1.1875rem;
+ line-height: 1.473684211;
+ margin-bottom: 1.473684211em;
+}
+
+.blog .format-status .entry-title,
+.archive .format-status .entry-title {
+ display: none;
+}
+
+
+/**
+ * 11.4 - Comments
+ */
+
+.comments-area {
+ margin: 0 7.6923% 3.5em;
+}
+
+.comment-list + .comment-respond,
+.comment-navigation + .comment-respond {
+ padding-top: 1.75em;
+}
+
+.comments-title,
+.comment-reply-title {
+ border-top: 4px solid #1a1a1a;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 23px;
+ font-size: 1.4375rem;
+ font-weight: 700;
+ line-height: 1.3125;
+ padding-top: 1.217391304em;
+}
+
+.comments-title {
+ margin-bottom: 1.217391304em;
+}
+
+.comment-list {
+ list-style: none;
+ margin: 0;
+}
+
+.comment-list article,
+.comment-list .pingback,
+.comment-list .trackback {
+ border-top: 1px solid #d1d1d1;
+ padding: 1.75em 0;
+}
+
+.comment-list .children {
+ list-style: none;
+ margin: 0;
+}
+
+.comment-list .children > li {
+ padding-left: 0.875em;
+}
+
+.comment-author {
+ color: #1a1a1a;
+ margin-bottom: 0.4375em;
+}
+
+.comment-author .avatar {
+ float: left;
+ height: 28px;
+ margin-right: 0.875em;
+ position: relative;
+ width: 28px;
+}
+
+.bypostauthor > article .fn:after {
+ content: "\f304";
+ left: 3px;
+ position: relative;
+ top: 5px;
+}
+
+.comment-metadata,
+.pingback .edit-link {
+ color: #686868;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+}
+
+.comment-metadata {
+ margin-bottom: 2.1538461538em;
+}
+
+.comment-metadata a,
+.pingback .comment-edit-link {
+ color: #686868;
+}
+
+.comment-metadata a:hover,
+.comment-metadata a:focus,
+.pingback .comment-edit-link:hover,
+.pingback .comment-edit-link:focus {
+ color: #007acc;
+}
+
+.comment-metadata .edit-link,
+.pingback .edit-link {
+ display: inline-block;
+}
+
+.comment-metadata .edit-link:before,
+.pingback .edit-link:before {
+ content: "\002f";
+ display: inline-block;
+ opacity: 0.7;
+ padding: 0 0.538461538em;
+}
+
+.comment-content ul,
+.comment-content ol {
+ margin: 0 0 1.5em 1.25em;
+}
+
+.comment-content li > ul,
+.comment-content li > ol {
+ margin-bottom: 0;
+}
+
+.comment-reply-link {
+ border: 1px solid #d1d1d1;
+ border-radius: 2px;
+ color: #007acc;
+ display: inline-block;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1;
+ margin-top: 2.1538461538em;
+ padding: 0.5384615385em 0.5384615385em 0.4615384615em;
+}
+
+.comment-reply-link:hover,
+.comment-reply-link:focus {
+ border-color: currentColor;
+ color: #007acc;
+ outline: 0;
+}
+
+.comment-form {
+ padding-top: 1.75em;
+}
+
+.comment-form label {
+ color: #686868;
+ display: block;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ letter-spacing: 0.076923077em;
+ line-height: 1.6153846154;
+ margin-bottom: 0.5384615385em;
+ text-transform: uppercase;
+}
+
+.comment-list .comment-form {
+ padding-bottom: 1.75em;
+}
+
+.comment-notes,
+.comment-awaiting-moderation,
+.logged-in-as,
+.form-allowed-tags {
+ color: #686868;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+ margin-bottom: 2.1538461538em;
+}
+
+.no-comments {
+ border-top: 1px solid #d1d1d1;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-weight: 700;
+ margin: 0;
+ padding-top: 1.75em;
+}
+
+.comment-navigation + .no-comments {
+ border-top: 0;
+ padding-top: 0;
+}
+
+.form-allowed-tags code {
+ font-family: Inconsolata, monospace;
+}
+
+.form-submit {
+ margin-bottom: 0;
+}
+
+.required {
+ color: #007acc;
+ font-family: Merriweather, Georgia, serif;
+}
+
+.comment-reply-title small {
+ font-size: 100%;
+}
+
+.comment-reply-title small a {
+ border: 0;
+ float: right;
+ height: 32px;
+ overflow: hidden;
+ width: 26px;
+}
+
+.comment-reply-title small a:hover,
+.comment-reply-title small a:focus {
+ color: #1a1a1a;
+}
+
+.comment-reply-title small a:before {
+ content: "\f405";
+ font-size: 32px;
+ position: relative;
+ top: -5px;
+}
+
+
+/**
+ * 11.5 - Sidebar
+ */
+
+.sidebar {
+ margin-bottom: 3.5em;
+ padding: 0 7.6923%;
+}
+
+
+/**
+ * 11.6 - Footer
+ */
+
+.site-footer {
+ padding: 0 7.6923% 1.75em;
+}
+
+.site-info {
+ color: #686868;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+}
+
+.site-info a {
+ color: #686868;
+}
+
+.site-info a:hover,
+.site-info a:focus {
+ color: #007acc;
+}
+
+.site-footer .site-title {
+ font-family: inherit;
+ font-size: inherit;
+ font-weight: 400;
+}
+
+.site-footer .site-title:after {
+ content: "\002f";
+ display: inline-block;
+ font-family: Montserrat, sans-serif;
+ opacity: 0.7;
+ padding: 0 0.307692308em 0 0.538461538em;
+}
+
+
+/**
+ * 12.0 - Media
+ */
+
+.site .avatar {
+ border-radius: 50%;
+}
+
+.entry-content .wp-smiley,
+.entry-summary .wp-smiley,
+.comment-content .wp-smiley,
+.textwidget .wp-smiley {
+ border: none;
+ margin-top: 0;
+ margin-bottom: 0;
+ padding: 0;
+}
+
+.entry-content a img,
+.entry-summary a img,
+.comment-content a img,
+.textwidget a img {
+ display: block;
+}
+
+/* Make sure embeds and iframes fit their containers. */
+embed,
+iframe,
+object,
+video {
+ margin-bottom: 1.75em;
+ max-width: 100%;
+ vertical-align: middle;
+}
+
+p > embed,
+p > iframe,
+p > object,
+p > video {
+ margin-bottom: 0;
+}
+
+.entry-content .wp-audio-shortcode a,
+.entry-content .wp-playlist a {
+ box-shadow: none;
+}
+
+.wp-audio-shortcode,
+.wp-video,
+.wp-playlist.wp-audio-playlist {
+ margin-top: 0;
+ margin-bottom: 1.75em;
+}
+
+.wp-playlist.wp-audio-playlist {
+ padding-bottom: 0;
+}
+
+.wp-playlist .wp-playlist-tracks {
+ margin-top: 0;
+}
+
+.wp-playlist-item .wp-playlist-caption {
+ border-bottom: 0;
+ padding: 0.7142857143em 0;
+}
+
+.wp-playlist-item .wp-playlist-item-length {
+ top: 0.7142857143em;
+}
+
+
+/**
+ * 12.1 - Captions
+ */
+
+.wp-caption {
+ margin-bottom: 1.75em;
+ max-width: 100%;
+}
+
+.wp-caption img[class*="wp-image-"] {
+ display: block;
+ margin: 0;
+}
+
+.wp-caption .wp-caption-text {
+ color: #686868;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ font-style: italic;
+ line-height: 1.6153846154;
+ padding-top: 0.5384615385em;
+}
+
+
+/**
+ * 12.2 - Galleries
+ */
+
+.gallery {
+ margin: 0 -1.1666667% 1.75em;
+}
+
+.gallery-item {
+ display: inline-block;
+ max-width: 33.33%;
+ padding: 0 1.1400652% 2.2801304%;
+ text-align: center;
+ vertical-align: top;
+ width: 100%;
+}
+
+.gallery-columns-1 .gallery-item {
+ max-width: 100%;
+}
+
+.gallery-columns-2 .gallery-item {
+ max-width: 50%;
+}
+
+.gallery-columns-4 .gallery-item {
+ max-width: 25%;
+}
+
+.gallery-columns-5 .gallery-item {
+ max-width: 20%;
+}
+
+.gallery-columns-6 .gallery-item {
+ max-width: 16.66%;
+}
+
+.gallery-columns-7 .gallery-item {
+ max-width: 14.28%;
+}
+
+.gallery-columns-8 .gallery-item {
+ max-width: 12.5%;
+}
+
+.gallery-columns-9 .gallery-item {
+ max-width: 11.11%;
+}
+
+.gallery-icon img {
+ margin: 0 auto;
+}
+
+.gallery-caption {
+ color: #686868;
+ display: block;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ font-style: italic;
+ line-height: 1.6153846154;
+ padding-top: 0.5384615385em;
+}
+
+.gallery-columns-6 .gallery-caption,
+.gallery-columns-7 .gallery-caption,
+.gallery-columns-8 .gallery-caption,
+.gallery-columns-9 .gallery-caption {
+ display: none;
+}
+
+
+/**
+ * 13.0 - Multisites
+ */
+
+.widecolumn {
+ margin-bottom: 3.5em;
+ padding: 0 7.6923%;
+}
+
+.widecolumn .mu_register {
+ width: auto;
+}
+
+.widecolumn .mu_alert {
+ margin-bottom: 1.75em;
+}
+
+.widecolumn .mu_register .mu_alert {
+ padding: 0.875em;
+}
+
+.widecolumn form,
+.widecolumn .mu_register form {
+ margin-top: 0;
+}
+
+.widecolumn h2 {
+ font-size: 23px;
+ font-size: 1.4375rem;
+ font-weight: 900;
+ line-height: 1.2173913043;
+ margin-bottom: 1.2173913043em;
+}
+
+.widecolumn p {
+ margin: 1.75em 0;
+}
+
+.widecolumn p + h2 {
+ margin-top: 2.4347826087em;
+}
+
+.widecolumn label,
+.widecolumn .mu_register label {
+ color: #686868;
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
+ font-size: 13px;
+ font-size: 0.8125rem;
+ font-weight: 400;
+ letter-spacing: 0.076923077em;
+ line-height: 1.6153846154;
+ text-transform: uppercase;
+}
+
+.widecolumn .mu_register label {
+ margin: 2.1538461538em 0.7692307692em 0.5384615385em 0;
+}
+
+.widecolumn .mu_register label strong {
+ font-weight: 400;
+}
+
+.widecolumn #key,
+.widecolumn .mu_register #blog_title,
+.widecolumn .mu_register #user_email,
+.widecolumn .mu_register #blogname,
+.widecolumn .mu_register #user_name {
+ font-size: 16px;
+ font-size: 1rem;
+ width: 100%;
+}
+
+.widecolumn .mu_register #blogname {
+ margin: 0;
+}
+
+.widecolumn .mu_register #blog_title,
+.widecolumn .mu_register #user_email,
+.widecolumn .mu_register #user_name {
+ margin: 0 0 0.375em;
+}
+
+.widecolumn #submit,
+.widecolumn .mu_register input[type="submit"] {
+ font-size: 16px;
+ font-size: 1rem;
+ margin: 0;
+ width: auto;
+}
+
+.widecolumn .mu_register .prefix_address,
+.widecolumn .mu_register .suffix_address {
+ font-size: inherit;
+}
+
+.widecolumn .mu_register > :last-child,
+.widecolumn form > :last-child {
+ margin-bottom: 0;
+}
+
+
+/**
+ * 14.0 - Media Queries
+ */
+
+/**
+ * Does the same thing as <meta name="viewport" content="width=device-width">,
+ * but in the future W3C standard way. -ms- prefix is required for IE10+ to
+ * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
+ * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
+ */
+@-ms-viewport {
+ width: device-width;
+}
+
+@viewport {
+ width: device-width;
+}
+
+
+/**
+ * 14.1 - >= 710px
+ */
+
+@media screen and (min-width: 44.375em) {
+ body:not(.custom-background-image):before,
+ body:not(.custom-background-image):after {
+ background: inherit;
+ content: "";
+ display: block;
+ height: 21px;
+ left: 0;
+ position: fixed;
+ width: 100%;
+ z-index: 99;
+ }
+
+ body:not(.custom-background-image):before {
+ top: 0;
+ }
+
+ body:not(.custom-background-image).admin-bar:before {
+ top: 46px;
+ }
+
+ body:not(.custom-background-image):after {
+ bottom: 0;
+ }
+
+ .site {
+ margin: 21px;
+ }
+
+ .site-main {
+ margin-bottom: 5.25em;
+ }
+
+ .site-header {
+ padding: 3.9375em 7.6923%;
+ }
+
+ .site-branding {
+ margin-top: 1.3125em;
+ margin-bottom: 1.3125em;
+ }
+
+ .site-title {
+ font-size: 28px;
+ font-size: 1.75rem;
+ line-height: 1.25;
+ }
+
+ .site-description {
+ display: block;
+ }
+
+ .menu-toggle {
+ font-size: 16px;
+ font-size: 1.0rem;
+ margin: 1.3125em 0;
+ padding: 0.8125em 0.875em 0.6875em;
+ }
+
+ .site-header-menu {
+ margin: 1.3125em 0;
+ }
+
+ .site-header .main-navigation + .social-navigation {
+ margin-top: 2.625em;
+ }
+
+ .header-image {
+ margin: 1.3125em 0;
+ }
+
+ .pagination {
+ margin: 0 23.0769% 4.421052632em 7.6923%
+ }
+
+ .post-navigation {
+ margin-bottom: 5.25em;
+ }
+
+ .post-navigation .post-title {
+ font-size: 28px;
+ font-size: 1.75rem;
+ line-height: 1.25;
+ }
+
+ /* restore screen-reader-text */
+ .pagination .current .screen-reader-text {
+ position: absolute !important;
+ }
+
+ .pagination .page-numbers {
+ display: inline-block;
+ }
+
+ .site-main > article {
+ margin-bottom: 5.25em;
+ }
+
+ .entry-header,
+ .post-thumbnail,
+ .entry-content,
+ .entry-summary,
+ .entry-footer,
+ .comments-area,
+ .image-navigation,
+ .post-navigation,
+ .page-header,
+ .page-content,
+ .content-bottom-widgets {
+ margin-right: 23.0769%;
+ }
+
+ .entry-title {
+ font-size: 33px;
+ font-size: 2.0625rem;
+ line-height: 1.2727272727;
+ margin-bottom: 0.8484848485em;
+ }
+
+ .entry-content blockquote.alignleft,
+ .entry-content blockquote.alignright {
+ border-width: 4px 0 0 0;
+ padding: 0.9473684211em 0 0;
+ width: -webkit-calc(50% - 0.736842105em);
+ width: calc(50% - 0.736842105em);
+ }
+
+ .entry-content blockquote:not(.alignleft):not(.alignright),
+ .entry-summary blockquote,
+ .comment-content blockquote {
+ margin-left: -1.473684211em;
+ }
+
+ .entry-content blockquote blockquote:not(.alignleft):not(.alignright),
+ .entry-summary blockquote blockquote,
+ .comment-content blockquote blockquote {
+ margin-left: 0;
+ }
+
+ .entry-content ul,
+ .entry-summary ul,
+ .comment-content ul,
+ .entry-content ol,
+ .entry-summary ol,
+ .comment-content ol {
+ margin-left: 0;
+ }
+
+ .entry-content li > ul,
+ .entry-summary li > ul,
+ .comment-content li > ul,
+ .entry-content blockquote > ul,
+ .entry-summary blockquote > ul,
+ .comment-content blockquote > ul {
+ margin-left: 1.25em;
+ }
+
+ .entry-content li > ol,
+ .entry-summary li > ol,
+ .comment-content li > ol,
+ .entry-content blockquote > ol,
+ .entry-summary blockquote > ol,
+ .comment-content blockquote > ol {
+ margin-left: 1.5em;
+ }
+
+ .comment-author {
+ margin-bottom: 0;
+ }
+
+ .comment-author .avatar {
+ height: 42px;
+ position: relative;
+ top: 0.25em;
+ width: 42px;
+ }
+
+ .comment-list .children > li {
+ padding-left: 1.75em;
+ }
+
+ .comment-list + .comment-respond,
+ .comment-navigation + .comment-respond {
+ padding-top: 3.5em;
+ }
+
+ .comments-area,
+ .widget,
+ .content-bottom-widgets .widget-area {
+ margin-bottom: 5.25em;
+ }
+
+ .sidebar,
+ .widecolumn {
+ margin-bottom: 5.25em;
+ padding-right: 23.0769%;
+ }
+
+ body:not(.search-results) .entry-summary li > ul,
+ body:not(.search-results) .entry-summary blockquote > ul {
+ margin-left: 1.157894737em;
+ }
+
+ body:not(.search-results) .entry-summary li > ol,
+ body:not(.search-results) .entry-summary blockquote > ol {
+ margin-left: 1.473684211em;
+ }
+}
+
+
+/**
+ * 14.2 - >= 783px
+ */
+
+@media screen and (min-width: 48.9375em) {
+ body:not(.custom-background-image).admin-bar:before {
+ top: 32px;
+ }
+}
+
+
+/**
+ * 14.3 - >= 910px
+ */
+
+@media screen and (min-width: 56.875em) {
+ .site-header {
+ padding-right: 4.5455%;
+ padding-left: 4.5455%;
+ }
+
+ .site-header-main {
+ -webkit-align-items: flex-start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ }
+
+ .site-header-menu {
+ display: block;
+ -webkit-flex: 0 1 auto;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ }
+
+ .main-navigation {
+ margin: 0 -0.875em;
+ }
+
+ .main-navigation .primary-menu {
+ border: 0;
+ }
+
+ .main-navigation li {
+ border: 0;
+ float: left;
+ }
+
+ .main-navigation a {
+ outline-offset: -8px;
+ padding: 0.65625em 0.875em;
+ white-space: nowrap;
+ }
+
+ .main-navigation li:hover > a,
+ .main-navigation li.focus > a {
+ color: #007acc;
+ }
+
+ .main-navigation ul ul {
+ border-bottom: 1px solid #d1d1d1;
+ display: block;
+ left: -999em;
+ margin: 0;
+ position: absolute;
+ z-index: 99999;
+ }
+
+ .main-navigation ul ul ul {
+ left: -999em;
+ top: -1px;
+ }
+
+ .main-navigation ul ul ul:before,
+ .main-navigation ul ul ul:after {
+ border: 0;
+ }
+
+ .main-navigation ul ul li {
+ background-color: #fff;
+ border: 1px solid #d1d1d1;
+ border-bottom-width: 0;
+ }
+
+ .main-navigation ul ul li:hover > ul,
+ .main-navigation ul ul li.focus > ul {
+ left: 100%;
+ }
+
+ .main-navigation ul ul a {
+ white-space: normal;
+ width: 15em;
+ }
+
+ .main-navigation ul ul:before,
+ .main-navigation ul ul:after {
+ border-style: solid;
+ content: "";
+ position: absolute;
+ }
+
+ .main-navigation ul ul:before {
+ border-color: #d1d1d1 transparent;
+ border-width: 0 10px 10px;
+ left: 7px;
+ top: -9px;
+ }
+
+ .main-navigation ul ul:after {
+ border-color: #fff transparent;
+ border-width: 0 8px 8px;
+ left: 9px;
+ top: -7px;
+ }
+
+ .main-navigation li:hover > ul,
+ .main-navigation li.focus > ul {
+ left: auto;
+ }
+
+ .main-navigation .menu-item-has-children > a {
+ margin: 0;
+ padding-right: 2.25em;
+ }
+
+ .main-navigation .menu-item-has-children > a:after {
+ content: "\f431";
+ position: absolute;
+ right: 0.625em;
+ top: 0.8125em;
+ }
+
+ .main-navigation ul ul .menu-item-has-children > a {
+ padding-right: 2.0625em;
+ }
+
+ .main-navigation ul ul .menu-item-has-children > a:after {
+ right: 0.5625em;
+ top: 0.8125em;
+ -webkit-transform: rotate(-90deg);
+ -moz-transform: rotate(-90deg);
+ -ms-transform: rotate(-90deg);
+ transform: rotate(-90deg);
+ }
+
+ .dropdown-toggle,
+ .main-navigation ul .dropdown-toggle.toggled-on,
+ .menu-toggle,
+ .site-header .social-navigation,
+ .site-footer .main-navigation {
+ display: none;
+ }
+
+ .site-content {
+ padding: 0 4.5455%;
+ }
+
+ .content-area {
+ float: left;
+ margin-right: -100%;
+ width: 70%;
+ }
+
+ .entry-header,
+ .post-thumbnail,
+ .entry-content,
+ .entry-summary,
+ .entry-footer,
+ .comments-area,
+ .image-navigation,
+ .post-navigation,
+ .pagination,
+ .page-header,
+ .page-content,
+ .content-bottom-widgets {
+ margin-right: 0;
+ margin-left: 0;
+ }
+
+ .sidebar {
+ float: left;
+ margin-left: 75%;
+ padding: 0;
+ width: 25%;
+ }
+
+ .widget {
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+ margin-bottom: 3.230769231em;
+ padding-top: 1.615384615em;
+ }
+
+ .widget .widget-title {
+ margin-bottom: 1.3125em;
+ }
+
+ .widget p,
+ .widget address,
+ .widget hr,
+ .widget ul,
+ .widget ol,
+ .widget dl,
+ .widget dd,
+ .widget table {
+ margin-bottom: 1.6153846154em;
+ }
+
+ .widget li > ul,
+ .widget li > ol {
+ margin-bottom: 0;
+ }
+
+ .widget blockquote {
+ font-size: 16px;
+ font-size: 1rem;
+ line-height: 1.3125;
+ margin-bottom: 1.3125em;
+ padding-left: 1.0625em;
+ }
+
+ .widget blockquote cite,
+ .widget blockquote small {
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+ }
+
+ .widget th,
+ .widget td {
+ padding: 0.5384615385em;
+ }
+
+ .widget pre {
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+ margin-bottom: 1.6153846154em;
+ padding: 0.5384615385em;
+ }
+
+ .widget fieldset {
+ margin-bottom: 1.6153846154em;
+ padding: 0.5384615385em;
+ }
+
+ .widget button,
+ .widget input,
+ .widget select,
+ .widget textarea {
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+ }
+
+ .widget button,
+ .widget input[type="button"],
+ .widget input[type="reset"],
+ .widget input[type="submit"] {
+ line-height: 1;
+ padding: 0.846153846em;
+ }
+
+ .widget input[type="text"],
+ .widget input[type="email"],
+ .widget input[type="url"],
+ .widget input[type="password"],
+ .widget input[type="search"],
+ .widget input[type="tel"],
+ .widget input[type="number"],
+ .widget textarea {
+ padding: 0.4615384615em 0.5384615385em;
+ }
+
+ .widget h1 {
+ font-size: 23px;
+ font-size: 1.4375rem;
+ line-height: 1.2173913043;
+ margin-bottom: 0.9130434783em;
+ }
+
+ .widget h2 {
+ font-size: 19px;
+ font-size: 1.1875rem;
+ line-height: 1.1052631579;
+ margin-bottom: 1.1052631579em;
+ }
+
+ .widget h3 {
+ font-size: 16px;
+ font-size: 1rem;
+ line-height: 1.3125;
+ margin-bottom: 1.3125em;
+ }
+
+ .widget h4,
+ .widget h5,
+ .widget h6 {
+ font-size: 13px;
+ font-size: 0.8125rem;
+ line-height: 1.6153846154;
+ margin-bottom: 0.9130434783em;
+ }
+
+ .widget .alignleft {
+ margin: 0.2307692308em 1.6153846154em 1.6153846154em 0;
+ }
+
+ .widget .alignright {
+ margin: 0.2307692308em 0 1.6153846154em 1.6153846154em;
+ }
+
+ .widget .aligncenter {
+ margin-bottom: 1.6153846154em;
+ }
+
+ .widget_calendar td,
+ .widget_calendar th {
+ line-height: 2.6923076923;
+ padding: 0;
+ }
+
+ .widget_rss .rssSummary:last-child {
+ margin-bottom: 1.615384615em;
+ }
+
+ .widget input[type="search"].search-field {
+ padding-right: 42px;
+ }
+
+ .widget .search-submit:before {
+ font-size: 16px;
+ left: 1px;
+ line-height: 35px;
+ width: 35px;
+ }
+
+ .widget button.search-submit {
+ padding: 0;
+ width: 35px;
+ }
+
+ .tagcloud a {
+ margin: 0 0.2307692308em 0.5384615385em 0;
+ padding: 0.5384615385em 0.4615384615em 0.4615384615em;
+ }
+
+ .textwidget h1 {
+ margin-top: 1.8260869565em;
+ }
+
+ .textwidget h2 {
+ margin-top: 2.2105263158em;
+ }
+
+ .textwidget h3 {
+ margin-top: 2.625em;
+ }
+
+ .textwidget h4 {
+ letter-spacing: 0.153846154em;
+ }
+
+ .textwidget h4,
+ .textwidget h5,
+ .textwidget h6 {
+ margin-top: 3.2307692308em;
+ }
+
+ .content-bottom-widgets .widget-area:nth-child(1):nth-last-child(2),
+ .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1) {
+ float: left;
+ margin-right: 7.1428571%;
+ width: 46.42857145%;
+ }
+
+ .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1):last-of-type {
+ margin-right: 0;
+ }
+
+ .site-footer {
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding: 0 4.5455% 3.5em;
+ }
+
+ .site-footer .social-navigation {
+ margin: 0;
+ -webkit-order: 2;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+
+ .site-info {
+ margin: 0.538461538em auto 0.538461538em 0;
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+
+ .no-sidebar .content-area {
+ float: none;
+ margin: 0;
+ width: 100%;
+ }
+
+ .no-sidebar .entry-header,
+ .no-sidebar .entry-content,
+ .no-sidebar .entry-summary,
+ .no-sidebar .entry-footer,
+ .no-sidebar .comments-area,
+ .no-sidebar .image-navigation,
+ .no-sidebar .post-navigation,
+ .no-sidebar .pagination,
+ .no-sidebar .page-header,
+ .no-sidebar .page-content,
+ .no-sidebar .content-bottom-widgets {
+ margin-right: 15%;
+ margin-left: 15%;
+ }
+
+ .widecolumn {
+ padding-right: 15%;
+ padding-left: 15%;
+ }
+}
+
+
+/**
+ * 14.4 - >= 985px
+ */
+
+@media screen and (min-width: 61.5625em) {
+ .site-main {
+ margin-bottom: 7.0em;
+ }
+
+ .site-header {
+ padding: 5.25em 4.5455%;
+ }
+
+ .site-branding,
+ .site-header-menu,
+ .header-image {
+ margin-top: 1.75em;
+ margin-bottom: 1.75em;
+ }
+
+ .image-navigation {
+ margin-bottom: 3.230769231em;
+ }
+
+ .post-navigation {
+ margin-bottom: 7.0em;
+ }
+
+ .pagination {
+ margin-bottom: 5.894736842em;
+ }
+
+ .widget {
+ margin-bottom: 4.307692308em;
+ }
+
+ .site-main > article {
+ margin-bottom: 7.0em;
+ }
+
+ .entry-title {
+ font-size: 40px;
+ font-size: 2.5rem;
+ line-height: 1.225;
+ margin-bottom: 1.05em;
+ }
+
+ .format-aside .entry-title,
+ .format-image .entry-title,
+ .format-video .entry-title,
+ .format-quote .entry-title,
+ .format-gallery .entry-title,
+ .format-status .entry-title,
+ .format-link .entry-title,
+ .format-audio .entry-title,
+ .format-chat .entry-title {
+ font-size: 23px;
+ font-size: 1.4375em;
+ line-height: 1.304347826;
+ margin-bottom: 1.826086957em;
+ }
+
+ .post-thumbnail {
+ margin-bottom: 2.625em;
+ }
+
+ .entry-content h1,
+ .entry-summary h1,
+ .comment-content h1 {
+ font-size: 33px;
+ font-size: 2.0625rem;
+ line-height: 1.2727272727;
+ margin-top: 1.696969697em;
+ margin-bottom: 0.8484848485em;
+ }
+
+ .entry-content h2,
+ .entry-summary h2,
+ .comment-content h2 {
+ font-size: 28px;
+ font-size: 1.75rem;
+ line-height: 1.25;
+ margin-top: 2em;
+ margin-bottom: 1em;
+ }
+
+ .entry-content h3,
+ .entry-summary h3,
+ .comment-content h3 {
+ font-size: 23px;
+ font-size: 1.4375rem;
+ line-height: 1.2173913043;
+ margin-top: 2.4347826087em;
+ margin-bottom: 1.2173913043em;
+ }
+
+ .entry-content h4,
+ .entry-summary h4,
+ .entry-intro h4,
+ .comment-content h4 {
+ letter-spacing: 0.131578947em;
+ }
+
+ .entry-content h4,
+ .entry-content h5,
+ .entry-content h6,
+ .entry-summary h4,
+ .entry-summary h5,
+ .entry-summary h6,
+ .comment-content h4,
+ .comment-content h5,
+ .comment-content h6 {
+ font-size: 19px;
+ font-size: 1.1875rem;
+ line-height: 1.1052631579;
+ margin-top: 2.9473684211em;
+ margin-bottom: 1.473684211em;
+ }
+
+ .author-info {
+ border-bottom: 0;
+ padding-bottom: 0;
+ }
+
+ .entry-footer {
+ margin-top: 4.3076923077em;
+ }
+
+ .comment-list + .comment-respond,
+ .comment-navigation + .comment-respond {
+ padding-top: 5.25em;
+ }
+
+ .comments-area,
+ .sidebar,
+ .content-bottom-widgets .widget-area,
+ .widecolumn {
+ margin-bottom: 7.0em;
+ }
+
+ body:not(.search-results) .entry-summary {
+ margin-bottom: 2.210526316em;
+ }
+
+ body:not(.search-results) .entry-header + .entry-summary {
+ margin-top: -1.105263158em;
+ }
+
+ body:not(.search-results) article:not(.type-page) .entry-content {
+ float: right;
+ width: 71.42857144%;
+ }
+
+ body:not(.search-results) article:not(.type-page) .entry-content > blockquote.alignleft.below-entry-meta {
+ margin-left: -40%;
+ width: -webkit-calc(60% - 1.4736842105em);
+ width: calc(60% - 1.4736842105em);
+ }
+
+ body:not(.search-results) article:not(.type-page) img.below-entry-meta,
+ body:not(.search-results) article:not(.type-page) figure.below-entry-meta {
+ clear: both;
+ display: block;
+ float: none;
+ margin-right: 0;
+ margin-left: -40%;
+ max-width: 140%;
+ }
+
+ body:not(.search-results) article:not(.type-page) figure.below-entry-meta img.below-entry-meta,
+ body:not(.search-results) article:not(.type-page) table figure.below-entry-meta,
+ body:not(.search-results) article:not(.type-page) table img.below-entry-meta {
+ margin: 0;
+ max-width: 100%;
+ }
+
+ body:not(.search-results) article:not(.type-page) .entry-footer {
+ float: left;
+ margin-top: 0.1538461538em;
+ width: 21.42857143%;
+ }
+
+ body:not(.search-results) article:not(.type-page) .entry-footer > span:not(:first-child):before {
+ display: none;
+ }
+
+ .single .byline,
+ .full-size-link,
+ body:not(.search-results).group-blog .byline,
+ body:not(.search-results) .entry-format,
+ body:not(.search-results) .cat-links,
+ body:not(.search-results) .tags-links,
+ body:not(.search-results) article:not(.sticky) .posted-on,
+ body:not(.search-results) article:not(.type-page) .comments-link,
+ body:not(.search-results) article:not(.type-page) .entry-footer .edit-link {
+ display: block;
+ margin-bottom: 0.5384615385em;
+ }
+
+ body:not(.search-results) article:not(.type-page) .entry-footer > span:last-child {
+ margin-bottom: 0;
+ }
+
+ body:not(.search-results) article:not(.type-page) .entry-footer .avatar {
+ display: block;
+ height: auto;
+ margin: 0 0 0.5384615385em;
+ width: 49px;
+ }
+
+ body.no-sidebar:not(.search-results) article:not(.type-page) .entry-content {
+ float: left;
+ margin-right: -100%;
+ margin-left: 34.99999999%;
+ width: 50.00000001%;
+ }
+
+ body.no-sidebar:not(.search-results) article:not(.type-page) .entry-footer {
+ margin-right: -100%;
+ margin-left: 15%;
+ width: 15%;
+ }
+}
+
+
+/**
+ * 14.5 - >= 1200px
+ */
+
+@media screen and (min-width: 75em) {
+ body:not(.search-results) .entry-summary {
+ font-size: 23px;
+ font-size: 1.4375rem;
+ line-height: 1.5217391304;
+ margin-bottom: 1.826086957em;
+ }
+
+ body:not(.search-results) .entry-header + .entry-summary {
+ margin-top: -0.913043478em;
+ }
+
+ body:not(.search-results) .entry-summary p,
+ body:not(.search-results) .entry-summary address,
+ body:not(.search-results) .entry-summary hr,
+ body:not(.search-results) .entry-summary ul,
+ body:not(.search-results) .entry-summary ol,
+ body:not(.search-results) .entry-summary dl,
+ body:not(.search-results) .entry-summary dd,
+ body:not(.search-results) .entry-summary table {
+ margin-bottom: 1.5217391304em;
+ }
+
+ body:not(.search-results) .entry-summary li > ul,
+ body:not(.search-results) .entry-summary blockquote > ul {
+ margin-left: 0.956521739em;
+ }
+
+ body:not(.search-results) .entry-summary li > ol,
+ body:not(.search-results) .entry-summary blockquote > ol {
+ margin-left: 1.52173913em;
+ }
+
+ body:not(.search-results) .entry-summary blockquote {
+ font-size: 23px;
+ font-size: 1.4375rem;
+ line-height: 1.5217391304;
+ margin: 0 0 1.5217391304em;
+ padding-left: 1.347826087em;
+ }
+
+ body:not(.search-results) .entry-summary blockquote:not(.alignleft):not(.alignright) {
+ margin-left: -1.52173913em;
+ }
+
+ body:not(.search-results) .entry-summary blockquote blockquote:not(.alignleft):not(.alignright) {
+ margin-left: 0;
+ }
+
+ body:not(.search-results) .entry-summary blockquote cite,
+ body:not(.search-results) .entry-summary blockquote small {
+ font-size: 19px;
+ font-size: 1.1875rem;
+ line-height: 1.8421052632;
+ }
+
+ body:not(.search-results) .entry-summary th,
+ body:not(.search-results) .entry-summary td {
+ padding: 0.3043478261em;
+ }
+
+ body:not(.search-results) .entry-summary pre {
+ font-size: 16px;
+ font-size: 1rem;
+ line-height: 1.75;
+ margin-bottom: 1.75em;
+ padding: 1.75em;
+ }
+
+ body:not(.search-results) .entry-summary fieldset {
+ margin-bottom: 1.5217391304em;
+ padding: 0.3043478261em;
+ }
+
+ body:not(.search-results) .entry-summary h1 {
+ margin-top: 2.121212121em;
+ margin-bottom: 1.060606061em;
+ }
+
+ body:not(.search-results) .entry-summary h2 {
+ margin-top: 2.5em;
+ margin-bottom: 1.25em;
+ }
+
+ body:not(.search-results) .entry-summary h3 {
+ margin-top: 3.043478261em;
+ margin-bottom: 1.52173913em;
+ }
+
+ body:not(.search-results) .entry-summary h4,
+ body:not(.search-results) .entry-summary h5,
+ body:not(.search-results) .entry-summary h6 {
+ margin-top: 3.684210526em;
+ margin-bottom: 1.842105263em;
+ }
+
+ body:not(.search-results) .entry-summary h1:first-child,
+ body:not(.search-results) .entry-summary h2:first-child,
+ body:not(.search-results) .entry-summary h3:first-child,
+ body:not(.search-results) .entry-summary h4:first-child,
+ body:not(.search-results) .entry-summary h5:first-child,
+ body:not(.search-results) .entry-summary h6:first-child {
+ margin-top: 0;
+ }
+
+ body:not(.search-results) .entry-summary .alignleft {
+ margin: 0.2608695652em 1.5217391304em 1.5217391304em 0;
+ }
+
+ body:not(.search-results) .entry-summary .alignright {
+ margin: 0.2608695652em 0 1.5217391304em 1.5217391304em;
+ }
+
+ body:not(.search-results) .entry-summary .aligncenter {
+ margin-bottom: 1.5217391304em;
+ }
+}
+
+
+/**
+ * 15.0 - Print
+ */
+
+@media print {
+ form,
+ button,
+ input,
+ select,
+ textarea,
+ .navigation,
+ .main-navigation,
+ .social-navigation,
+ .sidebar,
+ .content-bottom-widgets,
+ .header-image,
+ .page-links,
+ .edit-link,
+ .comment-respond,
+ .comment-edit-link,
+ .comment-reply-link,
+ .comment-metadata .edit-link,
+ .pingback .edit-link {
+ display: none;
+ }
+
+ body,
+ blockquote cite,
+ blockquote small,
+ pre,
+ .entry-content h4,
+ .entry-content h5,
+ .entry-content h6,
+ .entry-summary h4,
+ .entry-summary h5,
+ .entry-summary h6,
+ .comment-content h4,
+ .comment-content h5,
+ .comment-content h6,
+ .entry-content .author-title {
+ font-size: 12pt;
+ }
+
+ blockquote {
+ font-size: 14.25pt;
+ }
+
+ .site-title,
+ .page-title,
+ .comments-title,
+ .entry-content h2,
+ .entry-summary h2,
+ .comment-content h2,
+ .widecolumn h2 {
+ font-size: 17.25pt;
+ }
+
+ .site-description {
+ display: block;
+ }
+
+ .entry-title {
+ font-size: 24.75pt;
+ line-height: 1.2727272727;
+ margin-bottom: 1.696969697em;
+ }
+
+ .format-aside .entry-title,
+ .format-image .entry-title,
+ .format-video .entry-title,
+ .format-quote .entry-title,
+ .format-gallery .entry-title,
+ .format-status .entry-title,
+ .format-link .entry-title,
+ .format-audio .entry-title,
+ .format-chat .entry-title {
+ font-size: 17.25pt;
+ line-height: 1.304347826;
+ margin-bottom: 1.826086957em;
+ }
+
+ .entry-content h1,
+ .entry-summary h1,
+ .comment-content h1 {
+ font-size: 21pt;
+ }
+
+ .entry-content h3,
+ .entry-summary h3,
+ .comment-content h3,
+ body:not(.search-results) .entry-summary {
+ font-size: 14.25pt;
+ }
+
+ .site-description,
+ .author-bio,
+ .entry-footer,
+ .sticky-post,
+ .taxonomy-description,
+ .entry-caption,
+ .comment-metadata,
+ .comment-notes,
+ .comment-awaiting-moderation,
+ .site-info,
+ .wp-caption .wp-caption-text,
+ .gallery-caption {
+ font-size: 9.75pt;
+ }
+
+ body,
+ .site {
+ background: none !important; /* Brute force since user agents all print differently. */
+ }
+
+ body,
+ blockquote cite,
+ blockquote small,
+ .site-branding .site-title a,
+ .entry-title a,
+ .comment-author {
+ color: #1a1a1a !important; /* Make sure color schemes don't affect to print */
+ }
+
+ blockquote,
+ .page-header,
+ .comments-title {
+ border-color: #1a1a1a !important; /* Make sure color schemes don't affect to print */
+ }
+
+ blockquote,
+ .site-description,
+ body:not(.search-results) .entry-summary,
+ body:not(.search-results) .entry-summary blockquote,
+ .author-bio,
+ .entry-footer,
+ .entry-footer a,
+ .sticky-post,
+ .taxonomy-description,
+ .entry-caption,
+ .comment-author,
+ .comment-metadata a,
+ .comment-notes,
+ .comment-awaiting-moderation,
+ .site-info,
+ .site-info a,
+ .wp-caption .wp-caption-text,
+ .gallery-caption {
+ color: #686868 !important; /* Make sure color schemes don't affect to print */
+ }
+
+ code,
+ hr {
+ background-color: #d1d1d1 !important; /* Make sure color schemes don't affect to print */
+ }
+
+ pre,
+ abbr,
+ acronym,
+ table,
+ th,
+ td,
+ .author-info,
+ .comment-list article,
+ .comment-list .pingback,
+ .comment-list .trackback,
+ .no-comments {
+ border-color: #d1d1d1 !important; /* Make sure color schemes don't affect to print */
+ }
+
+ a {
+ color: #007acc !important; /* Make sure color schemes don't affect to print */
+ }
+
+ .entry-content a,
+ .entry-summary a,
+ .taxonomy-description a,
+ .comment-content a,
+ .pingback .comment-body > a {
+ box-shadow: none;
+ border-bottom: 1px solid #007acc !important; /* Make sure color schemes don't affect to print */
+ }
+
+ .site {
+ margin: 5%;
+ }
+
+ .site-inner {
+ max-width: none;
+ }
+
+ .site-header {
+ padding: 0 0 1.75em;
+ }
+
+ .site-branding {
+ margin-top: 0;
+ margin-bottom: 1.75em;
+ }
+
+ .site-main {
+ margin-bottom: 3.5em;
+ }
+
+ .entry-header,
+ .entry-footer,
+ .page-header,
+ .page-content,
+ .entry-content,
+ .entry-summary,
+ .post-thumbnail,
+ .comments-area {
+ margin-right: 0;
+ margin-left: 0;
+ }
+
+ .post-thumbnail,
+ .site-main > article {
+ margin-bottom: 3.5em;
+ }
+
+ .entry-content blockquote.alignleft,
+ .entry-content blockquote.alignright {
+ border-width: 4px 0 0 0;
+ padding: 0.9473684211em 0 0;
+ width: -webkit-calc(50% - 0.736842105em);
+ width: calc(50% - 0.736842105em);
+ }
+
+ body:not(.search-results) .entry-header + .entry-summary {
+ margin-top: -1.473684211em;
+ }
+
+ .site-footer,
+ .widecolumn {
+ padding: 0;
+ }
+}
<?php
/**
- * The template for displaying Author bios
+ * The template part for displaying an Author biography
*
* @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
*/
?>
<div class="author-avatar">
<?php
/**
- * Filter the author bio avatar size.
+ * Filter the Twenty Sixteen author bio avatar size.
*
- * @since Twenty Thirteen 1.0
+ * @since Twenty Sixteen 1.0
*
* @param int $size The avatar height and width size in pixels.
*/
- $author_bio_avatar_size = apply_filters( 'twentythirteen_author_bio_avatar_size', 74 );
+ $author_bio_avatar_size = apply_filters( 'twentysixteen_author_bio_avatar_size', 49 );
+
echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
?>
</div><!-- .author-avatar -->
+
<div class="author-description">
- <h2 class="author-title"><?php printf( __( 'About %s', 'twentythirteen' ), get_the_author() ); ?></h2>
+ <h2 class="author-title"><span class="author-heading"><?php _e( 'Author:', 'twentysixteen' ); ?></span> <?php echo get_the_author(); ?></h2>
+
<p class="author-bio">
<?php the_author_meta( 'description' ); ?>
<a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
- <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentythirteen' ), get_the_author() ); ?>
+ <?php printf( __( 'View all posts by %s', 'twentysixteen' ), get_the_author() ); ?>
</a>
- </p>
+ </p><!-- .author-bio -->
</div><!-- .author-description -->
-</div><!-- .author-info -->
\ No newline at end of file
+</div><!-- .author-info -->
--- /dev/null
+<?php
+/**
+ * The template part for displaying a message that posts cannot be found
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+?>
+
+<section class="no-results not-found">
+ <header class="page-header">
+ <h1 class="page-title"><?php _e( 'Nothing Found', 'twentysixteen' ); ?></h1>
+ </header><!-- .page-header -->
+
+ <div class="page-content">
+ <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
+
+ <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentysixteen' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
+
+ <?php elseif ( is_search() ) : ?>
+
+ <p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'twentysixteen' ); ?></p>
+ <?php get_search_form(); ?>
+
+ <?php else : ?>
+
+ <p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'twentysixteen' ); ?></p>
+ <?php get_search_form(); ?>
+
+ <?php endif; ?>
+ </div><!-- .page-content -->
+</section><!-- .no-results -->
--- /dev/null
+<?php
+/**
+ * The template used for displaying page content
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+ <header class="entry-header">
+ <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
+ </header><!-- .entry-header -->
+
+ <?php twentysixteen_post_thumbnail(); ?>
+
+ <div class="entry-content">
+ <?php
+ the_content();
+
+ wp_link_pages( array(
+ 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>',
+ 'after' => '</div>',
+ 'link_before' => '<span>',
+ 'link_after' => '</span>',
+ 'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%',
+ 'separator' => '<span class="screen-reader-text">, </span>',
+ ) );
+ ?>
+ </div><!-- .entry-content -->
+
+ <?php
+ edit_post_link(
+ sprintf(
+ /* translators: %s: Name of current post */
+ __( 'Edit %s', 'twentysixteen' ),
+ the_title( '<span class="screen-reader-text">', '</span>', false )
+ ),
+ '<footer class="entry-footer"><span class="edit-link">',
+ '</span></footer><!-- .entry-footer -->'
+ );
+ ?>
+
+</article><!-- #post-## -->
--- /dev/null
+<?php
+/**
+ * The template part for displaying results in search pages
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+ <header class="entry-header">
+ <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
+ </header><!-- .entry-header -->
+
+ <?php twentysixteen_post_thumbnail(); ?>
+
+ <?php twentysixteen_excerpt(); ?>
+
+ <?php if ( 'post' === get_post_type() ) : ?>
+
+ <footer class="entry-footer">
+ <?php twentysixteen_entry_meta(); ?>
+ <?php
+ edit_post_link(
+ sprintf(
+ /* translators: %s: Name of current post */
+ __( 'Edit %s', 'twentysixteen' ),
+ the_title( '<span class="screen-reader-text">"', '"</span>', false )
+ ),
+ '<span class="edit-link">',
+ '</span>'
+ );
+ ?>
+ </footer><!-- .entry-footer -->
+
+ <?php else : ?>
+
+ <?php
+ edit_post_link(
+ sprintf(
+ /* translators: %s: Name of current post */
+ __( 'Edit %s', 'twentysixteen' ),
+ the_title( '<span class="screen-reader-text">', '</span>', false )
+ ),
+ '<footer class="entry-footer"><span class="edit-link">',
+ '</span></footer><!-- .entry-footer -->'
+ );
+ ?>
+
+ <?php endif; ?>
+</article><!-- #post-## -->
+
--- /dev/null
+<?php
+/**
+ * The template part for displaying single posts
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+ <header class="entry-header">
+ <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
+ </header><!-- .entry-header -->
+
+ <?php twentysixteen_excerpt(); ?>
+
+ <?php twentysixteen_post_thumbnail(); ?>
+
+ <div class="entry-content">
+ <?php
+ the_content();
+
+ wp_link_pages( array(
+ 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>',
+ 'after' => '</div>',
+ 'link_before' => '<span>',
+ 'link_after' => '</span>',
+ 'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%',
+ 'separator' => '<span class="screen-reader-text">, </span>',
+ ) );
+
+ if ( '' != get_the_author_meta( 'description' ) ) {
+ get_template_part( 'template-parts/biography' );
+ }
+ ?>
+ </div><!-- .entry-content -->
+
+ <footer class="entry-footer">
+ <?php twentysixteen_entry_meta(); ?>
+ <?php
+ edit_post_link(
+ sprintf(
+ /* translators: %s: Name of current post */
+ __( 'Edit %s', 'twentysixteen' ),
+ the_title( '<span class="screen-reader-text">', '</span>', false )
+ ),
+ '<span class="edit-link">',
+ '</span>'
+ );
+ ?>
+ </footer><!-- .entry-footer -->
+</article><!-- #post-## -->
--- /dev/null
+<?php
+/**
+ * The template part for displaying content
+ *
+ * @package WordPress
+ * @subpackage Twenty_Sixteen
+ * @since Twenty Sixteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+ <header class="entry-header">
+ <?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
+ <span class="sticky-post"><?php _e( 'Featured', 'twentysixteen' ); ?></span>
+ <?php endif; ?>
+
+ <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
+ </header><!-- .entry-header -->
+
+ <?php twentysixteen_excerpt(); ?>
+
+ <?php twentysixteen_post_thumbnail(); ?>
+
+ <div class="entry-content">
+ <?php
+ /* translators: %s: Name of current post */
+ the_content( sprintf(
+ __( 'Continue reading %s', 'twentysixteen' ),
+ the_title( '<span class="screen-reader-text">"', '"</span>', false )
+ ) );
+
+ wp_link_pages( array(
+ 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>',
+ 'after' => '</div>',
+ 'link_before' => '<span>',
+ 'link_after' => '</span>',
+ 'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%',
+ 'separator' => '<span class="screen-reader-text">, </span>',
+ ) );
+ ?>
+ </div><!-- .entry-content -->
+
+ <footer class="entry-footer">
+ <?php twentysixteen_entry_meta(); ?>
+ <?php
+ edit_post_link(
+ sprintf(
+ /* translators: %s: Name of current post */
+ __( 'Edit %s', 'twentysixteen' ),
+ the_title( '<span class="screen-reader-text">', '</span>', false )
+ ),
+ '<span class="edit-link">',
+ '</span>'
+ );
+ ?>
+ </footer><!-- .entry-footer -->
+</article><!-- #post-## -->
+++ /dev/null
-<?php
-/**
- * The template for displaying 404 pages (Not Found)
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
-
- <header class="page-header">
- <h1 class="page-title"><?php _e( 'Not Found', 'twentythirteen' ); ?></h1>
- </header>
-
- <div class="page-wrapper">
- <div class="page-content">
- <h2><?php _e( 'This is somewhat embarrassing, isn’t it?', 'twentythirteen' ); ?></h2>
- <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentythirteen' ); ?></p>
-
- <?php get_search_form(); ?>
- </div><!-- .page-content -->
- </div><!-- .page-wrapper -->
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Archive pages
- *
- * Used to display archive-type pages if nothing more specific matches a query.
- * For example, puts together date-based pages if no date.php file exists.
- *
- * If you'd like to further customize these archive views, you may create a
- * new template file for each specific one. For example, Twenty Thirteen
- * already has tag.php for Tag archives, category.php for Category archives,
- * and author.php for Author archives.
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
-
- <?php if ( have_posts() ) : ?>
- <header class="archive-header">
- <h1 class="archive-title"><?php
- if ( is_day() ) :
- printf( __( 'Daily Archives: %s', 'twentythirteen' ), get_the_date() );
- elseif ( is_month() ) :
- printf( __( 'Monthly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentythirteen' ) ) );
- elseif ( is_year() ) :
- printf( __( 'Yearly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentythirteen' ) ) );
- else :
- _e( 'Archives', 'twentythirteen' );
- endif;
- ?></h1>
- </header><!-- .archive-header -->
-
- <?php /* The loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
-
- <?php twentythirteen_paging_nav(); ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Author archive pages
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
-
- <?php if ( have_posts() ) : ?>
-
- <?php
- /*
- * Queue the first post, that way we know what author
- * we're dealing with (if that is the case).
- *
- * We reset this later so we can run the loop
- * properly with a call to rewind_posts().
- */
- the_post();
- ?>
-
- <header class="archive-header">
- <h1 class="archive-title"><?php printf( __( 'All posts by %s', 'twentythirteen' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1>
- </header><!-- .archive-header -->
-
- <?php
- /*
- * Since we called the_post() above, we need to
- * rewind the loop back to the beginning that way
- * we can run the loop properly, in full.
- */
- rewind_posts();
- ?>
-
- <?php if ( get_the_author_meta( 'description' ) ) : ?>
- <?php get_template_part( 'author-bio' ); ?>
- <?php endif; ?>
-
- <?php /* The loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
-
- <?php twentythirteen_paging_nav(); ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Category pages
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
-
- <?php if ( have_posts() ) : ?>
- <header class="archive-header">
- <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentythirteen' ), single_cat_title( '', false ) ); ?></h1>
-
- <?php if ( category_description() ) : // Show an optional category description ?>
- <div class="archive-meta"><?php echo category_description(); ?></div>
- <?php endif; ?>
- </header><!-- .archive-header -->
-
- <?php /* The loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
-
- <?php twentythirteen_paging_nav(); ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Comments
- *
- * The area of the page that contains comments and the comment form.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-/*
- * If the current post is protected by a password and the visitor has not yet
- * entered the password we will return early without loading the comments.
- */
-if ( post_password_required() )
- return;
-?>
-
-<div id="comments" class="comments-area">
-
- <?php if ( have_comments() ) : ?>
- <h2 class="comments-title">
- <?php
- printf( _nx( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'twentythirteen' ),
- number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
- ?>
- </h2>
-
- <ol class="comment-list">
- <?php
- wp_list_comments( array(
- 'style' => 'ol',
- 'short_ping' => true,
- 'avatar_size' => 74,
- ) );
- ?>
- </ol><!-- .comment-list -->
-
- <?php
- // Are there comments to navigate through?
- if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
- ?>
- <nav class="navigation comment-navigation" role="navigation">
- <h1 class="screen-reader-text section-heading"><?php _e( 'Comment navigation', 'twentythirteen' ); ?></h1>
- <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'twentythirteen' ) ); ?></div>
- <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentythirteen' ) ); ?></div>
- </nav><!-- .comment-navigation -->
- <?php endif; // Check for comment navigation ?>
-
- <?php if ( ! comments_open() && get_comments_number() ) : ?>
- <p class="no-comments"><?php _e( 'Comments are closed.' , 'twentythirteen' ); ?></p>
- <?php endif; ?>
-
- <?php endif; // have_comments() ?>
-
- <?php comment_form(); ?>
-
-</div><!-- #comments -->
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Aside post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <?php if ( is_single() ) : ?>
- <?php twentythirteen_entry_meta(); ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
- <?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
- <?php get_template_part( 'author-bio' ); ?>
- <?php endif; ?>
-
- <?php else : ?>
- <?php twentythirteen_entry_date(); ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
- <?php endif; // is_single() ?>
- </footer><!-- .entry-meta -->
-</article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Audio post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php if ( is_single() ) : ?>
- <h1 class="entry-title"><?php the_title(); ?></h1>
- <?php else : ?>
- <h1 class="entry-title">
- <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
- </h1>
- <?php endif; // is_single() ?>
- </header><!-- .entry-header -->
-
- <div class="entry-content">
- <div class="audio-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- </div><!-- .audio-content -->
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <?php twentythirteen_entry_meta(); ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
- <?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
- <?php get_template_part( 'author-bio' ); ?>
- <?php endif; ?>
- </footer><!-- .entry-meta -->
-</article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Chat post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php if ( is_single() ) : ?>
- <h1 class="entry-title"><?php the_title(); ?></h1>
- <?php else : ?>
- <h1 class="entry-title">
- <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
- </h1>
- <?php endif; // is_single() ?>
- </header><!-- .entry-header -->
-
- <div class="entry-content">
- <?php the_content(); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <?php twentythirteen_entry_meta(); ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
- </footer><!-- .entry-meta -->
-</article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Gallery post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php if ( is_single() ) : ?>
- <h1 class="entry-title"><?php the_title(); ?></h1>
- <?php else : ?>
- <h1 class="entry-title">
- <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
- </h1>
- <?php endif; // is_single() ?>
- </header><!-- .entry-header -->
-
- <div class="entry-content">
- <?php if ( is_single() || ! get_post_gallery() ) : ?>
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- <?php else : ?>
- <?php echo get_post_gallery(); ?>
- <?php endif; // is_single() ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <?php twentythirteen_entry_meta(); ?>
-
- <?php if ( comments_open() && ! is_single() ) : ?>
- <span class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
- </span><!-- .comments-link -->
- <?php endif; // comments_open() ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
- <?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
- <?php get_template_part( 'author-bio' ); ?>
- <?php endif; ?>
- </footer><!-- .entry-meta -->
-</article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Image post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php if ( is_single() ) : ?>
- <h1 class="entry-title"><?php the_title(); ?></h1>
- <?php else : ?>
- <h1 class="entry-title">
- <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
- </h1>
- <?php endif; // is_single() ?>
- </header><!-- .entry-header -->
-
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <?php twentythirteen_entry_meta(); ?>
-
- <?php if ( comments_open() && ! is_single() ) : ?>
- <span class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
- </span><!-- .comments-link -->
- <?php endif; // comments_open() ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
- <?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
- <?php get_template_part( 'author-bio' ); ?>
- <?php endif; ?>
- </footer><!-- .entry-meta -->
-</article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Link post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <h1 class="entry-title">
- <a href="<?php echo esc_url( twentythirteen_get_link_url() ); ?>"><?php the_title(); ?></a>
- </h1>
-
- <div class="entry-meta">
- <?php twentythirteen_entry_date(); ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
- </div><!-- .entry-meta -->
- </header><!-- .entry-header -->
-
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- </div><!-- .entry-content -->
-
- <?php if ( is_single() ) : ?>
- <footer class="entry-meta">
- <?php twentythirteen_entry_meta(); ?>
- <?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
- <?php get_template_part( 'author-bio' ); ?>
- <?php endif; ?>
- </footer><!-- .entry-meta -->
- <?php endif; // is_single() ?>
-</article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying a "No posts found" message
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<header class="page-header">
- <h1 class="page-title"><?php _e( 'Nothing Found', 'twentythirteen' ); ?></h1>
-</header>
-
-<div class="page-content">
- <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
-
- <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentythirteen' ), admin_url( 'post-new.php' ) ); ?></p>
-
- <?php elseif ( is_search() ) : ?>
-
- <p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with different keywords.', 'twentythirteen' ); ?></p>
- <?php get_search_form(); ?>
-
- <?php else : ?>
-
- <p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'twentythirteen' ); ?></p>
- <?php get_search_form(); ?>
-
- <?php endif; ?>
-</div><!-- .page-content -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Quote post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <?php twentythirteen_entry_meta(); ?>
-
- <?php if ( comments_open() && ! is_single() ) : ?>
- <span class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
- </span><!-- .comments-link -->
- <?php endif; // comments_open() ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
- </footer><!-- .entry-meta -->
-</article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Status post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <?php twentythirteen_entry_meta(); ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
- <?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
- <?php get_template_part( 'author-bio' ); ?>
- <?php endif; ?>
- </footer><!-- .entry-meta -->
-</article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Video post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php if ( is_single() ) : ?>
- <h1 class="entry-title"><?php the_title(); ?></h1>
- <?php else : ?>
- <h1 class="entry-title">
- <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
- </h1>
- <?php endif; // is_single() ?>
- </header><!-- .entry-header -->
-
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <?php twentythirteen_entry_meta(); ?>
-
- <?php if ( comments_open() && ! is_single() ) : ?>
- <span class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
- </span><!-- .comments-link -->
- <?php endif; // comments_open() ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
- <?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
- <?php get_template_part( 'author-bio' ); ?>
- <?php endif; ?>
- </footer><!-- .entry-meta -->
-</article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The default template for displaying content
- *
- * Used for both single and index/archive/search.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php if ( has_post_thumbnail() && ! post_password_required() && ! is_attachment() ) : ?>
- <div class="entry-thumbnail">
- <?php the_post_thumbnail(); ?>
- </div>
- <?php endif; ?>
-
- <?php if ( is_single() ) : ?>
- <h1 class="entry-title"><?php the_title(); ?></h1>
- <?php else : ?>
- <h1 class="entry-title">
- <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
- </h1>
- <?php endif; // is_single() ?>
-
- <div class="entry-meta">
- <?php twentythirteen_entry_meta(); ?>
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
- </div><!-- .entry-meta -->
- </header><!-- .entry-header -->
-
- <?php if ( is_search() ) : // Only display Excerpts for Search ?>
- <div class="entry-summary">
- <?php the_excerpt(); ?>
- </div><!-- .entry-summary -->
- <?php else : ?>
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- </div><!-- .entry-content -->
- <?php endif; ?>
-
- <footer class="entry-meta">
- <?php if ( comments_open() && ! is_single() ) : ?>
- <div class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
- </div><!-- .comments-link -->
- <?php endif; // comments_open() ?>
-
- <?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
- <?php get_template_part( 'author-bio' ); ?>
- <?php endif; ?>
- </footer><!-- .entry-meta -->
-</article><!-- #post -->
+++ /dev/null
-/*
-Theme Name: Twenty Thirteen
-Description: Used to style the TinyMCE editor.
-*/
-
-
-/**
- * Table of Contents:
- *
- * 1.0 - Body
- * 2.0 - Headings
- * 3.0 - Text Elements
- * 4.0 - Links
- * 5.0 - Alignment
- * 6.0 - Tables
- * 7.0 - Images
- * 8.0 - Galleries
- * 9.0 - Audio/Video
- * 10.0 - Post Formats
- * 11.0 - RTL
- * ----------------------------------------------------------------------------
- */
-
-
-/**
- * 1.0 Body
- * ----------------------------------------------------------------------------
- */
-
-html .mceContentBody {
- font-size: 100%;
- max-width: 604px;
-}
-
-body {
- color: #141412;
- font-family: "Source Sans Pro", Helvetica, sans-serif;
- line-height: 1.5;
- text-rendering: optimizeLegibility;
- vertical-align: baseline;
-}
-
-
-/**
- * 2.0 Headings
- * ----------------------------------------------------------------------------
- */
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- clear: both;
- font-family: Bitter, Georgia, serif;
- line-height: 1.3;
-}
-
-h1 {
- font-size: 48px;
- margin: 33px 0;
-}
-
-h2 {
- font-size: 30px;
- margin: 25px 0;
-}
-
-h3 {
- font-size: 22px;
- margin: 22px 0;
-}
-
-h4 {
- font-size: 20px;
- margin: 25px 0;
-}
-
-h5 {
- font-size: 18px;
- margin: 30px 0;
-}
-
-h6 {
- font-size: 16px;
- margin: 36px 0;
-}
-
-hr {
- background: url(../images/dotted-line.png) repeat center top;
- background-size: 4px 4px;
- border: 0;
- height: 1px;
- margin: 0 0 24px;
-}
-
-
-/**
- * 3.0 Text Elements
- * ----------------------------------------------------------------------------
- */
-
-p {
- margin: 0 0 24px;
-}
-
-ol,
-ul {
- margin: 16px 0;
- padding: 0 0 0 40px;
-}
-
-ul {
- list-style-type: square;
-}
-
-ol {
- list-style: decimal outside;
-}
-
-li > ul,
-li > ol {
- margin: 0;
-}
-
-dl {
- margin: 0 20px;
-}
-
-dt {
- font-weight: bold;
-}
-
-dd {
- margin: 0 0 20px;
-}
-
-strong {
- font-weight: bold;
-}
-
-code,
-kbd,
-pre,
-samp {
- font-family: monospace, serif;
- font-size: 14px;
-}
-
-pre {
- background: #f5f5f5;
- color: #666;
- font-family: monospace;
- font-size: 14px;
- margin: 20px 0;
- overflow: auto;
- padding: 20px;
- white-space: pre;
- white-space: pre-wrap;
- word-wrap: break-word;
-}
-
-blockquote,
-q {
- quotes: none;
-}
-
-blockquote:before,
-blockquote:after,
-q:before,
-q:after {
- content: "";
- content: none;
-}
-
-blockquote {
- font-size: 24px;
- font-style: italic;
- font-weight: 300;
- margin: 24px 40px;
-}
-
-blockquote blockquote {
- margin-right: 0;
-}
-
-blockquote cite,
-blockquote small {
- font-size: 14px;
- font-weight: normal;
- text-transform: uppercase;
-}
-
-cite {
- border-bottom: 0;
-}
-
-abbr[title] {
- border-bottom: 1px dotted;
-}
-
-address {
- font-style: italic;
- margin: 0 0 24px;
-}
-
-del {
- color: #333;
-}
-
-ins {
- background: #fff9c0;
- border: none;
- color: #333;
- text-decoration: none;
-}
-
-sub,
-sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-
-sup {
- top: -0.5em;
-}
-
-sub {
- bottom: -0.25em;
-}
-
-
-/**
- * 4.0 Links
- * ----------------------------------------------------------------------------
- */
-
-a {
- color: #ca3c08;
- text-decoration: none;
-}
-
-a:visited {
- color: #ac0404;
-}
-
-a:focus {
- outline: thin dotted;
-}
-
-a:active,
-a:hover {
- color: #ea9629;
- outline: 0;
-}
-
-a:hover {
- text-decoration: underline;
-}
-
-
-/**
- * 5.0 Alignment
- * ----------------------------------------------------------------------------
- */
-
-.alignleft {
- float: left;
- margin: 5px 20px 5px 0;
-}
-
-.alignright {
- float: right;
- margin: 5px 0 5px 20px;
-}
-
-.aligncenter {
- display: block;
- margin: 5px auto;
-}
-
-img.alignnone {
- margin: 5px 0;
-}
-
-
-/**
- * 6.0 Tables
- * ----------------------------------------------------------------------------
- */
-
-table {
- border-bottom: 1px solid #ededed;
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 14px;
- line-height: 2;
- margin: 0 0 20px;
- width: 100%;
-}
-
-caption,
-th,
-td {
- font-weight: normal;
- text-align: left;
-}
-
-caption {
- font-size: 16px;
- margin: 20px 0;
-}
-
-th {
- font-weight: bold;
- text-transform: uppercase;
-}
-
-td {
- border-top: 1px solid #ededed;
- padding: 6px 10px 6px 0;
-}
-
-
-/**
- * 7.0 Images
- * ----------------------------------------------------------------------------
- */
-
-img {
- height: auto;
- max-width: 100%;
- vertical-align: middle;
-}
-
-.wp-caption {
- background: transparent;
- border: none;
- margin: 0;
- padding: 0;
- text-align: left;
-}
-
-.html5-captions .wp-caption {
- padding: 0;
-}
-
-.wp-caption.alignleft {
- margin: 5px 10px 5px 0;
-}
-
-.html5-captions .wp-caption.alignleft {
- margin-right: 20px;
-}
-
-.wp-caption.alignright {
- margin: 5px 0 5px 10px;
-}
-
-.wp-caption.alignright img,
-.wp-caption.alignright .wp-caption-dd {
- padding-left: 10px;
-}
-
-.html5-captions .wp-caption.alignright {
- margin-left: 20px;
-}
-
-.html5-captions .wp-caption.alignright img,
-.html5-captions .wp-caption.alignright .wp-caption-dd {
- padding: 0;
-}
-
-.wp-caption-dt {
- margin: 0;
-}
-
-.wp-caption .wp-caption-text,
-.wp-caption-dd {
- color: #220e10;
- font-size: 18px;
- font-style: italic;
- font-weight: 300;
- line-height: 1.5;
- margin-bottom: 24px;
- padding: 0;
-}
-
-.mceTemp + ul,
-.mceTemp + ol {
- list-style-position: inside;
-}
-
-
-/**
- * 8.0 Galleries
- * ----------------------------------------------------------------------------
- */
-
-.gallery .gallery-item {
- float: left;
- margin: 0 4px 4px 0;
- overflow: hidden;
- padding: 0;
- position: relative;
-}
-
-.gallery-columns-1 .gallery-item {
- max-width: 100%;
- width: auto;
-}
-
-.gallery-columns-2 .gallery-item {
- max-width: 48%;
- max-width: -webkit-calc(50% - 14px);
- max-width: calc(50% - 14px);
- width: auto;
-}
-
-.gallery-columns-3 .gallery-item {
- max-width: 32%;
- max-width: -webkit-calc(33.3% - 11px);
- max-width: calc(33.3% - 11px);
- width: auto;
-}
-
-.gallery-columns-4 .gallery-item {
- max-width: 23%;
- max-width: -webkit-calc(25% - 9px);
- max-width: calc(25% - 9px);
- width: auto;
-}
-
-.gallery-columns-5 .gallery-item {
- max-width: 19%;
- max-width: -webkit-calc(20% - 8px);
- max-width: calc(20% - 8px);
- width: auto;
-}
-
-.gallery-columns-6 .gallery-item {
- max-width: 15%;
- max-width: -webkit-calc(16.7% - 7px);
- max-width: calc(16.7% - 7px);
- width: auto;
-}
-
-.gallery-columns-7 .gallery-item {
- max-width: 13%;
- max-width: -webkit-calc(14.28% - 7px);
- max-width: calc(14.28% - 7px);
- width: auto;
-}
-
-.gallery-columns-8 .gallery-item {
- max-width: 11%;
- max-width: -webkit-calc(12.5% - 6px);
- max-width: calc(12.5% - 6px);
- width: auto;
-}
-
-.gallery-columns-9 .gallery-item {
- max-width: 9%;
- max-width: -webkit-calc(11.1% - 6px);
- max-width: calc(11.1% - 6px);
- width: auto;
-}
-
-.gallery-columns-1 .gallery-item:nth-of-type(1n),
-.gallery-columns-2 .gallery-item:nth-of-type(2n),
-.gallery-columns-3 .gallery-item:nth-of-type(3n),
-.gallery-columns-4 .gallery-item:nth-of-type(4n),
-.gallery-columns-5 .gallery-item:nth-of-type(5n),
-.gallery-columns-6 .gallery-item:nth-of-type(6n),
-.gallery-columns-7 .gallery-item:nth-of-type(7n),
-.gallery-columns-8 .gallery-item:nth-of-type(8n),
-.gallery-columns-9 .gallery-item:nth-of-type(9n) {
- margin-right: 0;
-}
-
-.gallery-columns-1 .gallery-item:nth-of-type(1n),
-.gallery-columns-2 .gallery-item:nth-of-type(2n - 1),
-.gallery-columns-3 .gallery-item:nth-of-type(3n - 2),
-.gallery-columns-4 .gallery-item:nth-of-type(4n - 3),
-.gallery-columns-5 .gallery-item:nth-of-type(5n - 4),
-.gallery-columns-6 .gallery-item:nth-of-type(6n - 5),
-.gallery-columns-7 .gallery-item:nth-of-type(7n - 6),
-.gallery-columns-8 .gallery-item:nth-of-type(8n - 7),
-.gallery-columns-9 .gallery-item:nth-of-type(9n - 8) {
- margin-left: 12px; /* Compensate for the default negative margin on .gallery, which can't be changed. */
-}
-
-.gallery .gallery-caption {
- background-color: rgba(0, 0, 0, 0.7);
- box-sizing: border-box;
- color: #fff;
- font-size: 14px;
- line-height: 1.3;
- margin: 0;
- max-height: 50%;
- opacity: 0;
- padding: 2px 8px;
- position: absolute;
- bottom: 0;
- left: 0;
- text-align: left;
- -webkit-transition: opacity 400ms ease;
- transition: opacity 400ms ease;
- width: 100%;
-}
-
-.gallery .gallery-caption:before {
- box-shadow: 0 -10px 15px #000 inset;
- content: "";
- height: 100%;
- min-height: 49px;
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
-}
-
-.gallery-item:hover .gallery-caption {
- opacity: 1;
-}
-
-.gallery-columns-7 .gallery-caption,
-.gallery-columns-8 .gallery-caption,
-.gallery-columns-9 .gallery-caption {
- display: none;
-}
-
-
-/**
- * 9.0 Audio/Video
- * ----------------------------------------------------------------------------
- */
-.mejs-mediaelement,
-.mejs-container .mejs-controls {
- background: #220e10;
-}
-
-.mejs-controls .mejs-time-rail .mejs-time-loaded,
-.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
- background: #fff;
-}
-
-.mejs-controls .mejs-time-rail .mejs-time-current {
- background: #ea9629;
-}
-
-.mejs-controls .mejs-time-rail .mejs-time-total,
-.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
- background: #595959;
-}
-
-.mejs-controls .mejs-time-rail span,
-.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
-.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
- border-radius: 0;
-}
-
-
-/**
- * 10.0 Post Formats
- * ----------------------------------------------------------------------------
- */
-
-/* Aside */
-.post-format-aside {
- background-color: #f7f5e7;
-}
-
-.post-format-aside blockquote {
- font-size: 100%;
- font-weight: normal;
-}
-
-.post-format-aside cite {
- font-size: 100%;
- text-transform: none;
-}
-
-.post-format-aside cite:before {
- content: "\2014";
- margin-right: 5px;
-}
-
-/* Audio */
-.post-format-audio {
- background-color: #db572f;
-}
-
-.post-format-audio a {
- color: #fbfaf3;
-}
-
-.post-format-audio:before {
- background: url(../images/dotted-line.png) repeat-y 85px 0;
- background-size: 4px 4px;
- content: "\f109";
- display: block;
- float: left;
- font-family: Genericons;
- font-size: 64px;
- -webkit-font-smoothing: antialiased;
- height: 100%;
- line-height: 1;
- width: 120px;
-}
-
-/* Chat */
-.post-format-chat {
- background-color: #eadaa6;
-}
-
-.post-format-chat a {
- color: #722d19;
-}
-
-/* Gallery */
-.post-format-gallery {
- background-color: #fbca3c;
-}
-
-.post-format-gallery a {
- color: #722d19;
-}
-
-/* Image: same as Standard/Defaults */
-
-/* Link */
-.post-format-link {
- background-color: #f7f5e7;
-}
-
-/* Quote */
-.post-format-quote {
- background-color: #210d10;
- color: #f7f5e7;
-}
-
-.post-format-quote a {
- color: #e63f2a;
-}
-
-.post-format-quote blockquote {
- font-size: 28px;
- font-style: italic;
- font-weight: 300;
- margin: 0;
- padding-left: 75px;
- position: relative;
-}
-
-.post-format-quote blockquote:before {
- content: '\201C';
- font-size: 140px;
- font-weight: 400;
- line-height: .8;
- padding-right: 25px;
- position: absolute;
- left: -15px;
- top: -3px;
-}
-
-.post-format-quote blockquote small,
-.post-format-quote blockquote cite {
- display: block;
- font-size: 16px;
-}
-
-.format-quote .entry-content cite a {
- border-bottom: 1px dotted #fff;
- color: #fff;
-}
-
-.format-quote .entry-content cite a:hover {
- text-decoration: none;
-}
-
-
-/* Status */
-.post-format-status {
- background-color: #722d19;
- color: #f7f5e7;
- font-style: italic;
- font-weight: 300;
- padding: 0;
- padding-left: 35px;
-}
-
-.post-format-status.mceContentBody {
- font-size: 24px;
-}
-
-.post-format-status:before {
- background: url(../images/dotted-line.png) repeat-y left bottom;
- background-size: 4px 4px;
- content: "";
- display: block;
- float: left;
- height: 100%;
- position: relative;
- left: -30px;
- width: 1px;
-}
-
-.post-format-status > p:first-child:before {
- background-color: rgba(0, 0, 0, 0.65);
- content: "";
- height: 3px;
- width: 13px;
- margin-top: 13px;
- position: absolute;
- left: 9px;
-}
-
-.post-format-status a {
- color: #eadaa6;
-}
-
-/* Video */
-.post-format-video {
- background-color: #db572f;
-}
-
-.post-format-video a {
- color: #fbfaf3;
-}
-
-
-/**
- * 11.0 RTL
- * ----------------------------------------------------------------------------
- */
-
-html .mceContentBody.rtl {
- direction: rtl;
- unicode-bidi: embed;
-}
-
-.rtl ol,
-.rtl ul {
- padding: 0 40px 0 0;
-}
-
-.rtl .wp-caption,
-.rtl tr th {
- text-align: right;
-}
-
-.rtl td {
- padding: 6px 0 6px 10px;
- text-align: right;
-}
-
-.rtl blockquote blockquote {
- margin-left: 0;
- margin-right: 24px;
-}
-
-.rtl.post-format-audio:before,
-.rtl.post-format-status:before,
-.rtl.post-format-status > p:first-child:before {
- background: none;
- content: none;
-}
+++ /dev/null
-/*
-Styles for older IE versions (previous to IE9).
-*/
-
-.site {
- min-width: 1040px;
-}
-
-.genericon:before:hover,
-.menu-toggle:after:hover,
-.date a:before:hover,
-.entry-meta .author a:before:hover,
-.format-audio .entry-content:before:hover,
-.comments-link a:before:hover,
-.tags-links a:first-child:before:hover,
-.categories-links a:first-child:before:hover,
-.edit-link > a:before:hover,
-.attachment-meta:before:hover,
-.attachment-meta a:before:hover,
-.comment-awaiting-moderation:before:hover,
-.comment-reply-link:before:hover,
-.comment-reply-title small a:before:hover,
-.bypostauthor > .comment-body .fn:before:hover {
- text-decoration: none;
-}
-
-.nav-menu .sub-menu ul,
-.nav-menu .children ul {
- left: 100%;
-}
-
-.site-header .home-link {
- max-width: 1040px;
-}
-
-.site-header .search-form [type="search"],
-.site-header .search-form [type="text"] {
- padding-top: 6px;
-}
-
-img.alignright {
- margin-right: 0;
-}
-
-img.alignleft {
- margin-left: 0;
-}
-
-.site-main .sidebar-inner {
- width: 1040px;
-}
-
-.site-main .widget-area {
- margin-right: 60px;
-}
-
-.format-image .entry-content .size-full {
- margin: 0;
- max-width: 604px;
-}
-
-.gallery-columns-1 .gallery-item,
-.gallery-columns-2 .gallery-item,
-.gallery-columns-3 .gallery-item {
- max-width: none;
-}
-
-.gallery img {
- width: auto;
-}
-
-.gallery-caption {
- background: #000;
- filter: alpha(opacity=0);
-}
-
-.gallery-item:hover .gallery-caption {
- filter: alpha(opacity=70);
-}
-
-.comment {
- clear: both;
-}
-
-.comment-meta,
-.comment-content,
-.comment-list .reply {
- width: 480px;
-}
-
-.depth-2 .comment-meta,
-.depth-2 .comment-content,
-.comment-list .depth-2 .reply {
- width: 460px;
-}
-
-.depth-3 .comment-meta,
-.depth-3 .comment-content,
-.comment-list .depth-3 .reply {
- width: 440px;
-}
-
-.depth-4 .comment-meta,
-.depth-4 .comment-content,
-.comment-list .depth-4 .reply {
- width: 420px;
-}
-
-.depth-5 .comment-meta,
-.depth-5 .comment-content,
-.comment-list .depth-5 .reply {
- width: 400px;
-}
-
-.comment-meta {
- margin-bottom: 0;
-}
-
-.widget {
- background: #f7f5e7;
-}
-
-.site-footer .widget {
- background: none;
-}
-
-/* Internet Explorer 8 */
-.ie8 .site {
- border: 0;
-}
-
-.ie8 img.size-full,
-.ie8 img.size-large {
- height: auto;
- width: auto;
-}
-
-.ie8 .sidebar .entry-header,
-.ie8 .sidebar .entry-content,
-.ie8 .sidebar .entry-summary,
-.ie8 .sidebar .entry-meta {
- max-width: 724px;
-}
-
-.ie8 .author-info {
- margin-left: 0;
-}
-
-.ie8 .paging-navigation .nav-previous .meta-nav {
- padding: 5px 0 8px;
- width: 40px;
-}
-
-.ie8 .paging-navigation .nav-next {
- line-height: 1;
-}
-
-.ie8 .format-status .entry-content:before,
-.ie8 .format-status .entry-meta:before {
- content: none;
-}
-
-.ie8 .site-main .widget-area {
- margin-right: 0;
-}
-
-/* Internet Explorer 7 */
-.ie7 audio,
-.ie7 canvas,
-.ie7 video {
- display: inline;
- zoom: 1;
-}
-
-.ie7 legend {
- margin-left: -7px;
-}
-
-.ie7 button,
-.ie7 input,
-.ie7 select,
-.ie7 textarea {
- vertical-align: middle;
-}
-
-.ie7 button,
-.ie7 input[type="button"],
-.ie7 input[type="reset"],
-.ie7 input[type="submit"] {
- overflow: visible;
-}
-
-.ie7 input[type="checkbox"],
-.ie7 input[type="radio"] {
- height: 13px;
- width: 13px;
-}
-
-.ie7 .screen-reader-text {
- clip: rect(1px 1px 1px 1px); /* IE7 */
-}
-
-.ie7 .site-header {
- position: relative;
- z-index: 1;
-}
-
-.ie7 .main-navigation {
- max-width: 930px;
- padding-right: 150px;
-}
-
-.ie7 .nav-menu li a,
-.ie7 .nav-menu li {
- display: block;
- float: left;
-}
-
-.ie7 .nav-menu ul {
- top: 40px;
-}
-
-.ie7 .nav-menu .sub-menu,
-.ie7 .nav-menu .children {
- display: none;
- overflow: visible;
-}
-
-.ie7 ul.nav-menu li:hover > ul,
-.ie7 .nav-menu ul li:hover > ul {
- display: block;
-}
-
-.ie7 .site-header .search-form [type="search"],
-.ie7 .site-header .search-form [type="text"] {
- background-color: #fff;
- border: 2px solid #c3c0ab;
- cursor: text;
- height: 28px;
- outline: 0;
- width: 150px;
-}
-
-.ie7 .entry-header,
-.ie7 .entry-content,
-.ie7 .entry-summary,
-.ie7 .entry-meta {
- width: 604px;
-}
-
-.ie7 .format-status .entry-content,
-.ie7 .format-status .entry-meta {
- padding-left: 60px;
-}
-
-.ie7 .sidebar .format-status .entry-content,
-.ie7 .sidebar .format-status .entry-meta {
- padding-left: 60px;
-}
-
-.ie7 .sidebar .post-navigation .nav-links,
-.ie7 .sidebar .paging-navigation .nav-links {
- width: 604px;
-}
-
-.ie7 .paging-navigation .meta-nav {
- padding: 0 0 10px;
- vertical-align: middle;
- width: 40px;
-}
-
-.ie7 .comments-title,
-.ie7 .comment-list,
-.ie7 .comment-reply-title,
-.ie7 .comment-respond .comment-form {
- width: 604px;
-}
-
-.ie7 .site-footer .widget-area {
- max-width: none;
- left: auto;
-}
-
-/* RTL for Internet Explorer 7 & 8 */
-.rtl .format-audio .entry-content:before,
-.rtl .comment-reply-link:before,
-.rtl .comment-reply-login:before {
- -ms-filter: "FlipH";
- filter: FlipH;
-}
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata></metadata>
-<defs>
-<font id="genericonsregular" horiz-adv-x="2048" >
-<font-face units-per-em="2048" ascent="1638" descent="-410" />
-<missing-glyph horiz-adv-x="500" />
-<glyph unicode="" horiz-adv-x="500" d="M0 0z" />
-<glyph unicode="" d="M512 512v128h768v-128h-768zM512 768v128h256v-128h-256zM512 1024v128h640v-128h-640zM512 1280v128h1024v-128h-1024zM896 768v128h640v-128h-640zM1280 1024v128h256v-128h-256z" />
-<glyph unicode="" d="M256 1024q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5zM768 1024q0 -106 75 -181t181 -75t181 75t75 181t-75 181t-181 75t-181 -75t-75 -181z" />
-<glyph unicode="" d="M128 384v896l512 128l128 256h512l128 -256h512v-1024h-1792zM256 1440v160h256v-96zM576 960q0 -185 131.5 -316.5t316.5 -131.5q186 0 317 131.5t131 316.5t-131 316.5t-317 131.5q-185 0 -316.5 -131.5t-131.5 -316.5zM704 960q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5z" />
-<glyph unicode="" d="M128 512v384h384v-384h-384zM128 1024v384h896v-384h-896zM640 512v384h384v-384h-384zM1152 512v896h896v-896h-896z" />
-<glyph unicode="" d="M512 384v1280l1152 -640z" />
-<glyph unicode="" d="M640 1408q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5q0 -124 -71.5 -222t-184.5 -138v-536l-256 -128v664q-113 40 -184.5 138t-71.5 222z" />
-<glyph unicode="" d="M384 640l128 768h512l-256 -768h-384zM1152 640l128 768h512l-256 -768h-384z" />
-<glyph unicode="" d="M387 862q0 106 75 181l136 135l91 -90l-136 -136q-38 -37 -38 -90t38 -91l90 -90q38 -38 91 -38t90 38l136 135l91 -90l-136 -136q-75 -75 -181 -75t-181 75l-91 91q-75 75 -75 181zM734 952l362 362l90 -90l-362 -362zM870 1450l135 136q75 75 181 75t181 -75l91 -91 q75 -75 75 -181t-75 -181l-136 -136l-90 91l135 136q38 37 38 90t-38 91l-90 90q-38 38 -91 38t-90 -38l-136 -135z" />
-<glyph unicode="" d="M0 1152v384q0 96 80 176t176 80h1024q96 0 176 -80t80 -176v-384q0 -96 -80 -176t-176 -80h-448l-448 -448v448h-128q-96 0 -176 80t-80 176zM768 640l128 128h384q168 0 276 108t108 276v384q96 0 176 -80t80 -176v-384q0 -96 -80 -176t-176 -80h-128v-448l-448 448 h-320z" />
-<glyph unicode="" d="M256 768v512h384l384 384v-1280l-384 384h-384zM1205 843q75 75 75 181t-75 181l91 91q53 -54 82.5 -124t29.5 -148t-29.5 -148t-82.5 -124zM1386 662q71 71 110.5 164.5t39.5 197.5t-39.5 197.5t-110.5 164.5l91 91q88 -89 137.5 -206t49.5 -247q0 -87 -23 -170 t-64.5 -153.5t-99.5 -129.5z" />
-<glyph unicode="" d="M0 1024q0 208 81 398t218.5 327t327 218t397.5 81q209 0 398.5 -81t326.5 -218t218 -326.5t81 -398.5q0 -335 -195.5 -601.5t-504.5 -369.5q-36 -7 -53 8.5t-17 40.5q0 4 0.5 102t0.5 179q0 130 -69 189q77 9 137.5 24.5t124.5 51.5t107 89t70.5 140t27.5 201 q0 161 -105 274q6 15 11 35t9 56t-3.5 83.5t-26.5 96.5q-4 1 -10.5 2t-32 -1t-55.5 -11t-79.5 -33.5t-104.5 -61.5q-118 33 -256 35q-138 -2 -256 -35q-55 37 -104 61.5t-80 33t-54.5 11.5t-33.5 1l-10 -2q-58 -146 -10 -271q-105 -115 -105 -274q0 -114 27.5 -201 t70.5 -140t107 -89t124.5 -52t136.5 -24q-53 -47 -65 -137q-28 -13 -59.5 -20t-75.5 -6.5t-87.5 28.5t-75.5 83q-2 4 -6.5 10.5t-19 24t-31.5 31t-44 25.5t-56 14h-10t-18.5 -3.5t-17 -9t4 -18.5t34.5 -31q3 -1 7.5 -4t19 -14.5t27.5 -27t30 -43.5t30 -61q1 -3 2.5 -7t8 -17 t15.5 -25.5t24.5 -28t33.5 -28t45 -23.5t57.5 -16t71.5 -3.5t87 11.5q0 -50 0.5 -110t0.5 -64q0 -24 -17 -40t-53 -10q-309 103 -504.5 370t-195.5 602z" />
-<glyph unicode="" d="M0 1024q0 206 82 395.5t219.5 327t327 219.5t395.5 82t395.5 -82t327 -219.5t219.5 -327t82 -395.5t-82 -395.5t-219.5 -327t-327 -219.5t-395.5 -82t-395.5 82t-327 219.5t-219.5 327t-82 395.5zM128 1024q0 -167 58 -319.5t166 -272.5q125 205 339 360t445 232 q-16 48 -80 176q-282 -86 -481.5 -111t-446.5 -1v-64zM160 1232q194 -22 444 14t388 82q-141 282 -320 528q-194 -85 -329.5 -247.5t-182.5 -376.5zM480 320q216 -192 544 -192q181 0 368 80q-33 300 -208 688q-222 -74 -410 -225.5t-294 -350.5zM832 1904 q102 -166 304 -512q6 2 86 31t118.5 45t108 47t122 64t93.5 69q-126 126 -290.5 199t-349.5 73q-32 0 -96 -8t-96 -8zM1200 1248q22 -29 36.5 -54.5t34 -67.5t25.5 -54q170 33 336 30t288 -30q-26 285 -160 464q-71 -57 -162 -104.5t-214.5 -100.5t-183.5 -83zM1344 928 q14 -27 43 -103t74.5 -231t74.5 -306q156 108 258 278t126 362q-276 46 -576 0z" />
-<glyph unicode="" d="M0 381q50 -6 100 -6q293 0 522 180q-137 2 -244.5 83t-147.5 208q44 -7 79 -7q57 0 110 15q-145 29 -241 144.5t-96 267.5v5q86 -48 191 -53q-86 58 -136.5 150t-50.5 200q0 113 57 211q158 -194 383 -310t483 -129q-11 49 -11 96q0 174 123 297t297 123q89 0 168.5 -35 t138.5 -97q142 27 266 102q-47 -150 -184 -233q124 15 241 66q-84 -127 -210 -217q2 -36 2 -55q0 -168 -49 -337t-150 -323.5t-241 -273.5t-336 -190t-420 -71q-351 0 -644 189z" />
-<glyph unicode="" d="M128 384v1280q0 106 75 181t181 75h1280q106 0 181 -75t75 -181v-1280q0 -106 -75 -181t-181 -75h-282v711h270l12 260h-282v192v12q0 60 21.5 87.5t87.5 27.5l166 -1l6 242q-78 10 -183 10q-94 0 -167 -27.5t-117 -74.5t-66 -105.5t-22 -126.5v-236h-254v-260h254v-711 h-724q-106 0 -181 75t-75 181z" />
-<glyph unicode="" d="M640 969v303h222v258q0 78 26 147t77 124t136.5 87t194.5 32q55 0 108 -3t79 -6l26 -3l-7 -282h-193q-76 0 -101.5 -32t-25.5 -101v-3v-2v-9v-207h329l-14 -303h-315v-841h-320v841h-222z" />
-<glyph unicode="" d="M128 1024q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348zM218 1024q0 -236 125 -430.5t329 -294.5l-384 1053q-70 -156 -70 -328zM351 1466h52q37 0 91 2.5t89 4.5 l34 3q21 1 30.5 -14.5t2.5 -32.5t-27 -20q-44 -5 -93 -7l294 -873l176 529l-125 344l-85 7q-20 2 -27.5 19t2.5 33t30 15q133 -10 212 -10q38 0 91.5 2.5t88.5 4.5l35 3q16 1 25.5 -8.5t10 -22t-7 -23.5t-23.5 -13q-43 -5 -92 -7l291 -866l80 268q25 79 33.5 107.5 t18.5 74.5t10 79q0 46 -11.5 90.5t-23.5 71t-32 60.5q-2 4 -11.5 19t-12 20t-10.5 18.5t-11 19t-9 17.5t-8.5 19t-6.5 18t-5.5 19.5t-3 18.5t-1.5 20q0 57 39 100t96 43q3 0 11 -1q-110 101 -249.5 156.5t-294.5 55.5q-208 0 -385.5 -98t-287.5 -266zM796 251 q112 -33 228 -33q138 0 267 46q-3 6 -5 11l-248 679zM1429 328q183 106 291.5 291.5t108.5 404.5q0 207 -98 386q5 -40 5 -82q0 -135 -61 -289z" />
-<glyph unicode="" d="M128 486v485q125 -127 330 -127q30 0 59 3q-32 -61 -32 -118q0 -33 13 -63t28.5 -48.5t45.5 -47.5q-18 0 -54.5 -0.5t-55.5 -0.5q-183 0 -334 -83zM128 1599v65q0 106 75 181t181 75h1280q106 0 181 -75t75 -181v-128h-256v256h-128v-256h-256v-128h256v-256h128v256h256 v-1024q0 -106 -75 -181t-181 -75h-507q5 28 5 50q0 143 -46.5 230t-189.5 194q-3 2 -20.5 15t-25 19t-25.5 20t-27.5 22.5t-24 22t-23 23.5t-17 22t-12.5 22.5t-4 20.5q0 52 23 87t99 94q180 141 180 324q0 113 -45 204.5t-128 139.5h160l135 142h-607q-127 0 -241.5 -49 t-194.5 -132zM139 309q57 85 166 137.5t237 51.5q84 -1 158 -26q19 -13 62 -42.5t61 -42t48 -37t44.5 -41.5t29 -41.5t21.5 -49.5q7 -29 7 -66q0 -16 -1 -24h-588q-85 0 -153 50.5t-92 130.5zM228 1307q-21 161 50.5 269.5t194.5 104.5q121 -4 215.5 -118.5t116.5 -277.5 q21 -160 -43 -256t-187 -92q-125 4 -225.5 108t-121.5 262z" />
-<glyph unicode="" d="M384 1422q0 -58 40.5 -97.5t105.5 -39.5h1q67 0 108.5 39.5t41.5 97.5q-2 60 -42 98.5t-106 38.5q-67 0 -108 -39t-41 -98zM400 384h263v793h-263v-793zM809 384h264v443q0 45 8 64q16 40 50.5 68t85.5 28q133 0 133 -179v-424h264v455q0 175 -83.5 266t-220.5 91 q-50 0 -90.5 -12t-68.5 -34t-45 -41t-33 -44v112h-264v-793z" />
-<glyph unicode="" d="M128 384v1280q0 106 75 181t181 75h1280q106 0 181 -75t75 -181v-1280q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM384 1422q0 -58 40.5 -97.5t105.5 -39.5h1q67 0 108.5 39.5t41.5 97.5q-2 60 -42 98.5t-106 38.5q-67 0 -108 -39t-41 -98zM400 384h263 v793h-263v-793zM809 384h264v443q0 45 8 64q16 40 50.5 68t85.5 28q133 0 133 -179v-424h264v455q0 175 -83.5 266t-220.5 91q-50 0 -90.5 -12t-68.5 -34t-45 -41t-33 -44v112h-264v-793z" />
-<glyph unicode="" d="M171 1260q0 109 35.5 219t110 213t179 182t254 126.5t323.5 47.5q176 0 327.5 -60.5t253.5 -161t160 -231t58 -270.5q0 -246 -85 -443t-241 -309.5t-355 -112.5q-99 0 -186.5 46.5t-121.5 110.5q-73 -290 -89 -347q-34 -123 -127 -270l-149 54q-7 167 22 290l162 688 q-40 81 -40 200q0 139 70.5 232.5t172.5 93.5q83 0 127 -53.5t44 -135.5q0 -51 -18.5 -124t-49 -170t-44.5 -154q-23 -99 37.5 -171t161.5 -72q117 0 209.5 92t142 244.5t49.5 334.5q0 214 -139 349t-387 135q-139 0 -257.5 -49.5t-197 -133t-122.5 -193t-44 -229.5 q0 -147 83 -247q18 -21 21.5 -34t-3.5 -37q-16 -61 -25 -101q-7 -24 -24.5 -32t-39.5 1q-127 51 -192.5 181.5t-65.5 300.5z" />
-<glyph unicode="" d="M0 1024q0 208 81 398t218.5 327t327 218t397.5 81q209 0 398.5 -81t326.5 -218t218 -326.5t81 -398.5t-81 -398.5t-218 -326.5t-326.5 -218t-398.5 -81q-147 0 -290 42q74 116 103 219l72 282q28 -53 99 -90.5t151 -37.5q162 0 288.5 91.5t195.5 251t69 359.5 q0 114 -47 220t-130 187.5t-206.5 130.5t-265.5 49q-141 0 -262 -38.5t-205.5 -103t-145.5 -147.5t-89.5 -172.5t-28.5 -178.5q0 -138 53 -243.5t156 -147.5q18 -8 32.5 -1t18.5 26q2 9 10 41t11 41q5 19 2.5 30t-16.5 28q-68 78 -68 200q0 97 35.5 186t99.5 156.5t160 108 t209 40.5q201 0 313.5 -109.5t112.5 -283.5q0 -148 -40 -271.5t-115 -198t-169 -74.5q-82 0 -131.5 58.5t-30.5 138.5q11 46 35.5 125t39.5 138t15 101q0 66 -35.5 109.5t-102.5 43.5q-82 0 -139.5 -76t-57.5 -189q0 -43 8 -83.5t16 -59.5l9 -19q-113 -475 -132 -558 q-24 -97 -18 -235q-275 120 -444 374t-169 564z" />
-<glyph unicode="" d="M160 1024q0 -172 122 -294t294 -122t294 122t122 294t-122 294t-294 122t-294 -122t-122 -294zM1056 1024q0 -172 122 -294t294 -122t294 122t122 294t-122 294t-294 122t-294 -122t-122 -294z" />
-<glyph unicode="" d="M128 1379l84 -108q121 84 141 84q92 0 173 -287q20 -73 46 -167.5t52 -190t46 -167.5q108 -287 265 -287q253 0 619 471q353 451 365 710q16 347 -260 355q-373 12 -505 -417q69 29 133 29q136 0 120 -152q-8 -92 -120 -268q-113 -176 -169 -176q-73 0 -133 271 q-20 78 -72 407q-49 303 -258 284q-89 -8 -265 -160q-126 -113 -262 -231z" />
-<glyph unicode="" d="M128 768v512q0 159 112.5 271.5t271.5 112.5h1024q159 0 271.5 -112.5t112.5 -271.5v-512q0 -104 -51.5 -192.5t-140 -140t-192.5 -51.5h-1024q-104 0 -192.5 51.5t-140 140t-51.5 192.5zM768 640l640 384l-640 384v-768z" />
-<glyph unicode="" d="M472 1186h198v-629q0 -121 26 -187q26 -65 92 -122t161 -89q93 -31 218 -31q110 0 201 22q88 20 208 76v282q-134 -88 -271 -88q-76 0 -136 36q-44 25 -61 70q-17 46 -17 200v460h426v281h-426v453h-255q-17 -139 -62 -228q-48 -93 -121 -154q-74 -64 -181 -99v-253z" />
-<glyph unicode="" d="M128 384v1280q0 106 75 181t181 75h1280q106 0 181 -75t75 -181v-1280q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM256 384q0 -53 37.5 -90.5t90.5 -37.5h1280q53 0 90.5 37.5t37.5 90.5v768h-272q16 -66 16 -128q0 -212 -150 -362t-362 -150t-362 150 t-150 362q0 62 16 128h-272v-768zM640 1024q0 -159 112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5zM1408 1536q0 -53 37.5 -90.5t90.5 -37.5h128q53 0 90.5 37.5t37.5 90.5v128q0 53 -37.5 90.5t-90.5 37.5 h-128q-53 0 -90.5 -37.5t-37.5 -90.5v-128z" />
-<glyph unicode="" d="M256 790v467q0 31 29 55l702 467q17 11 37 11t37 -11l702 -467q29 -24 29 -55v-467q0 -32 -29 -54l-702 -468q-17 -11 -37 -11q-18 0 -37 11l-702 468q-29 22 -29 54zM388 914l165 110l-165 110v-220zM441 790l517 -344v308l-286 191zM441 1257l231 -154l286 191v307z M791 1024l233 -156l234 156l-234 156zM1090 446l517 344l-231 155l-286 -191v-308zM1090 1294l286 -191l231 154l-517 344v-307zM1495 1024l165 -110v220z" />
-<glyph unicode="" d="M256 896v384q0 106 75 181t181 75h1024q106 0 181 -75t75 -181v-384q0 -106 -75 -181t-181 -75h-448l-448 -448v448h-128q-106 0 -181 75t-75 181z" />
-<glyph unicode="" d="M384 512v1024h384l64 -128h448v-128h-640l-128 -256h128l64 128h960l-256 -640h-1024z" />
-<glyph unicode="" d="M256 768l768 768h512v-512l-768 -768zM1152 1280q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5z" />
-<glyph unicode="" d="M256 1088q0 143 55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5t-55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5zM384 1088q0 -117 45.5 -223.5t123 -184t184 -123t223.5 -45.5 t223.5 45.5t184 123t123 184t45.5 223.5t-45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5zM896 1062v474h128v-421l298 -298l-90 -91z" />
-<glyph unicode="" d="M512 384v256q0 159 112.5 271.5t271.5 112.5h256q159 0 271.5 -112.5t112.5 -271.5v-256h-1024zM768 1408q0 106 75 181t181 75t181 -75t75 -181t-75 -181t-181 -75t-181 75t-75 181z" />
-<glyph unicode="" d="M256 384v1280h256v128h128v-128h640v128h128v-128h256v-1280h-1408zM384 640q0 -53 37.5 -90.5t90.5 -37.5h896q53 0 90.5 37.5t37.5 90.5v640q0 53 -37.5 90.5t-90.5 37.5h-896q-53 0 -90.5 -37.5t-37.5 -90.5v-640zM768 1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45 v-512q0 -26 -19 -45t-45 -19t-45 19t-19 45v448h-64q-26 0 -45 19t-19 45z" />
-<glyph unicode="" d="M256 384v1280h256v128h128v-128h640v128h128v-128h256v-1280h-1408zM384 640q0 -53 37.5 -90.5t90.5 -37.5h896q53 0 90.5 37.5t37.5 90.5v640q0 53 -37.5 90.5t-90.5 37.5h-896q-53 0 -90.5 -37.5t-37.5 -90.5v-640zM768 1216q0 26 19 45t45 19h256h2h1h3 q22 -2 38.5 -18t19.5 -39v-2v-2v-1v-2q0 -5 -2 -15l-128 -512q-6 -26 -28.5 -40t-48.5 -7q-26 6 -40 28.5t-7 48.5l108 433h-174q-26 0 -45 19t-19 45z" />
-<glyph unicode="" d="M256 384v1280h256v128h128v-128h640v128h128v-128h256v-1280h-1408zM384 640q0 -53 37.5 -90.5t90.5 -37.5h896q53 0 90.5 37.5t37.5 90.5v640q0 53 -37.5 90.5t-90.5 37.5h-896q-53 0 -90.5 -37.5t-37.5 -90.5v-640zM512 640v128h128v-128h-128zM512 896v128h128v-128 h-128zM768 640v128h128v-128h-128zM768 896v128h128v-128h-128zM768 1152v128h128v-128h-128zM1024 640v128h128v-128h-128zM1024 896v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 896v128h128v-128h-128zM1280 1152v128h128v-128h-128z" />
-<glyph unicode="" d="M256 384l512 512l128 -128l-512 -512zM576 1216v128h384l320 320v256h128l512 -512v-128h-256l-320 -320v-384h-128z" />
-<glyph unicode="" d="M256 1216q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5q0 -184 -111 -337l495 -495l-128 -128l-495 495q-153 -111 -337 -111q-117 0 -223.5 45.5t-184 123t-123 184t-45.5 223.5zM384 1216q0 -185 131.5 -316.5 t316.5 -131.5q186 0 317 131.5t131 316.5t-131 316.5t-317 131.5q-185 0 -316.5 -131.5t-131.5 -316.5z" />
-<glyph unicode="" d="M256 1216q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5q0 -184 -111 -337l495 -495l-128 -128l-495 495q-153 -111 -337 -111q-117 0 -223.5 45.5t-184 123t-123 184t-45.5 223.5zM384 1216q0 -185 131.5 -316.5 t316.5 -131.5q186 0 317 131.5t131 316.5t-131 316.5t-317 131.5q-185 0 -316.5 -131.5t-131.5 -316.5zM512 1152v128h640v-128h-640z" />
-<glyph unicode="" d="M256 1216q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5q0 -184 -111 -337l495 -495l-128 -128l-495 495q-153 -111 -337 -111q-117 0 -223.5 45.5t-184 123t-123 184t-45.5 223.5zM384 1216q0 -185 131.5 -316.5 t316.5 -131.5q186 0 317 131.5t131 316.5t-131 316.5t-317 131.5q-185 0 -316.5 -131.5t-131.5 -316.5zM512 1152v128h256v256h128v-256h256v-128h-256v-256h-128v256h-256z" />
-<glyph unicode="" d="M0 1024l506 506q101 103 234.5 160.5t283.5 57.5t283.5 -57.5t233.5 -159.5l507 -507l-506 -507q-101 -103 -234.5 -160t-283.5 -57t-283.5 57.5t-233.5 160.5zM272 1024l370 -371q77 -78 175.5 -119.5t206.5 -41.5t206 41.5t174 118.5l373 372l-371 371 q-158 161 -382 161q-108 0 -206.5 -41t-173.5 -119zM640 1024q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5zM1024 1152q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5z" />
-<glyph unicode="" d="M0 1024l506 506q101 103 234.5 160.5t283.5 57.5q193 0 358 -95l-143 -143q-103 46 -215 46q-108 0 -206.5 -41t-173.5 -119l-372 -372l240 -240l-136 -136zM339 429l90 -90l1280 1280l-90 90zM640 1024q0 159 112.5 271.5t271.5 112.5q44 0 98 -14l-468 -468 q-14 54 -14 98zM666 395l143 143q103 -46 215 -46q108 0 206 41.5t174 118.5l373 372l-241 241l136 135l376 -376l-506 -507q-101 -103 -234.5 -160t-283.5 -57q-193 0 -358 95zM926 654l468 468q14 -54 14 -98q0 -159 -112.5 -271.5t-271.5 -112.5q-44 0 -98 14z" />
-<glyph unicode="" d="M640 768l320 320l-320 320l128 128l320 -320l320 320l128 -128l-320 -320l320 -320l-128 -128l-320 320l-320 -320z" />
-<glyph unicode="" d="M128 256l832 832l-832 832l128 128l832 -832l832 832l128 -128l-832 -832l832 -832l-128 -128l-832 832l-832 -832z" />
-<glyph unicode="" d="M384 1280v128l256 128q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5l256 -128v-128h-1152zM512 512v704h128v-704h128v704h128v-704h128v704h128v-704h128v704h128v-704q0 -53 -37.5 -90.5t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5zM768 1472 q0 -26 19 -45t45 -19h256q26 0 45 19t19 45t-19 45t-45 19h-256q-26 0 -45 -19t-19 -45z" />
-<glyph unicode="" d="M256 1151l476 -330l-183 -535l475 332l475 -332l-183 535l476 329h-587l-181 535l-180 -534h-588z" />
-<glyph unicode="" d="M384 1024l640 640l640 -640l-128 -128l-512 512l-512 -512zM640 512v384l384 384l384 -384v-384h-256v384h-256v-384h-256z" />
-<glyph unicode="" d="M256 512v51l576 384l192 -128l192 128l576 -384v-51h-1536zM256 717v614l461 -307zM256 1485v51h1536v-51l-768 -512zM1331 1024l461 307v-614z" />
-<glyph unicode="" d="M384 384v448l896 896l448 -448l-896 -896h-448zM512 768l256 -256l128 128l-256 256zM685 941l96 -96l595 595l-96 96zM845 781l96 -96l595 595l-96 96z" />
-<glyph unicode="" d="M256 640v704l384 384v-704h640v448l640 -640l-640 -640v448h-1024z" />
-<glyph unicode="" d="M128 384q0 106 75 181t181 75t181 -75t75 -181t-75 -181t-181 -75t-181 75t-75 181zM128 971v345q240 0 459 -94t377.5 -253.5t252.5 -379.5t94 -461h-345q0 170 -63.5 324t-181.5 273q-119 119 -272 182.5t-321 63.5zM129 1582v345q243 0 475 -64.5t428.5 -181 t362 -282.5t281 -363.5t180 -430.5t64.5 -477h-345q0 197 -52 385.5t-145.5 348t-227 294t-292 228t-346 146t-383.5 52.5z" />
-<glyph unicode="" d="M21 230q-57 102 31 244l760 1237q57 93 134.5 126.5t155 0t135.5 -126.5l759 -1237q88 -142 31 -244t-224 -102h-1557q-168 0 -225 102zM896 512q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5zM896 896 q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-384z" />
-<glyph unicode="" d="M128 1024h400q45 0 79.5 27.5t44.5 69.5q33 125 136.5 206t235.5 81q154 0 270 -114q38 -38 90.5 -38t90.5 38q37 38 37 91t-37 90q-88 89 -204.5 139t-246.5 50q-194 0 -353 -106t-234 -278h-309v-256zM536 663q0 -53 37 -90q89 -89 205 -139t246 -50q194 0 353 106 t234 278h309v256h-400q-45 0 -79.5 -27.5t-44.5 -69.5q-33 -125 -136.5 -206t-235.5 -81q-156 0 -269 115q-38 37 -91 37t-91 -38q-37 -38 -37 -91zM768 1024q0 -106 75 -181t181 -75t181 75t75 181t-75 181t-181 75t-181 -75t-75 -181z" />
-<glyph unicode="" d="M512 832v320h128v-320q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5t93.5 226.5v640q0 80 -56 136t-136 56t-136 -56t-56 -136v-512q0 -26 19 -45t45 -19t45 19t19 45v452h128v-452q0 -80 -56 -136t-136 -56t-136 56t-56 136v512q0 133 93.5 226.5t226.5 93.5t226.5 -93.5 t93.5 -226.5v-640q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5z" />
-<glyph unicode="" d="M384 1216q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5t-44.5 -222.5t-124.5 -185.5l-407 -406l-407 406q-80 80 -124.5 185.5t-44.5 222.5zM640 1216q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5t93.5 226.5t-93.5 226.5 t-226.5 93.5t-226.5 -93.5t-93.5 -226.5z" />
-<glyph unicode="" d="M608 1056l128 128l224 -192l448 512l128 -96l-512 -768h-128z" />
-<glyph unicode="" d="M0 256v256h2048v-256h-2048zM0 896v256h2048v-256h-2048zM0 1536v256h2048v-256h-2048z" />
-<glyph unicode="" d="M384 896v256h1152v-256h-1152z" />
-<glyph unicode="" d="M384 512v1024h1152v-1024h-1152zM512 640h896v640h-896v-640z" />
-<glyph unicode="" d="M83 832l373 671l112 -62l-267 -481h403v-384h-128v256h-493zM768 1024q0 87 43 160.5t116.5 116.5t160.5 43t160.5 -43t116.5 -116.5t43 -160.5t-43 -160.5t-116.5 -116.5t-160.5 -43t-160.5 43t-116.5 116.5t-43 160.5zM896 1024q0 -79 56.5 -135.5t135.5 -56.5 t135.5 56.5t56.5 135.5t-56.5 135.5t-135.5 56.5t-135.5 -56.5t-56.5 -135.5zM1427 832l373 671l112 -62l-267 -481h403v-384h-128v256h-493z" />
-<glyph unicode="" d="M256 640v768l384 384h768l384 -384v-768l-384 -384h-768zM896 640q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5zM896 1024q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v384q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5v-384z" />
-<glyph unicode="" d="M384 384v1280h256q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5h256v-1280h-1152zM512 512h896v1024h-128v-128h-640v128h-128v-1024zM640 704q0 26 19 45t45 19t45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45zM640 960q0 26 19 45t45 19t45 -19t19 -45 t-19 -45t-45 -19t-45 19t-19 45zM640 1216q0 26 19 45t45 19t45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45zM768 1600q0 -26 19 -45t45 -19h256q26 0 45 19t19 45t-19 45t-45 19h-256q-26 0 -45 -19t-19 -45zM896 640v128h384v-128h-384zM896 896v128h384v-128h-384z M896 1152v128h384v-128h-384z" />
-<glyph unicode="" d="M128 768q0 106 75 181t181 75h7q-7 29 -7 64q0 133 93.5 226.5t226.5 93.5q134 0 228 -96q47 101 140.5 162.5t207.5 61.5q159 0 271.5 -112.5t112.5 -271.5q0 -62 -23 -128h23q106 0 181 -75t75 -181t-75 -181t-181 -75h-1280q-106 0 -181 75t-75 181z" />
-<glyph unicode="" d="M384 384v288l455 455l-1 1q-74 74 -74 180t74 181l233 233q75 74 181 74t180 -74l286 -286q74 -75 74 -180.5t-74 -180.5l-233 -233q-74 -73 -178.5 -74t-179.5 71l-455 -455h-288zM1088 1360l256 -256l160 160l-256 256z" />
-<glyph unicode="" d="M768 1024q0 106 75 181t181 75t181 -75t75 -181t-75 -181t-181 -75t-181 75t-75 181z" />
-<glyph unicode="" d="M384 896v128h896l-343 343l87 86l493 -493l-493 -493l-87 86l343 343h-896z" />
-<glyph unicode="" d="M531 960l493 -493l87 86l-343 343h896v128h-896l343 343l-87 86z" />
-<glyph unicode="" d="M384 1152l128 128l448 -448l448 448l128 -128l-576 -576z" />
-<glyph unicode="" d="M384 768l576 576l576 -576l-128 -128l-448 448l-448 -448z" />
-<glyph unicode="" d="M0 0v896l896 -896h-896z" />
-<glyph unicode="" d="M1152 0l896 896v-896h-896z" />
-<glyph unicode="" d="M384 512l640 640l640 -640h-1280zM384 1280v128h1280v-128h-1280z" />
-<glyph unicode="" d="M512 640v128h128v-128h-128zM512 896v128h128v-128h-128zM512 1152v128h128v-128h-128zM512 1408v128h128v-128h-128zM768 640v128h128v-128h-128zM768 896v128h128v-128h-128zM768 1152v128h128v-128h-128zM768 1408v128h128v-128h-128zM1024 640v128h128v-128h-128z M1024 896v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1024 1408v128h128v-128h-128zM1280 640v128h128v-128h-128zM1280 896v128h128v-128h-128zM1280 1152v128h128v-128h-128zM1280 1408v128h128v-128h-128z" />
-<glyph unicode="" d="M512 512v1024q0 106 75 181t181 75h512q106 0 181 -75t75 -181v-1024q0 -106 -75 -181t-181 -75h-512q-106 0 -181 75t-75 181zM640 768h768v768h-768v-768zM896 512q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5z " />
-<glyph unicode="" d="M256 1024v256h512v128l384 -256l-384 -256v128h-512zM512 512v384h128v-128h768v768h-768v-128h-128v128q0 106 75 181t181 75h512q106 0 181 -75t75 -181v-1024q0 -106 -75 -181t-181 -75h-512q-106 0 -181 75t-75 181zM896 512q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5t-37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5z" />
-<glyph unicode="" d="M384 1152h1280q0 -231 -145.5 -406.5t-366.5 -220.5v-269h-256v269q-221 45 -366.5 220.5t-145.5 406.5zM640 1280v384q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5v-384h-256zM1152 1280v384q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5v-384h-256z" />
-<glyph unicode="" d="M128 768q0 106 75 181t181 75h6q-6 32 -6 64q0 133 93.5 226.5t226.5 93.5q134 0 228 -96q47 101 140.5 162.5t207.5 61.5q159 0 271.5 -112.5t112.5 -271.5q0 -62 -23 -128h23q106 0 181 -75t75 -181t-75 -181t-181 -75h-384v256h-512v-256h-384q-106 0 -181 75t-75 181 zM640 384h256v256h256v-256h256l-384 -384z" />
-<glyph unicode="" d="M128 768q0 106 75 181t181 75h6q-6 32 -6 64q0 133 93.5 226.5t226.5 93.5q134 0 228 -96q47 101 140.5 162.5t207.5 61.5q159 0 271.5 -112.5t112.5 -271.5q0 -62 -23 -128h23q106 0 181 -75t75 -181t-75 -181t-181 -75h-512v256h256l-384 384l-384 -384h256v-256h-512 q-106 0 -181 75t-75 181z" />
-<glyph unicode="" d="M512 512v896h512l-128 -128h-256v-640h640v256l128 128v-512h-896zM896 987l550 549h-422v128h640v-640h-128v422l-550 -550z" />
-<glyph unicode="" d="M512 384v1280h640l384 -384v-896h-1024zM640 512h768v640h-384v384h-384v-1024zM1152 1280h203l-203 203v-203z" />
-<glyph unicode="" d="M384 512v1024q0 106 75 181t181 75h1024v-1152h-64q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5h64v-128h-1024q-106 0 -181 75t-75 181zM512 512q0 -53 37.5 -90.5t90.5 -37.5h818q-50 55 -50 128t50 128h-818q-53 0 -90.5 -37.5t-37.5 -90.5z" />
-<glyph unicode="" d="M160 747l232 201q-8 67 -8 76q0 8 8 75l-232 201l58 139l305 -21q47 60 107 107l-21 305l139 58l201 -232q67 8 75 8t75 -8l201 232l140 -58l-22 -305q56 -44 107 -107l305 22l58 -139l-232 -201q8 -67 8 -76q0 -8 -8 -75l232 -201l-58 -140l-305 22q-44 -56 -107 -107 l22 -305l-139 -58l-201 232q-67 -8 -76 -8q-8 0 -75 8l-201 -232l-139 58l21 305q-56 44 -107 107l-305 -22zM768 1024q0 -106 75 -181t181 -75t181 75t75 181t-75 181t-181 75t-181 -75t-75 -181z" />
-<glyph unicode="" d="M256 1024q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5zM512 1024q0 -212 150 -362t362 -150q135 0 259 72l-699 699q-72 -126 -72 -259zM765 1464l699 -699 q72 123 72 259q0 212 -150 362t-362 150q-136 0 -259 -72z" />
-<glyph unicode="" d="M256 1664v128h384v-256h1152l-256 -640h-896v-128h896v-128h-1024v1024h-256zM512 384q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5zM1280 384q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5t-37.5 -90.5 t-90.5 -37.5t-90.5 37.5t-37.5 90.5z" />
-<glyph unicode="" d="M512 384v1280h384v-1280h-384zM1152 384v1280h384v-1280h-384z" />
-<glyph unicode="" d="M512 512v1024h1024v-1024h-1024z" />
-<glyph unicode="" d="M256 384v1280h384v-1280h-384zM768 1024l1024 640v-1280z" />
-<glyph unicode="" d="M256 384v1280l1024 -640zM1408 384v1280h384v-1280h-384z" />
-<glyph unicode="" d="M512 384v1280l1024 -640z" />
-<glyph unicode="" d="M256 256v1536q0 106 75 181t181 75h1024q106 0 181 -75t75 -181v-1536q0 -106 -75 -181t-181 -75h-1024q-106 0 -181 75t-75 181zM512 512h1024v1280h-1024v-1280zM896 256q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5z" />
-<glyph unicode="" d="M128 1024v256h512v128l384 -256l-384 -256v128h-512zM256 256v640h256v-384h1024v1280h-1024v-384h-256v384q0 106 75 181t181 75h1024q106 0 181 -75t75 -181v-1536q0 -106 -75 -181t-181 -75h-1024q-106 0 -181 75t-75 181zM896 256q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5t-37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5z" />
-<glyph unicode="" d="M128 0l960 960l960 -960h-1920z" />
-<glyph unicode="" d="M0 128l960 960l-960 960v-1920z" />
-<glyph unicode="" d="M128 2048l960 -960l960 960h-1920z" />
-<glyph unicode="" d="M1088 1088l960 960v-1920z" />
-</font>
-</defs></svg>
\ No newline at end of file
+++ /dev/null
-/**
-
- Genericons Helper CSS
-
-*/
-
-
-/**
- * The font was graciously generated by Font Squirrel (http://www.fontsquirrel.com). We love those guys.
- */
-@font-face {
- font-family: 'Genericons';
- src: url('genericons-regular-webfont.eot');
-}
-
-@font-face {
- font-family: 'Genericons';
- src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAC98ABEAAAAATZgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABgAAAABwAAAAcaBk2X0dERUYAAAGcAAAAHQAAACAAjwAET1MvMgAAAbwAAABCAAAAYFFfaIFjbWFwAAACAAAAAIcAAAGayK6UdGN2dCAAAAKIAAAABgAAAAYAfwEJZnBnbQAAApAAAAGxAAACZVO0L6dnYXNwAAAERAAAAAgAAAAI//8AA2dseWYAAARMAAAmfwAAPpi5AaxsaGVhZAAAKswAAAArAAAANgMOxuZoaGVhAAAq+AAAABwAAAAkEAMH3WhtdHgAACsUAAAAcAAAAM5JOTFAbG9jYQAAK4QAAADGAAAAxk3HPlxtYXhwAAAsTAAAACAAAAAgAYoBJW5hbWUAACxsAAABZgAAAwhJCWWYcG9zdAAALdQAAAFwAAAD3pfLCKFwcmVwAAAvRAAAAC4AAAAusPIrFHdlYmYAAC90AAAABgAAAAYLT1HIAAAAAQAAAADMPaLPAAAAAM3t18IAAAAAze27zXjaY2BkYGDgA2IJBhBgYmAEwkQgZgHzGAAIdQCUAAAAeNpjYGZ/zziBgZWBhdWY5QwDA8NMCM10hsEIzAdKYQeh3uF+DA4PGL4ys6X9S2Ng4GBg0AAKMyIpUWBgBACF8guRAAB42mNgYGBmgGAZBkYGEJgC5DGC+SwMFUBaikEAKML1gOEj5yfOT2KfOb5wfpH8ovnF8ovnl5CvzP//MzAA5Rg+MXwS+MzwheGLwBfFLwZfHL4EfGX4/1+BmZ+Fj4+Pg1eeR4NHiUeaR5SHn4eTOw5qFw7AyMYAV8DIBCSY0BUwDHsAAB/OIGwAAAABCQB/AAB42l1Ru05bQRDdDQ8DgcTYIDnaFLOZkMZ7oQUJxNWNYmQ7heUIaTdykYtxAR9AgUQN2q8ZoKGkSJsGIRdIfEI+IRIza4iiNDs7s3POmTNLypGqd+lrz1PnJJDC3QbNNv1OSLWzAPek6+uNjLSDB1psZvTKdfv+Cwab0ZQ7agDlPW8pDxlNO4FatKf+0fwKhvv8H/M7GLQ00/TUOgnpIQTmm3FLg+8ZzbrLD/qC1eFiMDCkmKbiLj+mUv63NOdqy7C1kdG8gzMR+ck0QFNrbQSa/tQh1fNxFEuQy6axNpiYsv4kE8GFyXRVU7XM+NrBXbKz6GCDKs2BB9jDVnkMHg4PJhTStyTKLA0R9mKrxAgRkxwKOeXcyf6kQPlIEsa8SUo744a1BsaR18CgNk+z/zybTW1vHcL4WRzBd78ZSzr4yIbaGBFiO2IpgAlEQkZV+YYaz70sBuRS+89AlIDl8Y9/nQi07thEPJe1dQ4xVgh6ftvc8suKu1a5zotCd2+qaqjSKc37Xs6+xwOeHgvDQWPBm8/7/kqB+jwsrjRoDgRDejd6/6K16oirvBc+sifTv7FaAAAAAAAAAf//AAJ42q17CXgb5bX2d2ak0WJbmtFqy5YsyVqc2LESrXYWRyQsSRxCICFrgRCWNC4FwlYopUxZmrCFXrhNKaQkpC3Q5aczckLa5nJxKf17KYjlwc3llrZ/0+dpWVp66b2UQmJN/nO+kRyFpKX3ea5tzfLNaPyd853lPcswYE0/sxiTBCYwiVlVJjIba2Fu5mVB9kmmsYwGVc2S0eScZq1qSlazZzRfTnNUNX9Wa81obVXQ2jOa5WCF2Vuz2axmq1ZsFmffWNkmOmjb4ujTbLLugz4tWNVdnmy24gvSdZ/s6NM7oI/NnAWFmP9kHwGnU2PAjjJBrakWVlMF9SieC0xVoelj1PdMALxqw1+kwcsWMM2Z0dxVzYsTxHn6kJiDOGOtTdYVnI+tqvuhT1faFM+YxeEUE8EhpnvdeAaSjeHZzFlM9iSiFo8sWKIJ5gtki/lUHNiLcCHsgQtffNHYZZxv7ILsjokdOybETPPgiy8KO2l0B7HYwlRQbaqkcu76WZjdxHmLcwtntI4qTU2sjjlFn71Pa6lqdpxtpGm2QZxtZ1XrlHUPHklVvRvn3QaKR7c7h4a0oKIJQ1onUiH63DhvzaNoVqSlI6x49rYieUCDPqUiWKWhISTLqyS9MW9MISZ7ZJbLMpn1xAW5GA3IUlRF/vK/D5GrZbD94IcgGYd/+IOtB8B54IDxPqgi8fsom2SW6O4NxleN7caHYIOrwFar33KA0ywwe7NMLSSadXtrLkdC5ciSXKFQtWVBkzMaO6hZssgFTZR1O3A2SFmtRdZb8cRdpRVjNHOcdf2Tww/y1cDpGLjHncDo1NwazLw0qTIGNCQR/wU8UfDUgl+wokDRNTpUUWbaWJ6B5uJTwXlZq2MOK8MFcVZJjhxV3Y1cdzLFg9zWrQ7ci0MkvXlkm98n2RSrMoBPOwTDh+7dcpRtudeq7jp0aNfnnu2tvakKD/Q+i/KJEmxr8ISBNwa4DIBzF5Cd9Z2gktTTh4lwqyBaa9JNXB/72HKmKRnizLQMygNo/VxGbFXSsCSyqbuqz8A5Jm2Kp+wULS7FF2jvjMW5YE9roUEmtrn8wfZIrM+U7/x8CNokXzcEsvwongEHBMFbKmZxzOeGdKmYz0Aq7ga4dWTb+m2p1LrUaBIPRiZG1oMMo+uMHQNb6WRkZNu6rfXLwnsTI1vXbUuO4mkKD0bwXje/V1hKJ3g/PqJ+mdGqsHEbrYGH9bB+psUymjen+askGK05rr2JjNZ+UAtXiVCmW2RkfwdS0IHsz8WyAb/ik3pioPTEU1CKZYsFxRzrw+XevcHCNuxGSS0bZXXDbpG08fHXaEQ1yiQJ/CJujTKM7zY2qK89DuqxEVqHhvxYUY7D7Iy6ZeRaam9oqRdXoKOum3a0Ik637CfF8yp6IDyESwAoO09KjtY2j7eDsx+lGKeXLObTpQigBAWHIZ+iY7/PhQqF/5TLcwE5Vpgzp7DujLPOOmP9mosGVswWGYn0EfyMEO+Ld++8u7jujAMvHzhj/dq3b1n96D1zyO6Qnc/bUQvZJvYppl2S0c6vatNJ60D7JJfzYlUrynonkJTrm3HmRZxjZeTM5WgntE7lSavsn3vquRu5BJ1/CRoceSNemK6UW5zeMOvtz5cXr7qAiLR69sYTyZlZTpeS97BELmthHr/MrFKqkC8W8ulhC22EVHoAXIItlZZsA6IbpKDk90XEoGRzwQCkByzp6eCCQDBiCUZsxZKPVCudYHvACze+/ArcCJ49xg3G84k4nHbmDeqq0mbJaXd7LW25uReVrrvzzutKG4czTufsmZtLq9QblhZau+avWR0VHOF4MWxp7XAoIdERDsXbQGzzdCeK884ZgHjCeN64wcJehs/hw/cYfzJuf8XQa3/YZOvusDx79i1zHN2LRp+46pEt7t5FF8wCweKZlYwJQiw5S5EE4b6brt511ROji6L2zLo2FwyWLG09ne2CrSXkQdq6B2OiPdTR3RFwis7s9Zb2qLRJCNDa2GjD18bNOrnUz0a5Ws6uYZU2xvq0VJUca3dVGzTX62yu6zKqhKyfheu1IEsm6RxcsrNQF8pt1tY2S6CrO9E7ozBnEV+v9hRpvIN5pw/PLy9YvpSWqVvZa4eu8Bw6HvRUYplTuUNoB1ywKK6XjKYRXZ3o8wSLrJRKt6IBCCRKQlpiEIhlS4IoMW/AO2wppRI9cQkiQrBoCQppl+CNAH7HU0p8g1YKduLH+41vGO8YtxsX4+edxDWX3QTffUMuG783tvw1+gy8d+c9Y88YfwblNVi070Dse782tr1/6c+k3WfetXna5439P4iqsDwQTkvfhqWfDX3xjCf/utI1e3145wvtxh/F7InP/wb+X2HxY8ZL11eheOZMdVW2/UuBRQMQev9c48CRB8eXQz/ctsR4xbr5UeNRYXZ0eEHi8/fJtSvDuZWtMakTwmNDF4waezofMH72lctg5fhAXX/G7cxWZlnGlEAuWkIJDeSyuJuHIjoAhXwpYLGSfOeygWCxJNnogyLrhFboiWazkPzdHf/e298zVPin8VWbV10y9DA8A0LL+0+s3TVn++cyd3zu2pWfFzb+zHjTuP43xiNwk7RX2HOzzR1+4wHrTOvs71+2ZeMzb7bNyjzx/unDnSM7VrhzN69LeB83njCe/9N2mp/KEFfYVJZmpzIykWgs41XNlSU/Ec1pgaoWMsWnF7HaQQJwCN0cMmIxLYj4I6dPQwEKIkTQQkPcvTZbUwWd0zyyr8FSqifuEsLQQ043nlJ3jFrZ6I4do8bvwdVq/L5vwaPSss3n37em3zBq/aM7yLfS5SO4FX4KlvHWuSX4L2fp/GtP/aMxWRsiUISekqnWN3DunWwZt6dBjgv82QoDAoisA6EjemN7VWtFiNCV0UIHNSFLcEnJVjpCdE9H0NFXCXXQYYghngybeBJnmR8WcEm6QUQpDVtiIhKjCOqv85d+59Ol0VDI9qOlOVjsMn5ijIvPQQaEZXdeXpZE0fh9+TRRcLxkvDK5X1xMKmqd4rEbkdsqdj7i4u1Ma8toa6taNKOnCohnuqr69Ayi35Umszc36eo81NWzs9ql1cq8S2me85YiWZfK+kYcRwUeRf7PIwV2kAJ7A6vXX8CVN7qWlBrsDubz9gwuOv+CjZeSznYpewP9i5deTMcrPfq0WaS9HtlTRO0NoPZKqL0p0l6QvNlctjgfigHJJtnAK6LZLQYD5lgEzMFhoZAno+vgEhwknbYACXgqLULRg/YaZdmmbn8XlsJlsPTd7dvfNfYa/2zsfTd/+AVDPf32cDB5WU/c73X5+mdBSrvpXJ/b57v9rNSnenpkL7jlvlnQs7xD8QXbfYLXKkutVrsoLhsS7Zcbbz30svE1OOvKa+78gih8AFv3/8dG6zxxyUf+Dx4Jwh+NGy+2hHeCyyqI0B0XrcLkVwQF1tiEeBScNOjtCAg4+jC0njX0idjA2kLcEnF2trS7AorPObQKLrni2cNfjQ1IVuGx2vZRuPr1l8Z6p2990MTmU+t7GlvLLmE7mbY6o/XmtMVVkj+EpAsRbuU0X7Wy0EdLuDCCS9iBMnmpuc7ZOgSL45KGsloCLXe2Ek/QrfFBlMpNuMY2ROtjouv09bRycaXstLZEpvUtGFm56kK+3otXo99lfaejOdZFFx7bBgbJBy9U9oMc60nM+cRG7lq9Ci0PuUwIxqWeuFgwNTYMMaVHiflNWEzaiy4XXa0dr5f4Ya4Ui0viMATRt1qDtK6oyd5UMYhPCkgoHepN1Ug4GuqOeBZ793/FVPGjjEdcCPdR2a3W8+4Ve9wJb1hR7ANL965bsXtr7ZGbf3fa0C/UlUu8qxJzw2GbDWp7z912iv/eG294KuBXb7zpOfg9/O5mcd5QbG4yDBbpFLIMPH7gj57E/9IVuPeJTwmh1i6l09fud+ZPn3PP/i37Z27fePjr524G6Gib0zErPqsjnJTtl1iKj/yHxfK7r+8et1heZoTNECRJy6Qga8UoJs3OZeQ3oxhHZBDTcMPHGhiZoj5PVUtmNY8JelBvyQDaEPTobS5kfacHTWGU9K8dYyfZnUylTaTmC8wBRJUDgPYEIycE7kq+NAy5rB/Znefm0VaIgXr2KbBwhbB8wcJzZLBhWPRVsNvl03K3g/2xO7JnD8Zl4wPr9tlnnTV77pnLjuwXOybfgAMzvL2DY8Ya+On3nmzvT3VceZxMdrEoK1G8iBYH0W+sD83MTB44RaMHFa2Y07wYq8haCGkd5LSGq2R6wrIeQQpjVS1mSmZfVeuT9X7T7Awh1ZEwN/taTNHbgyhqcY9WGNL6FH1mkdBqFC/rvQUzXmx2C4iw/zFuTLkJ8gPA/gHWNDuOHZbrP45PwL6DQGo5YqhT2HdZJUC4yZ3RplWJQxIyZAFnSKGqFWS9CylH3xiXKUbCIEpfiLti6IfDLe8uYf4+p0vrQC6O6z74UEuNj3l8KW9fBbfRO6N39kiokkNsr8fXEUoN0A80HWvlEOhdBVTa4NA8Utq4UpECM+lohkd3TyNuzpyG+t/CuodNLUb3RAA54PH7BAvGLGkB7XE6VfLWsQQPACSy1miEGfHT70NFtRFKTqeE75zx5Veg7wkNMi9c823j33560ffii+X4eV+2hff03nPpijXJea7gDZdc+4OLjLc/uOudr61Z4bHZZIetJ3DzrZY/fvqXLz58wQ3PGUfuft+47tB5ZePXQzfeX3zsRkE7+zN3HfjUObn7nhm66Evfh1lPHgTXRY+9fv39F/tD7fN622VHDqyNuMLErqvY7aziIr4j1Fic0QarWrfpA1dz1idR22Q9h5xeWtWWyvrpeDSnqs2R9ZAZc6xBQVyaQ970ZVasJNt4urLfZfV2D54iL6fTOR49MJ8YGHBR9LESeboYow+Hk3lDyWm5OfOXfyTiIATbE08XSwhITfYNCMg/0e8LBANFFNJSMZVGLnN8QGxG7pfID6LUollFyIBLETw+4DBjgvvvXRJe1LV9+Z7anec/+tft9/zXtz47NLrJE7YIsmi1uk49Qx3f8tyh5TvOP+cib8usyBkLz7latju2eNslRKlPHBdfGOfj5097pl+zCUKFkf0w/9+umvj6xjO/8OjY2jtfnW53eR1lhzegLPvshZWtZ7/+xD//9cvXLh94+LrpC1Y/sKXvbK/XSK648M7rYZJR7Lxb2GDbYN2NEYWb9TJu93Jk8FxmYgXMbIasO5DjbY1EikcORItyKmqp73e/B2vee894XLi7fmD5rvH4e/VjvufrjnbbdjOGLglWYFoLZSE0f0ZTcL2TCIUoMu9sQatiG9L8SoVJXtIBXFy5O9pjCn4QpduLUYMnlwXm9SQTIg6gWJMrS4mkBZK68gbfJ8725fO+y75Wg8vhwlbZ+KNx122nlbfJ9iu3DC6e68vPemWt9nnrRZetNA4tfurpRcYh+Hf4MYiw3t5qrAg/8AlNA/cyWAwZr/2BLZQwrOffFOZjHgY0aZROT1UP1NNKUwYOBSIWHwCrA9RDuyxs16FN+icn2Sf1TYJKWUgKvCmrY9DQJr2dvA8DeI2pUi/a6zhGcpojgwYYtJ6M1nWQOBTI6glijUw5ozbyJjnFx90uuvJiSUHa0ySTCoHUHkJmiM1e+7+h0G0XnHfT5evXXP/FO5bO7VcU+Lax6qgyY+biJZ+y7KnddcOCU66Kdgd8gxBak+iYMfAgvAAd8JO71p43r9xznA/pYX1sDruF+xD0FpGMlq5qHRktntMy6BUoPapZZFRe0OZyxpjQNYoCYyrwtKkEJKUiczz0nEeZpihSFB/SpiljkXA/jyo7KS/D9I40LntnNNlLYxlFT0w7mSPB8D7HkzUxVEV0dBhPxRJ1iUyaTgYDkFQfoGoe503UkYKVFUaMd2VjwlhjTMjGu8Azb4eMZ4TukYJaGOGb4xzKKA2KbMHwhDEB/RPDC7qNZw7Rlxp3jxTQrAEup41JBkpKEGOTbuReGvk3gLE5aBnOHj9KvUzJay3C4V4vbqfcykzkS4cfqQ+0d0WJ+oSyV7IShguSPxiLJ6f3E+SjOCVfgmI2CMQPG5AYQGo+pL2gJMVgUhGDJTxOWxVryQHBArCw8K9KryL8azhcW6D4PN7agvBt3/xmQbAav33jDYg89tbbby8QrG8Yv4XIG7Uj8OVvigF4tbsdXm1pMWa0dxszogGjv6UFJgI7L7/ceNx4HPJPw+CDT0Ou9vTOnTtrcVjz0NNC19MPwpra05f/EhlBeTkmUV7Oz5qScd4MZfRNEk5IvyFUtJjRIeXbRneIqCL8FLeUT9uBz1UFJqkS5el7eOyHUanEobaAT2/N6G2kLw7GTQnPkwUR2ooIYYEUDh9SU1W1LI4fRXVESUckibpp5v8lmq8F0WA7owoFZelQ7J0H8em6i0/agXAFjqXzSaVrlEkbHRkZFfHUwFNLgc5GpnJ/NsrTdLMkO49rkZ9n7snPpbiFVTAoNRWmp6r1mLKBOpJGWYgqKAttFl8YF13v6FE8+1r91q5EksP+MArKPoryYslGweG4UM7jiwjZYQF9WNwFFNdSWvCKp8AKEbA+dcUVTxlHjN8aR55S1j/087d//tB6cwffVGH6OlH/yE14JDiO3YU7Yyf8wlhvHFyPfoTnyHFVGLKdRfiqoFlQzBqPJ6O1HKQ0vPcjy87yxWzAJ8UFdmgXoGWsMV4MwVXiZvIoE3eYZZBjfGxBrepnn25UQPooy1Xp66ZwqS+NkRXCd6GqWx1ZXg6woRebwbWutaq1yrqAnDX9GRmlRLUyjQItNi2M30QllDjjNYeZjkV1HKhPOFbI+flHgYbRQZePIZHfki+ioeEiHEcj3BMnKUJjjyQcYWgwuGGY5MYkFVJDqVQ+hYAPDQuKIKVgGV0X+F3r8qlUyGB4T6gpb1ynuci+0qC5kNHyOUrunUhr6aS0nkDWYB28drx7K4FXLT/g0nLjer/woTZjnFX6Z+QIpI7hPj8FUSUrCltXKt07bToXvoIb9Ssz9LHcycXmCOitwqLPJiL8HICS9+8zCVATxUBMFFRpRijUZbvsib/NLyEaFAQQrE5kW5cN7wedtR7Ht4YFzrAcRkJz2Hy2kO1vcLIroydm5nK8MDALuRjNVHrzc3M4EkPRKMyjmmR/Rh8s48gMjHtOwfMTmX5qE9MxTtCFKF7rruqWOO1lct96bz8ep6v69AHay9zO5wfxOFfVi7NpL+tzcUwq4/H8qm5fQPupBTvtY+XQi6Mifhr7v3X8tzivnuTn5Gwn4wmm1TyhiNo8TjDfrKkSjhDRAjJeHcJAV8mBn+w9r8YabBwVvszLV8a4StYdx0Q8KgNaU9UYN5qeRalvLwtT1g89SpDWkFtSs+Jp+taQaT+plhIiX2q1uGTynw5Fa0HJDVL5x0XpsDFgLY56LWtYyEYwTrIB96UDcKy0Caxu8q6A/1QN5avfv/bnDyWPVTYtI3WreO33v2ooKvznFesfEsRjZU3GTF0+NvcYu7Qx+wjP0tdpiJ9IQ0+dhn1EQyR6Eioiyhjzt3Tw/LxHcxBZFQj5eGb+71ElUp3871O2VVA/jjjDXOjj6ZvGxproS3Jb1ZOtRLiVjvQ6+irdETrsjqHZrdM+vYn2XqQ9SuqixbOVdC/dmk7it3rTdNhLCbT0FIf6SLuQQ5plSEsrlWCXTGFDyKNbXUP/m8yi1Jif0mQfxzQe56AS/AOsm8pjmXV+Bv12Jk2wNl7T6SMpwSjJU6VgIF33dbxhwqzehg82AexYvXobRllpUcT2CEeM05S9Toun2yzipgk+2Fz+rhj1J1CuJhwlwhUg1BB0AIGGtIh+P1tEzEghra1R1vc0AM/hS6AF+qHlYjhiSJcYf0EE/ZeL/wBXnfmT155dCtca9zz8m8t+MmKpo+ldHBZZGBzedPXVlxpWw7rpqqs3wWHjnmUrVpwJ18DVj5yzrPaOefMhoQGbmHWKF9RN0om8yLEyIyFBDjhMDuQzeoGAXvd0xVORu5QhvtxlJ7O5g6FwMjWDyomaxVORPN6hBp25bNDGCYOgG41RGnjqGlLeEqVLSpAuERt64l6g0mGPSe+OH33z3k1XIlnG3e9uS66zsnWTMw7t6i8a/a4QXSDC/7wNrucM2fGjC2DChZdNqi+4d+CcZfS91+l7tRW7DrmM/mJt/70DRP+ftxrbiCewESaK/bsOMbO2Iagch7agxRQIvTvA5qBWg7LBrWIZbSLfGOMiO/6c31Ov7fAcCz7D64Cph6hieXIcN2JZnRznm8lxBLHHnfN7GrlRwnQtaLFmsNsYZWcIxQWz2YqbK7PbhWqp+DvIUfKitu5Mcp/JdXoAIT/hPs0t6zLKKEaP3kY3jxaUMf6lwFDPoNzKiCYqQryHMthBH+UOMeTT2hXUUab3U7OK4KA1hEKyDh6tfkK0zb9mVMhMx8jdIgHJkQIQsGCTrO7VyIPRACENwlpHWYjcHI/i1BoTxmvl5g+OW9x5wm20NmjnIhjTfBlxLnozEf8g1kKjv9wPr8Pr++GXtX379lpuNp6svQVLjb1CEBYLwdrb3H+ZcQv1AbhYL8aD7owmHdRcVc0l6y1mRgvZpLdQBt9iB+QFxRsCLptXcQAP8KkHRCB/S9YDf4+iBbHwDid8OI6qZtXf4Fu0KeRheQwm4YxdiM0ZFCBYAn8Sn0geIAlo0ITy+LhQPsygauQkCmdyUBVYDpBbhpqrCpcaVajmcgYO5Wq87sFlY1wax39u57lzBorDUoIS6RR9VAzcxidJMMnCzdggrNhgnElb/Oa4qBrlST57XCB+rdZG23rMiE/Gp0Y5ShNRjhzcN2AE5iR9FymwkzjwJJ44iACTLdTiJSCYqPEQr6YSikY5rucytiIjfCxBnV22jO4KI6ZDAGfn4aM/owV4Ggr/kW73owibyNmNq2KuD6XDESamzPxXPW4RFd6mEMsL6VQCTxB6hhDZ5J3A+kE1Y5d34UmY9y/GYzdf9xnjxcf+G16GO2DkjS8Yj33yAFrPHxt3QIDfJ47A2n8xfmQs+vO3If+Zz9wsXARrv/CWsde41hh47ydwA8yHtgObOT1+pOcPtgHkO6U9zEhV5n1g7UhELEMZe5xlMVWCYQgEIYCK0YhYRdoTakTMuOyqNcIHQw89NFv465qrHvvwD8Kd3FzX/9QXtlt+ft7Checd6dv+AuzjYyYOhHq2g/O2nhsLoIUosBFG/rwXcTH5LdCKGS1zkDBuCeU6l0Es5unqtXFv1NuFy9g+pNnIZDvb/MHuWN/MPG9AI1c9c5YXtZiXBYKBbKmYT1O9wGJDQoKUm02UUB3ilNGm/Ffc1nBQKnxpxmnO2Eu3PXhNanMqmVzz1i3PGM+MGM/DA8m1b97yDAyPQMG40rxn55bUaOrHfJ0srDT9pj1XpVKp0eTaiye+W3vB3AMfvzqZguvrHXm8H4z3fKWpspKiYgEVyj3ViofXlT1+BCitVEZqFJDMxrQu3otGxvCYCbTzoJ/XkdzIkIo1lCI/5lP01m5qzkPv1ZGkEbuit0Qpld3qIWMI3BiS0QtEG8upmEubq4eivLNMIQlBQE2tdVfuvhKtmIo7OjM+JCgilslh3H7gwO2CuvzKK5fXw89njbl0JjC6UlN/QJjFxOAq3CcRznPhig8wLWBa+mBTzdpn4jI07rpPJpIsraYlqwMsn4QGLdVIIYNaR1Nrlxubjc3LH6s3AU6hp7dfXW6Mwo7laJveP0AXTR+5gXyk9Tdk2sjoBKFH2KD+BsYpFLFE1XGBbaAeOHKFdpqv2UcYaepKtdaVfyplRP1gxxoE7ewDZn6g3kV6bEs5KBH/v0Xl2lh/JiWLLBnd2ojV0FhbyAzSF6bsP02Y5tLbyJHYzCyT3WxipFQqPYGsnWPqQUmqkuHDJhm1JFLSapKCOMKMK4SynVn/Hz7Ry1HjLYzSLShc+PQubuG6MVCVSUZjWa0TPbLZDic1J/aPpSRN+YybgDLZSEa2Kp4WSkDFyUt3RbppPXUxiFfsbn87T9wqYw6Xz2xM8+JqEFAu5ochGwGfC+Kphno66tdWwLVXGn+B+9XxVfc/cf8q2kzf8vCWLQ/DnsYVsSzsGja60ZWxzfVbVq2CIbppi6FOXWuKPWy8G+oTZN+pz9HN89UdGZ4W7Gqkpu1ZElI/UthKVp66PnSZSriCDbGHFcnVRYnoc7fgoZXhYIcXjyx1lQPqujupOSU3JPLGUeo7bjalwtQ4zvhkltRhYq1677GJ/hvZige4pLTyXq5QThuikgBl2uM5bV6VcsjljDY9p51S1VK8cyfDe5ZdOSSb+mSLpoY2JymQ+DFB6UokgtQQU4lScgKPZMoL6XMpAzGnOuZwDy+gG+bIpBz1JIQ+ZxBZkc0NmRnoWB2LcQnt8ccKPQ3PKHxk72lCZd7mTu3jEJqoEpBRUxxuNf2ta8Jq66COboDnJ4h/R1DlEcFNPspvh9Rxu1/w3WRTgsKsRSEuohxyJ8swst6oKN5sReQGXHRQ97mI2JbLDVo2MtbVeoOQhzJ+ZqU1SO6JmiFyRCSSpu4YtdkO3P7F8zMHrtp1KBisVw8EdBzhntsPbLjkxkO7hheYjd1kS9GL2Cy8P5c6i9Op/Hwzpe9zgwvSCP4pY/1TWLLkrZGJJRDB/ZJXRowh2A1sN/X8QpSuToy8tWSJ8duRV0feWiwsMobEl4+y3TyoBMpIWymcspHts3E6RdPc1Et7DTvTyMWKZg62kXnltg5etb5j/T9oCkNTvauOjInGqC1Vs3JkHqMwI81No/Gt1fCO4V0Nq6nbe/Uqw2t4V8FqtNteeFVS+bNQ6EsQw2+lcfCd1ca3yLbB6tXiOL+XvsZz/WWJ5k8RIUUx1O8M42jna+MWRKdlfsTvI39Qpvs4YqYvChgTlY2yiPi2hpHRuFGeqj+LOEn0iwqr4Akus5hBBSc2YJQomo3fgNYdp/k37kMrQMbdbBFvYHuryl+F8PA6KsWoCDTtZtWAp1s4Sj2CcxSYWQ4kYZTpxKpK7Lj3J06Wufw+cb8iR2fmeBd8RYnNIsW1ZCq+RJ7GrNWKP1mgMXum0t47SGOOaqVj2hCNtWYqXf08u9lWrYRnUHYTyHiwgxht8PcvxGpFcrr4EY/YKr72LjrzViuBUIQf8TpFJWGajJ5qJUUZzSxVLWbieH5wbpYnNSvF2cN4pJ9Sf0fjWCLyo4nJf+RcYOrf/xHU41/qqLH/2TkXCYHXf3ithmzwfF6rQc3v5Oi6/h5IV1OJU2nk1amtsCPDXUkHZZp8QydUt+IpanVpuA2B7RgVzDIX1SPNN1W4ryDnTuPU2bQDRkU22VxLMucnoS6n2K0ca8erhECd1YozRabLaUfsacIRXq6ttHlpuM1NtizN+83dWXopoS1LbU5OM/Bsr2rtMtUiExlKvulRJ/WbWSXBrEBqFnSHzMkVXQM61dro/QUzI41xJAJR9AExf0/heJITU2Uy87UKjPeIVLWZ+HrpzMJ4oHiU8XcvuGpMsWFXIy3EcxKM5/apztTBFvG3dDw5CtL8KM0hXqsz62lSC9U/KlaJGGAFR19FstIhRsJ9BHw8LbzjvtOU0JiP2RBppRgtG1EQq+/JyRi/+tVR9ivjV3yN+MaivmE8MsP4b2ibARfAJtOPk08y9xzvYdxp+phuXK2VrJKiTpdIRuvINbxN5KPeBlcodhAXgq9CIoa+tiVFWCSSQuAVjSUoEhCVSidPlPxdV0TZgriV7zASHZWkj3glesfFUEdhFDi+RUCF1j4abfZRPDtJG5OeYz4zTv3CUU5IBNUjW4lEeWaXExJBQrSobJJIfQxm+0IkisQEGZ+/DoGPnT2VWbk/PXHmfLoE/QzTs3501qakUU2ynm9xoEW+jnsuK0f+qBz87bNKaxvNu1Um1nunXt1pLpjJHBNXZDfdKLc6+ii84bWwiuD0ULaK92VQjtlCg3ZzsBVwUDEVxEaLUFIc5OsofUzTUimSwBUQUsY6PKj9QjCxD3Dxf11I0vGjtV807JKZh7MwJ2tDSapTYuco12n6Y1fT9OtvQLWYhFjMd49a7PzdI01StFacLT8VhzSnYjaV0MskSVNccmnySICeTeSMFtjzz3MtwBFV4Gmb5+v4xdRFBa3l6Yzwtp/arUkLpVyTtcTYQ+IWx1sdc0r0VlQ7z2M7TfTtbEfRCHQMHTOaSk9cogYOP9qQIiHHVL5E2TzqDaCEXKE8abZxiOhjJl8smEbzCFkSlaxF6b4S721iu20bbBswTi3S+qOdzFYJD7urvFIqHtRmVrWZsp6n1lteFdVnilRSt9pbp80g25dXxuREG29DCXn2Kf72ru4enr3IokLuC7NYopfehdKKyhhY27vo0O3ZJznbZG/QjIVKKOCldMlaLImlIGK7UlAMBJNBavO3BW1Jyea1pal3w5b2ptLWhn/Y/abd/uZsmJWZ67/ruYXywufuDgzmYNZsPmy81D8/gMMO+8Ln7vIP5oyXhBRHa8IfGoNzMye7mR5ivDS7/mwcF5x1kCce9+4jX03z7cfQlNeDRvQQNN9+pJULYmC4j95+VHycKyE3cU+yMY//hDcgvT6Wy5ZA8kKRNyWe8CZkFvontn6udtqimnBgkTExse2EdyKzE8bEIuHA5yFXO+3GbRPQf8K8L2ekxxgluXmUhDTYGr0hddzaxT1EK++6FrIVp417TXIJTpkch82MDTsoUOQ02tDv6S4vtaIputtD4aCfe0Lz3VNqX/VTYUiu4+dEfU92yIKqMkkYse7b9/GdRDVSinMs7PDzTVEia+6jICzYxRp5ATOBZDE5fywvwN9LoDCAmcEQQcsjZn6ETeUaIsfnJxqPqzYlKkh/zKxCvc6KWs3nIPF+N1v9S3UsS9/wmllXJMH8vyawbfqucOy7IlmAqe8CfwvTfKvVfI2yxp9Qf8+SNb9nyRrvWYrAX3qyN7DZKfX3nP730Bk0obNjTUiTvPeYGFOHKYTA6MJhE55Z2eGpmpXI/T3N0cRnN7FKF83xf4jQbE0I7W/AswSK5F7BKlm6udadFJl5G8gsVv89OTJrvO+qmlQePY5y4aPQrIbrbHBPYDZlHW5GZ1Rzonhp/KTxUo5qT+P0O1k2YzA8tfO3N3GeNMovmzjDUua1K4HXrvi4nU2W8SpYyvW6lkDxo2LBQfp8oLL/D/oHFeoAeNpjYGRgYGBi8vVdNXdGPL/NVwZ5DgYQOPt29zlkmoOBA0IxgSgAVvoK5QB42mNgZGDgYPh/A0QyMPz/DySBIiiAFQBj/AP1eNpNTrENgDAMc0IHdsQ//MADnGKJRzrDQxzCxEScFolUtWIncYIHGX4AdgMjHAYQdDiNtkO8BZ2qmPAMXpNd8aPHEjX9f+mdM72D6T7L3+gbpBCrKuoapE6poQR6c2S/SFlte9qm71pdV5YXStwa2gAAAAAAAAAAAAgAbAC4ATIBeAGGAbwB1AJIApgC9APCBJQE5AVCBZYGhgdmB9AIZAkgCeYKHAp4CqgK8guODBQMQAxsDJYNCg06DbQOUA8WDzwPmhAKEKwRMhGwEdIR9BJ+EpwS1hMCEy4TWBPAFAYUgBT+FUIVVhWCFZwVxhZIFqoXYhekF9YX+BgeGDYYShhgGHQYihioGWwZvBo+GpQa/BtUG7gcBBxUHOodRh2uHdId8B4OHiweOh6MHwwfIh8wHz4fTAAAAAEAAABiAGkAEAAAAAAAAgABAAIAFgAAAQAAuAAAAAB42o1Ru04CQRQ9s6AJMbEwxMJqEym0YFnUNbpWFGiCSohG6UzALIuRfQgr4C/4ZfoDln6EpZVnZodIWAoymZlzzz33NQNgA+/IQeQLAL65UyxQpJViA5v40TgHV8w0eZSEq/EapuJB43XyXxoXsCN+Nd5CyShq/IFt40TjT9hGExdo4QomxvAwxAhPiBDSPuCOyJjo0H7jPSBKlCqrnhAl6BP1FJMQeZjikWdMa6bboybhiuGiwjVRy4JP7ytvWdEnP2CEjA1Zw+OukI3Jlpm/gxcqZZ6AzC7OdcV6pt4+p5M5ZK8yX6Ty3dD2WU3OM+ScFmyuU5zhDpdoo0m0LK68ELlMYy5o7jOv+l+thVsy0ppn+1QmOt+Y/qryWXBwTG/ArM/MKTU9svKdujre4l3FIU9npf4b5D3VVY3egPxIvXa40mRtWt253077vNZzNqhL5z1SMzr8b5u9udTZirdlr3+3BnfZAAB42m3Rx1JVQRSF4fNfA+Ys5ixGxNO7d3PBhAmMmCPGcubEma/pKxm4P4zsqlNrdL5aq3Y36Jbf719ddP973/5+dAMGrGEt61jPGBvYyCY2s4WtbGM7O9jJLnazh72Ms4/9HOAghzjMEY5yjOOc4CSnOM0EZzjLOc5zgYtMcokpLtNTCCpJY5ohM8xyhatc4zo3mOMmt7jNHe4yzwL3uM8DHvKIxyzyhKc84zkveMkrXvOGt7zjPUt84COf+MwXvo79/PF9vu/7f7lQVrOYYVYzzWZOm0NzxpxdztALvdALvdALvdALvdCLFa/oFb2iV/SKXtErI6/ao9qj2qPao9qj2qP2K/8NzVGP1Emd1Emd1Emd1EmdXHVGe9I96Z50T7on3ZPuSfdk0St6RS90Qid0Qid0Qid0Qid0qr2qXtWrelWv6lW9qlf1ql7qpV7qpV7qpV7qpV7qpV7Ta3pNr+m1kde8V/NezXu1vv4BRRflZLgB/4WwAY0AS7AIUFixAQGOWbFGBitYIbAQWUuwFFJYIbCAWR2wBitcWFmwFCsAAAABUcgLTgAA) format('woff'),
- url('genericons-regular-webfont.ttf') format('truetype'),
- url('genericons-regular-webfont.svg#genericonsregular') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
-
-/**
- * All Genericons.
- */
-[class*="genericon"] {
- display: inline-block;
- width: 16px;
- height: 16px;
- -webkit-font-smoothing: antialiased;
- font-size: 16px;
- line-height: 1;
- font-family: 'Genericons';
- text-decoration: inherit;
- font-weight: normal;
- font-style: normal;
- vertical-align: top;
-}
-
-/* IE7 */
-[class*="genericon"] {
- *overflow: auto;
- *zoom: 1;
- *display: inline;
-}
-
-/**
- * Individual icons.
- */
-
-/* Post formats */
-.genericon-standard:before { content: '\f100'; }
-.genericon-aside:before { content: '\f101'; }
-.genericon-image:before { content: '\f102'; }
-.genericon-gallery:before { content: '\f103'; }
-.genericon-video:before { content: '\f104'; }
-.genericon-status:before { content: '\f105'; }
-.genericon-quote:before { content: '\f106'; }
-.genericon-link:before { content: '\f107'; }
-.genericon-chat:before { content: '\f108'; }
-.genericon-audio:before { content: '\f109'; }
-
-/* Social icons */
-.genericon-github:before { content: '\f200'; }
-.genericon-dribbble:before { content: '\f201'; }
-.genericon-twitter:before { content: '\f202'; }
-.genericon-facebook:before { content: '\f203'; }
-.genericon-facebook-alt:before { content: '\f204'; }
-.genericon-wordpress:before { content: '\f205'; }
-.genericon-googleplus:before { content: '\f206'; }
-.genericon-linkedin:before { content: '\f207'; }
-.genericon-linkedin-alt:before { content: '\f208'; }
-.genericon-pinterest:before { content: '\f209'; }
-.genericon-pinterest-alt:before { content: '\f210'; }
-.genericon-flickr:before { content: '\f211'; }
-.genericon-vimeo:before { content: '\f212'; }
-.genericon-youtube:before { content: '\f213'; }
-.genericon-tumblr:before { content: '\f214'; }
-.genericon-instagram:before { content: '\f215'; }
-.genericon-codepen:before { content: '\f216'; }
-
-/* Meta icons */
-.genericon-comment:before { content: '\f300'; }
-.genericon-category:before { content: '\f301'; }
-.genericon-tag:before { content: '\f302'; }
-.genericon-time:before { content: '\f303'; }
-.genericon-user:before { content: '\f304'; }
-.genericon-day:before { content: '\f305'; }
-.genericon-week:before { content: '\f306'; }
-.genericon-month:before { content: '\f307'; }
-.genericon-pinned:before { content: '\f308'; }
-
-/* Other icons */
-.genericon-search:before { content: '\f400'; }
-.genericon-unzoom:before { content: '\f401'; }
-.genericon-zoom:before { content: '\f402'; }
-.genericon-show:before { content: '\f403'; }
-.genericon-hide:before { content: '\f404'; }
-.genericon-close:before { content: '\f405'; }
-.genericon-close-alt:before { content: '\f406'; }
-.genericon-trash:before { content: '\f407'; }
-.genericon-star:before { content: '\f408'; }
-.genericon-home:before { content: '\f409'; }
-.genericon-mail:before { content: '\f410'; }
-.genericon-edit:before { content: '\f411'; }
-.genericon-reply:before { content: '\f412'; }
-.genericon-feed:before { content: '\f413'; }
-.genericon-warning:before { content: '\f414'; }
-.genericon-share:before { content: '\f415'; }
-.genericon-attachment:before { content: '\f416'; }
-.genericon-location:before { content: '\f417'; }
-.genericon-checkmark:before { content: '\f418'; }
-.genericon-menu:before { content: '\f419'; }
-.genericon-top:before { content: '\f420'; }
-.genericon-minimize:before { content: '\f421'; }
-.genericon-maximize:before { content: '\f422'; }
-.genericon-404:before { content: '\f423'; }
-.genericon-spam:before { content: '\f424'; }
-.genericon-summary:before { content: '\f425'; }
-.genericon-cloud:before { content: '\f426'; }
-.genericon-key:before { content: '\f427'; }
-.genericon-dot:before { content: '\f428'; }
-.genericon-next:before { content: '\f429'; }
-.genericon-previous:before { content: '\f430'; }
-.genericon-expand:before { content: '\f431'; }
-.genericon-collapse:before { content: '\f432'; }
-.genericon-dropdown:before { content: '\f433'; }
-.genericon-dropdown-left:before { content: '\f434'; }
-.genericon-top:before { content: '\f435'; }
-.genericon-draggable:before { content: '\f436'; }
-.genericon-phone:before { content: '\f437'; }
-.genericon-send-to-phone:before { content: '\f438'; }
-.genericon-plugin:before { content: '\f439'; }
-.genericon-cloud-download:before { content: '\f440'; }
-.genericon-cloud-upload:before { content: '\f441'; }
-.genericon-external:before { content: '\f442'; }
-.genericon-document:before { content: '\f443'; }
-.genericon-book:before { content: '\f444'; }
-.genericon-cog:before { content: '\f445'; }
-.genericon-unapprove:before { content: '\f446'; }
-.genericon-cart:before { content: '\f447'; }
-.genericon-pause:before { content: '\f448'; }
-.genericon-stop:before { content: '\f449'; }
-.genericon-skip-back:before { content: '\f450'; }
-.genericon-skip-ahead:before { content: '\f451'; }
-.genericon-play:before { content: '\f452'; }
-.genericon-tablet:before { content: '\f453'; }
-.genericon-send-to-tablet:before { content: '\f454'; }
-
-/* Generic shapes */
-.genericon-uparrow:before { content: '\f500'; }
-.genericon-rightarrow:before { content: '\f501'; }
-.genericon-downarrow:before { content: '\f502'; }
-.genericon-leftarrow:before { content: '\f503'; }
+++ /dev/null
-<?php
-/**
- * The template for displaying the footer
- *
- * Contains footer content and the closing of the #main and #page div elements.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
- </div><!-- #main -->
- <footer id="colophon" class="site-footer" role="contentinfo">
- <?php get_sidebar( 'main' ); ?>
-
- <div class="site-info">
- <?php do_action( 'twentythirteen_credits' ); ?>
- <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentythirteen' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentythirteen' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
- </div><!-- .site-info -->
- </footer><!-- #colophon -->
- </div><!-- #page -->
-
- <?php wp_footer(); ?>
-</body>
-</html>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * Twenty Thirteen functions and definitions
- *
- * Sets up the theme and provides some helper functions, which are used in the
- * theme as custom template tags. Others are attached to action and filter
- * hooks in WordPress to change core functionality.
- *
- * When using a child theme (see http://codex.wordpress.org/Theme_Development
- * and http://codex.wordpress.org/Child_Themes), you can override certain
- * functions (those wrapped in a function_exists() call) by defining them first
- * in your child theme's functions.php file. The child theme's functions.php
- * file is included before the parent theme's file, so the child theme
- * functions would be used.
- *
- * Functions that are not pluggable (not wrapped in function_exists()) are
- * instead attached to a filter or action hook.
- *
- * For more information on hooks, actions, and filters, @link http://codex.wordpress.org/Plugin_API
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-/*
- * Set up the content width value based on the theme's design.
- *
- * @see twentythirteen_content_width() for template-specific adjustments.
- */
-if ( ! isset( $content_width ) )
- $content_width = 604;
-
-/**
- * Add support for a custom header image.
- */
-require get_template_directory() . '/inc/custom-header.php';
-
-/**
- * Twenty Thirteen only works in WordPress 3.6 or later.
- */
-if ( version_compare( $GLOBALS['wp_version'], '3.6-alpha', '<' ) )
- require get_template_directory() . '/inc/back-compat.php';
-
-/**
- * Twenty Thirteen setup.
- *
- * Sets up theme defaults and registers the various WordPress features that
- * Twenty Thirteen supports.
- *
- * @uses load_theme_textdomain() For translation/localization support.
- * @uses add_editor_style() To add Visual Editor stylesheets.
- * @uses add_theme_support() To add support for automatic feed links, post
- * formats, and post thumbnails.
- * @uses register_nav_menu() To add support for a navigation menu.
- * @uses set_post_thumbnail_size() To set a custom post thumbnail size.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_setup() {
- /*
- * Makes Twenty Thirteen available for translation.
- *
- * Translations can be added to the /languages/ directory.
- * If you're building a theme based on Twenty Thirteen, use a find and
- * replace to change 'twentythirteen' to the name of your theme in all
- * template files.
- */
- load_theme_textdomain( 'twentythirteen', get_template_directory() . '/languages' );
-
- /*
- * This theme styles the visual editor to resemble the theme style,
- * specifically font, colors, icons, and column width.
- */
- add_editor_style( array( 'css/editor-style.css', 'fonts/genericons.css', twentythirteen_fonts_url() ) );
-
- // Adds RSS feed links to <head> for posts and comments.
- add_theme_support( 'automatic-feed-links' );
-
- /*
- * Switches default core markup for search form, comment form,
- * and comments to output valid HTML5.
- */
- add_theme_support( 'html5', array(
- 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption'
- ) );
-
- /*
- * This theme supports all available post formats by default.
- * See http://codex.wordpress.org/Post_Formats
- */
- add_theme_support( 'post-formats', array(
- 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video'
- ) );
-
- // This theme uses wp_nav_menu() in one location.
- register_nav_menu( 'primary', __( 'Navigation Menu', 'twentythirteen' ) );
-
- /*
- * This theme uses a custom image size for featured images, displayed on
- * "standard" posts and pages.
- */
- add_theme_support( 'post-thumbnails' );
- set_post_thumbnail_size( 604, 270, true );
-
- // This theme uses its own gallery styles.
- add_filter( 'use_default_gallery_style', '__return_false' );
-}
-add_action( 'after_setup_theme', 'twentythirteen_setup' );
-
-/**
- * Return the Google font stylesheet URL, if available.
- *
- * The use of Source Sans Pro and Bitter by default is localized. For languages
- * that use characters not supported by the font, the font can be disabled.
- *
- * @since Twenty Thirteen 1.0
- *
- * @return string Font stylesheet or empty string if disabled.
- */
-function twentythirteen_fonts_url() {
- $fonts_url = '';
-
- /* Translators: If there are characters in your language that are not
- * supported by Source Sans Pro, translate this to 'off'. Do not translate
- * into your own language.
- */
- $source_sans_pro = _x( 'on', 'Source Sans Pro font: on or off', 'twentythirteen' );
-
- /* Translators: If there are characters in your language that are not
- * supported by Bitter, translate this to 'off'. Do not translate into your
- * own language.
- */
- $bitter = _x( 'on', 'Bitter font: on or off', 'twentythirteen' );
-
- if ( 'off' !== $source_sans_pro || 'off' !== $bitter ) {
- $font_families = array();
-
- if ( 'off' !== $source_sans_pro )
- $font_families[] = 'Source Sans Pro:300,400,700,300italic,400italic,700italic';
-
- if ( 'off' !== $bitter )
- $font_families[] = 'Bitter:400,700';
-
- $query_args = array(
- 'family' => urlencode( implode( '|', $font_families ) ),
- 'subset' => urlencode( 'latin,latin-ext' ),
- );
- $fonts_url = add_query_arg( $query_args, "//fonts.googleapis.com/css" );
- }
-
- return $fonts_url;
-}
-
-/**
- * Enqueue scripts and styles for the front end.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_scripts_styles() {
- /*
- * Adds JavaScript to pages with the comment form to support
- * sites with threaded comments (when in use).
- */
- if ( is_singular() && comments_open() && get_option( 'thread_comments' ) )
- wp_enqueue_script( 'comment-reply' );
-
- // Adds Masonry to handle vertical alignment of footer widgets.
- if ( is_active_sidebar( 'sidebar-1' ) )
- wp_enqueue_script( 'jquery-masonry' );
-
- // Loads JavaScript file with functionality specific to Twenty Thirteen.
- wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '2014-03-18', true );
-
- // Add Source Sans Pro and Bitter fonts, used in the main stylesheet.
- wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
-
- // Add Genericons font, used in the main stylesheet.
- wp_enqueue_style( 'genericons', get_template_directory_uri() . '/fonts/genericons.css', array(), '2.09' );
-
- // Loads our main stylesheet.
- wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '2013-07-18' );
-
- // Loads the Internet Explorer specific stylesheet.
- wp_enqueue_style( 'twentythirteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentythirteen-style' ), '2013-07-18' );
- wp_style_add_data( 'twentythirteen-ie', 'conditional', 'lt IE 9' );
-}
-add_action( 'wp_enqueue_scripts', 'twentythirteen_scripts_styles' );
-
-/**
- * Filter the page title.
- *
- * Creates a nicely formatted and more specific title element text for output
- * in head of document, based on current view.
- *
- * @since Twenty Thirteen 1.0
- *
- * @param string $title Default title text for current view.
- * @param string $sep Optional separator.
- * @return string The filtered title.
- */
-function twentythirteen_wp_title( $title, $sep ) {
- global $paged, $page;
-
- if ( is_feed() )
- return $title;
-
- // Add the site name.
- $title .= get_bloginfo( 'name', 'display' );
-
- // Add the site description for the home/front page.
- $site_description = get_bloginfo( 'description', 'display' );
- if ( $site_description && ( is_home() || is_front_page() ) )
- $title = "$title $sep $site_description";
-
- // Add a page number if necessary.
- if ( $paged >= 2 || $page >= 2 )
- $title = "$title $sep " . sprintf( __( 'Page %s', 'twentythirteen' ), max( $paged, $page ) );
-
- return $title;
-}
-add_filter( 'wp_title', 'twentythirteen_wp_title', 10, 2 );
-
-/**
- * Register two widget areas.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_widgets_init() {
- register_sidebar( array(
- 'name' => __( 'Main Widget Area', 'twentythirteen' ),
- 'id' => 'sidebar-1',
- 'description' => __( 'Appears in the footer section of the site.', 'twentythirteen' ),
- 'before_widget' => '<aside id="%1$s" class="widget %2$s">',
- 'after_widget' => '</aside>',
- 'before_title' => '<h3 class="widget-title">',
- 'after_title' => '</h3>',
- ) );
-
- register_sidebar( array(
- 'name' => __( 'Secondary Widget Area', 'twentythirteen' ),
- 'id' => 'sidebar-2',
- 'description' => __( 'Appears on posts and pages in the sidebar.', 'twentythirteen' ),
- 'before_widget' => '<aside id="%1$s" class="widget %2$s">',
- 'after_widget' => '</aside>',
- 'before_title' => '<h3 class="widget-title">',
- 'after_title' => '</h3>',
- ) );
-}
-add_action( 'widgets_init', 'twentythirteen_widgets_init' );
-
-if ( ! function_exists( 'twentythirteen_paging_nav' ) ) :
-/**
- * Display navigation to next/previous set of posts when applicable.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_paging_nav() {
- global $wp_query;
-
- // Don't print empty markup if there's only one page.
- if ( $wp_query->max_num_pages < 2 )
- return;
- ?>
- <nav class="navigation paging-navigation" role="navigation">
- <h1 class="screen-reader-text"><?php _e( 'Posts navigation', 'twentythirteen' ); ?></h1>
- <div class="nav-links">
-
- <?php if ( get_next_posts_link() ) : ?>
- <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentythirteen' ) ); ?></div>
- <?php endif; ?>
-
- <?php if ( get_previous_posts_link() ) : ?>
- <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?></div>
- <?php endif; ?>
-
- </div><!-- .nav-links -->
- </nav><!-- .navigation -->
- <?php
-}
-endif;
-
-if ( ! function_exists( 'twentythirteen_post_nav' ) ) :
-/**
- * Display navigation to next/previous post when applicable.
-*
-* @since Twenty Thirteen 1.0
-*/
-function twentythirteen_post_nav() {
- global $post;
-
- // Don't print empty markup if there's nowhere to navigate.
- $previous = ( is_attachment() ) ? get_post( $post->post_parent ) : get_adjacent_post( false, '', true );
- $next = get_adjacent_post( false, '', false );
-
- if ( ! $next && ! $previous )
- return;
- ?>
- <nav class="navigation post-navigation" role="navigation">
- <h1 class="screen-reader-text"><?php _e( 'Post navigation', 'twentythirteen' ); ?></h1>
- <div class="nav-links">
-
- <?php previous_post_link( '%link', _x( '<span class="meta-nav">←</span> %title', 'Previous post link', 'twentythirteen' ) ); ?>
- <?php next_post_link( '%link', _x( '%title <span class="meta-nav">→</span>', 'Next post link', 'twentythirteen' ) ); ?>
-
- </div><!-- .nav-links -->
- </nav><!-- .navigation -->
- <?php
-}
-endif;
-
-if ( ! function_exists( 'twentythirteen_entry_meta' ) ) :
-/**
- * Print HTML with meta information for current post: categories, tags, permalink, author, and date.
- *
- * Create your own twentythirteen_entry_meta() to override in a child theme.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_entry_meta() {
- if ( is_sticky() && is_home() && ! is_paged() )
- echo '<span class="featured-post">' . __( 'Sticky', 'twentythirteen' ) . '</span>';
-
- if ( ! has_post_format( 'link' ) && 'post' == get_post_type() )
- twentythirteen_entry_date();
-
- // Translators: used between list items, there is a space after the comma.
- $categories_list = get_the_category_list( __( ', ', 'twentythirteen' ) );
- if ( $categories_list ) {
- echo '<span class="categories-links">' . $categories_list . '</span>';
- }
-
- // Translators: used between list items, there is a space after the comma.
- $tag_list = get_the_tag_list( '', __( ', ', 'twentythirteen' ) );
- if ( $tag_list ) {
- echo '<span class="tags-links">' . $tag_list . '</span>';
- }
-
- // Post author
- if ( 'post' == get_post_type() ) {
- printf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
- esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
- esc_attr( sprintf( __( 'View all posts by %s', 'twentythirteen' ), get_the_author() ) ),
- get_the_author()
- );
- }
-}
-endif;
-
-if ( ! function_exists( 'twentythirteen_entry_date' ) ) :
-/**
- * Print HTML with date information for current post.
- *
- * Create your own twentythirteen_entry_date() to override in a child theme.
- *
- * @since Twenty Thirteen 1.0
- *
- * @param boolean $echo (optional) Whether to echo the date. Default true.
- * @return string The HTML-formatted post date.
- */
-function twentythirteen_entry_date( $echo = true ) {
- if ( has_post_format( array( 'chat', 'status' ) ) )
- $format_prefix = _x( '%1$s on %2$s', '1: post format name. 2: date', 'twentythirteen' );
- else
- $format_prefix = '%2$s';
-
- $date = sprintf( '<span class="date"><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a></span>',
- esc_url( get_permalink() ),
- esc_attr( sprintf( __( 'Permalink to %s', 'twentythirteen' ), the_title_attribute( 'echo=0' ) ) ),
- esc_attr( get_the_date( 'c' ) ),
- esc_html( sprintf( $format_prefix, get_post_format_string( get_post_format() ), get_the_date() ) )
- );
-
- if ( $echo )
- echo $date;
-
- return $date;
-}
-endif;
-
-if ( ! function_exists( 'twentythirteen_the_attached_image' ) ) :
-/**
- * Print the attached image with a link to the next attached image.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_the_attached_image() {
- /**
- * Filter the image attachment size to use.
- *
- * @since Twenty thirteen 1.0
- *
- * @param array $size {
- * @type int The attachment height in pixels.
- * @type int The attachment width in pixels.
- * }
- */
- $attachment_size = apply_filters( 'twentythirteen_attachment_size', array( 724, 724 ) );
- $next_attachment_url = wp_get_attachment_url();
- $post = get_post();
-
- /*
- * Grab the IDs of all the image attachments in a gallery so we can get the URL
- * of the next adjacent image in a gallery, or the first image (if we're
- * looking at the last image in a gallery), or, in a gallery of one, just the
- * link to that image file.
- */
- $attachment_ids = get_posts( array(
- 'post_parent' => $post->post_parent,
- 'fields' => 'ids',
- 'numberposts' => -1,
- 'post_status' => 'inherit',
- 'post_type' => 'attachment',
- 'post_mime_type' => 'image',
- 'order' => 'ASC',
- 'orderby' => 'menu_order ID'
- ) );
-
- // If there is more than 1 attachment in a gallery...
- if ( count( $attachment_ids ) > 1 ) {
- foreach ( $attachment_ids as $attachment_id ) {
- if ( $attachment_id == $post->ID ) {
- $next_id = current( $attachment_ids );
- break;
- }
- }
-
- // get the URL of the next image attachment...
- if ( $next_id )
- $next_attachment_url = get_attachment_link( $next_id );
-
- // or get the URL of the first image attachment.
- else
- $next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) );
- }
-
- printf( '<a href="%1$s" title="%2$s" rel="attachment">%3$s</a>',
- esc_url( $next_attachment_url ),
- the_title_attribute( array( 'echo' => false ) ),
- wp_get_attachment_image( $post->ID, $attachment_size )
- );
-}
-endif;
-
-/**
- * Return the post URL.
- *
- * @uses get_url_in_content() to get the URL in the post meta (if it exists) or
- * the first link found in the post content.
- *
- * Falls back to the post permalink if no URL is found in the post.
- *
- * @since Twenty Thirteen 1.0
- *
- * @return string The Link format URL.
- */
-function twentythirteen_get_link_url() {
- $content = get_the_content();
- $has_url = get_url_in_content( $content );
-
- return ( $has_url ) ? $has_url : apply_filters( 'the_permalink', get_permalink() );
-}
-
-/**
- * Extend the default WordPress body classes.
- *
- * Adds body classes to denote:
- * 1. Single or multiple authors.
- * 2. Active widgets in the sidebar to change the layout and spacing.
- * 3. When avatars are disabled in discussion settings.
- *
- * @since Twenty Thirteen 1.0
- *
- * @param array $classes A list of existing body class values.
- * @return array The filtered body class list.
- */
-function twentythirteen_body_class( $classes ) {
- if ( ! is_multi_author() )
- $classes[] = 'single-author';
-
- if ( is_active_sidebar( 'sidebar-2' ) && ! is_attachment() && ! is_404() )
- $classes[] = 'sidebar';
-
- if ( ! get_option( 'show_avatars' ) )
- $classes[] = 'no-avatars';
-
- return $classes;
-}
-add_filter( 'body_class', 'twentythirteen_body_class' );
-
-/**
- * Adjust content_width value for video post formats and attachment templates.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_content_width() {
- global $content_width;
-
- if ( is_attachment() )
- $content_width = 724;
- elseif ( has_post_format( 'audio' ) )
- $content_width = 484;
-}
-add_action( 'template_redirect', 'twentythirteen_content_width' );
-
-/**
- * Add postMessage support for site title and description for the Customizer.
- *
- * @since Twenty Thirteen 1.0
- *
- * @param WP_Customize_Manager $wp_customize Customizer object.
- */
-function twentythirteen_customize_register( $wp_customize ) {
- $wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
- $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
- $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
-}
-add_action( 'customize_register', 'twentythirteen_customize_register' );
-
-/**
- * Enqueue Javascript postMessage handlers for the Customizer.
- *
- * Binds JavaScript handlers to make the Customizer preview
- * reload changes asynchronously.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_customize_preview_js() {
- wp_enqueue_script( 'twentythirteen-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20130226', true );
-}
-add_action( 'customize_preview_init', 'twentythirteen_customize_preview_js' );
+++ /dev/null
-<?php
-/**
- * The Header template for our theme
- *
- * Displays all of the <head> section and everything up till <div id="main">
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?><!DOCTYPE html>
-<!--[if IE 7]>
-<html class="ie ie7" <?php language_attributes(); ?>>
-<![endif]-->
-<!--[if IE 8]>
-<html class="ie ie8" <?php language_attributes(); ?>>
-<![endif]-->
-<!--[if !(IE 7) | !(IE 8) ]><!-->
-<html <?php language_attributes(); ?>>
-<!--<![endif]-->
-<head>
- <meta charset="<?php bloginfo( 'charset' ); ?>">
- <meta name="viewport" content="width=device-width">
- <title><?php wp_title( '|', true, 'right' ); ?></title>
- <link rel="profile" href="http://gmpg.org/xfn/11">
- <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
- <!--[if lt IE 9]>
- <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
- <![endif]-->
- <?php wp_head(); ?>
-</head>
-
-<body <?php body_class(); ?>>
- <div id="page" class="hfeed site">
- <header id="masthead" class="site-header" role="banner">
- <a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
- <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
- <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
- </a>
-
- <div id="navbar" class="navbar">
- <nav id="site-navigation" class="navigation main-navigation" role="navigation">
- <h3 class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></h3>
- <a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a>
- <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
- <?php get_search_form(); ?>
- </nav><!-- #site-navigation -->
- </div><!-- #navbar -->
- </header><!-- #masthead -->
-
- <div id="main" class="site-main">
+++ /dev/null
-<?php
-/**
- * The template for displaying image attachments
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
- <article id="post-<?php the_ID(); ?>" <?php post_class( 'image-attachment' ); ?>>
- <header class="entry-header">
- <h1 class="entry-title"><?php the_title(); ?></h1>
-
- <div class="entry-meta">
- <?php
- $published_text = __( '<span class="attachment-meta">Published on <time class="entry-date" datetime="%1$s">%2$s</time> in <a href="%3$s" title="Return to %4$s" rel="gallery">%5$s</a></span>', 'twentythirteen' );
- $post_title = get_the_title( $post->post_parent );
- if ( empty( $post_title ) || 0 == $post->post_parent )
- $published_text = '<span class="attachment-meta"><time class="entry-date" datetime="%1$s">%2$s</time></span>';
-
- printf( $published_text,
- esc_attr( get_the_date( 'c' ) ),
- esc_html( get_the_date() ),
- esc_url( get_permalink( $post->post_parent ) ),
- esc_attr( strip_tags( $post_title ) ),
- $post_title
- );
-
- $metadata = wp_get_attachment_metadata();
- printf( '<span class="attachment-meta full-size-link"><a href="%1$s" title="%2$s">%3$s (%4$s × %5$s)</a></span>',
- esc_url( wp_get_attachment_url() ),
- esc_attr__( 'Link to full-size image', 'twentythirteen' ),
- __( 'Full resolution', 'twentythirteen' ),
- $metadata['width'],
- $metadata['height']
- );
-
- edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' );
- ?>
- </div><!-- .entry-meta -->
- </header><!-- .entry-header -->
-
- <div class="entry-content">
- <nav id="image-navigation" class="navigation image-navigation" role="navigation">
- <span class="nav-previous"><?php previous_image_link( false, __( '<span class="meta-nav">←</span> Previous', 'twentythirteen' ) ); ?></span>
- <span class="nav-next"><?php next_image_link( false, __( 'Next <span class="meta-nav">→</span>', 'twentythirteen' ) ); ?></span>
- </nav><!-- #image-navigation -->
-
- <div class="entry-attachment">
- <div class="attachment">
- <?php twentythirteen_the_attached_image(); ?>
-
- <?php if ( has_excerpt() ) : ?>
- <div class="entry-caption">
- <?php the_excerpt(); ?>
- </div>
- <?php endif; ?>
- </div><!-- .attachment -->
- </div><!-- .entry-attachment -->
-
- <?php if ( ! empty( $post->post_content ) ) : ?>
- <div class="entry-description">
- <?php the_content(); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentythirteen' ), 'after' => '</div>' ) ); ?>
- </div><!-- .entry-description -->
- <?php endif; ?>
-
- </div><!-- .entry-content -->
- </article><!-- #post -->
-
- <?php comments_template(); ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * Twenty Thirteen back compat functionality
- *
- * Prevents Twenty Thirteen from running on WordPress versions prior to 3.6,
- * since this theme is not meant to be backward compatible and relies on
- * many new functions and markup changes introduced in 3.6.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-/**
- * Prevent switching to Twenty Thirteen on old versions of WordPress.
- *
- * Switches to the default theme.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_switch_theme() {
- switch_theme( WP_DEFAULT_THEME, WP_DEFAULT_THEME );
- unset( $_GET['activated'] );
- add_action( 'admin_notices', 'twentythirteen_upgrade_notice' );
-}
-add_action( 'after_switch_theme', 'twentythirteen_switch_theme' );
-
-/**
- * Add message for unsuccessful theme switch.
- *
- * Prints an update nag after an unsuccessful attempt to switch to
- * Twenty Thirteen on WordPress versions prior to 3.6.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_upgrade_notice() {
- $message = sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] );
- printf( '<div class="error"><p>%s</p></div>', $message );
-}
-
-/**
- * Prevent the Theme Customizer from being loaded on WordPress versions prior to 3.6.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_customize() {
- wp_die( sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ), '', array(
- 'back_link' => true,
- ) );
-}
-add_action( 'load-customize.php', 'twentythirteen_customize' );
-
-/**
- * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_preview() {
- if ( isset( $_GET['preview'] ) ) {
- wp_die( sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ) );
- }
-}
-add_action( 'template_redirect', 'twentythirteen_preview' );
+++ /dev/null
-<?php
-/**
- * Implement a custom header for Twenty Thirteen
- *
- * @link http://codex.wordpress.org/Custom_Headers
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-/**
- * Set up the WordPress core custom header arguments and settings.
- *
- * @uses add_theme_support() to register support for 3.4 and up.
- * @uses twentythirteen_header_style() to style front-end.
- * @uses twentythirteen_admin_header_style() to style wp-admin form.
- * @uses twentythirteen_admin_header_image() to add custom markup to wp-admin form.
- * @uses register_default_headers() to set up the bundled header images.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_custom_header_setup() {
- $args = array(
- // Text color and image (empty to use none).
- 'default-text-color' => '220e10',
- 'default-image' => '%s/images/headers/circle.png',
-
- // Set height and width, with a maximum value for the width.
- 'height' => 230,
- 'width' => 1600,
-
- // Callbacks for styling the header and the admin preview.
- 'wp-head-callback' => 'twentythirteen_header_style',
- 'admin-head-callback' => 'twentythirteen_admin_header_style',
- 'admin-preview-callback' => 'twentythirteen_admin_header_image',
- );
-
- add_theme_support( 'custom-header', $args );
-
- /*
- * Default custom headers packaged with the theme.
- * %s is a placeholder for the theme template directory URI.
- */
- register_default_headers( array(
- 'circle' => array(
- 'url' => '%s/images/headers/circle.png',
- 'thumbnail_url' => '%s/images/headers/circle-thumbnail.png',
- 'description' => _x( 'Circle', 'header image description', 'twentythirteen' )
- ),
- 'diamond' => array(
- 'url' => '%s/images/headers/diamond.png',
- 'thumbnail_url' => '%s/images/headers/diamond-thumbnail.png',
- 'description' => _x( 'Diamond', 'header image description', 'twentythirteen' )
- ),
- 'star' => array(
- 'url' => '%s/images/headers/star.png',
- 'thumbnail_url' => '%s/images/headers/star-thumbnail.png',
- 'description' => _x( 'Star', 'header image description', 'twentythirteen' )
- ),
- ) );
-}
-add_action( 'after_setup_theme', 'twentythirteen_custom_header_setup', 11 );
-
-/**
- * Load our special font CSS files.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_custom_header_fonts() {
- // Add Source Sans Pro and Bitter fonts.
- wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
-
- // Add Genericons font.
- wp_enqueue_style( 'genericons', get_template_directory_uri() . '/fonts/genericons.css', array(), '2.09' );
-}
-add_action( 'admin_print_styles-appearance_page_custom-header', 'twentythirteen_custom_header_fonts' );
-
-/**
- * Style the header text displayed on the blog.
- *
- * get_header_textcolor() options: Hide text (returns 'blank'), or any hex value.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_header_style() {
- $header_image = get_header_image();
- $text_color = get_header_textcolor();
-
- // If no custom options for text are set, let's bail.
- if ( empty( $header_image ) && $text_color == get_theme_support( 'custom-header', 'default-text-color' ) )
- return;
-
- // If we get this far, we have custom styles.
- ?>
- <style type="text/css" id="twentythirteen-header-css">
- <?php
- if ( ! empty( $header_image ) ) :
- ?>
- .site-header {
- background: url(<?php header_image(); ?>) no-repeat scroll top;
- background-size: 1600px auto;
- }
- <?php
- endif;
-
- // Has the text been hidden?
- if ( ! display_header_text() ) :
- ?>
- .site-title,
- .site-description {
- position: absolute;
- clip: rect(1px 1px 1px 1px); /* IE7 */
- clip: rect(1px, 1px, 1px, 1px);
- }
- <?php
- if ( empty( $header_image ) ) :
- ?>
- .site-header .home-link {
- min-height: 0;
- }
- <?php
- endif;
-
- // If the user has set a custom color for the text, use that.
- elseif ( $text_color != get_theme_support( 'custom-header', 'default-text-color' ) ) :
- ?>
- .site-title,
- .site-description {
- color: #<?php echo esc_attr( $text_color ); ?>;
- }
- <?php endif; ?>
- </style>
- <?php
-}
-
-/**
- * Style the header image displayed on the Appearance > Header admin panel.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_admin_header_style() {
- $header_image = get_header_image();
-?>
- <style type="text/css" id="twentythirteen-admin-header-css">
- .appearance_page_custom-header #headimg {
- border: none;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- <?php
- if ( ! empty( $header_image ) ) {
- echo 'background: url(' . esc_url( $header_image ) . ') no-repeat scroll top; background-size: 1600px auto;';
- } ?>
- padding: 0 20px;
- }
- #headimg .home-link {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- margin: 0 auto;
- max-width: 1040px;
- <?php
- if ( ! empty( $header_image ) || display_header_text() ) {
- echo 'min-height: 230px;';
- } ?>
- width: 100%;
- }
- <?php if ( ! display_header_text() ) : ?>
- #headimg h1,
- #headimg h2 {
- position: absolute !important;
- clip: rect(1px 1px 1px 1px); /* IE7 */
- clip: rect(1px, 1px, 1px, 1px);
- }
- <?php endif; ?>
- #headimg h1 {
- font: bold 60px/1 Bitter, Georgia, serif;
- margin: 0;
- padding: 58px 0 10px;
- }
- #headimg h1 a {
- text-decoration: none;
- }
- #headimg h1 a:hover {
- text-decoration: underline;
- }
- #headimg h2 {
- font: 200 italic 24px "Source Sans Pro", Helvetica, sans-serif;
- margin: 0;
- text-shadow: none;
- }
- .default-header img {
- max-width: 230px;
- width: auto;
- }
- </style>
-<?php
-}
-
-/**
- * Output markup to be displayed on the Appearance > Header admin panel.
- *
- * This callback overrides the default markup displayed there.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_admin_header_image() {
- ?>
- <div id="headimg" style="background: url(<?php header_image(); ?>) no-repeat scroll top; background-size: 1600px auto;">
- <?php $style = ' style="color:#' . get_header_textcolor() . ';"'; ?>
- <div class="home-link">
- <h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="#"><?php bloginfo( 'name' ); ?></a></h1>
- <h2 id="desc" class="displaying-header-text"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></h2>
- </div>
- </div>
-<?php }
+++ /dev/null
-<?php
-/**
- * The main template file
- *
- * This is the most generic template file in a WordPress theme and one of the
- * two required files for a theme (the other being style.css).
- * It is used to display a page when nothing more specific matches a query.
- * For example, it puts together the home page when no home.php file exists.
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
- <?php if ( have_posts() ) : ?>
-
- <?php /* The loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
-
- <?php twentythirteen_paging_nav(); ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-/**
- * Functionality specific to Twenty Thirteen.
- *
- * Provides helper functions to enhance the theme experience.
- */
-
-( function( $ ) {
- var body = $( 'body' ),
- _window = $( window );
-
- /**
- * Adds a top margin to the footer if the sidebar widget area is higher
- * than the rest of the page, to help the footer always visually clear
- * the sidebar.
- */
- $( function() {
- if ( body.is( '.sidebar' ) ) {
- var sidebar = $( '#secondary .widget-area' ),
- secondary = ( 0 === sidebar.length ) ? -40 : sidebar.height(),
- margin = $( '#tertiary .widget-area' ).height() - $( '#content' ).height() - secondary;
-
- if ( margin > 0 && _window.innerWidth() > 999 ) {
- $( '#colophon' ).css( 'margin-top', margin + 'px' );
- }
- }
- } );
-
- /**
- * Enables menu toggle for small screens.
- */
- ( function() {
- var nav = $( '#site-navigation' ), button, menu;
- if ( ! nav ) {
- return;
- }
-
- button = nav.find( '.menu-toggle' );
- if ( ! button ) {
- return;
- }
-
- // Hide button if menu is missing or empty.
- menu = nav.find( '.nav-menu' );
- if ( ! menu || ! menu.children().length ) {
- button.hide();
- return;
- }
-
- button.on( 'click.twentythirteen', function() {
- nav.toggleClass( 'toggled-on' );
- } );
-
- // Better focus for hidden submenu items for accessibility.
- menu.find( 'a' ).on( 'focus.twentythirteen blur.twentythirteen', function() {
- $( this ).parents( '.menu-item, .page_item' ).toggleClass( 'focus' );
- } );
- } )();
-
- /**
- * Makes "skip to content" link work correctly in IE9 and Chrome for better
- * accessibility.
- *
- * @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/
- */
- _window.on( 'hashchange.twentythirteen', function() {
- var element = document.getElementById( location.hash.substring( 1 ) );
-
- if ( element ) {
- if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) {
- element.tabIndex = -1;
- }
-
- element.focus();
- }
- } );
-
- /**
- * Arranges footer widgets vertically.
- */
- if ( $.isFunction( $.fn.masonry ) ) {
- var columnWidth = body.is( '.sidebar' ) ? 228 : 245;
-
- $( '#secondary .widget-area' ).masonry( {
- itemSelector: '.widget',
- columnWidth: columnWidth,
- gutterWidth: 20,
- isRTL: body.is( '.rtl' )
- } );
- }
-} )( jQuery );
\ No newline at end of file
+++ /dev/null
-/*
- HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
-*/
-(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
-a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}</style>";
-c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
-"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
-if(g)return a.createDocumentFragment();for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document);
\ No newline at end of file
+++ /dev/null
-/**
- * Theme Customizer enhancements for a better user experience.
- *
- * Contains handlers to make Theme Customizer preview reload changes asynchronously.
- * Things like site title and description changes.
- */
-
-( function( $ ) {
- // Site title and description.
- wp.customize( 'blogname', function( value ) {
- value.bind( function( to ) {
- $( '.site-title' ).text( to );
- } );
- } );
- wp.customize( 'blogdescription', function( value ) {
- value.bind( function( to ) {
- $( '.site-description' ).text( to );
- } );
- } );
- // Header text color.
- wp.customize( 'header_textcolor', function( value ) {
- value.bind( function( to ) {
- if ( 'blank' == to ) {
- if ( 'remove-header' == _wpCustomizeSettings.values.header_image )
- $( '.home-link' ).css( 'min-height', '0' );
- $( '.site-title, .site-description' ).css( {
- 'clip': 'rect(1px, 1px, 1px, 1px)',
- 'position': 'absolute'
- } );
- } else {
- $( '.home-link' ).css( 'min-height', '230px' );
- $( '.site-title, .site-description' ).css( {
- 'clip': 'auto',
- 'color': to,
- 'position': 'relative'
- } );
- }
- } );
- } );
-} )( jQuery );
+++ /dev/null
-# Copyright (C) 2014 the WordPress team
-# This file is distributed under the GNU General Public License v2 or later.
-msgid ""
-msgstr ""
-"Project-Id-Version: Twenty Thirteen 1.2\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tags/twentythirteen\n"
-"POT-Creation-Date: 2014-04-16 18:28:45+00:00\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-
-#: 404.php:16
-msgid "Not Found"
-msgstr ""
-
-#: 404.php:21
-msgid "This is somewhat embarrassing, isn’t it?"
-msgstr ""
-
-#: 404.php:22
-msgid "It looks like nothing was found at this location. Maybe try a search?"
-msgstr ""
-
-#: archive.php:29
-msgid "Daily Archives: %s"
-msgstr ""
-
-#: archive.php:31
-msgid "Monthly Archives: %s"
-msgstr ""
-
-#: archive.php:31
-msgctxt "monthly archives date format"
-msgid "F Y"
-msgstr ""
-
-#: archive.php:33
-msgid "Yearly Archives: %s"
-msgstr ""
-
-#: archive.php:33
-msgctxt "yearly archives date format"
-msgid "Y"
-msgstr ""
-
-#: archive.php:35
-msgid "Archives"
-msgstr ""
-
-#: author-bio.php:26
-msgid "About %s"
-msgstr ""
-
-#: author-bio.php:30
-msgid "View all posts by %s <span class=\"meta-nav\">→</span>"
-msgstr ""
-
-#: author.php:31
-msgid "All posts by %s"
-msgstr ""
-
-#: category.php:19
-msgid "Category Archives: %s"
-msgstr ""
-
-#: comments.php:25
-msgctxt "comments title"
-msgid "One thought on “%2$s”"
-msgid_plural "%1$s thoughts on “%2$s”"
-msgstr[0] ""
-msgstr[1] ""
-
-#: comments.php:45
-msgid "Comment navigation"
-msgstr ""
-
-#: comments.php:46
-msgid "← Older Comments"
-msgstr ""
-
-#: comments.php:47
-msgid "Newer Comments →"
-msgstr ""
-
-#: comments.php:52
-msgid "Comments are closed."
-msgstr ""
-
-#: content-aside.php:13 content-audio.php:24 content-gallery.php:24
-#: content-image.php:23 content-link.php:24 content-quote.php:13
-#: content-status.php:13 content-video.php:23 content.php:41
-msgid "Continue reading <span class=\"meta-nav\">→</span>"
-msgstr ""
-
-#: content-aside.php:14 content-audio.php:25 content-chat.php:24
-#: content-gallery.php:25 content-image.php:24 content-link.php:25
-#: content-quote.php:14 content-status.php:14 content-video.php:24
-#: content.php:42 image.php:70 page.php:35
-msgid "Pages:"
-msgstr ""
-
-#: content-aside.php:20 content-aside.php:28 content-audio.php:31
-#: content-chat.php:29 content-gallery.php:39 content-image.php:35
-#: content-link.php:19 content-quote.php:25 content-status.php:19
-#: content-video.php:35 content.php:31 image.php:44 page.php:39
-msgid "Edit"
-msgstr ""
-
-#: content-gallery.php:36 content-image.php:32 content-quote.php:22
-#: content-video.php:32 content.php:49
-msgid "Leave a comment"
-msgstr ""
-
-#: content-gallery.php:36 content-image.php:32 content-quote.php:22
-#: content-video.php:32 content.php:49
-msgid "One comment so far"
-msgstr ""
-
-#: content-gallery.php:36 content-image.php:32 content-quote.php:22
-#: content-video.php:32 content.php:49
-msgid "View all % comments"
-msgstr ""
-
-#: content-none.php:12
-msgid "Nothing Found"
-msgstr ""
-
-#: content-none.php:18
-msgid ""
-"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
-msgstr ""
-
-#: content-none.php:22
-msgid ""
-"Sorry, but nothing matched your search terms. Please try again with "
-"different keywords."
-msgstr ""
-
-#: content-none.php:27
-msgid ""
-"It seems we can’t find what you’re looking for. Perhaps "
-"searching can help."
-msgstr ""
-
-#. #-#-#-#-# twentythirteen.pot (Twenty Thirteen 1.1) #-#-#-#-#
-#. Author URI of the plugin/theme
-#: footer.php:19
-msgid "http://wordpress.org/"
-msgstr ""
-
-#: footer.php:19
-msgid "Semantic Personal Publishing Platform"
-msgstr ""
-
-#: footer.php:19
-msgid "Proudly powered by %s"
-msgstr ""
-
-#: functions.php:97
-msgid "Navigation Menu"
-msgstr ""
-
-#. Translators: If there are characters in your language that are not
-#. * supported by Source Sans Pro, translate this to 'off'. Do not translate
-#. * into your own language.
-#: functions.php:128
-msgctxt "Source Sans Pro font: on or off"
-msgid "on"
-msgstr ""
-
-#. Translators: If there are characters in your language that are not
-#. * supported by Bitter, translate this to 'off'. Do not translate into your
-#. * own language.
-#: functions.php:134
-msgctxt "Bitter font: on or off"
-msgid "on"
-msgstr ""
-
-#: functions.php:218
-msgid "Page %s"
-msgstr ""
-
-#: functions.php:231
-msgid "Main Widget Area"
-msgstr ""
-
-#: functions.php:233
-msgid "Appears in the footer section of the site."
-msgstr ""
-
-#: functions.php:241
-msgid "Secondary Widget Area"
-msgstr ""
-
-#: functions.php:243
-msgid "Appears on posts and pages in the sidebar."
-msgstr ""
-
-#: functions.php:266
-msgid "Posts navigation"
-msgstr ""
-
-#: functions.php:270
-msgid "<span class=\"meta-nav\">←</span> Older posts"
-msgstr ""
-
-#: functions.php:274
-msgid "Newer posts <span class=\"meta-nav\">→</span>"
-msgstr ""
-
-#: functions.php:300
-msgid "Post navigation"
-msgstr ""
-
-#: functions.php:303
-msgctxt "Previous post link"
-msgid "<span class=\"meta-nav\">←</span> %title"
-msgstr ""
-
-#: functions.php:304
-msgctxt "Next post link"
-msgid "%title <span class=\"meta-nav\">→</span>"
-msgstr ""
-
-#: functions.php:322
-msgid "Sticky"
-msgstr ""
-
-#. Translators: used between list items, there is a space after the comma.
-#: functions.php:328 functions.php:334
-msgid ", "
-msgstr ""
-
-#: functions.php:343
-msgid "View all posts by %s"
-msgstr ""
-
-#: functions.php:363
-msgctxt "1: post format name. 2: date"
-msgid "%1$s on %2$s"
-msgstr ""
-
-#: functions.php:369
-msgid "Permalink to %s"
-msgstr ""
-
-#: header.php:43
-msgid "Menu"
-msgstr ""
-
-#: header.php:44
-msgid "Skip to content"
-msgstr ""
-
-#: image.php:22
-msgid ""
-"<span class=\"attachment-meta\">Published on <time class=\"entry-date\" "
-"datetime=\"%1$s\">%2$s</time> in <a href=\"%3$s\" title=\"Return to %4$s\" "
-"rel=\"gallery\">%5$s</a></span>"
-msgstr ""
-
-#: image.php:38
-msgid "Link to full-size image"
-msgstr ""
-
-#: image.php:39
-msgid "Full resolution"
-msgstr ""
-
-#: image.php:51
-msgid "<span class=\"meta-nav\">←</span> Previous"
-msgstr ""
-
-#: image.php:52
-msgid "Next <span class=\"meta-nav\">→</span>"
-msgstr ""
-
-#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
-msgid ""
-"Twenty Thirteen requires at least WordPress version 3.6. You are running "
-"version %s. Please upgrade and try again."
-msgstr ""
-
-#: inc/custom-header.php:49
-msgctxt "header image description"
-msgid "Circle"
-msgstr ""
-
-#: inc/custom-header.php:54
-msgctxt "header image description"
-msgid "Diamond"
-msgstr ""
-
-#: inc/custom-header.php:59
-msgctxt "header image description"
-msgid "Star"
-msgstr ""
-
-#: search.php:18
-msgid "Search Results for: %s"
-msgstr ""
-
-#: tag.php:21
-msgid "Tag Archives: %s"
-msgstr ""
-
-#: taxonomy-post_format.php:23
-msgid "%s Archives"
-msgstr ""
-
-#. Theme Name of the plugin/theme
-msgid "Twenty Thirteen"
-msgstr ""
-
-#. Theme URI of the plugin/theme
-msgid "http://wordpress.org/themes/twentythirteen"
-msgstr ""
-
-#. Description of the plugin/theme
-msgid ""
-"The 2013 theme for WordPress takes us back to the blog, featuring a full "
-"range of post formats, each displayed beautifully in their own unique way. "
-"Design details abound, starting with a vibrant color scheme and matching "
-"header images, beautiful typography and icons, and a flexible layout that "
-"looks great on any device, big or small."
-msgstr ""
-
-#. Author of the plugin/theme
-msgid "the WordPress team"
-msgstr ""
+++ /dev/null
-<?php
-/**
- * The template for displaying all pages
- *
- * This is the template that displays all pages by default.
- * Please note that this is the WordPress construct of pages and that other
- * 'pages' on your WordPress site will use a different template.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
-
- <?php /* The loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
-
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
- <div class="entry-thumbnail">
- <?php the_post_thumbnail(); ?>
- </div>
- <?php endif; ?>
-
- <h1 class="entry-title"><?php the_title(); ?></h1>
- </header><!-- .entry-header -->
-
- <div class="entry-content">
- <?php the_content(); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
- </footer><!-- .entry-meta -->
- </article><!-- #post -->
-
- <?php comments_template(); ?>
- <?php endwhile; ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-/*
-Theme Name: Twenty Thirteen
-Description: Adds support for languages written in a Right To Left (RTL) direction.
-It's easy, just a matter of overwriting all the horizontal positioning attributes
-of your CSS stylesheet in a separate stylesheet file named rtl.css.
-
-See http://codex.wordpress.org/Right_to_Left_Language_Support
-*/
-
-/**
- * Table of Contents:
- *
- * 1.0 - Reset
- * 4.0 - Header
- * 4.1 - Site Header
- * 4.2 - Navigation
- * 5.0 - Content
- * 5.2 - Entry Meta
- * 5.4 - Galleries
- * 5.5 - Post Formats
- * 5.6 - Attachments
- * 5.7 - Post/Paging Navigation
- * 5.8 - Author Bio
- * 5.9 - Archives
- * 5.10 - Search Results/No posts
- * 5.12 - Comments
- * 6.0 - Sidebar
- * 6.1 - Widgets
- * 7.0 - Footer
- * 8.0 - Media Queries
- * 9.0 - Print
- * ----------------------------------------------------------------------------
- */
-
-
-/**
- * 1.0 Reset
- * ----------------------------------------------------------------------------
- */
-
-body {
- direction: rtl;
- unicode-bidi: embed;
-}
-
-a {
- display: inline-block;
-}
-
-blockquote blockquote {
- margin-left: 0;
- margin-right: 24px;
-}
-
-menu,
-ol,
-ul {
- padding: 0 40px 0 0;
-}
-
-caption,
-th,
-td {
- text-align: right;
-}
-
-td {
- padding-left: 10px;
- padding-right: 0;
-}
-
-.assistive-text:focus {
- left: auto;
- right: 5px;
-}
-
-
-/**
- * 4.0 Header
- * ----------------------------------------------------------------------------
- */
-
-/**
- * 4.1 Site Header
- * ----------------------------------------------------------------------------
- */
-
-.site-header > a:first-child {
- display: inherit;
-}
-
-.site-description {
- font-style: normal;
-}
-
-
-/**
- * 4.2 Navigation
- * ----------------------------------------------------------------------------
- */
-
-/* Navbar */
-ul.nav-menu,
-div.nav-menu > ul {
- margin: 0 -20px 0 0;
- padding: 0 0 0 40px;
-}
-
-.nav-menu .sub-menu,
-.nav-menu .children {
- float: right;
- left: auto;
- right: -2px;
-}
-
-.nav-menu .sub-menu ul,
-.nav-menu .children ul {
- border-left: 2px solid #f7f5e7;
- border-right: 0;
- left: auto;
- right: 100%;
-}
-
-.main-navigation .search-form {
- left: 0;
- right: auto;
-}
-
-.site-header .search-field {
- background-position: 98% center;
- padding: 0 34px 0 0;
-}
-
-.nav-menu .current_page_item > a,
-.nav-menu .current_page_ancestor > a,
-.nav-menu .current-menu-item > a,
-.nav-menu .current-menu-ancestor > a {
- font-style: normal;
-}
-
-.menu-toggle {
- padding-left: 0;
- padding-right: 20px;
-}
-
-
-/**
- * 5.0 Content
- * ----------------------------------------------------------------------------
- */
-
-.sidebar .entry-header,
-.sidebar .entry-content,
-.sidebar .entry-summary,
-.sidebar .entry-meta {
- padding-left: 376px;
- padding-right: 60px;
-}
-
-
-/**
- * 5.2 Entry Meta
- * ----------------------------------------------------------------------------
- */
-
-.entry-meta > span {
- margin-left: 20px;
- margin-right: auto;
-}
-
-.entry-meta > span:last-child {
- margin-left: 0;
- margin-right: auto;
-}
-
-.featured-post:before {
- margin-left: 2px;
- margin-right: auto;
-}
-
-.entry-meta .date a:before {
- margin-left: 2px;
-}
-
-.comments-link a:before {
- margin-left: 2px;
- margin-right: auto;
-}
-
-.tags-links a:first-child:before {
- margin-left: 2px;
-}
-
-.edit-link a:before {
- margin-left: 2px;
-}
-
-.page-links .page-links-title {
- margin-left: 20px;
- margin-right: auto;
-}
-
-/**
- * 5.4 Galleries
- * ----------------------------------------------------------------------------
- */
-
-.gallery {
- margin-left: auto;
- margin-right: -4px;
-}
-
-.gallery-item {
- float: right;
- margin: 0 0 4px 4px;
-}
-
-.gallery-item a {
- display: inline;
-}
-
-
-/**
- * 5.5 Post Formats
- * ----------------------------------------------------------------------------
- */
-
-.entry-content a {
- display: inline;
-}
-
-.format-aside cite:before {
- content: normal;
- margin-right: auto;
-}
-
-.format-aside cite:after {
- content: "\2014";
- margin-left: 5px;
-}
-
-.format-audio .entry-content:before {
- float: right;
- -webkit-transform: scaleX(-1);
- -moz-transform: scaleX(-1);
- -ms-transform: scaleX(-1);
- -o-transform: scaleX(-1);
- transform: scaleX(-1);
-}
-
-.format-audio .audio-content {
- background-position: right top;
- float: left;
- padding-left: 0;
- padding-right: 35px;
-}
-
-.format-chat .entry-meta .date a:before {
- margin-left: 4px;
- margin-right: auto;
-}
-
-.format-image .wp-caption-text {
- text-align: right;
-}
-
-.format-link .entry-title {
- margin-left: 20px;
- margin-right: auto;
-}
-
-.format-status .entry-content,
-.format-status .entry-meta {
- padding-left: 0;
- padding-right: 35px;
-}
-
-.sidebar .format-status .entry-content,
-.sidebar .format-status .entry-meta {
- padding-left: 376px;
- padding-right: 95px;
-}
-
-.format-status .entry-content:before,
-.format-status .entry-meta:before {
- left: auto;
- right: 10px;
-}
-
-.sidebar .format-status .entry-content:before,
-.sidebar .format-status .entry-meta:before {
- left: auto;
- right: 70px;
-}
-
-.format-status .entry-content p:first-child:before {
- left: auto;
- right: 4px;
-}
-
-.sidebar .format-status .entry-content p:first-child:before {
- left: auto;
- right: 64px;
-}
-
-.format-quote blockquote {
- padding-left: 0;
- padding-right: 75px;
-}
-
-.format-quote blockquote:before {
- content: '\201D';
- padding-left: 25px;
- padding-right: 0;
- left: auto;
- right: -15px;
-}
-
-
-/**
- * 5.6 Attachments
- * ----------------------------------------------------------------------------
- */
-
-.attachment .entry-title {
- float: right;
-}
-
-.attachment .entry-title:before {
- margin-left: 10px;
- margin-right: auto;
-}
-
-.attachment .entry-meta {
- float: left;
-}
-
-.image-navigation .nav-previous {
- left: auto;
- right: 0;
-}
-
-.image-navigation .nav-next {
- left: 0;
- right: auto;
-}
-
-.attachment .entry-caption {
- text-align: right;
-}
-
-
-/**
- * 5.7 Post/Paging Navigation
- * ----------------------------------------------------------------------------
- */
-
-.navigation .nav-previous {
- float: right;
-}
-
-.navigation .nav-next {
- float: left;
-}
-
-.sidebar .paging-navigation .nav-links,
-.sidebar .post-navigation .nav-links {
- padding-left: 376px;
- padding-right: 60px;
-}
-
-.paging-navigation .nav-previous .meta-nav {
- margin-left: 10px;
- margin-right: auto;
-}
-
-.paging-navigation .nav-next .meta-nav {
- margin-left: auto;
- margin-right: 10px;
-}
-
-.post-navigation a[rel="next"] {
- float: left;
- text-align: left;
-}
-
-
-/**
- * 5.8 Author Bio
- * ----------------------------------------------------------------------------
- */
-
-.author-info {
- text-align: right; /* gallery & video post formats */
-}
-
-.author.sidebar .author-info {
- padding-left: 376px;
- padding-right: 60px;
-}
-
-.author-avatar .avatar {
- float: right;
- margin: 0 0 30px 30px;
-}
-
-.author-link {
- margin-left: auto;
- margin-right: 2px;
-}
-
-
-/**
- * 5.9 Archives
- * ----------------------------------------------------------------------------
- */
-
-.sidebar .archive-meta {
- padding-left: 316px;
- padding-right: 0;
-}
-
-
-/**
- * 5.10 Search Results/No posts
- * ----------------------------------------------------------------------------
- */
-
-.sidebar .page-content {
- padding-left: 376px;
- padding-right: 60px;
-}
-
-/**
- * 5.12 Comments
- * ----------------------------------------------------------------------------
- */
-
-.sidebar .comments-title,
-.sidebar .comment-list,
-.sidebar .comment-reply-title,
-.sidebar .comment-navigation,
-.sidebar .comment-respond .comment-form {
- padding-left: 376px;
- padding-right: 60px;
-}
-
-.comment-list .children {
- margin-left: auto;
- margin-right: 20px;
-}
-
-.comment-author {
- float: right;
- margin-left: 50px;
- margin-right: auto;
-}
-
-.comment-list .edit-link {
- margin-left: auto;
- margin-right: 20px;
-}
-
-.comment-metadata,
-.comment-content,
-.comment-list .reply,
-.comment-awaiting-moderation {
- float: left;
-}
-
-.comment-awaiting-moderation:before {
- margin-left: 5px;
- margin-right: auto;
-}
-
-.comment-reply-link:before,
-.comment-reply-login:before {
- margin-left: 3px;
- margin-right: auto;
- -webkit-transform: scaleX(-1);
- -moz-transform: scaleX(-1);
- -ms-transform: scaleX(-1);
- -o-transform: scaleX(-1);
- transform: scaleX(-1);
-}
-
-.comment-reply-title small a {
- float: left;
-}
-
-.comment-form [for="author"],
-.comment-form [for="email"],
-.comment-form [for="url"],
-.comment-form [for="comment"] {
- float: right;
-}
-
-.form-allowed-tags code {
- margin-left: auto;
- margin-right: 3px;
-}
-
-.sidebar .no-comments {
- padding-left: 376px;
- padding-right: 60px;
-}
-
-
-/**
- * 6.0 Sidebar
- * ----------------------------------------------------------------------------
- */
-
-.site-main .widget-area {
- float: left;
-}
-
-.widget-area a {
- max-width: 100%;
-}
-
-
-/**
- * 6.1 Widgets
- * ----------------------------------------------------------------------------
- */
-
-.widget .widget-title {
- font-style: normal;
-}
-
-.widget li > ul,
-.widget li > ol {
- margin-left: auto;
- margin-right: 20px;
-}
-
-/**
- * 7.0 Footer
- * ----------------------------------------------------------------------------
- */
-
-.site-footer .widget-area,
-.sidebar .site-footer {
- text-align: right;
-}
-.sidebar .site-footer .widget-area {
- left: auto;
- right: -158px;
-}
-
-.site-footer .widget {
- float: right;
- margin-left: 20px;
- margin-right: auto;
-}
-
-.sidebar .site-footer .widget:nth-of-type(4),
-.sidebar .site-footer .widget:nth-of-type(3) {
- margin-left: 0;
- margin-right: auto;
-}
-
-
-/**
- * 8.0 Media Queries
- * ----------------------------------------------------------------------------
- */
-
-@media (max-width: 1069px) {
- ul.nav-menu,
- div.nav-menu > ul {
- margin-left: auto;
- margin-right: 0;
- }
-
- .error404 .page-header,
- .sidebar .format-image .entry-content img.size-full,
- .sidebar .format-image .wp-caption:first-child .wp-caption-text {
- margin-right: auto;
- }
-
- .main-navigation .search-form {
- left: 20px;
- right: auto;
- }
-
- .site-main .widget-area {
- margin-left: 60px;
- margin-right: auto;
- }
-}
-
-@media (max-width: 999px) {
- .sidebar .entry-header,
- .sidebar .entry-content,
- .sidebar .entry-summary,
- .sidebar .entry-meta,
- .sidebar .comment-list,
- .sidebar .comment-reply-title,
- .sidebar .comment-navigation,
- .sidebar .comment-respond .comment-form,
- .sidebar .featured-gallery,
- .sidebar .post-navigation .nav-links,
- .author.sidebar .author-info,
- .sidebar .format-image .entry-content {
- max-width: 604px;
- padding-left: 0;
- padding-right: 0;
- }
-
- .site-main .widget-area {
- float: none;
- margin-left: auto;
- }
-
- .attachment .entry-meta {
- float: right;
- text-align: right;
- }
-
- .sidebar .format-status .entry-content,
- .sidebar .format-status .entry-meta {
- padding-left: 0;
- padding-right: 35px;
- }
-
- .sidebar .format-status .entry-content:before,
- .sidebar .format-status .entry-meta:before {
- left: auto;
- right: 10px;
- }
-
- .sidebar .format-status .entry-content p:first-child:before {
- left: auto;
- right: 4px;
- }
-
- .sidebar .site-footer .widget-area {
- left: auto;
- right: 0;
- }
-
- .sidebar .paging-navigation .nav-links {
- padding: 0 60px;
- }
-}
-
-@media (max-width: 767px) {
- .format-image .entry-content img:first-of-type,
- .format-image .wp-caption:first-child .wp-caption-text {
- margin-right: auto;
- }
-}
-
-@media (max-width: 643px) {
- .sidebar .entry-header,
- .sidebar .entry-content,
- .sidebar .entry-summary,
- .sidebar .entry-meta,
- .sidebar .comment-list,
- .sidebar .comment-navigation,
- .sidebar .featured-gallery,
- .sidebar .post-navigation .nav-links,
- .sidebar .format-image .entry-content {
- padding-left: 20px;
- padding-right: 20px;
- }
-
- #content .format-status .entry-content,
- #content .format-status .entry-met {
- padding-left: 0;
- padding-right: 35px;
- }
-
- .menu-toggle:after {
- padding-left: 0;
- padding-right: 8px;
- }
-
- .toggled-on .nav-menu,
- .toggled-on .nav-menu > ul {
- margin-left: auto;
- margin-right: 0;
- }
-
- .toggled-on .nav-menu li > ul {
- margin-left: auto;
- margin-right: 20px;
- right: auto;
- }
-
- #content .featured-gallery {
- padding-left: 0;
- padding-right: 24px;
- }
-
- .gallery-columns-1 .gallery-item {
- margin-left: 0;
- margin-right: auto;
- }
-
- .comment-author {
- margin-left: 30px;
- margin-right: auto;
- }
-
- .format-audio .audio-content {
- background: none;
- float: none;
- padding-left: 0;
- padding-right: 0;
- }
-
- .gallery-columns-3 .gallery-item:nth-of-type(3n) {
- margin-left: 4px;
- margin-right: auto;
- }
-}
-
-@media (max-width: 359px) {
- .gallery {
- margin-left: auto;
- margin-right: 0;
- }
-
- .gallery .gallery-item:nth-of-type(even) {
- margin-left: 0;
- margin-right: auto;
- }
-
- .gallery .gallery-item,
- .gallery.gallery-columns-3 .gallery-item:nth-of-type(even),
- .gallery-columns-3 .gallery-item:nth-of-type(3n),
- .gallery-columns-5 .gallery-item:nth-of-type(5n),
- .gallery-columns-7 .gallery-item:nth-of-type(7n),
- .gallery-columns-9 .gallery-item:nth-of-type(9n) {
- margin-left: 4px;
- margin-right: auto;
- }
-
- .comment-author .avatar {
- margin-left: 5px;
- margin-right: auto;
- }
-}
-
-
-/**
- * 9.0 Print
- * ----------------------------------------------------------------------------
- */
-
-@media print {
- .entry-content img.alignleft,
- .entry-content .wp-caption.alignleft {
- margin-left: auto;
- margin-right: 0;
- }
-
- .entry-content img.alignright,
- .entry-content .wp-caption.alignright {
- margin-left: 0;
- margin-right: auto;
- }
-}
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Search Results pages
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
-
- <?php if ( have_posts() ) : ?>
-
- <header class="page-header">
- <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentythirteen' ), get_search_query() ); ?></h1>
- </header>
-
- <?php /* The loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
-
- <?php twentythirteen_paging_nav(); ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The sidebar containing the footer widget area
- *
- * If no active widgets in this sidebar, hide it completely.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
- <div id="secondary" class="sidebar-container" role="complementary">
- <div class="widget-area">
- <?php dynamic_sidebar( 'sidebar-1' ); ?>
- </div><!-- .widget-area -->
- </div><!-- #secondary -->
-<?php endif; ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The sidebar containing the secondary widget area
- *
- * Displays on posts and pages.
- *
- * If no active widgets are in this sidebar, hide it completely.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
- <div id="tertiary" class="sidebar-container" role="complementary">
- <div class="sidebar-inner">
- <div class="widget-area">
- <?php dynamic_sidebar( 'sidebar-2' ); ?>
- </div><!-- .widget-area -->
- </div><!-- .sidebar-inner -->
- </div><!-- #tertiary -->
-<?php endif; ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying all single posts
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
-
- <?php /* The loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
-
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php twentythirteen_post_nav(); ?>
- <?php comments_template(); ?>
-
- <?php endwhile; ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-/*
-Theme Name: Twenty Thirteen
-Theme URI: http://wordpress.org/themes/twentythirteen
-Author: the WordPress team
-Author URI: http://wordpress.org/
-Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
-Version: 1.2
-License: GNU General Public License v2 or later
-License URI: http://www.gnu.org/licenses/gpl-2.0.html
-Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
-Text Domain: twentythirteen
-
-This theme, like WordPress, is licensed under the GPL.
-Use it to make something cool, have fun, and share what you've learned with others.
-*/
-
-
-/**
- * Table of Contents:
- *
- * 1.0 - Reset
- * 2.0 - Repeatable Patterns
- * 3.0 - Basic Structure
- * 4.0 - Header
- * 4.1 - Site Header
- * 4.2 - Navigation
- * 5.0 - Content
- * 5.1 - Entry Header
- * 5.2 - Entry Meta
- * 5.3 - Entry Content
- * 5.4 - Galleries
- * 5.5 - Post Formats
- * 5.6 - Attachments
- * 5.7 - Post/Paging Navigation
- * 5.8 - Author Bio
- * 5.9 - Archives
- * 5.10 - Search Results/No posts
- * 5.11 - 404
- * 5.12 - Comments
- * 5.13 - Multisite
- * 6.0 - Sidebar
- * 6.1 - Widgets
- * 7.0 - Footer
- * 8.0 - Media Queries
- * 9.0 - Print
- * ----------------------------------------------------------------------------
- */
-
-
-/**
- * 1.0 Reset
- *
- * Modified from Normalize.css to provide cross-browser consistency and a smart
- * default styling of HTML elements.
- *
- * @see http://git.io/normalize
- * ----------------------------------------------------------------------------
- */
-
-* {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-nav,
-section,
-summary {
- display: block;
-}
-
-audio,
-canvas,
-video {
- display: inline-block;
-}
-
-audio:not([controls]) {
- display: none;
- height: 0;
-}
-
-[hidden] {
- display: none;
-}
-
-html {
- font-size: 100%;
- overflow-y: scroll;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-
-html,
-button,
-input,
-select,
-textarea {
- font-family: "Source Sans Pro", Helvetica, sans-serif;
-}
-
-body {
- color: #141412;
- line-height: 1.5;
- margin: 0;
-}
-
-a {
- color: #ca3c08;
- text-decoration: none;
-}
-
-a:visited {
- color: #ac0404;
-}
-
-a:focus {
- outline: thin dotted;
-}
-
-a:active,
-a:hover {
- color: #ea9629;
- outline: 0;
-}
-
-a:hover {
- text-decoration: underline;
-}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- clear: both;
- font-family: Bitter, Georgia, serif;
- line-height: 1.3;
-}
-
-h1 {
- font-size: 48px;
- margin: 33px 0;
-}
-
-h2 {
- font-size: 30px;
- margin: 25px 0;
-}
-
-h3 {
- font-size: 22px;
- margin: 22px 0;
-}
-
-h4 {
- font-size: 20px;
- margin: 25px 0;
-}
-
-h5 {
- font-size: 18px;
- margin: 30px 0;
-}
-
-h6 {
- font-size: 16px;
- margin: 36px 0;
-}
-
-address {
- font-style: italic;
- margin: 0 0 24px;
-}
-
-abbr[title] {
- border-bottom: 1px dotted;
-}
-
-b,
-strong {
- font-weight: bold;
-}
-
-dfn {
- font-style: italic;
-}
-
-mark {
- background: #ff0;
- color: #000;
-}
-
-p {
- margin: 0 0 24px;
-}
-
-code,
-kbd,
-pre,
-samp {
- font-family: monospace, serif;
- font-size: 14px;
- -webkit-hyphens: none;
- -moz-hyphens: none;
- -ms-hyphens: none;
- hyphens: none;
-}
-
-pre {
- background: #f5f5f5;
- color: #666;
- font-family: monospace;
- font-size: 14px;
- margin: 20px 0;
- overflow: auto;
- padding: 20px;
- white-space: pre;
- white-space: pre-wrap;
- word-wrap: break-word;
-}
-
-blockquote,
-q {
- -webkit-hyphens: none;
- -moz-hyphens: none;
- -ms-hyphens: none;
- hyphens: none;
- quotes: none;
-}
-
-blockquote:before,
-blockquote:after,
-q:before,
-q:after {
- content: "";
- content: none;
-}
-
-blockquote {
- font-size: 18px;
- font-style: italic;
- font-weight: 300;
- margin: 24px 40px;
-}
-
-blockquote blockquote {
- margin-right: 0;
-}
-
-blockquote cite,
-blockquote small {
- font-size: 14px;
- font-weight: normal;
- text-transform: uppercase;
-}
-
-blockquote em,
-blockquote i {
- font-style: normal;
- font-weight: 300;
-}
-
-blockquote strong,
-blockquote b {
- font-weight: 400;
-}
-
-small {
- font-size: smaller;
-}
-
-sub,
-sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-
-sup {
- top: -0.5em;
-}
-
-sub {
- bottom: -0.25em;
-}
-
-dl {
- margin: 0 20px;
-}
-
-dt {
- font-weight: bold;
-}
-
-dd {
- margin: 0 0 20px;
-}
-
-menu,
-ol,
-ul {
- margin: 16px 0;
- padding: 0 0 0 40px;
-}
-
-ul {
- list-style-type: square;
-}
-
-nav ul,
-nav ol {
- list-style: none;
- list-style-image: none;
-}
-
-li > ul,
-li > ol {
- margin: 0;
-}
-
-img {
- -ms-interpolation-mode: bicubic;
- border: 0;
- vertical-align: middle;
-}
-
-svg:not(:root) {
- overflow: hidden;
-}
-
-figure {
- margin: 0;
-}
-
-form {
- margin: 0;
-}
-
-fieldset {
- border: 1px solid #c0c0c0;
- margin: 0 2px;
- padding: 0.35em 0.625em 0.75em;
-}
-
-legend {
- border: 0;
- padding: 0;
- white-space: normal;
-}
-
-button,
-input,
-select,
-textarea {
- font-size: 100%;
- margin: 0;
- max-width: 100%;
- vertical-align: baseline;
-}
-
-button,
-input {
- line-height: normal;
-}
-
-button,
-html input[type="button"],
-input[type="reset"],
-input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
-}
-
-button[disabled],
-input[disabled] {
- cursor: default;
-}
-
-input[type="checkbox"],
-input[type="radio"] {
- padding: 0;
-}
-
-input[type="search"] {
- -webkit-appearance: textfield;
- padding-right: 2px; /* Don't cut off the webkit search cancel button */
- width: 270px;
-}
-
-input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
-}
-
-button::-moz-focus-inner,
-input::-moz-focus-inner {
- border: 0;
- padding: 0;
-}
-
-textarea {
- overflow: auto;
- vertical-align: top;
-}
-
-table {
- border-bottom: 1px solid #ededed;
- border-collapse: collapse;
- border-spacing: 0;
- font-size: 14px;
- line-height: 2;
- margin: 0 0 20px;
- width: 100%;
-}
-
-caption,
-th,
-td {
- font-weight: normal;
- text-align: left;
-}
-
-caption {
- font-size: 16px;
- margin: 20px 0;
-}
-
-th {
- font-weight: bold;
- text-transform: uppercase;
-}
-
-td {
- border-top: 1px solid #ededed;
- padding: 6px 10px 6px 0;
-}
-
-del {
- color: #333;
-}
-
-ins {
- background: #fff9c0;
- text-decoration: none;
-}
-
-hr {
- background: url(images/dotted-line.png) repeat center top;
- background-size: 4px 4px;
- border: 0;
- height: 1px;
- margin: 0 0 24px;
-}
-
-
-/**
- * 2.0 Repeatable Patterns
- * ----------------------------------------------------------------------------
- */
-
-.genericon:before,
-.menu-toggle:after,
-.featured-post:before,
-.date a:before,
-.entry-meta .author a:before,
-.format-audio .entry-content:before,
-.comments-link a:before,
-.tags-links a:first-child:before,
-.categories-links a:first-child:before,
-.edit-link a:before,
-.attachment .entry-title:before,
-.attachment-meta:before,
-.attachment-meta a:before,
-.comment-awaiting-moderation:before,
-.comment-reply-link:before,
-.comment-reply-login:before,
-.comment-reply-title small a:before,
-.bypostauthor > .comment-body .fn:before,
-.error404 .page-title:before {
- -webkit-font-smoothing: antialiased;
- display: inline-block;
- font: normal 16px/1 Genericons;
- vertical-align: text-bottom;
-}
-
-/* Clearing floats */
-.clear:after,
-.attachment .entry-header:after,
-.site-footer .widget-area:after,
-.entry-content:after,
-.page-content:after,
-.navigation:after,
-.nav-links:after,
-.gallery:after,
-.comment-form-author:after,
-.comment-form-email:after,
-.comment-form-url:after,
-.comment-body:after {
- clear: both;
-}
-
-.clear:before,
-.clear:after,
-.attachment .entry-header:before,
-.attachment .entry-header:after,
-.site-footer .widget-area:before,
-.site-footer .widget-area:after,
-.entry-content:before,
-.entry-content:after,
-.page-content:before,
-.page-content:after,
-.navigation:before,
-.navigation:after,
-.nav-links:before,
-.nav-links:after,
-.gallery:before,
-.gallery:after,
-.comment-form-author:before,
-.comment-form-author:after,
-.comment-form-email:before,
-.comment-form-email:after,
-.comment-form-url:before,
-.comment-form-url:after,
-.comment-body:before,
-.comment-body:after {
- content: "";
- display: table;
-}
-
-/* Assistive text */
-.screen-reader-text {
- clip: rect(1px, 1px, 1px, 1px);
- position: absolute !important;
-}
-
-.screen-reader-text:focus {
- background-color: #f1f1f1;
- border-radius: 3px;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
- clip: auto !important;
- color: #21759b;
- display: block;
- font-size: 14px;
- font-weight: bold;
- height: auto;
- line-height: normal;
- padding: 15px 23px 14px;
- position: absolute;
- left: 5px;
- top: 5px;
- text-decoration: none;
- width: auto;
- z-index: 100000; /* Above WP toolbar */
-}
-
-/* Form fields, general styles first. */
-button,
-input,
-textarea {
- border: 2px solid #d4d0ba;
- font-family: inherit;
- padding: 5px;
-}
-
-input,
-textarea {
- color: #141412;
-}
-
-input:focus,
-textarea:focus {
- border: 2px solid #c3c0ab;
- outline: 0;
-}
-
-/* Buttons */
-button,
-input[type="submit"],
-input[type="button"],
-input[type="reset"] {
- background: #e05d22; /* Old browsers */
- background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
- background: linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
- border: none;
- border-bottom: 3px solid #b93207;
- border-radius: 2px;
- color: #fff;
- display: inline-block;
- padding: 11px 24px 10px;
- text-decoration: none;
-}
-
-button:hover,
-button:focus,
-input[type="submit"]:hover,
-input[type="button"]:hover,
-input[type="reset"]:hover,
-input[type="submit"]:focus,
-input[type="button"]:focus,
-input[type="reset"]:focus {
- background: #ed6a31; /* Old browsers */
- background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */
- background: linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */
- outline: none;
-}
-
-button:active,
-input[type="submit"]:active,
-input[type="button"]:active,
-input[type="reset"]:active {
- background: #d94412; /* Old browsers */
- background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */
- background: linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */
- border: none;
- border-top: 3px solid #b93207;
- padding: 10px 24px 11px;
-}
-
-.post-password-required input[type="submit"] {
- padding: 7px 24px 4px;
- vertical-align: bottom;
-}
-
-.post-password-required input[type="submit"]:active {
- padding: 5px 24px 6px;
-}
-
-/* Placeholder text color -- selectors need to be separate to work. */
-::-webkit-input-placeholder {
- color: #7d7b6d;
-}
-
-:-moz-placeholder {
- color: #7d7b6d;
-}
-
-::-moz-placeholder {
- color: #7d7b6d;
-}
-
-:-ms-input-placeholder {
- color: #7d7b6d;
-}
-
-/*
- * Responsive images
- *
- * Fluid images for posts, comments, and widgets
- */
-.entry-content img,
-.entry-summary img,
-.comment-content img,
-.widget img,
-.wp-caption {
- max-width: 100%;
-}
-
-/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
-.entry-content img,
-.entry-summary img,
-.comment-content img[height],
-img[class*="align"],
-img[class*="wp-image-"],
-img[class*="attachment-"] {
- height: auto;
-}
-
-img.size-full,
-img.size-large,
-img.wp-post-image {
- height: auto;
- max-width: 100%;
-}
-
-/* Make sure videos and embeds fit their containers. */
-embed,
-iframe,
-object,
-video {
- max-width: 100%;
-}
-
-/* Override the Twitter embed fixed width. */
-.entry-content .twitter-tweet-rendered {
- max-width: 100% !important;
-}
-
-/* Images */
-.alignleft {
- float: left;
-}
-
-.alignright {
- float: right;
-}
-
-.aligncenter {
- display: block;
- margin-left: auto;
- margin-right: auto;
-}
-
-figure.wp-caption.alignleft,
-img.alignleft {
- margin: 5px 20px 5px 0;
-}
-
-.wp-caption.alignleft {
- margin: 5px 10px 5px 0;
-}
-
-figure.wp-caption.alignright,
-img.alignright {
- margin: 5px 0 5px 20px;
-}
-
-.wp-caption.alignright {
- margin: 5px 0 5px 10px;
-}
-
-img.aligncenter {
- margin: 5px auto;
-}
-
-img.alignnone {
- margin: 5px 0;
-}
-
-.wp-caption .wp-caption-text,
-.entry-caption,
-.gallery-caption {
- color: #220e10;
- font-size: 18px;
- font-style: italic;
- font-weight: 300;
- margin: 0 0 24px;
-}
-
-div.wp-caption.alignright img[class*="wp-image-"] {
- float: right;
-}
-
-div.wp-caption.alignright .wp-caption-text {
- padding-left: 10px;
-}
-
-img.wp-smiley,
-.rsswidget img {
- border: 0;
- border-radius: 0;
- box-shadow: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
-}
-
-.wp-caption.alignleft + ul,
-.wp-caption.alignleft + ol {
- list-style-position: inside;
-}
-
-
-/**
- * 3.0 Basic Structure
- * ----------------------------------------------------------------------------
- */
-
-.site {
- background-color: #fff;
- border-left: 1px solid #f2f2f2;
- border-right: 1px solid #f2f2f2;
- margin: 0 auto;
- max-width: 1600px;
- width: 100%;
-}
-
-.site-main {
- position: relative;
-}
-
-.site-main .sidebar-container {
- height: 0;
- position: absolute;
- top: 40px;
- width: 100%;
- z-index: 1;
-}
-
-.site-main .sidebar-inner {
- margin: 0 auto;
- max-width: 1040px;
-}
-
-
-/**
- * 4.0 Header
- * ----------------------------------------------------------------------------
- */
-
-/**
- * 4.1 Site Header
- * ----------------------------------------------------------------------------
- */
-
-.site-header {
- position: relative;
-}
-
-.site-header .home-link {
- color: #141412;
- display: block;
- margin: 0 auto;
- max-width: 1080px;
- min-height: 230px;
- padding: 0 20px;
- text-decoration: none;
- width: 100%;
-}
-
-.site-header .site-title:hover {
- text-decoration: underline;
-}
-
-.site-title {
- font-size: 60px;
- font-weight: bold;
- line-height: 1;
- margin: 0;
- padding: 58px 0 10px;
-}
-
-.site-description {
- font: 300 italic 24px "Source Sans Pro", Helvetica, sans-serif;
- margin: 0;
-}
-
-
-/**
- * 4.2 Navigation
- * ----------------------------------------------------------------------------
- */
-
-.main-navigation {
- clear: both;
- margin: 0 auto;
- max-width: 1080px;
- min-height: 45px;
- position: relative;
-}
-
-ul.nav-menu,
-div.nav-menu > ul {
- margin: 0;
- padding: 0 40px 0 0;
-}
-
-.nav-menu li {
- display: inline-block;
- position: relative;
-}
-
-.nav-menu li a {
- color: #141412;
- display: block;
- font-size: 15px;
- line-height: 1;
- padding: 15px 20px;
- text-decoration: none;
-}
-
-.nav-menu li:hover > a,
-.nav-menu li a:hover,
-.nav-menu li:focus > a,
-.nav-menu li a:focus {
- background-color: #220e10;
- color: #fff;
-}
-
-.nav-menu .sub-menu,
-.nav-menu .children {
- background-color: #220e10;
- border: 2px solid #f7f5e7;
- border-top: 0;
- padding: 0;
- position: absolute;
- left: -2px;
- z-index: 99999;
- height: 1px;
- width: 1px;
- overflow: hidden;
- clip: rect(1px, 1px, 1px, 1px);
-}
-
-.nav-menu .sub-menu ul,
-.nav-menu .children ul {
- border-left: 0;
- left: 100%;
- top: 0;
-}
-
-ul.nav-menu ul a,
-.nav-menu ul ul a {
- color: #fff;
- margin: 0;
- width: 200px;
-}
-
-ul.nav-menu ul a:hover,
-.nav-menu ul ul a:hover,
-ul.nav-menu ul a:focus,
-.nav-menu ul ul a:focus {
- background-color: #db572f;
-}
-
-ul.nav-menu li:hover > ul,
-.nav-menu ul li:hover > ul,
-ul.nav-menu .focus > ul,
-.nav-menu .focus > ul {
- clip: inherit;
- overflow: inherit;
- height: inherit;
- width: inherit;
-}
-
-.nav-menu .current_page_item > a,
-.nav-menu .current_page_ancestor > a,
-.nav-menu .current-menu-item > a,
-.nav-menu .current-menu-ancestor > a {
- color: #bc360a;
- font-style: italic;
-}
-
-.menu-toggle {
- display: none;
-}
-
-/* Navbar */
-.navbar {
- background-color: #f7f5e7;
- margin: 0 auto;
- max-width: 1600px;
- width: 100%;
-}
-
-.site-header .search-form {
- position: absolute;
- right: 20px;
- top: 1px;
-}
-
-.site-header .search-field {
- background-color: transparent;
- background-image: url(images/search-icon.png);
- background-position: 5px center;
- background-repeat: no-repeat;
- background-size: 24px 24px;
- border: none;
- cursor: pointer;
- height: 37px;
- margin: 3px 0;
- padding: 0 0 0 34px;
- position: relative;
- -webkit-transition: width 400ms ease, background 400ms ease;
- transition: width 400ms ease, background 400ms ease;
- width: 0;
-}
-
-.site-header .search-field:focus {
- background-color: #fff;
- border: 2px solid #c3c0ab;
- cursor: text;
- outline: 0;
- width: 230px;
-}
-
-
-/**
- * 5.0 Content
- * ----------------------------------------------------------------------------
- */
-
-.hentry {
- padding: 40px 0;
-}
-
-.entry-header,
-.entry-content,
-.entry-summary,
-.entry-meta {
- margin: 0 auto;
- max-width: 604px;
- width: 100%;
-}
-
-.sidebar .entry-header,
-.sidebar .entry-content,
-.sidebar .entry-summary,
-.sidebar .entry-meta {
- max-width: 1040px;
- padding: 0 376px 0 60px;
-}
-
-
-/**
- * 5.1 Entry Header
- * ----------------------------------------------------------------------------
- */
-
-.sidebar .entry-header .entry-meta {
- padding: 0;
-}
-
-.entry-thumbnail img {
- display: block;
- margin: 0 auto 10px;
-}
-
-.entry-header {
- margin-bottom: 30px;
-}
-
-.entry-title {
- font-weight: normal;
- margin: 0 0 5px;
-}
-
-.entry-title a {
- color: #141412;
-}
-
-.entry-title a:hover {
- color: #ea9629;
-}
-
-
-/**
- * 5.2 Entry Meta
- * ----------------------------------------------------------------------------
- */
-
-.entry-meta {
- clear: both;
- font-size: 14px;
-}
-
-.entry-meta a {
- color: #bc360a;
-}
-
-.entry-meta a:hover {
- color: #bc360a;
-}
-
-.entry-meta > span {
- margin-right: 20px;
-}
-
-.entry-meta > span:last-child {
- margin-right: 0;
-}
-
-.featured-post:before {
- content: "\f308";
- margin-right: 2px;
-}
-
-.entry-meta .date a:before {
- content: "\f303";
-}
-
-.comments-link a:before {
- content: "\f300";
- margin-right: 2px;
- position: relative;
- top: -1px;
-}
-
-.entry-meta .author a:before {
- content: "\f304";
- position: relative;
- top: -1px;
-}
-
-.categories-links a:first-child:before {
- content: "\f301";
-}
-
-.tags-links a:first-child:before {
- content: "\f302";
- position: relative;
- top: -1px;
-}
-
-.edit-link a:before {
- content: "\f411";
- position: relative;
- top: -1px;
-}
-
-.single-author .entry-meta .author,
-.sticky.format-standard .entry-meta .date,
-.sticky.format-audio .entry-meta .date,
-.sticky.format-chat .entry-meta .date,
-.sticky.format-image .entry-meta .date,
-.sticky.format-gallery .entry-meta .date {
- display: none;
-}
-
-
-/**
- * 5.3 Entry Content
- * ----------------------------------------------------------------------------
- */
-
-.entry-content {
- -webkit-hyphens: auto;
- -moz-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
- word-wrap: break-word;
-}
-
-.entry-content a,
-.comment-content a {
- color: #bc360a;
-}
-
-.entry-content a:hover,
-.comment-content a:hover {
- color: #ea9629;
-}
-
-.entry-content blockquote {
- font-size: 24px;
-}
-
-.entry-content blockquote cite,
-.entry-content blockquote small {
- font-size: 16px;
-}
-
-.entry-content img.alignleft,
-.entry-content .wp-caption.alignleft {
- margin-left: -60px;
-}
-
-.entry-content img.alignright,
-.entry-content .wp-caption.alignright {
- margin-right: -60px;
-}
-
-footer.entry-meta {
- margin-top: 24px;
-}
-
-.format-standard footer.entry-meta {
- margin-top: 0;
-}
-
-/* Page links */
-.page-links {
- clear: both;
- font-size: 16px;
- font-style: italic;
- font-weight: normal;
- line-height: 2.2;
- margin: 20px 0;
- text-transform: uppercase;
-}
-
-.page-links a,
-.page-links > span {
- background: #fff;
- border: 1px solid #fff;
- padding: 5px 10px;
- text-decoration: none;
-}
-
-.format-status .entry-content .page-links a,
-.format-gallery .entry-content .page-links a,
-.format-chat .entry-content .page-links a,
-.format-quote .entry-content .page-links a,
-.page-links a {
- background: #e63f2a;
- border: 1px solid #e63f2a;
- color: #fff;
-}
-
-.format-gallery .entry-content .page-links a:hover,
-.format-audio .entry-content .page-links a:hover,
-.format-status .entry-content .page-links a:hover,
-.format-video .entry-content .page-links a:hover,
-.format-chat .entry-content .page-links a:hover,
-.format-quote .entry-content .page-links a:hover,
-.page-links a:hover {
- background: #fff;
- color: #e63f2a;
-}
-
-.format-status .entry-content .page-links > span,
-.format-quote .entry-content .page-links > span {
- background: none;
-}
-
-.page-links .page-links-title {
- background: transparent;
- border: none;
- margin-right: 20px;
- padding: 0;
-}
-
-/* Mediaelements */
-.hentry .mejs-mediaelement,
-.hentry .mejs-container .mejs-controls {
- background: #220e10;
-}
-
-.hentry .mejs-controls .mejs-time-rail .mejs-time-loaded,
-.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
- background: #fff;
-}
-
-.hentry .mejs-controls .mejs-time-rail .mejs-time-current {
- background: #ea9629;
-}
-
-.hentry .mejs-controls .mejs-time-rail .mejs-time-total,
-.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
- background: #595959;
-}
-
-.hentry .mejs-controls .mejs-time-rail span,
-.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
-.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
- border-radius: 0;
-}
-
-
-/**
- * 5.4 Galleries
- * ----------------------------------------------------------------------------
- */
-
-.gallery {
- margin-bottom: 20px;
- margin-left: -4px;
-}
-
-.gallery-item {
- float: left;
- margin: 0 4px 4px 0;
- overflow: hidden;
- position: relative;
-}
-
-.gallery-columns-1.gallery-size-medium,
-.gallery-columns-1.gallery-size-thumbnail,
-.gallery-columns-2.gallery-size-thumbnail,
-.gallery-columns-3.gallery-size-thumbnail {
- display: table;
- margin: 0 auto 20px;
-}
-
-.gallery-columns-1 .gallery-item,
-.gallery-columns-2 .gallery-item,
-.gallery-columns-3 .gallery-item {
- text-align: center;
-}
-
-.gallery-columns-4 .gallery-item {
- max-width: 23%;
- max-width: -webkit-calc(25% - 4px);
- max-width: calc(25% - 4px);
-}
-
-.gallery-columns-5 .gallery-item {
- max-width: 19%;
- max-width: -webkit-calc(20% - 4px);
- max-width: calc(20% - 4px);
-}
-
-.gallery-columns-6 .gallery-item {
- max-width: 15%;
- max-width: -webkit-calc(16.7% - 4px);
- max-width: calc(16.7% - 4px);
-}
-
-.gallery-columns-7 .gallery-item {
- max-width: 13%;
- max-width: -webkit-calc(14.28% - 4px);
- max-width: calc(14.28% - 4px);
-}
-
-.gallery-columns-8 .gallery-item {
- max-width: 11%;
- max-width: -webkit-calc(12.5% - 4px);
- max-width: calc(12.5% - 4px);
-}
-
-.gallery-columns-9 .gallery-item {
- max-width: 9%;
- max-width: -webkit-calc(11.1% - 4px);
- max-width: calc(11.1% - 4px);
-}
-
-.gallery-columns-1 .gallery-item:nth-of-type(1n),
-.gallery-columns-2 .gallery-item:nth-of-type(2n),
-.gallery-columns-3 .gallery-item:nth-of-type(3n),
-.gallery-columns-4 .gallery-item:nth-of-type(4n),
-.gallery-columns-5 .gallery-item:nth-of-type(5n),
-.gallery-columns-6 .gallery-item:nth-of-type(6n),
-.gallery-columns-7 .gallery-item:nth-of-type(7n),
-.gallery-columns-8 .gallery-item:nth-of-type(8n),
-.gallery-columns-9 .gallery-item:nth-of-type(9n) {
- margin-right: 0;
-}
-
-.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
-.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
-.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
-.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
- clear: left;
-}
-
-.gallery-caption {
- background-color: rgba(0, 0, 0, 0.7);
- box-sizing: border-box;
- color: #fff;
- font-size: 14px;
- line-height: 1.3;
- margin: 0;
- max-height: 50%;
- opacity: 0;
- padding: 2px 8px;
- position: absolute;
- bottom: 0;
- left: 0;
- text-align: left;
- -webkit-transition: opacity 400ms ease;
- transition: opacity 400ms ease;
- width: 100%;
-}
-
-.gallery-caption:before {
- box-shadow: 0 -10px 15px #000 inset;
- content: "";
- height: 100%;
- min-height: 49px;
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
-}
-
-.gallery-item:hover .gallery-caption {
- opacity: 1;
-}
-
-.gallery-columns-7 .gallery-caption,
-.gallery-columns-8 .gallery-caption,
-.gallery-columns-9 .gallery-caption {
- display: none;
-}
-
-
-/**
- * 5.5 Post Formats
- * ----------------------------------------------------------------------------
- */
-
-/* Aside */
-.format-aside {
- background-color: #f7f5e7;
-}
-
-.blog .format-aside:first-of-type,
-.single .format-aside:first-of-type,
-.format-aside + .format-aside,
-.format-aside + .format-link,
-.format-link + .format-aside {
- box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2);
-}
-
-.format-aside .entry-meta {
- margin-top: 0;
-}
-
-.format-aside blockquote {
- font-size: 100%;
- font-weight: normal;
-}
-
-.format-aside cite {
- font-size: 100%;
- text-transform: none;
-}
-
-.format-aside cite:before {
- content: "\2014";
- margin-right: 5px;
-}
-
-/* Audio */
-.format-audio {
- background-color: #db572f;
-}
-
-.format-audio .entry-title {
- font-size: 28px;
- font-weight: bold;
-}
-
-.format-audio .entry-content:before {
- content: "\f109";
- float: left;
- font-size: 64px;
- position: relative;
- top: 4px;
-}
-
-.format-audio .entry-content a,
-.format-audio .entry-meta a,
-.format-audio .entry-content a:hover,
-.format-audio .entry-meta a:hover {
- color: #fbfaf3;
-}
-
-.format-audio .audio-content {
- background: url(images/dotted-line.png) repeat-y left top;
- background-size: 4px 4px;
- float: right;
- padding-left: 35px;
- width: 80%;
- width: -webkit-calc(100% - 85px);
- width: calc(100% - 85px);
-}
-
-.format-audio .wp-audio-shortcode {
- height: 30px !important; /* Override mediaelement.js style */
- margin: 20px 0;
- max-width: 400px !important; /* Override mediaelement.js style */
-}
-
-.format-audio audio {
- max-width: 100% !important; /* Avoid player width overflow. */
-}
-
-/* Chat */
-.format-chat {
- background-color: #eadaa6;
-}
-
-.format-chat .entry-title {
- font-size: 28px;
- font-weight: bold;
-}
-
-.format-chat .entry-meta a,
-.format-chat .entry-content a {
- color: #722d19;
-}
-
-.format-chat .entry-meta .date a:before {
- content: "\f108";
- margin-right: 2px;
-}
-
-.format-chat .entry-meta .author {
- display: none;
-}
-
-.format-chat .chat {
- margin: 0;
-}
-
-.format-chat .chat .chat-timestamp {
- color: #722d19;
- float: right;
- font-size: 12px;
- font-weight: normal;
- margin: 5px 10px 0;
-}
-
-.format-chat .chat .fn {
- font-style: normal;
-}
-
-/* Gallery */
-.format-gallery {
- background-color: #fbca3c;
-}
-
-.format-gallery .entry-header {
- margin-bottom: 15px;
-}
-
-.format-gallery .entry-title {
- font-size: 50px;
- font-weight: 400;
- margin: 0;
-}
-
-.format-gallery .entry-meta a,
-.format-gallery .entry-content a {
- color: #722d19;
-}
-
-/* Image */
-.format-image .entry-title {
- font-size: 28px;
- font-weight: bold;
-}
-
-.format-image .categories-links,
-.format-image .tags-links {
- display: none;
-}
-
-/* Link */
-.format-link {
- background-color: #f7f5e7;
-}
-
-.blog .format-link:first-of-type,
-.single .format-link:first-of-type {
- box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2);
-}
-
-.format-link .entry-header,
-.format-link .entry-content p:last-child {
- margin-bottom: 0;
-}
-
-.format-link .entry-title {
- color: #ca3c08;
- display: inline;
- font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
- margin-right: 20px;
-}
-
-.format-link .entry-title a {
- color: #bc360a;
-}
-
-.format-link div.entry-meta {
- display: inline;
-}
-
-/* Quote */
-.format-quote {
- background-color: #210d10;
-}
-
-.format-quote .entry-content,
-.format-quote .entry-meta {
- color: #f7f5e7;
-}
-
-.format-quote .entry-content blockquote {
- font-size: 28px;
- margin: 0;
-}
-
-.format-quote .entry-content a,
-.format-quote .entry-meta a,
-.format-quote .linked {
- color: #e63f2a;
-}
-
-.format-quote .entry-content cite a {
- border-bottom: 1px dotted #fff;
- color: #fff;
-}
-
-.format-quote .entry-content cite a:hover {
- text-decoration: none;
-}
-
-.format-quote blockquote small,
-.format-quote blockquote cite {
- display: block;
- font-size: 16px;
-}
-
-.format-quote blockquote {
- font-style: italic;
- font-weight: 300;
- padding-left: 75px;
- position: relative;
-}
-
-.format-quote blockquote:before {
- content: '\201C';
- font-size: 140px;
- font-weight: 400;
- line-height: .8;
- padding-right: 25px;
- position: absolute;
- left: -15px;
- top: -3px;
-}
-
-.format-quote .entry-meta .author {
- display: none;
-}
-
-/* Status */
-.format-status {
- background-color: #722d19;
- padding: 0;
-}
-
-.format-status .entry-content,
-.format-status .entry-meta {
- padding-left: 35px;
- position: relative;
-}
-
-.format-status .entry-content a {
- color: #eadaa6;
-}
-
-.format-status .entry-meta a {
- color: #f7f5e7;
-}
-
-.sidebar .format-status .entry-content,
-.sidebar .format-status .entry-meta {
- padding-left: 95px;
-}
-
-.format-status .entry-content:before,
-.format-status .entry-meta:before {
- background: url(images/dotted-line.png) repeat-y left bottom;
- background-size: 4px 4px;
- content: "";
- display: block;
- height: 100%;
- position: absolute;
- left: 10px;
- top: 0;
- width: 1px;
-}
-
-.sidebar .format-status .entry-content:before,
-.sidebar .format-status .entry-meta:before {
- left: 70px;
-}
-
-.format-status .categories-links,
-.format-status .tags-links {
- display: none;
-}
-
-/* Ensures the dots in the dot background are in lockstep. */
-.format-status .entry-meta:before {
- background-position: left top;
-}
-
-.format-status .entry-content {
- color: #f7f5e7;
- font-size: 24px;
- font-style: italic;
- font-weight: 300;
- padding-bottom: 30px;
- padding-top: 40px;
- position: relative;
-}
-
-.format-status .entry-content p:first-child:before {
- background-color: rgba(0, 0, 0, 0.65);
- content: "";
- height: 3px;
- margin-top: 13px;
- position: absolute;
- left: 4px;
- width: 13px;
-}
-
-.sidebar .format-status .entry-content > p:first-child:before {
- left: 64px;
-}
-
-.format-status .entry-content p:last-child {
- margin-bottom: 0;
-}
-
-.format-status .entry-meta {
- margin-top: 0;
- padding-bottom: 40px;
-}
-
-.format-status .entry-meta .date a:before {
- content: "\f105";
-}
-
-/* Video */
-.format-video {
- background-color: #db572f;
-}
-
-.format-video .entry-content a,
-.format-video .entry-meta a,
-.format-video .entry-content a:hover,
-.format-video .entry-meta a:hover {
- color: #fbfaf3;
-}
-
-.format-video .entry-title {
- font-size: 50px;
- font-weight: 400;
-}
-
-.format-video .entry-meta {
- color: #220e10;
-}
-
-
-/**
- * 5.6 Attachments
- * ----------------------------------------------------------------------------
- */
-
-.attachment .hentry {
- background-color: #e8e5ce;
- margin: 0;
- padding: 0;
-}
-
-.attachment .entry-header {
- margin-bottom: 0;
- max-width: 1040px;
- padding: 30px 0;
-}
-
-.attachment .entry-title {
- display: inline-block;
- float: left;
- font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
- margin: 0;
-}
-
-.attachment .entry-title:before {
- content: "\f416";
- font-size: 32px;
- margin-right: 10px;
-}
-
-.attachment .entry-meta {
- clear: none;
- color: inherit;
- float: right;
- max-width: 604px;
- padding: 9px 0 0;
- text-align: right;
-}
-
-.hentry.attachment:not(.image-attachment) .entry-meta {
- max-width: 104px;
-}
-
-.attachment footer.entry-meta {
- display: none;
-}
-
-.attachment-meta:before {
- content: "\f307";
-}
-
-.full-size-link a:before {
- content: "\f402";
-}
-
-.full-size-link:before {
- content: none;
-}
-
-.attachment .entry-meta a,
-.attachment .entry-meta .edit-link:before,
-.attachment .full-size-link:before {
- color: #ca3c08;
-}
-
-.attachment .entry-content {
- background-color: #fff;
- max-width: 100%;
- padding: 40px 0;
-}
-
-.image-navigation {
- margin: 0 auto;
- max-width: 1040px;
- position: relative;
-}
-
-.image-navigation a:hover {
- text-decoration: none;
-}
-
-.image-navigation .nav-previous,
-.image-navigation .nav-next {
- position: absolute;
- top: 50px;
-}
-
-.image-navigation .nav-previous {
- left: 0;
-}
-
-.image-navigation .nav-next {
- right: 0;
-}
-
-.image-navigation .meta-nav {
- font-size: 32px;
- font-weight: 300;
- vertical-align: -4px;
-}
-
-.attachment .entry-attachment,
-.attachment .type-attachment p {
- margin: 0 auto;
- max-width: 724px;
- text-align: center;
-}
-
-.attachment .entry-attachment .attachment {
- display: inline-block;
-}
-
-.attachment .entry-caption {
- text-align: left;
-}
-
-.attachment .entry-description {
- margin: 20px auto 0;
- max-width: 604px;
-}
-
-.attachment .entry-caption p:last-child,
-.attachment .entry-description p:last-child {
- margin: 0;
-}
-
-.attachment .site-main .sidebar-container {
- display: none;
-}
-
-.attachment .entry-content .mejs-audio {
- max-width: 400px;
- margin: 0 auto;
-}
-
-.attachment .entry-content .wp-video {
- margin: 0 auto;
-}
-
-.attachment .entry-content .mejs-container {
- margin-bottom: 24px;
-}
-
-/**
- * 5.7 Post/Paging Navigation
- * ----------------------------------------------------------------------------
- */
-
-.navigation .nav-previous {
- float: left;
-}
-
-.navigation .nav-next {
- float: right;
-}
-
-.navigation a {
- color: #bc360a;
-}
-
-.navigation a:hover {
- color: #ea9629;
- text-decoration: none;
-}
-
-.paging-navigation {
- background-color: #e8e5ce;
- padding: 40px 0;
-}
-
-.paging-navigation .nav-links {
- margin: 0 auto;
- max-width: 604px;
- width: 100%;
-}
-
-.sidebar .paging-navigation .nav-links {
- max-width: 1040px;
- padding: 0 376px 0 60px;
-}
-
-.paging-navigation .nav-next {
- padding: 13px 0;
-}
-
-.paging-navigation a {
- font-size: 22px;
- font-style: italic;
- font-weight: 300;
-}
-
-.paging-navigation .meta-nav {
- background-color: #e63f2a;
- border-radius: 50%;
- color: #fff;
- display: inline-block;
- font-size: 26px;
- padding: 3px 0 8px;
- text-align: center;
- width: 50px;
-}
-
-.paging-navigation .nav-previous .meta-nav {
- margin-right: 10px;
- padding: 17px 0 23px;
- width: 80px;
-}
-
-.paging-navigation .nav-next .meta-nav {
- margin-left: 10px;
-}
-
-.paging-navigation a:hover .meta-nav {
- background-color: #ea9629;
- text-decoration: none;
-}
-
-.post-navigation {
- background-color: #fff;
- color: #ca3c08;
- font-size: 20px;
- font-style: italic;
- font-weight: 300;
- padding: 20px 0;
-}
-
-.post-navigation .nav-links {
- margin: 0 auto;
- max-width: 1040px;
-}
-
-.sidebar .post-navigation .nav-links {
- padding: 0 376px 0 60px;
-}
-
-.post-navigation a[rel="next"] {
- float: right;
- text-align: right;
-}
-
-
-/**
- * 5.8 Author Bio
- * ----------------------------------------------------------------------------
- */
-
-.author-info {
- margin: 0 auto;
- max-width: 604px;
- padding: 30px 0 10px;
- text-align: left; /* gallery & video post formats */
- width: 100%;
-}
-
-.author.sidebar .author-info {
- max-width: 1040px;
- padding: 30px 376px 10px 60px;
-}
-
-.single .author-info {
- padding: 50px 0 0;
-}
-
-.author-avatar .avatar {
- float: left;
- margin: 0 30px 30px 0;
-}
-
-.single-format-status .author-description {
- color: #f7f5e7;
-}
-
-.author-description .author-title {
- clear: none;
- font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
- margin: 0 0 8px;
-}
-
-.author-link {
- color: #ca3c08;
- margin-left: 2px;
-}
-
-.author.archive .author-link {
- display: none;
-}
-
-
-/**
- * 5.9 Archives
- * ----------------------------------------------------------------------------
- */
-
-.archive-header {
- background-color: #e8e5ce;
-}
-
-.archive-title,
-.archive-meta {
- font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
- margin: 0 auto;
- max-width: 1040px;
- padding: 30px 0;
- width: 100%;
-}
-
-.archive-meta {
- font-size: 16px;
- font-style: normal;
- font-weight: normal;
- margin-top: -15px;
- padding: 0 0 11px;
-}
-
-.sidebar .archive-meta {
- padding-right: 316px;
-}
-
-
-/**
- * 5.10 Search Results/No posts
- * ----------------------------------------------------------------------------
- */
-
-.page-header {
- background-color: #e8e5ce;
-}
-
-.page-title {
- font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
- margin: 0 auto;
- max-width: 1040px;
- padding: 30px 0;
- width: 100%;
-}
-
-.page-content {
- margin: 0 auto;
- max-width: 604px;
- padding: 40px 0;
- width: 100%;
-}
-
-.sidebar .page-content {
- margin: 0 auto;
- max-width: 1040px;
- padding: 40px 376px 40px 60px;
-}
-
-
-/**
- * 5.11 404
- * ----------------------------------------------------------------------------
- */
-
-.error404 .page-header {
- background-color: #fff;
-}
-
-.error404 .page-title {
- line-height: 0.6;
- margin: 0;
- padding: 300px;
- position: relative;
- text-align: center;
- width: auto;
-}
-
-.error404 .page-title:before {
- color: #e8e5ce;
- content: "\f423";
- font-size: 964px;
- line-height: 0.6;
- overflow: hidden;
- position: absolute;
- left: 7px;
- top: 28px;
-}
-
-.error404 .page-wrapper {
- background-color: #e8e5ce;
-}
-
-.error404 .page-header,
-.error404 .page-content {
- margin: 0 auto;
- max-width: 1040px;
- padding-bottom: 40px;
- width: 100%;
-}
-
-
-/**
- * 5.12 Comments
- * ----------------------------------------------------------------------------
- */
-
-.comments-title,
-.comment-list,
-.comment-reply-title,
-.must-log-in,
-.comment-respond .comment-form,
-.comment-respond iframe {
- display: block;
- margin-left: auto;
- margin-right: auto;
- max-width: 604px;
- width: 100%;
-}
-
-.sidebar .comments-title,
-.sidebar .comment-list,
-.sidebar .must-log-in,
-.sidebar .comment-reply-title,
-.sidebar .comment-navigation,
-.sidebar .comment-respond .comment-form {
- max-width: 1040px;
- padding-left: 60px;
- padding-right: 376px;
-}
-
-.comments-title {
- font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif;
-}
-
-.comment-list,
-.comment-list .children {
- list-style-type: none;
- padding: 0;
-}
-
-.comment-list .children {
- margin-left: 20px;
-}
-
-.comment-list > li:after,
-.comment-list .children > li:before {
- background: url(images/dotted-line.png) repeat left top;
- background-size: 4px 4px;
- content: "";
- display: block;
- height: 1px;
- width: 100%;
-}
-
-.comment-list > li:last-child:after {
- display: none;
-}
-
-.comment-body {
- padding: 24px 0;
- position: relative;
-}
-
-.comment-author {
- float: left;
- max-width: 74px;
-}
-
-.comment-author .avatar {
- display: block;
- margin-bottom: 10px;
-}
-
-.comment-author .fn {
- word-wrap: break-word;
-}
-
-.comment-author .fn,
-.comment-author .url,
-.comment-reply-link,
-.comment-reply-login {
- color: #bc360a;
- font-size: 14px;
- font-style: normal;
- font-weight: normal;
-}
-
-.says {
- display: none;
-}
-
-.no-avatars .comment-author {
- margin: 0 0 5px;
- max-width: 100%;
- position: relative;
-}
-
-.no-avatars .comment-metadata,
-.no-avatars .comment-content,
-.no-avatars .comment-list .reply {
- width: 100%;
-}
-
-.bypostauthor > .comment-body .fn:before {
- content: "\f408";
- vertical-align: text-top;
-}
-
-.comment-list .edit-link {
- margin-left: 20px;
-}
-
-.comment-metadata,
-.comment-awaiting-moderation,
-.comment-content,
-.comment-list .reply {
- float: right;
- width: 79%;
- width: -webkit-calc(100% - 124px);
- width: calc(100% - 124px);
- word-wrap: break-word;
-}
-
-.comment-meta,
-.comment-meta a {
- color: #a2a2a2;
- font-size: 13px;
-}
-
-.comment-meta a:hover {
- color: #ea9629;
-}
-
-.comment-metadata {
- margin-bottom: 20px;
-}
-
-.ping-meta {
- color: #a2a2a2;
- font-size: 13px;
- line-height: 2;
-}
-
-.comment-awaiting-moderation {
- color: #a2a2a2;
-}
-
-.comment-awaiting-moderation:before {
- content: "\f414";
- margin-right: 5px;
- position: relative;
- top: -2px;
-}
-
-.comment-reply-link:before,
-.comment-reply-login:before {
- content: "\f412";
- margin-right: 3px;
-}
-
-/* Comment form */
-.comment-respond {
- background-color: #f7f5e7;
- padding: 30px 0;
-}
-
-.comment .comment-respond {
- margin-bottom: 20px;
- padding: 20px;
-}
-
-.comment-reply-title {
- font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif;
-}
-
-.comment-reply-title small a {
- color: #131310;
- display: inline-block;
- float: right;
- height: 16px;
- overflow: hidden;
- width: 16px;
-}
-
-.comment-reply-title small a:hover {
- color: #ed331c;
- text-decoration: none;
-}
-
-.comment-reply-title small a:before {
- content: "\f406";
- vertical-align: top;
-}
-
-.sidebar .comment-list .comment-reply-title,
-.sidebar .comment-list .comment-respond .comment-form {
- padding: 0;
-}
-
-.comment-form .comment-notes {
- margin-bottom: 15px;
-}
-
-.comment-form .comment-form-author,
-.comment-form .comment-form-email,
-.comment-form .comment-form-url {
- margin-bottom: 8px;
-}
-
-.comment-form [for="author"],
-.comment-form [for="email"],
-.comment-form [for="url"],
-.comment-form [for="comment"] {
- float: left;
- padding: 5px 0;
- width: 120px;
-}
-
-.comment-form .required {
- color: #ed331c;
-}
-
-.comment-form input[type="text"],
-.comment-form input[type="email"],
-.comment-form input[type="url"] {
- max-width: 270px;
- width: 60%;
-}
-
-.comment-form textarea {
- width: 100%;
-}
-
-.form-allowed-tags,
-.form-allowed-tags code {
- color: #686758;
- font-size: 12px;
-}
-
-.form-allowed-tags code {
- font-size: 10px;
- margin-left: 3px;
-}
-
-.comment-list .pingback,
-.comment-list .trackback {
- padding-top: 24px;
-}
-
-.comment-navigation {
- font-size: 20px;
- font-style: italic;
- font-weight: 300;
- margin: 0 auto;
- max-width: 604px;
- padding: 20px 0 30px;
- width: 100%;
-}
-
-.no-comments {
- background-color: #f7f5e7;
- font-size: 20px;
- font-style: italic;
- font-weight: 300;
- margin: 0;
- padding: 40px 0;
- text-align: center;
-}
-
-.sidebar .no-comments {
- padding-left: 60px;
- padding-right: 376px;
-}
-
-
-/**
- * 5.13 Multisite
- * ----------------------------------------------------------------------------
- */
-
-.site-main .mu_register {
- margin: 0 auto;
- max-width: 604px;
- width: 100%;
-}
-
-.mu_alert {
- margin-top: 25px;
-}
-
-.site-main .mu_register input[type="submit"],
-.site-main .mu_register #blog_title,
-.site-main .mu_register #user_email,
-.site-main .mu_register #blogname,
-.site-main .mu_register #user_name {
- font-size: inherit;
- width: 270px;
-}
-
-.site-main .mu_register input[type="submit"] {
- width: auto;
-}
-
-
-/**
- * 6.0 Sidebar
- * ----------------------------------------------------------------------------
- */
-
-.site-main .widget-area {
- float: right;
- width: 300px;
-}
-
-
-/**
- * 6.1 Widgets
- * ----------------------------------------------------------------------------
- */
-
-.widget {
- background-color: rgba(247, 245, 231, 0.7);
- font-size: 14px;
- -webkit-hyphens: auto;
- -moz-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
- margin: 0 0 24px;
- padding: 20px;
- word-wrap: break-word;
-}
-
-.widget .widget-title {
- font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
- margin: 0 0 10px;
-}
-
-.widget ul,
-.widget ol {
- list-style-type: none;
- margin: 0;
- padding: 0;
-}
-
-.widget li {
- padding: 5px 0;
-}
-
-.widget .children li:last-child {
- padding-bottom: 0;
-}
-
-.widget li > ul,
-.widget li > ol {
- margin-left: 20px;
-}
-
-.widget a {
- color: #bc360a;
-}
-
-.widget a:hover {
- color: #ea9629;
-}
-
-/* Search widget */
-.search-form .search-submit {
- display: none;
-}
-
-/* RSS Widget */
-.widget_rss .rss-date {
- display: block;
-}
-
-.widget_rss .rss-date,
-.widget_rss li > cite {
- color: #a2a2a2;
-}
-
-/* Calendar Widget */
-.widget_calendar table,
-.widget_calendar td {
- border: 0;
- border-collapse: separate;
- border-spacing: 1px;
-}
-
-.widget_calendar caption {
- font-size: 14px;
- margin: 0;
-}
-
-.widget_calendar th,
-.widget_calendar td {
- padding: 0;
- text-align: center;
-}
-
-.widget_calendar a {
- display: block;
-}
-
-.widget_calendar a:hover {
- background-color: rgba(0, 0, 0, 0.15);
-}
-
-.widget_calendar tbody td {
- background-color: rgba(255, 255, 255, 0.5);
-}
-
-.site-footer .widget_calendar tbody td {
- background-color: rgba(255, 255, 255, 0.05);
-}
-
-.widget_calendar tbody .pad, .site-footer .widget_calendar tbody .pad {
- background-color: transparent;
-}
-
-
-/**
- * 7.0 Footer
- * ----------------------------------------------------------------------------
- */
-
-.site-footer {
- background-color: #e8e5ce;
- color: #686758;
- font-size: 14px;
- text-align: center;
-}
-
-.site-footer .widget-area,
-.sidebar .site-footer {
- text-align: left;
-}
-
-.site-footer a {
- color: #686758;
-}
-
-.site-footer .sidebar-container {
- background-color: #220e10;
- padding: 20px 0;
-}
-
-.site-footer .widget-area {
- margin: 0 auto;
- max-width: 1040px;
- width: 100%;
-}
-
-.sidebar .site-footer .widget-area {
- max-width: 724px;
- position: relative;
- left: -158px;
-}
-
-.site-footer .widget {
- background: transparent;
- color: #fff;
- float: left;
- margin-right: 20px;
- width: 245px;
-}
-
-.sidebar .site-footer .widget {
- width: 228px;
-}
-
-.sidebar .site-footer .widget:nth-of-type(4),
-.sidebar .site-footer .widget:nth-of-type(3) {
- margin-right: 0;
-}
-
-.site-footer .widget a {
- color: #e6402a;
-}
-
-.site-footer .widget-title,
-.site-footer .widget-title a,
-.site-footer .wp-caption-text {
- color: #fff;
-}
-
-.site-info {
- margin: 0 auto;
- max-width: 1040px;
- padding: 30px 0;
- width: 100%;
-}
-
-#wpstats {
- display: block;
- margin: -10px auto 0;
-}
-
-
-/**
- * 8.0 Media Queries
- * ----------------------------------------------------------------------------
- */
-
-/* Does the same thing as <meta name="viewport" content="width=device-width">,
- * but in the future W3C standard way. -ms- prefix is required for IE10+ to
- * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
- * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
- */
-@-ms-viewport {
- width: device-width;
-}
-@viewport {
- width: device-width;
-}
-
-@media (max-width: 1599px) {
- .site {
- border: 0;
- }
-}
-
-@media (max-width: 1069px) {
- .sidebar img.alignleft,
- .sidebar .wp-caption.alignleft {
- margin-left: 0;
- }
-
- .sidebar img.alignright,
- .sidebar .wp-caption.alignright {
- margin-right: 0;
- }
-
- .error404 .page-header {
- margin-left: auto;
- max-width: 604px;
- width: 100%;
- }
-
- .archive-header,
- .search .page-header,
- .archive .page-header,
- .blog .page-header,
- .error404 .page-content,
- .search .page-content,
- .archive .page-content,
- .attachment .entry-header,
- .attachment .entry-content,
- .post-navigation .nav-links,
- .sidebar .site-info,
- .site-footer .widget-area {
- padding-left: 20px;
- padding-right: 20px;
- }
-
- .error404 .page-title {
- font-size: 24px;
- padding: 180px;
- }
-
- .error404 .page-title:before {
- font-size: 554px;
- }
-
- .attachment .image-navigation {
- max-width: 724px;
- }
-
- .image-navigation .nav-previous,
- .image-navigation .nav-next {
- position: static;
- }
-
- .site-main .widget-area {
- margin-right: 60px;
- }
-}
-
-@media (max-width: 999px) {
- .sidebar .entry-header,
- .sidebar .entry-content,
- .sidebar .entry-summary,
- .sidebar .entry-meta,
- .sidebar .comment-list,
- .sidebar .comment-reply-title,
- .sidebar .comment-navigation,
- .sidebar .comment-respond .comment-form,
- .sidebar .featured-gallery,
- .sidebar .post-navigation .nav-links,
- .author.sidebar .author-info {
- max-width: 604px;
- padding-left: 0;
- padding-right: 0;
- }
-
- .sidebar .site-info,
- .search.sidebar .page-content,
- .blog.sidebar .page-content,
- .attachment .entry-header,
- .sidebar .comments-title {
- max-width: 604px;
- }
-
- .sidebar .archive-meta,
- .attachment .entry-header,
- .search.sidebar .page-content,
- .blog.sidebar .page-content,
- .sidebar .site-info,
- .sidebar .comments-title,
- .sidebar .no-comments {
- padding-left: 0;
- padding-right: 0;
- }
-
- .attachment .entry-meta {
- float: left;
- text-align: left;
- width: 100%;
- }
-
- .attachment .entry-content {
- max-width: 100%;
- padding: 40px 0;
- }
-
- .format-status .entry-content {
- padding-top: 40px;
- }
-
- .format-status .entry-meta {
- padding-bottom: 40px;
- }
-
- .sidebar .format-status .entry-content,
- .sidebar .format-status .entry-meta {
- padding-left: 35px;
- }
-
- .sidebar .format-status .entry-content:before,
- .sidebar .format-status .entry-meta:before {
- left: 10px;
- }
-
- .sidebar .format-status .entry-content p:first-child:before {
- left: 4px;
- }
-
- .sidebar .paging-navigation .nav-links {
- padding: 0 60px;
- }
-
- .site-main .sidebar-container {
- height: auto;
- margin: 0 auto;
- max-width: 604px;
- position: relative;
- top: 20px;
- }
-
- .site-main .widget-area {
- float: none;
- margin: 0;
- width: 100%;
- }
-
- .sidebar .site-footer .widget-area {
- max-width: 100%;
- left: 0;
- }
-}
-
-/* Collapse oversized image and pulled images after iPad breakpoint. */
-@media (max-width: 767px) {
- .entry-content img.alignleft,
- .entry-content .wp-caption.alignleft {
- margin-left: 0;
- }
-
- .entry-content img.alignright,
- .entry-content .wp-caption.alignright {
- margin-right: 0;
- }
-
- .attachment .image-navigation,
- .attachment .entry-attachment .attachment {
- max-width: 604px;
- padding: 0;
- width: 100%;
- }
-
- .gallery-caption {
- display: none;
- }
-}
-
-@media (max-width: 643px) {
- .site-title {
- font-size: 30px;
- }
-
- #content .entry-header,
- #content .entry-content,
- #content .entry-summary,
- #content footer.entry-meta,
- #content .featured-gallery,
- .search.sidebar .page-content,
- .blog.sidebar .page-content,
- .sidebar .post-navigation .nav-links,
- .paging-navigation .nav-links,
- #content .author-info,
- .comments-area .comments-title,
- .comments-area .comment-list,
- .comments-area .comment-navigation,
- .comment-respond,
- .sidebar .site-info,
- .sidebar .paging-navigation .nav-links {
- padding-left: 20px;
- padding-right: 20px;
- }
-
- #content .format-status .entry-content,
- #content .format-status .entry-met {
- padding-left: 35px;
- }
-
- /* Small menu */
- .menu-toggle {
- cursor: pointer;
- display: inline-block;
- font: bold 16px/1.3 "Source Sans Pro", Helvetica, sans-serif;
- margin: 0;
- padding: 12px 0 12px 20px;
- }
-
- .menu-toggle:after {
- content: "\f502";
- font-size: 12px;
- padding-left: 8px;
- vertical-align: -4px;
- }
-
- .toggled-on .menu-toggle:after {
- content: "\f500";
- vertical-align: 2px;
- }
-
- .toggled-on .nav-menu,
- .toggled-on .nav-menu > ul {
- display: block;
- margin-left: 0;
- padding: 0;
- width: 100%;
- }
-
- .toggled-on li,
- .toggled-on .children {
- display: block;
- }
-
- .toggled-on .nav-menu li > ul {
- background-color: transparent;
- display: block;
- float: none;
- margin-left: 20px;
- position: relative;
- left: auto;
- top: auto;
- }
-
- .toggled-on .nav-menu li > ul a {
- color: #141412;
- width: auto;
- }
-
- .toggled-on .nav-menu li:hover > a,
- .toggled-on .nav-menu .children a {
- background-color: transparent;
- color: #141412;
- }
-
- .toggled-on .nav-menu li a:hover,
- .toggled-on .nav-menu ul a:hover {
- background-color: #db572f;
- color: #fff;
- }
-
- ul.nav-menu,
- div.nav-menu > ul {
- display: none;
- }
-
- #content .featured-gallery {
- padding-left: 24px;
- }
-
- .gallery-columns-1 .gallery-item {
- margin-right: 0;
- width: 100%;
- }
-
- .entry-title,
- .format-chat .entry-title,
- .format-image .entry-title,
- .format-gallery .entry-title,
- .format-video .entry-title {
- font-size: 22px;
- font-weight: bold;
- }
-
- .format-quote blockquote,
- .format-status .entry-content {
- font-size: 18px;
- }
-
- .format-quote blockquote small,
- .format-quote blockquote cite {
- font-size: 13px;
- }
-
- .error404 .page-title {
- padding: 40px 0 0;
- }
-
- .error404 .page-title:before {
- content: normal;
- }
-
- .comment-author {
- margin-right: 30px;
- }
-
- .comment-author .avatar {
- height: auto;
- max-width: 100%;
- }
-
- .comment-metadata,
- .comment-content,
- .comment-list .reply {
- width: 70%;
- width: -webkit-calc(100% - 104px);
- width: calc(100% - 104px);
- }
-
- .comment-form input[type="text"],
- .comment-form input[type="email"],
- .comment-form input[type="url"] {
- width: -webkit-calc(100% - 120px);
- width: calc(100% - 120px);
- }
-
- .comment-form textarea {
- height: 80px; /* Smaller field for mobile. */
- }
-
- /* Audio */
- .format-audio .entry-content:before {
- display: none;
- }
-
- .format-audio .audio-content {
- background-image: none;
- float: none;
- padding-left: 0;
- width: auto;
- }
-}
-
-/* Mobile devices */
-@media (max-width: 359px) {
- .gallery {
- margin-left: 0;
- }
-
- .gallery .gallery-item,
- .gallery-columns-2.gallery-size-thumbnail .gallery-item {
- max-width: none;
- width: 49%;
- width: -webkit-calc(50% - 4px);
- width: calc(50% - 4px);
- }
-
- .gallery-columns-1.gallery-size-medium,
- .gallery-columns-1.gallery-size-thumbnail,
- .gallery-columns-2.gallery-size-thumbnail,
- .gallery-columns-3.gallery-size-thumbnail {
- display: block;
- }
-
- .gallery-columns-1 .gallery-item,
- .gallery-columns-1.gallery-size-medium .gallery-item,
- .gallery-columns-1.gallery-size-thumbnail .gallery-item {
- text-align: center;
- width: 98%;
- width: -webkit-calc(100% - 4px);
- width: calc(100% - 4px);
- }
-
- .gallery-columns-3 .gallery-item:nth-of-type(3n),
- .gallery-columns-5 .gallery-item:nth-of-type(5n),
- .gallery-columns-7 .gallery-item:nth-of-type(7n),
- .gallery-columns-9 .gallery-item:nth-of-type(9n) {
- margin-right: 4px;
- }
-
- .gallery br {
- display: none;
- }
-
- .gallery .gallery-item:nth-of-type(even) {
- margin-right: 0;
- }
-
- /* Comments */
- .comment-author {
- margin: 0 0 5px;
- max-width: 100%;
- }
-
- .comment-author .avatar {
- display: inline;
- margin: 0 5px 0 0;
- max-width: 20px;
- }
-
- .comment-metadata,
- .comment-content,
- .comment-list .reply {
- width: 100%;
- }
-}
-
-
-/**
- * 9.0 Print
- * ----------------------------------------------------------------------------
- */
-
-/* Retina-specific styles. */
-@media print,
- (-o-min-device-pixel-ratio: 5/4),
- (-webkit-min-device-pixel-ratio: 1.25),
- (min-resolution: 120dpi) {
-
- .site-header .search-field {
- background-image: url(images/search-icon-2x.png);
- }
-
- .format-audio .audio-content,
- .format-status .entry-content:before,
- .format-status .entry-meta:before,
- .comment-list > li:after,
- .comment-list .children > li:before {
- background-image: url(images/dotted-line-2x.png);
- }
-}
-
-@media print {
- body {
- background: none !important;
- color: #000;
- font-size: 10pt;
- }
-
- footer a[rel="bookmark"]:link:after,
- footer a[rel="bookmark"]:visited:after {
- content: " [" attr(href) "] "; /* Show URLs */
- }
-
- .site {
- max-width: 98%;
- }
-
- .site-header {
- background-image: none !important;
- }
-
- .site-header .home-link {
- max-width: none;
- min-height: 0;
- }
-
- .site-title {
- color: #000;
- font-size: 21pt;
- }
-
- .site-description {
- font-size: 10pt;
- }
-
- .author-avatar,
- .site-footer,
- .comment-respond,
- .comments-area .comment-edit-link,
- .comments-area .reply,
- .comments-link,
- .entry-meta .edit-link,
- .page-links,
- .site-content nav,
- .widget-area,
- .main-navigation,
- .navbar,
- .more-link {
- display: none;
- }
-
- .entry-header,
- .entry-content,
- .entry-summary,
- .entry-meta {
- margin: 0;
- width: 100%;
- }
-
- .page-title,
- .entry-title {
- font-size: 21pt;
- }
-
- .entry-meta,
- .entry-meta a {
- color: #444;
- font-size: 10pt;
- }
-
- .entry-content img.alignleft,
- .entry-content .wp-caption.alignleft {
- margin-left: 0;
- }
-
- .entry-content img.alignright,
- .entry-content .wp-caption.alignright {
- margin-right: 0;
- }
-
- .format-image .entry-content .size-full {
- margin: 0;
- }
-
- /* Remove colors from post formats */
- .hentry {
- background-color: #fff;
- }
-
- /* Comments */
- .comments-area > li.comment {
- background: none;
- position: relative;
- width: auto;
- }
-
- .comment-metadata {
- float: none;
- }
-
- .comment-author .fn,
- .comment-reply-link,
- .comment-reply-login {
- color: #333;
- }
-}
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Tag pages
- *
- * Used to display archive-type pages for posts in a tag.
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
-
- <?php if ( have_posts() ) : ?>
- <header class="archive-header">
- <h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentythirteen' ), single_tag_title( '', false ) ); ?></h1>
-
- <?php if ( tag_description() ) : // Show an optional tag description ?>
- <div class="archive-meta"><?php echo tag_description(); ?></div>
- <?php endif; ?>
- </header><!-- .archive-header -->
-
- <?php /* The loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
-
- <?php twentythirteen_paging_nav(); ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Post Format pages
- *
- * Used to display archive-type pages for posts with a post format.
- * If you'd like to further customize these Post Format views, you may create a
- * new template file for each specific one.
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
-
- <?php if ( have_posts() ) : ?>
- <header class="archive-header">
- <h1 class="archive-title"><?php printf( __( '%s Archives', 'twentythirteen' ), '<span>' . get_post_format_string( get_post_format() ) . '</span>' ); ?></h1>
- </header><!-- .archive-header -->
-
- <?php /* The loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
-
- <?php twentythirteen_paging_nav(); ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying 404 pages (Not Found)
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="site-content">
- <div id="content" role="main">
-
- <article id="post-0" class="post error404 no-results not-found">
- <header class="entry-header">
- <h1 class="entry-title"><?php _e( 'This is somewhat embarrassing, isn’t it?', 'twentytwelve' ); ?></h1>
- </header>
-
- <div class="entry-content">
- <p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'twentytwelve' ); ?></p>
- <?php get_search_form(); ?>
- </div><!-- .entry-content -->
- </article><!-- #post-0 -->
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Archive pages
- *
- * Used to display archive-type pages if nothing more specific matches a query.
- * For example, puts together date-based pages if no date.php file exists.
- *
- * If you'd like to further customize these archive views, you may create a
- * new template file for each specific one. For example, Twenty Twelve already
- * has tag.php for Tag archives, category.php for Category archives, and
- * author.php for Author archives.
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <section id="primary" class="site-content">
- <div id="content" role="main">
-
- <?php if ( have_posts() ) : ?>
- <header class="archive-header">
- <h1 class="archive-title"><?php
- if ( is_day() ) :
- printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' );
- elseif ( is_month() ) :
- printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '</span>' );
- elseif ( is_year() ) :
- printf( __( 'Yearly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentytwelve' ) ) . '</span>' );
- else :
- _e( 'Archives', 'twentytwelve' );
- endif;
- ?></h1>
- </header><!-- .archive-header -->
-
- <?php
- /* Start the Loop */
- while ( have_posts() ) : the_post();
-
- /* Include the post format-specific template for the content. If you want to
- * this in a child theme then include a file called called content-___.php
- * (where ___ is the post format) and that will be used instead.
- */
- get_template_part( 'content', get_post_format() );
-
- endwhile;
-
- twentytwelve_content_nav( 'nav-below' );
- ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </section><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Author Archive pages
- *
- * Used to display archive-type pages for posts by an author.
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <section id="primary" class="site-content">
- <div id="content" role="main">
-
- <?php if ( have_posts() ) : ?>
-
- <?php
- /* Queue the first post, that way we know
- * what author we're dealing with (if that is the case).
- *
- * We reset this later so we can run the loop
- * properly with a call to rewind_posts().
- */
- the_post();
- ?>
-
- <header class="archive-header">
- <h1 class="archive-title"><?php printf( __( 'Author Archives: %s', 'twentytwelve' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( "ID" ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1>
- </header><!-- .archive-header -->
-
- <?php
- /* Since we called the_post() above, we need to
- * rewind the loop back to the beginning that way
- * we can run the loop properly, in full.
- */
- rewind_posts();
- ?>
-
- <?php twentytwelve_content_nav( 'nav-above' ); ?>
-
- <?php
- // If a user has filled out their description, show a bio on their entries.
- if ( get_the_author_meta( 'description' ) ) : ?>
- <div class="author-info">
- <div class="author-avatar">
- <?php
- /**
- * Filter the author bio avatar size.
- *
- * @since Twenty Twelve 1.0
- *
- * @param int $size The height and width of the avatar in pixels.
- */
- $author_bio_avatar_size = apply_filters( 'twentytwelve_author_bio_avatar_size', 68 );
- echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
- ?>
- </div><!-- .author-avatar -->
- <div class="author-description">
- <h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
- <p><?php the_author_meta( 'description' ); ?></p>
- </div><!-- .author-description -->
- </div><!-- .author-info -->
- <?php endif; ?>
-
- <?php /* Start the Loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
-
- <?php twentytwelve_content_nav( 'nav-below' ); ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </section><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Category pages
- *
- * Used to display archive-type pages for posts in a category.
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <section id="primary" class="site-content">
- <div id="content" role="main">
-
- <?php if ( have_posts() ) : ?>
- <header class="archive-header">
- <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?></h1>
-
- <?php if ( category_description() ) : // Show an optional category description ?>
- <div class="archive-meta"><?php echo category_description(); ?></div>
- <?php endif; ?>
- </header><!-- .archive-header -->
-
- <?php
- /* Start the Loop */
- while ( have_posts() ) : the_post();
-
- /* Include the post format-specific template for the content. If you want to
- * this in a child theme then include a file called called content-___.php
- * (where ___ is the post format) and that will be used instead.
- */
- get_template_part( 'content', get_post_format() );
-
- endwhile;
-
- twentytwelve_content_nav( 'nav-below' );
- ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </section><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Comments
- *
- * The area of the page that contains both current comments
- * and the comment form. The actual display of comments is
- * handled by a callback to twentytwelve_comment() which is
- * located in the functions.php file.
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-/*
- * If the current post is protected by a password and
- * the visitor has not yet entered the password we will
- * return early without loading the comments.
- */
-if ( post_password_required() )
- return;
-?>
-
-<div id="comments" class="comments-area">
-
- <?php // You can start editing here -- including this comment! ?>
-
- <?php if ( have_comments() ) : ?>
- <h2 class="comments-title">
- <?php
- printf( _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentytwelve' ),
- number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
- ?>
- </h2>
-
- <ol class="commentlist">
- <?php wp_list_comments( array( 'callback' => 'twentytwelve_comment', 'style' => 'ol' ) ); ?>
- </ol><!-- .commentlist -->
-
- <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
- <nav id="comment-nav-below" class="navigation" role="navigation">
- <h1 class="assistive-text section-heading"><?php _e( 'Comment navigation', 'twentytwelve' ); ?></h1>
- <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'twentytwelve' ) ); ?></div>
- <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentytwelve' ) ); ?></div>
- </nav>
- <?php endif; // check for comment navigation ?>
-
- <?php
- /* If there are no comments and comments are closed, let's leave a note.
- * But we only want the note on posts and pages that had comments in the first place.
- */
- if ( ! comments_open() && get_comments_number() ) : ?>
- <p class="nocomments"><?php _e( 'Comments are closed.' , 'twentytwelve' ); ?></p>
- <?php endif; ?>
-
- <?php endif; // have_comments() ?>
-
- <?php comment_form(); ?>
-
-</div><!-- #comments .comments-area -->
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Aside post format
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?>
-
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="aside">
- <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?>
- </div><!-- .entry-content -->
- </div><!-- .aside -->
-
- <footer class="entry-meta">
- <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
- <?php if ( comments_open() ) : ?>
- <div class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
- </div><!-- .comments-link -->
- <?php endif; // comments_open() ?>
- <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
- </footer><!-- .entry-meta -->
- </article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Image post format
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?>
-
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <a href="<?php the_permalink(); ?>" rel="bookmark">
- <h1><?php the_title(); ?></h1>
- <h2><time class="entry-date" datetime="<?php echo esc_attr( get_the_date( 'c' ) ); ?>"><?php echo get_the_date(); ?></time></h2>
- </a>
- <?php if ( comments_open() ) : ?>
- <div class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
- </div><!-- .comments-link -->
- <?php endif; // comments_open() ?>
- <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
- </footer><!-- .entry-meta -->
- </article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Link post format
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?>
-
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header><?php _e( 'Link', 'twentytwelve' ); ?></header>
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
- <?php if ( comments_open() ) : ?>
- <div class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
- </div><!-- .comments-link -->
- <?php endif; // comments_open() ?>
- <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
- </footer><!-- .entry-meta -->
- </article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying a "No posts found" message
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?>
-
- <article id="post-0" class="post no-results not-found">
- <header class="entry-header">
- <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1>
- </header>
-
- <div class="entry-content">
- <p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
- <?php get_search_form(); ?>
- </div><!-- .entry-content -->
- </article><!-- #post-0 -->
+++ /dev/null
-<?php
-/**
- * The template used for displaying page content in page.php
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?>
-
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php if ( ! is_page_template( 'page-templates/front-page.php' ) ) : ?>
- <?php the_post_thumbnail(); ?>
- <?php endif; ?>
- <h1 class="entry-title"><?php the_title(); ?></h1>
- </header>
-
- <div class="entry-content">
- <?php the_content(); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
- </div><!-- .entry-content -->
- <footer class="entry-meta">
- <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
- </footer><!-- .entry-meta -->
- </article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Quote post format
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?>
-
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
- <?php if ( comments_open() ) : ?>
- <div class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
- </div><!-- .comments-link -->
- <?php endif; // comments_open() ?>
- <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
- </footer><!-- .entry-meta -->
- </article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The template for displaying posts in the Status post format
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?>
-
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-header">
- <header>
- <h1><?php the_author(); ?></h1>
- <h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a></h2>
- </header>
- <?php
- /**
- * Filter the status avatar size.
- *
- * @since Twenty Twelve 1.0
- *
- * @param int $size The height and width of the avatar in pixels.
- */
- $status_avatar = apply_filters( 'twentytwelve_status_avatar', 48 );
- echo get_avatar( get_the_author_meta( 'ID' ), $status_avatar );
- ?>
- </div><!-- .entry-header -->
-
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?>
- </div><!-- .entry-content -->
-
- <footer class="entry-meta">
- <?php if ( comments_open() ) : ?>
- <div class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
- </div><!-- .comments-link -->
- <?php endif; // comments_open() ?>
- <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
- </footer><!-- .entry-meta -->
- </article><!-- #post -->
+++ /dev/null
-<?php
-/**
- * The default template for displaying content
- *
- * Used for both single and index/archive/search.
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?>
-
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
- <div class="featured-post">
- <?php _e( 'Featured post', 'twentytwelve' ); ?>
- </div>
- <?php endif; ?>
- <header class="entry-header">
- <?php if ( ! post_password_required() && ! is_attachment() ) :
- the_post_thumbnail();
- endif; ?>
-
- <?php if ( is_single() ) : ?>
- <h1 class="entry-title"><?php the_title(); ?></h1>
- <?php else : ?>
- <h1 class="entry-title">
- <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
- </h1>
- <?php endif; // is_single() ?>
- <?php if ( comments_open() ) : ?>
- <div class="comments-link">
- <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
- </div><!-- .comments-link -->
- <?php endif; // comments_open() ?>
- </header><!-- .entry-header -->
-
- <?php if ( is_search() ) : // Only display Excerpts for Search ?>
- <div class="entry-summary">
- <?php the_excerpt(); ?>
- </div><!-- .entry-summary -->
- <?php else : ?>
- <div class="entry-content">
- <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
- </div><!-- .entry-content -->
- <?php endif; ?>
-
- <footer class="entry-meta">
- <?php twentytwelve_entry_meta(); ?>
- <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
- <?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries. ?>
- <div class="author-info">
- <div class="author-avatar">
- <?php
- /** This filter is documented in author.php */
- $author_bio_avatar_size = apply_filters( 'twentytwelve_author_bio_avatar_size', 68 );
- echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
- ?>
- </div><!-- .author-avatar -->
- <div class="author-description">
- <h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
- <p><?php the_author_meta( 'description' ); ?></p>
- <div class="author-link">
- <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
- <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentytwelve' ), get_the_author() ); ?>
- </a>
- </div><!-- .author-link -->
- </div><!-- .author-description -->
- </div><!-- .author-info -->
- <?php endif; ?>
- </footer><!-- .entry-meta -->
- </article><!-- #post -->
+++ /dev/null
-/*
-Styles for older IE versions (previous to IE9).
-*/
-
-body {
- background-color: #e6e6e6;
-}
-body.custom-background-empty {
- background-color: #fff;
-}
-body.custom-background-empty .site,
-body.custom-background-white .site {
- box-shadow: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
-}
-.assistive-text,
-.site .screen-reader-text {
- clip: rect(1px 1px 1px 1px); /* IE7 */
-}
-.full-width .site-content {
- float: none;
- width: 100%;
-}
-img.size-full,
-img.size-large,
-img.header-image,
-img.wp-post-image,
-img[class*="align"],
-img[class*="wp-image-"],
-img[class*="attachment-"] {
- width: auto; /* Prevent stretching of full-size and large-size images with height and width attributes in IE8 */
-}
-.author-avatar {
- float: left;
- margin-top: 8px;
- margin-top: 0.571428571rem;
-}
-.author-description {
- float: right;
- width: 80%;
-}
-.site {
- box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
- margin: 48px auto;
- max-width: 960px;
- overflow: hidden;
- padding: 0 40px;
-}
-.site-content {
- float: left;
- width: 65.104166667%;
-}
-body.template-front-page .site-content,
-body.attachment .site-content,
-body.full-width .site-content {
- width: 100%;
-}
-.widget-area {
- float: right;
- width: 26.041666667%;
-}
-.site-header h1,
-.site-header h2 {
- text-align: left;
-}
-.site-header h1 {
- font-size: 26px;
- line-height: 1.846153846;
-}
-.main-navigation ul.nav-menu,
-.main-navigation div.nav-menu > ul {
- border-bottom: 1px solid #ededed;
- border-top: 1px solid #ededed;
- display: inline-block !important;
- text-align: left;
- width: 100%;
-}
-.main-navigation ul {
- margin: 0;
- text-indent: 0;
-}
-.main-navigation li a,
-.main-navigation li {
- display: inline-block;
- text-decoration: none;
-}
-.ie7 .main-navigation li a,
-.ie7 .main-navigation li {
- display: inline;
-}
-.main-navigation li a {
- border-bottom: 0;
- color: #6a6a6a;
- line-height: 3.692307692;
- text-transform: uppercase;
-}
-.main-navigation li a:hover {
- color: #000;
-}
-.main-navigation li {
- margin: 0 40px 0 0;
- position: relative;
-}
-.main-navigation li ul {
- margin: 0;
- padding: 0;
- position: absolute;
- top: 100%;
- z-index: 1;
- height: 1px;
- width: 1px;
- overflow: hidden;
- clip: rect(1px, 1px, 1px, 1px);
-}
-.ie7 .main-navigation li ul {
- clip: inherit;
- display: none;
- left: 0;
- overflow: visible;
-}
-.main-navigation li ul ul,
-.ie7 .main-navigation li ul ul {
- top: 0;
- left: 100%;
-}
-.main-navigation ul li:hover > ul,
-.main-navigation ul li:focus > ul,
-.main-navigation .focus > ul {
- border-left: 0;
- clip: inherit;
- overflow: inherit;
- height: inherit;
- width: inherit;
-}
-.ie7 .main-navigation ul li:hover > ul,
-.ie7 .main-navigation ul li:focus > ul {
- display: block;
-}
-.main-navigation li ul li a {
- background: #efefef;
- border-bottom: 1px solid #ededed;
- display: block;
- font-size: 11px;
- line-height: 2.181818182;
- padding: 8px 10px;
- width: 180px;
-}
-.main-navigation li ul li a:hover {
- background: #e3e3e3;
- color: #444;
-}
-.main-navigation .current-menu-item > a,
-.main-navigation .current-menu-ancestor > a,
-.main-navigation .current_page_item > a,
-.main-navigation .current_page_ancestor > a {
- color: #636363;
- font-weight: bold;
-}
-.menu-toggle {
- display: none;
-}
-.entry-header .entry-title {
- font-size: 22px;
-}
-#respond form input[type="text"] {
- width: 46.333333333%;
-}
-#respond form textarea.blog-textarea {
- width: 79.666666667%;
-}
-.template-front-page .site-content,
-.template-front-page article {
- overflow: hidden;
-}
-.template-front-page.has-post-thumbnail article {
- float: left;
- width: 47.916666667%;
-}
-.entry-page-image {
- float: right;
- margin-bottom: 0;
- width: 47.916666667%;
-}
-.template-front-page .widget-area .widget,
-.template-front-page.two-sidebars .widget-area .front-widgets {
- float: left;
- margin-bottom: 24px;
- width: 51.875%;
-}
-.template-front-page .widget-area .widget:nth-child(odd) {
- clear: right;
-}
-.template-front-page .widget-area .widget:nth-child(even),
-.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
- float: right;
- margin: 0 0 24px;
- width: 39.0625%;
-}
-.template-front-page.two-sidebars .widget,
-.template-front-page.two-sidebars .widget:nth-child(even) {
- float: none;
- width: auto;
-}
-
-/* =RTL overrides for IE7 and IE8
--------------------------------------------------------------- */
-.rtl .site-header h1,
-.rtl .site-header h2 {
- text-align: right;
-}
-.rtl .widget-area,
-.rtl .author-description {
- float: left;
-}
-.rtl .author-avatar,
-.rtl .site-content {
- float: right;
-}
-.rtl .main-navigation ul.nav-menu,
-.rtl .main-navigation div.nav-menu > ul {
- text-align: right;
-}
-.rtl .main-navigation ul li ul li,
-.rtl .main-navigation ul li ul li ul li {
- margin-left: 40px;
- margin-right: auto;
-}
-.rtl .main-navigation li ul ul {
- position: absolute;
- bottom: 0;
- right: 100%;
- z-index: 1;
-}
-.ie7 .rtl .main-navigation li ul ul {
- position: absolute;
- bottom: 0;
- right: 100%;
- z-index: 1;
-}
-.ie7 .rtl .main-navigation ul li {
- z-index: 99;
-}
-.ie7 .rtl .main-navigation li ul {
- position: absolute;
- bottom: 100%;
- right: 0;
- z-index: 1;
-}
-.ie7 .rtl .main-navigation li {
- margin-right: auto;
- margin-left: 40px;
-}
-.ie7 .rtl .main-navigation li ul ul ul {
- position: relative;
- z-index: 1;
-}
\ No newline at end of file
+++ /dev/null
-/*
-Theme Name: Twenty Twelve
-Description: Used to style the TinyMCE editor for RTL languages.
-See also rtl.css file.
-*/
-
-html .mceContentBody {
- direction: rtl;
- unicode-bidi: embed;
-}
-li {
- margin: 0 24px 0 0;
- margin: 0 1.714285714rem 0 0;
-}
-dl {
- margin: 0 24px;
- margin: 0 1.714285714rem;
-}
-tr th {
- text-align: right;
-}
-td {
- padding: 6px 0 6px 10px;
- text-align: right;
-}
-.wp-caption {
- text-align: right;
-}
\ No newline at end of file
+++ /dev/null
-/*
-Theme Name: Twenty Twelve
-Description: Used to style the TinyMCE editor.
-*/
-
-html {
- font-size: 87.5%;
-}
-html .mceContentBody {
- max-width: 625px;
-}
-body {
- color: #444;
- font-family: "Open Sans", Helvetica, Arial, sans-serif;
- font-size: 14px;
- font-size: 1rem;
- line-height: 1;
- text-rendering: optimizeLegibility;
- vertical-align: baseline;
-}
-
-
-/* =Headings
--------------------------------------------------------------- */
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- clear: both;
- line-height: 1.846153846;
- margin: 24px 0;
- margin: 1.714285714rem 0;
-}
-h1 {
- font-size: 21px;
- font-size: 1.5rem;
- line-height: 1.5;
-}
-h2 {
- font-size: 18px;
- font-size: 1.285714286rem;
- line-height: 1.6;
-}
-h3 {
- font-size: 16px;
- font-size: 1.142857143rem;
-}
-h4 {
- font-size: 14px;
- font-size: 1rem;
-}
-h5 {
- font-size: 13px;
- font-size: 0.928571429rem;
-}
-h6 {
- font-size: 12px;
- font-size: 0.857142857rem;
-}
-hr {
- background-color: #ccc;
- border: 0;
- height: 1px;
- margin: 24px;
- margin-bottom: 1.714285714rem;
-}
-
-
-/* =Text elements
--------------------------------------------------------------- */
-
-p {
- line-height: 1.714285714;
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
-}
-ul,
-ol {
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
- line-height: 1.714285714;
- padding: 0;
-}
-ul {
- list-style: disc outside;
-}
-ol {
- list-style: decimal outside;
-}
-ul ul,
-ol ol,
-ul ol,
-ol ul {
- margin-bottom: 0;
-}
-li {
- margin: 0 0 0 24px;
- margin: 0 0 0 1.714285714rem;
-}
-dl {
- margin: 0 24px;
- margin: 0 1.714285714rem;
-}
-dt {
- font-weight: bold;
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-dd {
- line-height: 1.714285714;
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
-}
-strong {
- font-weight: bold;
-}
-cite,
-em,
-i {
- font-style: italic;
-}
-cite {
- border: none;
-}
-big {
- font-size: 128.571429%;
-}
-.mceContentBody blockquote {
- font-style: italic !important;
- font-weight: normal;
- margin: 0;
- padding: 24px;
- padding: 1.714285714rem;
-}
-pre {
- border: 1px solid #ededed;
- color: #666;
- font-family: Consolas, Monaco, Lucida Console, monospace;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 1.714285714;
- margin: 24px 0;
- margin: 1.714285714rem 0;
- overflow: auto;
- padding: 24px;
- padding: 1.714285714rem;
-}
-code,
-kbd,
-samp,
-var {
- font-family: Consolas, Monaco, Lucida Console, monospace;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 2;
-}
-abbr,
-acronym,
-dfn {
- border-bottom: 1px dotted #666;
- cursor: help;
-}
-address {
- display: block;
- line-height: 1.714285714;
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
-}
-del {
- color: #333;
-}
-ins {
- background: #fff9c0;
- border: none;
- color: #333;
- text-decoration: none;
-}
-sup,
-sub {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-sup {
- top: -0.5em;
-}
-sub {
- bottom: -0.25em;
-}
-input[type="text"] {
- border: 1px solid #ccc;
- border-radius: 3px;
- font-family: inherit;
- padding: 6px;
- padding: 0.428571429rem;
-}
-textarea {
- border: 1px solid #d5d2ca;
- border-radius: 3px;
- font-family: inherit;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 1.714285714;
- padding: 10px;
- padding: 0.714285714rem;
- width: 96%;
-}
-
-
-/* =Links
--------------------------------------------------------------- */
-
-a,
-a em,
-a strong {
- color: #21759b;
- outline: none;
-}
-a:focus,
-a:active,
-a:hover {
- color: #0f3647;
-}
-
-
-/* =Alignment
--------------------------------------------------------------- */
-
-.alignleft {
- display: inline;
- float: left;
- margin: 12px 24px 12px 0;
- margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
-}
-.alignright {
- display: inline;
- float: right;
- margin: 12px 0 12px 24px;
- margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
-}
-.aligncenter {
- clear: both;
- display: block;
- margin-top: 12px;
- margin-top: 0.857142857rem;
- margin-bottom: 12px;
- margin-bottom: 0.857142857rem;
-}
-
-
-/* =Tables
--------------------------------------------------------------- */
-
-table {
- border-bottom: 1px solid #ededed;
- border-collapse: collapse;
- border-spacing: 0;
- color: #757575;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 2;
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
- width: 100%;
-}
-tr th {
- color: #636363;
- font-size: 11px;
- font-size: 0.785714286rem;
- font-weight: bold;
- line-height: 2.181818182;
- text-align: left;
- text-transform: uppercase;
-}
-td {
- border-top: 1px solid #ededed !important;
- color: #757575;
- font-size: inherit;
- font-weight: normal;
- padding: 6px 10px 6px 0;
- text-align: left;
-}
-
-
-/* =Images
--------------------------------------------------------------- */
-
-img,
-.editor-attachment {
- border: 0;
- border-radius: 3px;
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
- max-width: 100%;
-}
-img.size-full {
- width: auto/9; /* Prevent stretching of full-size images in IE8 */
-}
-img[class*="wp-image-"] {
- height: auto;
- max-width: 100%;
-}
-img[class*="align"],
-img[class*="wp-image-"],
-img[class*="attachment-"] {
- height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
-}
-img.mce-wp-nextpage {
- border-radius: 0;
- box-shadow: none;
-}
-img.wp-smiley {
- border: 0;
- border-radius: 0;
- box-shadow: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
-}
-.wp-caption {
- background: transparent;
- border: none;
- margin: 0;
- padding: 4px;
- text-align: left;
-}
-.wp-caption-dt {
- margin: 0;
-}
-.wp-caption .wp-caption-text,
-.wp-caption-dd {
- color: #757575;
- font-style: italic;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 2;
- margin: 0 0 24px;
- margin: 0 0 1.71429rem;
-}
+++ /dev/null
-<?php
-/**
- * The template for displaying the footer
- *
- * Contains footer content and the closing of the #main and #page div elements.
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?>
- </div><!-- #main .wrapper -->
- <footer id="colophon" role="contentinfo">
- <div class="site-info">
- <?php do_action( 'twentytwelve_credits' ); ?>
- <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a>
- </div><!-- .site-info -->
- </footer><!-- #colophon -->
-</div><!-- #page -->
-
-<?php wp_footer(); ?>
-</body>
-</html>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * Twenty Twelve functions and definitions
- *
- * Sets up the theme and provides some helper functions, which are used
- * in the theme as custom template tags. Others are attached to action and
- * filter hooks in WordPress to change core functionality.
- *
- * When using a child theme (see http://codex.wordpress.org/Theme_Development and
- * http://codex.wordpress.org/Child_Themes), you can override certain functions
- * (those wrapped in a function_exists() call) by defining them first in your child theme's
- * functions.php file. The child theme's functions.php file is included before the parent
- * theme's file, so the child theme functions would be used.
- *
- * Functions that are not pluggable (not wrapped in function_exists()) are instead attached
- * to a filter or action hook.
- *
- * For more information on hooks, actions, and filters, @link http://codex.wordpress.org/Plugin_API
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-// Set up the content width value based on the theme's design and stylesheet.
-if ( ! isset( $content_width ) )
- $content_width = 625;
-
-/**
- * Twenty Twelve setup.
- *
- * Sets up theme defaults and registers the various WordPress features that
- * Twenty Twelve supports.
- *
- * @uses load_theme_textdomain() For translation/localization support.
- * @uses add_editor_style() To add a Visual Editor stylesheet.
- * @uses add_theme_support() To add support for post thumbnails, automatic feed links,
- * custom background, and post formats.
- * @uses register_nav_menu() To add support for navigation menus.
- * @uses set_post_thumbnail_size() To set a custom post thumbnail size.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_setup() {
- /*
- * Makes Twenty Twelve available for translation.
- *
- * Translations can be added to the /languages/ directory.
- * If you're building a theme based on Twenty Twelve, use a find and replace
- * to change 'twentytwelve' to the name of your theme in all the template files.
- */
- load_theme_textdomain( 'twentytwelve', get_template_directory() . '/languages' );
-
- // This theme styles the visual editor with editor-style.css to match the theme style.
- add_editor_style();
-
- // Adds RSS feed links to <head> for posts and comments.
- add_theme_support( 'automatic-feed-links' );
-
- // This theme supports a variety of post formats.
- add_theme_support( 'post-formats', array( 'aside', 'image', 'link', 'quote', 'status' ) );
-
- // This theme uses wp_nav_menu() in one location.
- register_nav_menu( 'primary', __( 'Primary Menu', 'twentytwelve' ) );
-
- /*
- * This theme supports custom background color and image,
- * and here we also set up the default background color.
- */
- add_theme_support( 'custom-background', array(
- 'default-color' => 'e6e6e6',
- ) );
-
- // This theme uses a custom image size for featured images, displayed on "standard" posts.
- add_theme_support( 'post-thumbnails' );
- set_post_thumbnail_size( 624, 9999 ); // Unlimited height, soft crop
-}
-add_action( 'after_setup_theme', 'twentytwelve_setup' );
-
-/**
- * Add support for a custom header image.
- */
-require( get_template_directory() . '/inc/custom-header.php' );
-
-/**
- * Return the Google font stylesheet URL if available.
- *
- * The use of Open Sans by default is localized. For languages that use
- * characters not supported by the font, the font can be disabled.
- *
- * @since Twenty Twelve 1.2
- *
- * @return string Font stylesheet or empty string if disabled.
- */
-function twentytwelve_get_font_url() {
- $font_url = '';
-
- /* translators: If there are characters in your language that are not supported
- * by Open Sans, translate this to 'off'. Do not translate into your own language.
- */
- if ( 'off' !== _x( 'on', 'Open Sans font: on or off', 'twentytwelve' ) ) {
- $subsets = 'latin,latin-ext';
-
- /* translators: To add an additional Open Sans character subset specific to your language,
- * translate this to 'greek', 'cyrillic' or 'vietnamese'. Do not translate into your own language.
- */
- $subset = _x( 'no-subset', 'Open Sans font: add new subset (greek, cyrillic, vietnamese)', 'twentytwelve' );
-
- if ( 'cyrillic' == $subset )
- $subsets .= ',cyrillic,cyrillic-ext';
- elseif ( 'greek' == $subset )
- $subsets .= ',greek,greek-ext';
- elseif ( 'vietnamese' == $subset )
- $subsets .= ',vietnamese';
-
- $protocol = is_ssl() ? 'https' : 'http';
- $query_args = array(
- 'family' => 'Open+Sans:400italic,700italic,400,700',
- 'subset' => $subsets,
- );
- $font_url = add_query_arg( $query_args, "$protocol://fonts.googleapis.com/css" );
- }
-
- return $font_url;
-}
-
-/**
- * Enqueue scripts and styles for front-end.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_scripts_styles() {
- global $wp_styles;
-
- /*
- * Adds JavaScript to pages with the comment form to support
- * sites with threaded comments (when in use).
- */
- if ( is_singular() && comments_open() && get_option( 'thread_comments' ) )
- wp_enqueue_script( 'comment-reply' );
-
- // Adds JavaScript for handling the navigation menu hide-and-show behavior.
- wp_enqueue_script( 'twentytwelve-navigation', get_template_directory_uri() . '/js/navigation.js', array( 'jquery' ), '20140318', true );
-
- $font_url = twentytwelve_get_font_url();
- if ( ! empty( $font_url ) )
- wp_enqueue_style( 'twentytwelve-fonts', esc_url_raw( $font_url ), array(), null );
-
- // Loads our main stylesheet.
- wp_enqueue_style( 'twentytwelve-style', get_stylesheet_uri() );
-
- // Loads the Internet Explorer specific stylesheet.
- wp_enqueue_style( 'twentytwelve-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentytwelve-style' ), '20121010' );
- $wp_styles->add_data( 'twentytwelve-ie', 'conditional', 'lt IE 9' );
-}
-add_action( 'wp_enqueue_scripts', 'twentytwelve_scripts_styles' );
-
-/**
- * Filter TinyMCE CSS path to include Google Fonts.
- *
- * Adds additional stylesheets to the TinyMCE editor if needed.
- *
- * @uses twentytwelve_get_font_url() To get the Google Font stylesheet URL.
- *
- * @since Twenty Twelve 1.2
- *
- * @param string $mce_css CSS path to load in TinyMCE.
- * @return string Filtered CSS path.
- */
-function twentytwelve_mce_css( $mce_css ) {
- $font_url = twentytwelve_get_font_url();
-
- if ( empty( $font_url ) )
- return $mce_css;
-
- if ( ! empty( $mce_css ) )
- $mce_css .= ',';
-
- $mce_css .= esc_url_raw( str_replace( ',', '%2C', $font_url ) );
-
- return $mce_css;
-}
-add_filter( 'mce_css', 'twentytwelve_mce_css' );
-
-/**
- * Filter the page title.
- *
- * Creates a nicely formatted and more specific title element text
- * for output in head of document, based on current view.
- *
- * @since Twenty Twelve 1.0
- *
- * @param string $title Default title text for current view.
- * @param string $sep Optional separator.
- * @return string Filtered title.
- */
-function twentytwelve_wp_title( $title, $sep ) {
- global $paged, $page;
-
- if ( is_feed() )
- return $title;
-
- // Add the site name.
- $title .= get_bloginfo( 'name', 'display' );
-
- // Add the site description for the home/front page.
- $site_description = get_bloginfo( 'description', 'display' );
- if ( $site_description && ( is_home() || is_front_page() ) )
- $title = "$title $sep $site_description";
-
- // Add a page number if necessary.
- if ( $paged >= 2 || $page >= 2 )
- $title = "$title $sep " . sprintf( __( 'Page %s', 'twentytwelve' ), max( $paged, $page ) );
-
- return $title;
-}
-add_filter( 'wp_title', 'twentytwelve_wp_title', 10, 2 );
-
-/**
- * Filter the page menu arguments.
- *
- * Makes our wp_nav_menu() fallback -- wp_page_menu() -- show a home link.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_page_menu_args( $args ) {
- if ( ! isset( $args['show_home'] ) )
- $args['show_home'] = true;
- return $args;
-}
-add_filter( 'wp_page_menu_args', 'twentytwelve_page_menu_args' );
-
-/**
- * Register sidebars.
- *
- * Registers our main widget area and the front page widget areas.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_widgets_init() {
- register_sidebar( array(
- 'name' => __( 'Main Sidebar', 'twentytwelve' ),
- 'id' => 'sidebar-1',
- 'description' => __( 'Appears on posts and pages except the optional Front Page template, which has its own widgets', 'twentytwelve' ),
- 'before_widget' => '<aside id="%1$s" class="widget %2$s">',
- 'after_widget' => '</aside>',
- 'before_title' => '<h3 class="widget-title">',
- 'after_title' => '</h3>',
- ) );
-
- register_sidebar( array(
- 'name' => __( 'First Front Page Widget Area', 'twentytwelve' ),
- 'id' => 'sidebar-2',
- 'description' => __( 'Appears when using the optional Front Page template with a page set as Static Front Page', 'twentytwelve' ),
- 'before_widget' => '<aside id="%1$s" class="widget %2$s">',
- 'after_widget' => '</aside>',
- 'before_title' => '<h3 class="widget-title">',
- 'after_title' => '</h3>',
- ) );
-
- register_sidebar( array(
- 'name' => __( 'Second Front Page Widget Area', 'twentytwelve' ),
- 'id' => 'sidebar-3',
- 'description' => __( 'Appears when using the optional Front Page template with a page set as Static Front Page', 'twentytwelve' ),
- 'before_widget' => '<aside id="%1$s" class="widget %2$s">',
- 'after_widget' => '</aside>',
- 'before_title' => '<h3 class="widget-title">',
- 'after_title' => '</h3>',
- ) );
-}
-add_action( 'widgets_init', 'twentytwelve_widgets_init' );
-
-if ( ! function_exists( 'twentytwelve_content_nav' ) ) :
-/**
- * Displays navigation to next/previous pages when applicable.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_content_nav( $html_id ) {
- global $wp_query;
-
- $html_id = esc_attr( $html_id );
-
- if ( $wp_query->max_num_pages > 1 ) : ?>
- <nav id="<?php echo $html_id; ?>" class="navigation" role="navigation">
- <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>
- <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentytwelve' ) ); ?></div>
- <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?></div>
- </nav><!-- #<?php echo $html_id; ?> .navigation -->
- <?php endif;
-}
-endif;
-
-if ( ! function_exists( 'twentytwelve_comment' ) ) :
-/**
- * Template for comments and pingbacks.
- *
- * To override this walker in a child theme without modifying the comments template
- * simply create your own twentytwelve_comment(), and that function will be used instead.
- *
- * Used as a callback by wp_list_comments() for displaying the comments.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_comment( $comment, $args, $depth ) {
- $GLOBALS['comment'] = $comment;
- switch ( $comment->comment_type ) :
- case 'pingback' :
- case 'trackback' :
- // Display trackbacks differently than normal comments.
- ?>
- <li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>">
- <p><?php _e( 'Pingback:', 'twentytwelve' ); ?> <?php comment_author_link(); ?> <?php edit_comment_link( __( '(Edit)', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?></p>
- <?php
- break;
- default :
- // Proceed with normal comments.
- global $post;
- ?>
- <li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
- <article id="comment-<?php comment_ID(); ?>" class="comment">
- <header class="comment-meta comment-author vcard">
- <?php
- echo get_avatar( $comment, 44 );
- printf( '<cite><b class="fn">%1$s</b> %2$s</cite>',
- get_comment_author_link(),
- // If current post author is also comment author, make it known visually.
- ( $comment->user_id === $post->post_author ) ? '<span>' . __( 'Post author', 'twentytwelve' ) . '</span>' : ''
- );
- printf( '<a href="%1$s"><time datetime="%2$s">%3$s</time></a>',
- esc_url( get_comment_link( $comment->comment_ID ) ),
- get_comment_time( 'c' ),
- /* translators: 1: date, 2: time */
- sprintf( __( '%1$s at %2$s', 'twentytwelve' ), get_comment_date(), get_comment_time() )
- );
- ?>
- </header><!-- .comment-meta -->
-
- <?php if ( '0' == $comment->comment_approved ) : ?>
- <p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentytwelve' ); ?></p>
- <?php endif; ?>
-
- <section class="comment-content comment">
- <?php comment_text(); ?>
- <?php edit_comment_link( __( 'Edit', 'twentytwelve' ), '<p class="edit-link">', '</p>' ); ?>
- </section><!-- .comment-content -->
-
- <div class="reply">
- <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply', 'twentytwelve' ), 'after' => ' <span>↓</span>', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
- </div><!-- .reply -->
- </article><!-- #comment-## -->
- <?php
- break;
- endswitch; // end comment_type check
-}
-endif;
-
-if ( ! function_exists( 'twentytwelve_entry_meta' ) ) :
-/**
- * Set up post entry meta.
- *
- * Prints HTML with meta information for current post: categories, tags, permalink, author, and date.
- *
- * Create your own twentytwelve_entry_meta() to override in a child theme.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_entry_meta() {
- // Translators: used between list items, there is a space after the comma.
- $categories_list = get_the_category_list( __( ', ', 'twentytwelve' ) );
-
- // Translators: used between list items, there is a space after the comma.
- $tag_list = get_the_tag_list( '', __( ', ', 'twentytwelve' ) );
-
- $date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>',
- esc_url( get_permalink() ),
- esc_attr( get_the_time() ),
- esc_attr( get_the_date( 'c' ) ),
- esc_html( get_the_date() )
- );
-
- $author = sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
- esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
- esc_attr( sprintf( __( 'View all posts by %s', 'twentytwelve' ), get_the_author() ) ),
- get_the_author()
- );
-
- // Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
- if ( $tag_list ) {
- $utility_text = __( 'This entry was posted in %1$s and tagged %2$s on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' );
- } elseif ( $categories_list ) {
- $utility_text = __( 'This entry was posted in %1$s on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' );
- } else {
- $utility_text = __( 'This entry was posted on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' );
- }
-
- printf(
- $utility_text,
- $categories_list,
- $tag_list,
- $date,
- $author
- );
-}
-endif;
-
-/**
- * Extend the default WordPress body classes.
- *
- * Extends the default WordPress body class to denote:
- * 1. Using a full-width layout, when no active widgets in the sidebar
- * or full-width template.
- * 2. Front Page template: thumbnail in use and number of sidebars for
- * widget areas.
- * 3. White or empty background color to change the layout and spacing.
- * 4. Custom fonts enabled.
- * 5. Single or multiple authors.
- *
- * @since Twenty Twelve 1.0
- *
- * @param array $classes Existing class values.
- * @return array Filtered class values.
- */
-function twentytwelve_body_class( $classes ) {
- $background_color = get_background_color();
- $background_image = get_background_image();
-
- if ( ! is_active_sidebar( 'sidebar-1' ) || is_page_template( 'page-templates/full-width.php' ) )
- $classes[] = 'full-width';
-
- if ( is_page_template( 'page-templates/front-page.php' ) ) {
- $classes[] = 'template-front-page';
- if ( has_post_thumbnail() )
- $classes[] = 'has-post-thumbnail';
- if ( is_active_sidebar( 'sidebar-2' ) && is_active_sidebar( 'sidebar-3' ) )
- $classes[] = 'two-sidebars';
- }
-
- if ( empty( $background_image ) ) {
- if ( empty( $background_color ) )
- $classes[] = 'custom-background-empty';
- elseif ( in_array( $background_color, array( 'fff', 'ffffff' ) ) )
- $classes[] = 'custom-background-white';
- }
-
- // Enable custom font class only if the font CSS is queued to load.
- if ( wp_style_is( 'twentytwelve-fonts', 'queue' ) )
- $classes[] = 'custom-font-enabled';
-
- if ( ! is_multi_author() )
- $classes[] = 'single-author';
-
- return $classes;
-}
-add_filter( 'body_class', 'twentytwelve_body_class' );
-
-/**
- * Adjust content width in certain contexts.
- *
- * Adjusts content_width value for full-width and single image attachment
- * templates, and when there are no active widgets in the sidebar.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_content_width() {
- if ( is_page_template( 'page-templates/full-width.php' ) || is_attachment() || ! is_active_sidebar( 'sidebar-1' ) ) {
- global $content_width;
- $content_width = 960;
- }
-}
-add_action( 'template_redirect', 'twentytwelve_content_width' );
-
-/**
- * Register postMessage support.
- *
- * Add postMessage support for site title and description for the Customizer.
- *
- * @since Twenty Twelve 1.0
- *
- * @param WP_Customize_Manager $wp_customize Customizer object.
- */
-function twentytwelve_customize_register( $wp_customize ) {
- $wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
- $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
- $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
-}
-add_action( 'customize_register', 'twentytwelve_customize_register' );
-
-/**
- * Enqueue Javascript postMessage handlers for the Customizer.
- *
- * Binds JS handlers to make the Customizer preview reload changes asynchronously.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_customize_preview_js() {
- wp_enqueue_script( 'twentytwelve-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20130301', true );
-}
-add_action( 'customize_preview_init', 'twentytwelve_customize_preview_js' );
+++ /dev/null
-<?php
-/**
- * The Header template for our theme
- *
- * Displays all of the <head> section and everything up till <div id="main">
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?><!DOCTYPE html>
-<!--[if IE 7]>
-<html class="ie ie7" <?php language_attributes(); ?>>
-<![endif]-->
-<!--[if IE 8]>
-<html class="ie ie8" <?php language_attributes(); ?>>
-<![endif]-->
-<!--[if !(IE 7) | !(IE 8) ]><!-->
-<html <?php language_attributes(); ?>>
-<!--<![endif]-->
-<head>
-<meta charset="<?php bloginfo( 'charset' ); ?>" />
-<meta name="viewport" content="width=device-width" />
-<title><?php wp_title( '|', true, 'right' ); ?></title>
-<link rel="profile" href="http://gmpg.org/xfn/11" />
-<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
-<?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?>
-<!--[if lt IE 9]>
-<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
-<![endif]-->
-<?php wp_head(); ?>
-</head>
-
-<body <?php body_class(); ?>>
-<div id="page" class="hfeed site">
- <header id="masthead" class="site-header" role="banner">
- <hgroup>
- <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
- <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
- </hgroup>
-
- <nav id="site-navigation" class="main-navigation" role="navigation">
- <h3 class="menu-toggle"><?php _e( 'Menu', 'twentytwelve' ); ?></h3>
- <a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?>"><?php _e( 'Skip to content', 'twentytwelve' ); ?></a>
- <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
- </nav><!-- #site-navigation -->
-
- <?php if ( get_header_image() ) : ?>
- <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php header_image(); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a>
- <?php endif; ?>
- </header><!-- #masthead -->
-
- <div id="main" class="wrapper">
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying image attachments
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="site-content">
- <div id="content" role="main">
-
- <?php while ( have_posts() ) : the_post(); ?>
-
- <article id="post-<?php the_ID(); ?>" <?php post_class( 'image-attachment' ); ?>>
- <header class="entry-header">
- <h1 class="entry-title"><?php the_title(); ?></h1>
-
- <footer class="entry-meta">
- <?php
- $metadata = wp_get_attachment_metadata();
- printf( __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s × %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>.', 'twentytwelve' ),
- esc_attr( get_the_date( 'c' ) ),
- esc_html( get_the_date() ),
- esc_url( wp_get_attachment_url() ),
- $metadata['width'],
- $metadata['height'],
- esc_url( get_permalink( $post->post_parent ) ),
- esc_attr( strip_tags( get_the_title( $post->post_parent ) ) ),
- get_the_title( $post->post_parent )
- );
- ?>
- <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
- </footer><!-- .entry-meta -->
-
- <nav id="image-navigation" class="navigation" role="navigation">
- <span class="previous-image"><?php previous_image_link( false, __( '← Previous', 'twentytwelve' ) ); ?></span>
- <span class="next-image"><?php next_image_link( false, __( 'Next →', 'twentytwelve' ) ); ?></span>
- </nav><!-- #image-navigation -->
- </header><!-- .entry-header -->
-
- <div class="entry-content">
-
- <div class="entry-attachment">
- <div class="attachment">
-<?php
-/*
- * Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery,
- * or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file
- */
-$attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) );
-foreach ( $attachments as $k => $attachment ) :
- if ( $attachment->ID == $post->ID )
- break;
-endforeach;
-
-$k++;
-// If there is more than 1 attachment in a gallery
-if ( count( $attachments ) > 1 ) :
- if ( isset( $attachments[ $k ] ) ) :
- // get the URL of the next image attachment
- $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
- else :
- // or get the URL of the first image attachment
- $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );
- endif;
-else :
- // or, if there's only 1 image, get the URL of the image
- $next_attachment_url = wp_get_attachment_url();
-endif;
-?>
- <a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php
- /**
- * Filter the image attachment size to use.
- *
- * @since Twenty Twelve 1.0
- *
- * @param array $size {
- * @type int The attachment height in pixels.
- * @type int The attachment width in pixels.
- * }
- */
- $attachment_size = apply_filters( 'twentytwelve_attachment_size', array( 960, 960 ) );
- echo wp_get_attachment_image( $post->ID, $attachment_size );
- ?></a>
-
- <?php if ( ! empty( $post->post_excerpt ) ) : ?>
- <div class="entry-caption">
- <?php the_excerpt(); ?>
- </div>
- <?php endif; ?>
- </div><!-- .attachment -->
-
- </div><!-- .entry-attachment -->
-
- <div class="entry-description">
- <?php the_content(); ?>
- <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
- </div><!-- .entry-description -->
-
- </div><!-- .entry-content -->
-
- </article><!-- #post -->
-
- <?php comments_template(); ?>
-
- <?php endwhile; // end of the loop. ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * Implement an optional custom header for Twenty Twelve
- *
- * See http://codex.wordpress.org/Custom_Headers
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-/**
- * Set up the WordPress core custom header arguments and settings.
- *
- * @uses add_theme_support() to register support for 3.4 and up.
- * @uses twentytwelve_header_style() to style front-end.
- * @uses twentytwelve_admin_header_style() to style wp-admin form.
- * @uses twentytwelve_admin_header_image() to add custom markup to wp-admin form.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_custom_header_setup() {
- $args = array(
- // Text color and image (empty to use none).
- 'default-text-color' => '515151',
- 'default-image' => '',
-
- // Set height and width, with a maximum value for the width.
- 'height' => 250,
- 'width' => 960,
- 'max-width' => 2000,
-
- // Support flexible height and width.
- 'flex-height' => true,
- 'flex-width' => true,
-
- // Random image rotation off by default.
- 'random-default' => false,
-
- // Callbacks for styling the header and the admin preview.
- 'wp-head-callback' => 'twentytwelve_header_style',
- 'admin-head-callback' => 'twentytwelve_admin_header_style',
- 'admin-preview-callback' => 'twentytwelve_admin_header_image',
- );
-
- add_theme_support( 'custom-header', $args );
-}
-add_action( 'after_setup_theme', 'twentytwelve_custom_header_setup' );
-
-/**
- * Load our special font CSS file.
- *
- * @since Twenty Twelve 1.2
- */
-function twentytwelve_custom_header_fonts() {
- $font_url = twentytwelve_get_font_url();
- if ( ! empty( $font_url ) )
- wp_enqueue_style( 'twentytwelve-fonts', esc_url_raw( $font_url ), array(), null );
-}
-add_action( 'admin_print_styles-appearance_page_custom-header', 'twentytwelve_custom_header_fonts' );
-
-/**
- * Style the header text displayed on the blog.
- *
- * get_header_textcolor() options: 515151 is default, hide text (returns 'blank'), or any hex value.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_header_style() {
- $text_color = get_header_textcolor();
-
- // If no custom options for text are set, let's bail
- if ( $text_color == get_theme_support( 'custom-header', 'default-text-color' ) )
- return;
-
- // If we get this far, we have custom styles.
- ?>
- <style type="text/css" id="twentytwelve-header-css">
- <?php
- // Has the text been hidden?
- if ( ! display_header_text() ) :
- ?>
- .site-title,
- .site-description {
- position: absolute;
- clip: rect(1px 1px 1px 1px); /* IE7 */
- clip: rect(1px, 1px, 1px, 1px);
- }
- <?php
- // If the user has set a custom color for the text, use that.
- else :
- ?>
- .site-header h1 a,
- .site-header h2 {
- color: #<?php echo $text_color; ?>;
- }
- <?php endif; ?>
- </style>
- <?php
-}
-
-/**
- * Style the header image displayed on the Appearance > Header admin panel.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_admin_header_style() {
-?>
- <style type="text/css" id="twentytwelve-admin-header-css">
- .appearance_page_custom-header #headimg {
- border: none;
- font-family: "Open Sans", Helvetica, Arial, sans-serif;
- }
- #headimg h1,
- #headimg h2 {
- line-height: 1.84615;
- margin: 0;
- padding: 0;
- }
- #headimg h1 {
- font-size: 26px;
- }
- #headimg h1 a {
- color: #515151;
- text-decoration: none;
- }
- #headimg h1 a:hover {
- color: #21759b !important; /* Has to override custom inline style. */
- }
- #headimg h2 {
- color: #757575;
- font-size: 13px;
- margin-bottom: 24px;
- }
- #headimg img {
- max-width: <?php echo get_theme_support( 'custom-header', 'max-width' ); ?>px;
- }
- </style>
-<?php
-}
-
-/**
- * Output markup to be displayed on the Appearance > Header admin panel.
- *
- * This callback overrides the default markup displayed there.
- *
- * @since Twenty Twelve 1.0
- */
-function twentytwelve_admin_header_image() {
- ?>
- <div id="headimg">
- <?php
- if ( ! display_header_text() )
- $style = ' style="display:none;"';
- else
- $style = ' style="color:#' . get_header_textcolor() . ';"';
- ?>
- <h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
- <h2 id="desc" class="displaying-header-text"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></h2>
- <?php $header_image = get_header_image();
- if ( ! empty( $header_image ) ) : ?>
- <img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
- <?php endif; ?>
- </div>
-<?php }
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The main template file
- *
- * This is the most generic template file in a WordPress theme
- * and one of the two required files for a theme (the other being style.css).
- * It is used to display a page when nothing more specific matches a query.
- * For example, it puts together the home page when no home.php file exists.
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="site-content">
- <div id="content" role="main">
- <?php if ( have_posts() ) : ?>
-
- <?php /* Start the Loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
-
- <?php twentytwelve_content_nav( 'nav-below' ); ?>
-
- <?php else : ?>
-
- <article id="post-0" class="post no-results not-found">
-
- <?php if ( current_user_can( 'edit_posts' ) ) :
- // Show a different message to a logged-in user who can add posts.
- ?>
- <header class="entry-header">
- <h1 class="entry-title"><?php _e( 'No posts to display', 'twentytwelve' ); ?></h1>
- </header>
-
- <div class="entry-content">
- <p><?php printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentytwelve' ), admin_url( 'post-new.php' ) ); ?></p>
- </div><!-- .entry-content -->
-
- <?php else :
- // Show the default message to everyone else.
- ?>
- <header class="entry-header">
- <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1>
- </header>
-
- <div class="entry-content">
- <p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
- <?php get_search_form(); ?>
- </div><!-- .entry-content -->
- <?php endif; // end current_user_can() check ?>
-
- </article><!-- #post-0 -->
-
- <?php endif; // end have_posts() check ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-/*
- HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
-*/
-(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
-a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}</style>";
-c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
-"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
-if(g)return a.createDocumentFragment();for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document);
\ No newline at end of file
+++ /dev/null
-/**
- * Handles toggling the navigation menu for small screens and
- * accessibility for submenu items.
- */
-( function() {
- var nav = document.getElementById( 'site-navigation' ), button, menu;
- if ( ! nav ) {
- return;
- }
-
- button = nav.getElementsByTagName( 'h3' )[0];
- menu = nav.getElementsByTagName( 'ul' )[0];
- if ( ! button ) {
- return;
- }
-
- // Hide button if menu is missing or empty.
- if ( ! menu || ! menu.childNodes.length ) {
- button.style.display = 'none';
- return;
- }
-
- button.onclick = function() {
- if ( -1 === menu.className.indexOf( 'nav-menu' ) ) {
- menu.className = 'nav-menu';
- }
-
- if ( -1 !== button.className.indexOf( 'toggled-on' ) ) {
- button.className = button.className.replace( ' toggled-on', '' );
- menu.className = menu.className.replace( ' toggled-on', '' );
- } else {
- button.className += ' toggled-on';
- menu.className += ' toggled-on';
- }
- };
-} )();
-
-// Better focus for hidden submenu items for accessibility.
-( function( $ ) {
- $( '.main-navigation' ).find( 'a' ).on( 'focus.twentytwelve blur.twentytwelve', function() {
- $( this ).parents( '.menu-item, .page_item' ).toggleClass( 'focus' );
- } );
-} )( jQuery );
+++ /dev/null
-/**
- * Theme Customizer enhancements for a better user experience.
- *
- * Contains handlers to make Theme Customizer preview reload changes asynchronously.
- * Things like site title, description, and background color changes.
- */
-
-( function( $ ) {
- // Site title and description.
- wp.customize( 'blogname', function( value ) {
- value.bind( function( to ) {
- $( '.site-title a' ).text( to );
- } );
- } );
- wp.customize( 'blogdescription', function( value ) {
- value.bind( function( to ) {
- $( '.site-description' ).text( to );
- } );
- } );
-
- // Header text color
- wp.customize( 'header_textcolor', function( value ) {
- value.bind( function( to ) {
- if ( 'blank' === to ) {
- $( '.site-title, .site-title a, .site-description' ).css( {
- 'clip': 'rect(1px, 1px, 1px, 1px)',
- 'position': 'absolute'
- } );
- } else {
- $( '.site-title, .site-title a, .site-description' ).css( {
- 'clip': 'auto',
- 'color': to,
- 'position': 'relative'
- } );
- }
- } );
- } );
-
- // Hook into background color/image change and adjust body class value as needed.
- wp.customize( 'background_color', function( value ) {
- value.bind( function( to ) {
- var body = $( 'body' );
-
- if ( ( '#ffffff' == to || '#fff' == to ) && 'none' == body.css( 'background-image' ) )
- body.addClass( 'custom-background-white' );
- else if ( '' == to && 'none' == body.css( 'background-image' ) )
- body.addClass( 'custom-background-empty' );
- else
- body.removeClass( 'custom-background-empty custom-background-white' );
- } );
- } );
- wp.customize( 'background_image', function( value ) {
- value.bind( function( to ) {
- var body = $( 'body' );
-
- if ( '' != to )
- body.removeClass( 'custom-background-empty custom-background-white' );
- else if ( 'rgb(255, 255, 255)' == body.css( 'background-color' ) )
- body.addClass( 'custom-background-white' );
- else if ( 'rgb(230, 230, 230)' == body.css( 'background-color' ) && '' == _wpCustomizeSettings.values.background_color )
- body.addClass( 'custom-background-empty' );
- } );
- } );
-} )( jQuery );
+++ /dev/null
-# Copyright (C) 2014 the WordPress team
-# This file is distributed under the GNU General Public License v2 or later.
-msgid ""
-msgstr ""
-"Project-Id-Version: Twenty Twelve 1.4\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tags/twentytwelve\n"
-"POT-Creation-Date: 2014-04-16 18:27:55+00:00\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-
-#: 404.php:17
-msgid "This is somewhat embarrassing, isn’t it?"
-msgstr ""
-
-#: 404.php:21
-msgid ""
-"It seems we can’t find what you’re looking for. Perhaps "
-"searching can help."
-msgstr ""
-
-#: archive.php:29
-msgid "Daily Archives: %s"
-msgstr ""
-
-#: archive.php:31
-msgid "Monthly Archives: %s"
-msgstr ""
-
-#: archive.php:31
-msgctxt "monthly archives date format"
-msgid "F Y"
-msgstr ""
-
-#: archive.php:33
-msgid "Yearly Archives: %s"
-msgstr ""
-
-#: archive.php:33
-msgctxt "yearly archives date format"
-msgid "Y"
-msgstr ""
-
-#: archive.php:35
-msgid "Archives"
-msgstr ""
-
-#: author.php:32
-msgid "Author Archives: %s"
-msgstr ""
-
-#: author.php:63 content.php:62
-msgid "About %s"
-msgstr ""
-
-#: category.php:21
-msgid "Category Archives: %s"
-msgstr ""
-
-#: comments.php:31
-msgid "One thought on “%2$s”"
-msgid_plural "%1$s thoughts on “%2$s”"
-msgstr[0] ""
-msgstr[1] ""
-
-#: comments.php:42
-msgid "Comment navigation"
-msgstr ""
-
-#: comments.php:43
-msgid "← Older Comments"
-msgstr ""
-
-#: comments.php:44
-msgid "Newer Comments →"
-msgstr ""
-
-#: comments.php:53
-msgid "Comments are closed."
-msgstr ""
-
-#: content-aside.php:15 content-image.php:13 content-link.php:14
-#: content-quote.php:13 content-status.php:31 content.php:44
-msgid "Continue reading <span class=\"meta-nav\">→</span>"
-msgstr ""
-
-#: content-aside.php:20 content-link.php:18 content-quote.php:17
-#: content-status.php:15
-msgid "Permalink to %s"
-msgstr ""
-
-#: content-aside.php:23 content-image.php:23 content-link.php:21
-#: content-quote.php:20 content-status.php:37 content.php:33
-msgid "Leave a reply"
-msgstr ""
-
-#: content-aside.php:23 content-image.php:23 content-link.php:21
-#: content-quote.php:20 content-status.php:37 content.php:33
-msgid "1 Reply"
-msgstr ""
-
-#: content-aside.php:23 content-image.php:23 content-link.php:21
-#: content-quote.php:20 content-status.php:37 content.php:33
-msgid "% Replies"
-msgstr ""
-
-#: content-aside.php:26 content-image.php:26 content-link.php:24
-#: content-page.php:24 content-quote.php:23 content-status.php:40
-#: content.php:51 functions.php:345 image.php:37
-msgid "Edit"
-msgstr ""
-
-#: content-link.php:12
-msgid "Link"
-msgstr ""
-
-#: content-none.php:13 index.php:49 search.php:34
-msgid "Nothing Found"
-msgstr ""
-
-#: content-none.php:17 index.php:53
-msgid ""
-"Apologies, but no results were found. Perhaps searching will help find a "
-"related post."
-msgstr ""
-
-#: content-page.php:21 content.php:45 image.php:102
-msgid "Pages:"
-msgstr ""
-
-#: content.php:16
-msgid "Featured post"
-msgstr ""
-
-#: content.php:66
-msgid "View all posts by %s <span class=\"meta-nav\">→</span>"
-msgstr ""
-
-#. #-#-#-#-# twentytwelve.pot (Twenty Twelve 1.3) #-#-#-#-#
-#. Author URI of the plugin/theme
-#: footer.php:16
-msgid "http://wordpress.org/"
-msgstr ""
-
-#: footer.php:16
-msgid "Semantic Personal Publishing Platform"
-msgstr ""
-
-#: footer.php:16
-msgid "Proudly powered by %s"
-msgstr ""
-
-#: functions.php:64
-msgid "Primary Menu"
-msgstr ""
-
-#. translators: If there are characters in your language that are not supported
-#. * by Open Sans, translate this to 'off'. Do not translate into your own
-#. language.
-#: functions.php:101
-msgctxt "Open Sans font: on or off"
-msgid "on"
-msgstr ""
-
-#. translators: To add an additional Open Sans character subset specific to
-#. your language,
-#. * translate this to 'greek', 'cyrillic' or 'vietnamese'. Do not translate
-#. into your own language.
-#: functions.php:107
-msgctxt "Open Sans font: add new subset (greek, cyrillic, vietnamese)"
-msgid "no-subset"
-msgstr ""
-
-#: functions.php:213
-msgid "Page %s"
-msgstr ""
-
-#: functions.php:242
-msgid "Main Sidebar"
-msgstr ""
-
-#: functions.php:244
-msgid ""
-"Appears on posts and pages except the optional Front Page template, which "
-"has its own widgets"
-msgstr ""
-
-#: functions.php:252
-msgid "First Front Page Widget Area"
-msgstr ""
-
-#: functions.php:254 functions.php:264
-msgid ""
-"Appears when using the optional Front Page template with a page set as "
-"Static Front Page"
-msgstr ""
-
-#: functions.php:262
-msgid "Second Front Page Widget Area"
-msgstr ""
-
-#: functions.php:286 single.php:20
-msgid "Post navigation"
-msgstr ""
-
-#: functions.php:287
-msgid "<span class=\"meta-nav\">←</span> Older posts"
-msgstr ""
-
-#: functions.php:288
-msgid "Newer posts <span class=\"meta-nav\">→</span>"
-msgstr ""
-
-#: functions.php:313
-msgid "Pingback:"
-msgstr ""
-
-#: functions.php:313
-msgid "(Edit)"
-msgstr ""
-
-#: functions.php:328
-msgid "Post author"
-msgstr ""
-
-#. translators: 1: date, 2: time
-#: functions.php:334
-msgid "%1$s at %2$s"
-msgstr ""
-
-#: functions.php:340
-msgid "Your comment is awaiting moderation."
-msgstr ""
-
-#: functions.php:349
-msgid "Reply"
-msgstr ""
-
-#. Translators: used between list items, there is a space after the comma.
-#: functions.php:370 functions.php:373
-msgid ", "
-msgstr ""
-
-#: functions.php:384
-msgid "View all posts by %s"
-msgstr ""
-
-#. Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's
-#. name.
-#: functions.php:390
-msgid ""
-"This entry was posted in %1$s and tagged %2$s on %3$s<span class=\"by-author"
-"\"> by %4$s</span>."
-msgstr ""
-
-#: functions.php:392
-msgid ""
-"This entry was posted in %1$s on %3$s<span class=\"by-author\"> by %4$s</"
-"span>."
-msgstr ""
-
-#: functions.php:394
-msgid "This entry was posted on %3$s<span class=\"by-author\"> by %4$s</span>."
-msgstr ""
-
-#: header.php:43
-msgid "Menu"
-msgstr ""
-
-#: header.php:44
-msgid "Skip to content"
-msgstr ""
-
-#: image.php:26
-msgid ""
-"<span class=\"meta-prep meta-prep-entry-date\">Published </span> <span class="
-"\"entry-date\"><time class=\"entry-date\" datetime=\"%1$s\">%2$s</time></"
-"span> at <a href=\"%3$s\" title=\"Link to full-size image\">%4$s × "
-"%5$s</a> in <a href=\"%6$s\" title=\"Return to %7$s\" rel=\"gallery\">%8$s</"
-"a>."
-msgstr ""
-
-#: image.php:41
-msgid "← Previous"
-msgstr ""
-
-#: image.php:42
-msgid "Next →"
-msgstr ""
-
-#: index.php:38
-msgid "No posts to display"
-msgstr ""
-
-#: index.php:42
-msgid "Ready to publish your first post? <a href=\"%s\">Get started here</a>."
-msgstr ""
-
-#: search.php:18
-msgid "Search Results for: %s"
-msgstr ""
-
-#: search.php:38
-msgid ""
-"Sorry, but nothing matched your search criteria. Please try again with some "
-"different keywords."
-msgstr ""
-
-#: single.php:21
-msgctxt "Previous post link"
-msgid "←"
-msgstr ""
-
-#: single.php:22
-msgctxt "Next post link"
-msgid "→"
-msgstr ""
-
-#: tag.php:21
-msgid "Tag Archives: %s"
-msgstr ""
-
-#. Theme Name of the plugin/theme
-msgid "Twenty Twelve"
-msgstr ""
-
-#. Theme URI of the plugin/theme
-msgid "http://wordpress.org/themes/twentytwelve"
-msgstr ""
-
-#. Description of the plugin/theme
-msgid ""
-"The 2012 theme for WordPress is a fully responsive theme that looks great on "
-"any device. Features include a front page template with its own widgets, an "
-"optional display font, styling for post formats on both index and single "
-"views, and an optional no-sidebar page template. Make it yours with a custom "
-"menu, header image, and background."
-msgstr ""
-
-#. Author of the plugin/theme
-msgid "the WordPress team"
-msgstr ""
-
-#. Template Name of the plugin/theme
-msgid "Front Page Template"
-msgstr ""
-
-#. Template Name of the plugin/theme
-msgid "Full-width Page Template, No Sidebar"
-msgstr ""
+++ /dev/null
-<?php
-/**
- * Template Name: Front Page Template
- *
- * Description: A page template that provides a key component of WordPress as a CMS
- * by meeting the need for a carefully crafted introductory page. The front page template
- * in Twenty Twelve consists of a page content area for adding text, images, video --
- * anything you'd like -- followed by front-page-only widgets in one or two columns.
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="site-content">
- <div id="content" role="main">
-
- <?php while ( have_posts() ) : the_post(); ?>
- <?php if ( has_post_thumbnail() ) : ?>
- <div class="entry-page-image">
- <?php the_post_thumbnail(); ?>
- </div><!-- .entry-page-image -->
- <?php endif; ?>
-
- <?php get_template_part( 'content', 'page' ); ?>
-
- <?php endwhile; // end of the loop. ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar( 'front' ); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * Template Name: Full-width Page Template, No Sidebar
- *
- * Description: Twenty Twelve loves the no-sidebar look as much as
- * you do. Use this page template to remove the sidebar from any page.
- *
- * Tip: to remove the sidebar from all posts and pages simply remove
- * any active widgets from the Main Sidebar area, and the sidebar will
- * disappear everywhere.
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="site-content">
- <div id="content" role="main">
-
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', 'page' ); ?>
- <?php comments_template( '', true ); ?>
- <?php endwhile; // end of the loop. ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying all pages
- *
- * This is the template that displays all pages by default.
- * Please note that this is the WordPress construct of pages
- * and that other 'pages' on your WordPress site will use a
- * different template.
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="site-content">
- <div id="content" role="main">
-
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', 'page' ); ?>
- <?php comments_template( '', true ); ?>
- <?php endwhile; // end of the loop. ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-/*
-Theme Name: Twenty Twelve
-Description: Adds support for languages written in a Right To Left (RTL) direction.
-It's easy, just a matter of overwriting all the horizontal positioning attributes
-of your CSS stylesheet in a separate stylesheet file named rtl.css.
-
-See http://codex.wordpress.org/Right_to_Left_Language_Support
-*/
-
-
-body {
- direction: rtl;
- unicode-bidi: embed;
-}
-caption,
-th,
-td {
- text-align: right;
-}
-
-/* =Repeatable patterns
--------------------------------------------------------------- */
-
-/* Images */
-.site-content .gallery-columns-4 .gallery-item {
- padding-left: 2%;
- padding-right: 0;
-}
-.site-content .gallery-columns-5 .gallery-item {
- padding-left: 2%;
- padding-right: 0;
-}
-
-/* Navigation */
-.nav-previous,
-.previous-image {
- float: right;
-}
-.nav-next,
-.next-image {
- float: left;
- text-align: left;
-}
-
-/* Author profiles */
-.author-avatar {
- float: right;
-}
-.author-description {
- float: right;
- margin-right: 15px;
- margin-right: 1.071428571rem;
- margin-left: auto;
-}
-
-
-/* =Main Content
------------------------------------------------ */
-
-.comment-content ol,
-.comment-content ul {
- margin: 0 24px 0 0;
- margin: 0 1.714285714rem 0 0;
-}
-
-
-/* =Basic post styling
--------------------------------------------------------------- */
-
-.entry-content li,
-.comment-content li {
- margin: 0 24px 0 0;
- margin: 0 1.714285714rem 0 0;
-}
-.entry-content td,
-.comment-content td {
- padding: 6px 0 6px 10px;
-}
-
-
-/* Aside posts */
-article.format-aside .aside {
- border-right: 22px solid #a8bfe8;
- border-left: none;
-}
-
-/* Link posts */
-article.format-link header {
- float: left;
-}
-article.format-link .entry-content {
- float: right;
-}
-
-/* Status posts */
-.format-status .entry-header img {
- float: right;
- margin-left: 21px;
- margin-left: 1.5rem;
- margin-right: 0;
-}
-
-
-/* =Comment styling
--------------------------------------------------------------- */
-
-.comments-area article header img {
- float: right;
-}
-.comments-area article header cite,
-.comments-area article header time {
- margin-right: 85px;
- margin-right: 6.071428571rem;
- margin-left: auto;
-}
-.comments-area article header h4 {
- left: 0;
- right: auto;
-}
-.comments-area .bypostauthor cite span {
- margin-right: 5px;
- margin-right: 0.357142857rem;
- margin-left: auto;
-}
-
-/* Comment form */
-#respond h3#reply-title #cancel-comment-reply-link {
- margin-right: 10px;
- margin-right: 0.714285714rem;
- margin-left: auto;
-}
-label ~ span.required {
- float: right;
- margin: -18px -16px 0 0;
- margin: -1.285714286rem -1.142857143rem 0 0;
-}
-
-
-/* =Front page template styling
--------------------------------------------------------------- */
-
-.template-front-page .widget-area .widget_text img {
- float: right;
- margin: 8px 0 8px 24px;
- margin: 0.571428571rem 0 0.571428571rem 1.714285714rem;
-}
-
-
-/* =Widget styling
--------------------------------------------------------------- */
-
-.widget-area .widget ul ul {
- margin-right: 12px;
- margin-right: 0.857142857rem;
- margin-left: auto;
-}
-.widget-area .textwidget li {
- margin-left: auto;
- margin-right: 36px;
- margin-right: 2.571428571rem;
-}
-.widget_recent_entries .post-date,
-.widget_rss .rss-date {
- margin-right: 12px;
- margin-right: 0.857142857rem;
- margin-left: auto;
-}
-#wp-calendar th,
-#wp-calendar td,
-#wp-calendar caption {
- text-align: right;
-}
-#wp-calendar #next {
- padding-left: 24px;
- padding-left: 1.714285714rem;
- text-align: left;
- padding-right: 0;
-}
-
-/* =Media queries
--------------------------------------------------------------- */
-
-/* Minimum width of 600 pixels. */
-@media screen and (min-width: 600px) {
- .site-content,
- .template-front-page.has-post-thumbnail article {
- float: right;
- }
- .widget-area,
- .entry-page-image {
- float: left;
- }
- .site-header h1,
- .site-header h2 {
- text-align: right;
- }
- .template-front-page .widget-area .widget_text img {
- float: right;
- margin: 8px 0 8px 24px;
- }
- .template-front-page .widget-area .widget,
- .template-front-page.two-sidebars .widget-area .front-widgets {
- float: right;
- }
- .template-front-page .widget-area .widget:nth-child(odd) {
- clear: left;
- }
- .template-front-page .widget-area .widget:nth-child(even),
- .template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
- float: left;
- margin: 0 24px 0;
- margin: 0 1.714285714rem 0;
- }
- .main-navigation ul.nav-menu,
- .main-navigation div.nav-menu > ul {
- text-align: right;
- }
- .main-navigation li {
- margin-left: 40px;
- margin-left: 2.857142857rem;
- margin-right: auto;
- }
- .main-navigation li ul ul {
- margin-right: 0;
- right: 100%;
- left: auto;
- }
- .main-navigation ul li:hover > ul {
- border-right: 0;
- border-left: none;
- }
- .commentlist .children {
- margin-right: 48px;
- margin-right: 3.428571429rem;
- margin-left: auto;
- }
-}
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Search Results pages
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <section id="primary" class="site-content">
- <div id="content" role="main">
-
- <?php if ( have_posts() ) : ?>
-
- <header class="page-header">
- <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentytwelve' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
- </header>
-
- <?php twentytwelve_content_nav( 'nav-above' ); ?>
-
- <?php /* Start the Loop */ ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content', get_post_format() ); ?>
- <?php endwhile; ?>
-
- <?php twentytwelve_content_nav( 'nav-below' ); ?>
-
- <?php else : ?>
-
- <article id="post-0" class="post no-results not-found">
- <header class="entry-header">
- <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1>
- </header>
-
- <div class="entry-content">
- <p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentytwelve' ); ?></p>
- <?php get_search_form(); ?>
- </div><!-- .entry-content -->
- </article><!-- #post-0 -->
-
- <?php endif; ?>
-
- </div><!-- #content -->
- </section><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The sidebar containing the front page widget areas
- *
- * If no active widgets are in either sidebar, hide them completely.
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-/*
- * The front page widget area is triggered if any of the areas
- * have widgets. So let's check that first.
- *
- * If none of the sidebars have widgets, then let's bail early.
- */
-if ( ! is_active_sidebar( 'sidebar-2' ) && ! is_active_sidebar( 'sidebar-3' ) )
- return;
-
-// If we get this far, we have widgets. Let do this.
-?>
-<div id="secondary" class="widget-area" role="complementary">
- <?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
- <div class="first front-widgets">
- <?php dynamic_sidebar( 'sidebar-2' ); ?>
- </div><!-- .first -->
- <?php endif; ?>
-
- <?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
- <div class="second front-widgets">
- <?php dynamic_sidebar( 'sidebar-3' ); ?>
- </div><!-- .second -->
- <?php endif; ?>
-</div><!-- #secondary -->
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The sidebar containing the main widget area
- *
- * If no active widgets are in the sidebar, hide it completely.
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-?>
-
- <?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
- <div id="secondary" class="widget-area" role="complementary">
- <?php dynamic_sidebar( 'sidebar-1' ); ?>
- </div><!-- #secondary -->
- <?php endif; ?>
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The Template for displaying all single posts
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <div id="primary" class="site-content">
- <div id="content" role="main">
-
- <?php while ( have_posts() ) : the_post(); ?>
-
- <?php get_template_part( 'content', get_post_format() ); ?>
-
- <nav class="nav-single">
- <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3>
- <span class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'twentytwelve' ) . '</span> %title' ); ?></span>
- <span class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'twentytwelve' ) . '</span>' ); ?></span>
- </nav><!-- .nav-single -->
-
- <?php comments_template( '', true ); ?>
-
- <?php endwhile; // end of the loop. ?>
-
- </div><!-- #content -->
- </div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file
+++ /dev/null
-/*
-Theme Name: Twenty Twelve
-Theme URI: http://wordpress.org/themes/twentytwelve
-Author: the WordPress team
-Author URI: http://wordpress.org/
-Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
-Version: 1.4
-License: GNU General Public License v2 or later
-License URI: http://www.gnu.org/licenses/gpl-2.0.html
-Tags: light, gray, white, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
-Text Domain: twentytwelve
-
-This theme, like WordPress, is licensed under the GPL.
-Use it to make something cool, have fun, and share what you've learned with others.
-*/
-
-/* =Notes
---------------------------------------------------------------
-This stylesheet uses rem values with a pixel fallback. The rem
-values (and line heights) are calculated using two variables:
-
-$rembase: 14;
-$line-height: 24;
-
----------- Examples
-
-* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
- padding: 5px 0;
- padding: 0.357142857rem 0; (5 / $rembase)
-
-* Set a font-size and then set a line-height based on the font-size
- font-size: 16px
- font-size: 1.142857143rem; (16 / $rembase)
- line-height: 1.5; ($line-height / 16)
-
----------- Vertical spacing
-
-Vertical spacing between most elements should use 24px or 48px
-to maintain vertical rhythm:
-
-.my-new-div {
- margin: 24px 0;
- margin: 1.714285714rem 0; ( 24 / $rembase )
-}
-
----------- Further reading
-
-http://snook.ca/archives/html_and_css/font-size-with-rem
-http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/
-
-
-/* =Reset
--------------------------------------------------------------- */
-
-html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 100%;
- vertical-align: baseline;
-}
-body {
- line-height: 1;
-}
-ol,
-ul {
- list-style: none;
-}
-blockquote,
-q {
- quotes: none;
-}
-blockquote:before,
-blockquote:after,
-q:before,
-q:after {
- content: '';
- content: none;
-}
-table {
- border-collapse: collapse;
- border-spacing: 0;
-}
-caption,
-th,
-td {
- font-weight: normal;
- text-align: left;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- clear: both;
-}
-html {
- overflow-y: scroll;
- font-size: 100%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-a:focus {
- outline: thin dotted;
-}
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-nav,
-section {
- display: block;
-}
-audio,
-canvas,
-video {
- display: inline-block;
-}
-audio:not([controls]) {
- display: none;
-}
-del {
- color: #333;
-}
-ins {
- background: #fff9c0;
- text-decoration: none;
-}
-hr {
- background-color: #ccc;
- border: 0;
- height: 1px;
- margin: 24px;
- margin-bottom: 1.714285714rem;
-}
-sub,
-sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-sup {
- top: -0.5em;
-}
-sub {
- bottom: -0.25em;
-}
-small {
- font-size: smaller;
-}
-img {
- border: 0;
- -ms-interpolation-mode: bicubic;
-}
-
-/* Clearing floats */
-.clear:after,
-.wrapper:after,
-.format-status .entry-header:after {
- clear: both;
-}
-.clear:before,
-.clear:after,
-.wrapper:before,
-.wrapper:after,
-.format-status .entry-header:before,
-.format-status .entry-header:after {
- display: table;
- content: "";
-}
-
-
-/* =Repeatable patterns
--------------------------------------------------------------- */
-
-/* Small headers */
-.archive-title,
-.page-title,
-.widget-title,
-.entry-content th,
-.comment-content th {
- font-size: 11px;
- font-size: 0.785714286rem;
- line-height: 2.181818182;
- font-weight: bold;
- text-transform: uppercase;
- color: #636363;
-}
-
-/* Shared Post Format styling */
-article.format-quote footer.entry-meta,
-article.format-link footer.entry-meta,
-article.format-status footer.entry-meta {
- font-size: 11px;
- font-size: 0.785714286rem;
- line-height: 2.181818182;
-}
-
-/* Form fields, general styles first */
-button,
-input,
-select,
-textarea {
- border: 1px solid #ccc;
- border-radius: 3px;
- font-family: inherit;
- padding: 6px;
- padding: 0.428571429rem;
-}
-button,
-input {
- line-height: normal;
-}
-textarea {
- font-size: 100%;
- overflow: auto;
- vertical-align: top;
-}
-
-/* Reset non-text input types */
-input[type="checkbox"],
-input[type="radio"],
-input[type="file"],
-input[type="hidden"],
-input[type="image"],
-input[type="color"] {
- border: 0;
- border-radius: 0;
- padding: 0;
-}
-
-/* Buttons */
-.menu-toggle,
-input[type="submit"],
-input[type="button"],
-input[type="reset"],
-article.post-password-required input[type=submit],
-.bypostauthor cite span {
- padding: 6px 10px;
- padding: 0.428571429rem 0.714285714rem;
- font-size: 11px;
- font-size: 0.785714286rem;
- line-height: 1.428571429;
- font-weight: normal;
- color: #7c7c7c;
- background-color: #e6e6e6;
- background-repeat: repeat-x;
- background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
- background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
- background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
- background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
- background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
- border: 1px solid #d2d2d2;
- border-radius: 3px;
- box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
-}
-.menu-toggle,
-button,
-input[type="submit"],
-input[type="button"],
-input[type="reset"] {
- cursor: pointer;
-}
-button[disabled],
-input[disabled] {
- cursor: default;
-}
-.menu-toggle:hover,
-button:hover,
-input[type="submit"]:hover,
-input[type="button"]:hover,
-input[type="reset"]:hover,
-article.post-password-required input[type=submit]:hover {
- color: #5e5e5e;
- background-color: #ebebeb;
- background-repeat: repeat-x;
- background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
- background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
- background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
- background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
- background-image: linear-gradient(top, #f9f9f9, #ebebeb);
-}
-.menu-toggle:active,
-.menu-toggle.toggled-on,
-button:active,
-input[type="submit"]:active,
-input[type="button"]:active,
-input[type="reset"]:active {
- color: #757575;
- background-color: #e1e1e1;
- background-repeat: repeat-x;
- background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
- background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
- background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
- background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
- background-image: linear-gradient(top, #ebebeb, #e1e1e1);
- box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
- border-color: transparent;
-}
-.bypostauthor cite span {
- color: #fff;
- background-color: #21759b;
- background-image: none;
- border: 1px solid #1f6f93;
- border-radius: 2px;
- box-shadow: none;
- padding: 0;
-}
-
-/* Responsive images */
-.entry-content img,
-.comment-content img,
-.widget img {
- max-width: 100%; /* Fluid images for posts, comments, and widgets */
-}
-img[class*="align"],
-img[class*="wp-image-"],
-img[class*="attachment-"] {
- height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
-}
-img.size-full,
-img.size-large,
-img.header-image,
-img.wp-post-image {
- max-width: 100%;
- height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
-}
-
-/* Make sure videos and embeds fit their containers */
-embed,
-iframe,
-object,
-video {
- max-width: 100%;
-}
-.entry-content .twitter-tweet-rendered {
- max-width: 100% !important; /* Override the Twitter embed fixed width */
-}
-
-/* Images */
-.alignleft {
- float: left;
-}
-.alignright {
- float: right;
-}
-.aligncenter {
- display: block;
- margin-left: auto;
- margin-right: auto;
-}
-.entry-content img,
-.comment-content img,
-.widget img,
-img.header-image,
-.author-avatar img,
-img.wp-post-image {
- /* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
- border-radius: 3px;
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
-}
-.wp-caption {
- max-width: 100%; /* Keep wide captions from overflowing their container. */
- padding: 4px;
-}
-.wp-caption .wp-caption-text,
-.gallery-caption,
-.entry-caption {
- font-style: italic;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 2;
- color: #757575;
-}
-img.wp-smiley,
-.rsswidget img {
- border: 0;
- border-radius: 0;
- box-shadow: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
-}
-.entry-content dl.gallery-item {
- margin: 0;
-}
-.gallery-item a,
-.gallery-caption {
- width: 90%;
-}
-.gallery-item a {
- display: block;
-}
-.gallery-caption a {
- display: inline;
-}
-.gallery-columns-1 .gallery-item a {
- max-width: 100%;
- width: auto;
-}
-.gallery .gallery-icon img {
- height: auto;
- max-width: 90%;
- padding: 5%;
-}
-.gallery-columns-1 .gallery-icon img {
- padding: 3%;
-}
-
-/* Navigation */
-.site-content nav {
- clear: both;
- line-height: 2;
- overflow: hidden;
-}
-#nav-above {
- padding: 24px 0;
- padding: 1.714285714rem 0;
-}
-#nav-above {
- display: none;
-}
-.paged #nav-above {
- display: block;
-}
-.nav-previous,
-.previous-image {
- float: left;
- width: 50%;
-}
-.nav-next,
-.next-image {
- float: right;
- text-align: right;
- width: 50%;
-}
-.nav-single + .comments-area,
-#comment-nav-above {
- margin: 48px 0;
- margin: 3.428571429rem 0;
-}
-
-/* Author profiles */
-.author .archive-header {
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-.author-info {
- border-top: 1px solid #ededed;
- margin: 24px 0;
- margin: 1.714285714rem 0;
- padding-top: 24px;
- padding-top: 1.714285714rem;
- overflow: hidden;
-}
-.author-description p {
- color: #757575;
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
-}
-.author.archive .author-info {
- border-top: 0;
- margin: 0 0 48px;
- margin: 0 0 3.428571429rem;
-}
-.author.archive .author-avatar {
- margin-top: 0;
-}
-
-
-/* =Basic structure
--------------------------------------------------------------- */
-
-/* Body, links, basics */
-html {
- font-size: 87.5%;
-}
-body {
- font-size: 14px;
- font-size: 1rem;
- font-family: Helvetica, Arial, sans-serif;
- text-rendering: optimizeLegibility;
- color: #444;
-}
-body.custom-font-enabled {
- font-family: "Open Sans", Helvetica, Arial, sans-serif;
-}
-a {
- outline: none;
- color: #21759b;
-}
-a:hover {
- color: #0f3647;
-}
-
-/* Assistive text */
-.assistive-text,
-.site .screen-reader-text {
- position: absolute !important;
- clip: rect(1px, 1px, 1px, 1px);
-}
-.main-navigation .assistive-text:focus {
- background: #fff;
- border: 2px solid #333;
- border-radius: 3px;
- clip: auto !important;
- color: #000;
- display: block;
- font-size: 12px;
- padding: 12px;
- position: absolute;
- top: 5px;
- left: 5px;
- z-index: 100000; /* Above WP toolbar */
-}
-
-/* Page structure */
-.site {
- padding: 0 24px;
- padding: 0 1.714285714rem;
- background-color: #fff;
-}
-.site-content {
- margin: 24px 0 0;
- margin: 1.714285714rem 0 0;
-}
-.widget-area {
- margin: 24px 0 0;
- margin: 1.714285714rem 0 0;
-}
-
-/* Header */
-.site-header {
- padding: 24px 0;
- padding: 1.714285714rem 0;
-}
-.site-header h1,
-.site-header h2 {
- text-align: center;
-}
-.site-header h1 a,
-.site-header h2 a {
- color: #515151;
- display: inline-block;
- text-decoration: none;
-}
-.site-header h1 a:hover,
-.site-header h2 a:hover {
- color: #21759b;
-}
-.site-header h1 {
- font-size: 24px;
- font-size: 1.714285714rem;
- line-height: 1.285714286;
- margin-bottom: 14px;
- margin-bottom: 1rem;
-}
-.site-header h2 {
- font-weight: normal;
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
- color: #757575;
-}
-.header-image {
- margin-top: 24px;
- margin-top: 1.714285714rem;
-}
-
-/* Navigation Menu */
-.main-navigation {
- margin-top: 24px;
- margin-top: 1.714285714rem;
- text-align: center;
-}
-.main-navigation li {
- margin-top: 24px;
- margin-top: 1.714285714rem;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 1.42857143;
-}
-.main-navigation a {
- color: #5e5e5e;
-}
-.main-navigation a:hover,
-.main-navigation a:focus {
- color: #21759b;
-}
-.main-navigation ul.nav-menu,
-.main-navigation div.nav-menu > ul {
- display: none;
-}
-.main-navigation ul.nav-menu.toggled-on,
-.menu-toggle {
- display: inline-block;
-}
-
-/* Banner */
-section[role="banner"] {
- margin-bottom: 48px;
- margin-bottom: 3.428571429rem;
-}
-
-/* Sidebar */
-.widget-area .widget {
- -webkit-hyphens: auto;
- -moz-hyphens: auto;
- hyphens: auto;
- margin-bottom: 48px;
- margin-bottom: 3.428571429rem;
- word-wrap: break-word;
-}
-.widget-area .widget h3 {
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-.widget-area .widget p,
-.widget-area .widget li,
-.widget-area .widget .textwidget {
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
-}
-.widget-area .widget p {
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-.widget-area .textwidget ul {
- list-style: disc outside;
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
-}
-.widget-area .textwidget li {
- margin-left: 36px;
- margin-left: 2.571428571rem;
-}
-.widget-area .widget a {
- color: #757575;
-}
-.widget-area .widget a:hover {
- color: #21759b;
-}
-.widget-area .widget a:visited {
- color: #9f9f9f;
-}
-.widget-area #s {
- width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
-}
-
-/* Footer */
-footer[role="contentinfo"] {
- border-top: 1px solid #ededed;
- clear: both;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 2;
- max-width: 960px;
- max-width: 68.571428571rem;
- margin-top: 24px;
- margin-top: 1.714285714rem;
- margin-left: auto;
- margin-right: auto;
- padding: 24px 0;
- padding: 1.714285714rem 0;
-}
-footer[role="contentinfo"] a {
- color: #686868;
-}
-footer[role="contentinfo"] a:hover {
- color: #21759b;
-}
-
-
-/* =Main content and comment content
--------------------------------------------------------------- */
-
-.entry-meta {
- clear: both;
-}
-.entry-header {
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-.entry-header img.wp-post-image {
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-.entry-header .entry-title {
- font-size: 20px;
- font-size: 1.428571429rem;
- line-height: 1.2;
- font-weight: normal;
-}
-.entry-header .entry-title a {
- text-decoration: none;
-}
-.entry-header .entry-format {
- margin-top: 24px;
- margin-top: 1.714285714rem;
- font-weight: normal;
-}
-.entry-header .comments-link {
- margin-top: 24px;
- margin-top: 1.714285714rem;
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
- color: #757575;
-}
-.comments-link a,
-.entry-meta a {
- color: #757575;
-}
-.comments-link a:hover,
-.entry-meta a:hover {
- color: #21759b;
-}
-article.sticky .featured-post {
- border-top: 4px double #ededed;
- border-bottom: 4px double #ededed;
- color: #757575;
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 3.692307692;
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
- text-align: center;
-}
-.entry-content,
-.entry-summary,
-.mu_register {
- line-height: 1.714285714;
-}
-.entry-content h1,
-.comment-content h1,
-.entry-content h2,
-.comment-content h2,
-.entry-content h3,
-.comment-content h3,
-.entry-content h4,
-.comment-content h4,
-.entry-content h5,
-.comment-content h5,
-.entry-content h6,
-.comment-content h6 {
- margin: 24px 0;
- margin: 1.714285714rem 0;
- line-height: 1.714285714;
-}
-.entry-content h1,
-.comment-content h1 {
- font-size: 21px;
- font-size: 1.5rem;
- line-height: 1.5;
-}
-.entry-content h2,
-.comment-content h2,
-.mu_register h2 {
- font-size: 18px;
- font-size: 1.285714286rem;
- line-height: 1.6;
-}
-.entry-content h3,
-.comment-content h3 {
- font-size: 16px;
- font-size: 1.142857143rem;
- line-height: 1.846153846;
-}
-.entry-content h4,
-.comment-content h4 {
- font-size: 14px;
- font-size: 1rem;
- line-height: 1.846153846;
-}
-.entry-content h5,
-.comment-content h5 {
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
-}
-.entry-content h6,
-.comment-content h6 {
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 1.846153846;
-}
-.entry-content p,
-.entry-summary p,
-.comment-content p,
-.mu_register p {
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
- line-height: 1.714285714;
-}
-.entry-content a:visited,
-.comment-content a:visited {
- color: #9f9f9f;
-}
-.entry-content ol,
-.comment-content ol,
-.entry-content ul,
-.comment-content ul,
-.mu_register ul {
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
- line-height: 1.714285714;
-}
-.entry-content ul ul,
-.comment-content ul ul,
-.entry-content ol ol,
-.comment-content ol ol,
-.entry-content ul ol,
-.comment-content ul ol,
-.entry-content ol ul,
-.comment-content ol ul {
- margin-bottom: 0;
-}
-.entry-content ul,
-.comment-content ul,
-.mu_register ul {
- list-style: disc outside;
-}
-.entry-content ol,
-.comment-content ol {
- list-style: decimal outside;
-}
-.entry-content li,
-.comment-content li,
-.mu_register li {
- margin: 0 0 0 36px;
- margin: 0 0 0 2.571428571rem;
-}
-.entry-content blockquote,
-.comment-content blockquote {
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
- padding: 24px;
- padding: 1.714285714rem;
- font-style: italic;
-}
-.entry-content blockquote p:last-child,
-.comment-content blockquote p:last-child {
- margin-bottom: 0;
-}
-.entry-content code,
-.comment-content code {
- font-family: Consolas, Monaco, Lucida Console, monospace;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 2;
-}
-.entry-content pre,
-.comment-content pre {
- border: 1px solid #ededed;
- color: #666;
- font-family: Consolas, Monaco, Lucida Console, monospace;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 1.714285714;
- margin: 24px 0;
- margin: 1.714285714rem 0;
- overflow: auto;
- padding: 24px;
- padding: 1.714285714rem;
-}
-.entry-content pre code,
-.comment-content pre code {
- display: block;
-}
-.entry-content abbr,
-.comment-content abbr,
-.entry-content dfn,
-.comment-content dfn,
-.entry-content acronym,
-.comment-content acronym {
- border-bottom: 1px dotted #666;
- cursor: help;
-}
-.entry-content address,
-.comment-content address {
- display: block;
- line-height: 1.714285714;
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
-}
-img.alignleft,
-.wp-caption.alignleft {
- margin: 12px 24px 12px 0;
- margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
-}
-img.alignright,
-.wp-caption.alignright {
- margin: 12px 0 12px 24px;
- margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
-}
-img.aligncenter,
-.wp-caption.aligncenter {
- clear: both;
- margin-top: 12px;
- margin-top: 0.857142857rem;
- margin-bottom: 12px;
- margin-bottom: 0.857142857rem;
-}
-.entry-content embed,
-.entry-content iframe,
-.entry-content object,
-.entry-content video {
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-.entry-content dl,
-.comment-content dl {
- margin: 0 24px;
- margin: 0 1.714285714rem;
-}
-.entry-content dt,
-.comment-content dt {
- font-weight: bold;
- line-height: 1.714285714;
-}
-.entry-content dd,
-.comment-content dd {
- line-height: 1.714285714;
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-.entry-content table,
-.comment-content table {
- border-bottom: 1px solid #ededed;
- color: #757575;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 2;
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
- width: 100%;
-}
-.entry-content table caption,
-.comment-content table caption {
- font-size: 16px;
- font-size: 1.142857143rem;
- margin: 24px 0;
- margin: 1.714285714rem 0;
-}
-.entry-content td,
-.comment-content td {
- border-top: 1px solid #ededed;
- padding: 6px 10px 6px 0;
-}
-.site-content article {
- border-bottom: 4px double #ededed;
- margin-bottom: 72px;
- margin-bottom: 5.142857143rem;
- padding-bottom: 24px;
- padding-bottom: 1.714285714rem;
- word-wrap: break-word;
- -webkit-hyphens: auto;
- -moz-hyphens: auto;
- hyphens: auto;
-}
-.page-links {
- clear: both;
- line-height: 1.714285714;
-}
-footer.entry-meta {
- margin-top: 24px;
- margin-top: 1.714285714rem;
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
- color: #757575;
-}
-.single-author .entry-meta .by-author {
- display: none;
-}
-.mu_register h2 {
- color: #757575;
- font-weight: normal;
-}
-
-
-/* =Archives
--------------------------------------------------------------- */
-
-.archive-header,
-.page-header {
- margin-bottom: 48px;
- margin-bottom: 3.428571429rem;
- padding-bottom: 22px;
- padding-bottom: 1.571428571rem;
- border-bottom: 1px solid #ededed;
-}
-.archive-meta {
- color: #757575;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 2;
- margin-top: 22px;
- margin-top: 1.571428571rem;
-}
-
-/* =Single audio/video attachment view
--------------------------------------------------------------- */
-
-.attachment .entry-content .mejs-audio {
- max-width: 400px;
-}
-
-.attachment .entry-content .mejs-container {
- margin-bottom: 24px;
-}
-
-
-/* =Single image attachment view
--------------------------------------------------------------- */
-
-.article.attachment {
- overflow: hidden;
-}
-.image-attachment div.attachment {
- text-align: center;
-}
-.image-attachment div.attachment p {
- text-align: center;
-}
-.image-attachment div.attachment img {
- display: block;
- height: auto;
- margin: 0 auto;
- max-width: 100%;
-}
-.image-attachment .entry-caption {
- margin-top: 8px;
- margin-top: 0.571428571rem;
-}
-
-
-/* =Aside post format
--------------------------------------------------------------- */
-
-article.format-aside h1 {
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-article.format-aside h1 a {
- text-decoration: none;
- color: #4d525a;
-}
-article.format-aside h1 a:hover {
- color: #2e3542;
-}
-article.format-aside .aside {
- padding: 24px 24px 0;
- padding: 1.714285714rem;
- background: #d2e0f9;
- border-left: 22px solid #a8bfe8;
-}
-article.format-aside p {
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
- color: #4a5466;
-}
-article.format-aside blockquote:last-child,
-article.format-aside p:last-child {
- margin-bottom: 0;
-}
-
-
-/* =Post formats
--------------------------------------------------------------- */
-
-/* Image posts */
-article.format-image footer h1 {
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
- font-weight: normal;
-}
-article.format-image footer h2 {
- font-size: 11px;
- font-size: 0.785714286rem;
- line-height: 2.181818182;
-}
-article.format-image footer a h2 {
- font-weight: normal;
-}
-
-/* Link posts */
-article.format-link header {
- padding: 0 10px;
- padding: 0 0.714285714rem;
- float: right;
- font-size: 11px;
- font-size: 0.785714286rem;
- line-height: 2.181818182;
- font-weight: bold;
- font-style: italic;
- text-transform: uppercase;
- color: #848484;
- background-color: #ebebeb;
- border-radius: 3px;
-}
-article.format-link .entry-content {
- max-width: 80%;
- float: left;
-}
-article.format-link .entry-content a {
- font-size: 22px;
- font-size: 1.571428571rem;
- line-height: 1.090909091;
- text-decoration: none;
-}
-
-/* Quote posts */
-article.format-quote .entry-content p {
- margin: 0;
- padding-bottom: 24px;
- padding-bottom: 1.714285714rem;
-}
-article.format-quote .entry-content blockquote {
- display: block;
- padding: 24px 24px 0;
- padding: 1.714285714rem 1.714285714rem 0;
- font-size: 15px;
- font-size: 1.071428571rem;
- line-height: 1.6;
- font-style: normal;
- color: #6a6a6a;
- background: #efefef;
-}
-
-/* Status posts */
-.format-status .entry-header {
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-.format-status .entry-header header {
- display: inline-block;
-}
-.format-status .entry-header h1 {
- font-size: 15px;
- font-size: 1.071428571rem;
- font-weight: normal;
- line-height: 1.6;
- margin: 0;
-}
-.format-status .entry-header h2 {
- font-size: 12px;
- font-size: 0.857142857rem;
- font-weight: normal;
- line-height: 2;
- margin: 0;
-}
-.format-status .entry-header header a {
- color: #757575;
-}
-.format-status .entry-header header a:hover {
- color: #21759b;
-}
-.format-status .entry-header img {
- float: left;
- margin-right: 21px;
- margin-right: 1.5rem;
-}
-
-
-/* =Comments
--------------------------------------------------------------- */
-
-.comments-title {
- margin-bottom: 48px;
- margin-bottom: 3.428571429rem;
- font-size: 16px;
- font-size: 1.142857143rem;
- line-height: 1.5;
- font-weight: normal;
-}
-.comments-area article {
- margin: 24px 0;
- margin: 1.714285714rem 0;
-}
-.comments-area article header {
- margin: 0 0 48px;
- margin: 0 0 3.428571429rem;
- overflow: hidden;
- position: relative;
-}
-.comments-area article header img {
- float: left;
- padding: 0;
- line-height: 0;
-}
-.comments-area article header cite,
-.comments-area article header time {
- display: block;
- margin-left: 85px;
- margin-left: 6.071428571rem;
-}
-.comments-area article header cite {
- font-style: normal;
- font-size: 15px;
- font-size: 1.071428571rem;
- line-height: 1.42857143;
-}
-.comments-area cite b {
- font-weight: normal;
-}
-.comments-area article header time {
- line-height: 1.714285714;
- text-decoration: none;
- font-size: 12px;
- font-size: 0.857142857rem;
- color: #5e5e5e;
-}
-.comments-area article header a {
- text-decoration: none;
- color: #5e5e5e;
-}
-.comments-area article header a:hover {
- color: #21759b;
-}
-.comments-area article header cite a {
- color: #444;
-}
-.comments-area article header cite a:hover {
- text-decoration: underline;
-}
-.comments-area article header h4 {
- position: absolute;
- top: 0;
- right: 0;
- padding: 6px 12px;
- padding: 0.428571429rem 0.857142857rem;
- font-size: 12px;
- font-size: 0.857142857rem;
- font-weight: normal;
- color: #fff;
- background-color: #0088d0;
- background-repeat: repeat-x;
- background-image: -moz-linear-gradient(top, #009cee, #0088d0);
- background-image: -ms-linear-gradient(top, #009cee, #0088d0);
- background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
- background-image: -o-linear-gradient(top, #009cee, #0088d0);
- background-image: linear-gradient(top, #009cee, #0088d0);
- border-radius: 3px;
- border: 1px solid #007cbd;
-}
-.comments-area .bypostauthor cite span {
- position: absolute;
- margin-left: 5px;
- margin-left: 0.357142857rem;
- padding: 2px 5px;
- padding: 0.142857143rem 0.357142857rem;
- font-size: 10px;
- font-size: 0.714285714rem;
-}
-.comments-area .bypostauthor cite b {
- font-weight: bold;
-}
-a.comment-reply-link,
-a.comment-edit-link {
- color: #686868;
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
-}
-a.comment-reply-link:hover,
-a.comment-edit-link:hover {
- color: #21759b;
-}
-.commentlist .pingback {
- line-height: 1.714285714;
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-
-/* Comment form */
-#respond {
- margin-top: 48px;
- margin-top: 3.428571429rem;
-}
-#respond h3#reply-title {
- font-size: 16px;
- font-size: 1.142857143rem;
- line-height: 1.5;
-}
-#respond h3#reply-title #cancel-comment-reply-link {
- margin-left: 10px;
- margin-left: 0.714285714rem;
- font-weight: normal;
- font-size: 12px;
- font-size: 0.857142857rem;
-}
-#respond form {
- margin: 24px 0;
- margin: 1.714285714rem 0;
-}
-#respond form p {
- margin: 11px 0;
- margin: 0.785714286rem 0;
-}
-#respond form p.logged-in-as {
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
-}
-#respond form label {
- display: block;
- line-height: 1.714285714;
-}
-#respond form input[type="text"],
-#respond form textarea {
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 1.714285714;
- padding: 10px;
- padding: 0.714285714rem;
- width: 100%;
-}
-#respond form p.form-allowed-tags {
- margin: 0;
- font-size: 12px;
- font-size: 0.857142857rem;
- line-height: 2;
- color: #5e5e5e;
-}
-.required {
- color: red;
-}
-
-
-/* =Front page template
--------------------------------------------------------------- */
-
-.entry-page-image {
- margin-bottom: 14px;
- margin-bottom: 1rem;
-}
-.template-front-page .site-content article {
- border: 0;
- margin-bottom: 0;
-}
-.template-front-page .widget-area {
- clear: both;
- float: none;
- width: auto;
- padding-top: 24px;
- padding-top: 1.714285714rem;
- border-top: 1px solid #ededed;
-}
-.template-front-page .widget-area .widget li {
- margin: 8px 0 0;
- margin: 0.571428571rem 0 0;
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.714285714;
- list-style-type: square;
- list-style-position: inside;
-}
-.template-front-page .widget-area .widget li a {
- color: #757575;
-}
-.template-front-page .widget-area .widget li a:hover {
- color: #21759b;
-}
-.template-front-page .widget-area .widget_text img {
- float: left;
- margin: 8px 24px 8px 0;
- margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
-}
-
-
-/* =Widgets
--------------------------------------------------------------- */
-
-.widget-area .widget ul ul {
- margin-left: 12px;
- margin-left: 0.857142857rem;
-}
-.widget_rss li {
- margin: 12px 0;
- margin: 0.857142857rem 0;
-}
-.widget_recent_entries .post-date,
-.widget_rss .rss-date {
- color: #aaa;
- font-size: 11px;
- font-size: 0.785714286rem;
- margin-left: 12px;
- margin-left: 0.857142857rem;
-}
-#wp-calendar {
- margin: 0;
- width: 100%;
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
- color: #686868;
-}
-#wp-calendar th,
-#wp-calendar td,
-#wp-calendar caption {
- text-align: left;
-}
-#wp-calendar #next {
- padding-right: 24px;
- padding-right: 1.714285714rem;
- text-align: right;
-}
-.widget_search label {
- display: block;
- font-size: 13px;
- font-size: 0.928571429rem;
- line-height: 1.846153846;
-}
-.widget_twitter li {
- list-style-type: none;
-}
-.widget_twitter .timesince {
- display: block;
- text-align: right;
-}
-
-
-/* =Plugins
------------------------------------------------ */
-
-img#wpstats {
- display: block;
- margin: 0 auto 24px;
- margin: 0 auto 1.714285714rem;
-}
-
-
-/* =Media queries
--------------------------------------------------------------- */
-
-/* Does the same thing as <meta name="viewport" content="width=device-width">,
- * but in the future W3C standard way. -ms- prefix is required for IE10+ to
- * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
- * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
- */
-@-ms-viewport {
- width: device-width;
-}
-@viewport {
- width: device-width;
-}
-
-/* Minimum width of 600 pixels. */
-@media screen and (min-width: 600px) {
- .author-avatar {
- float: left;
- margin-top: 8px;
- margin-top: 0.571428571rem;
- }
- .author-description {
- float: right;
- width: 80%;
- }
- .site {
- margin: 0 auto;
- max-width: 960px;
- max-width: 68.571428571rem;
- overflow: hidden;
- }
- .site-content {
- float: left;
- width: 65.104166667%;
- }
- body.template-front-page .site-content,
- body.attachment .site-content,
- body.full-width .site-content {
- width: 100%;
- }
- .widget-area {
- float: right;
- width: 26.041666667%;
- }
- .site-header h1,
- .site-header h2 {
- text-align: left;
- }
- .site-header h1 {
- font-size: 26px;
- font-size: 1.857142857rem;
- line-height: 1.846153846;
- margin-bottom: 0;
- }
- .main-navigation ul.nav-menu,
- .main-navigation div.nav-menu > ul {
- border-bottom: 1px solid #ededed;
- border-top: 1px solid #ededed;
- display: inline-block !important;
- text-align: left;
- width: 100%;
- }
- .main-navigation ul {
- margin: 0;
- text-indent: 0;
- }
- .main-navigation li a,
- .main-navigation li {
- display: inline-block;
- text-decoration: none;
- }
- .main-navigation li a {
- border-bottom: 0;
- color: #6a6a6a;
- line-height: 3.692307692;
- text-transform: uppercase;
- white-space: nowrap;
- }
- .main-navigation li a:hover,
- .main-navigation li a:focus {
- color: #000;
- }
- .main-navigation li {
- margin: 0 40px 0 0;
- margin: 0 2.857142857rem 0 0;
- position: relative;
- }
- .main-navigation li ul {
- margin: 0;
- padding: 0;
- position: absolute;
- top: 100%;
- z-index: 1;
- height: 1px;
- width: 1px;
- overflow: hidden;
- clip: rect(1px, 1px, 1px, 1px);
- }
- .main-navigation li ul ul {
- top: 0;
- left: 100%;
- }
- .main-navigation ul li:hover > ul,
- .main-navigation ul li:focus > ul,
- .main-navigation .focus > ul {
- border-left: 0;
- clip: inherit;
- overflow: inherit;
- height: inherit;
- width: inherit;
- }
- .main-navigation li ul li a {
- background: #efefef;
- border-bottom: 1px solid #ededed;
- display: block;
- font-size: 11px;
- font-size: 0.785714286rem;
- line-height: 2.181818182;
- padding: 8px 10px;
- padding: 0.571428571rem 0.714285714rem;
- width: 180px;
- width: 12.85714286rem;
- white-space: normal;
- }
- .main-navigation li ul li a:hover,
- .main-navigation li ul li a:focus {
- background: #e3e3e3;
- color: #444;
- }
- .main-navigation .current-menu-item > a,
- .main-navigation .current-menu-ancestor > a,
- .main-navigation .current_page_item > a,
- .main-navigation .current_page_ancestor > a {
- color: #636363;
- font-weight: bold;
- }
- .menu-toggle {
- display: none;
- }
- .entry-header .entry-title {
- font-size: 22px;
- font-size: 1.571428571rem;
- }
- #respond form input[type="text"] {
- width: 46.333333333%;
- }
- #respond form textarea.blog-textarea {
- width: 79.666666667%;
- }
- .template-front-page .site-content,
- .template-front-page article {
- overflow: hidden;
- }
- .template-front-page.has-post-thumbnail article {
- float: left;
- width: 47.916666667%;
- }
- .entry-page-image {
- float: right;
- margin-bottom: 0;
- width: 47.916666667%;
- }
- .template-front-page .widget-area .widget,
- .template-front-page.two-sidebars .widget-area .front-widgets {
- float: left;
- width: 51.875%;
- margin-bottom: 24px;
- margin-bottom: 1.714285714rem;
- }
- .template-front-page .widget-area .widget:nth-child(odd) {
- clear: right;
- }
- .template-front-page .widget-area .widget:nth-child(even),
- .template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
- float: right;
- width: 39.0625%;
- margin: 0 0 24px;
- margin: 0 0 1.714285714rem;
- }
- .template-front-page.two-sidebars .widget,
- .template-front-page.two-sidebars .widget:nth-child(even) {
- float: none;
- width: auto;
- }
- .commentlist .children {
- margin-left: 48px;
- margin-left: 3.428571429rem;
- }
-}
-
-/* Minimum width of 960 pixels. */
-@media screen and (min-width: 960px) {
- body {
- background-color: #e6e6e6;
- }
- body .site {
- padding: 0 40px;
- padding: 0 2.857142857rem;
- margin-top: 48px;
- margin-top: 3.428571429rem;
- margin-bottom: 48px;
- margin-bottom: 3.428571429rem;
- box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
- }
- body.custom-background-empty {
- background-color: #fff;
- }
- body.custom-background-empty .site,
- body.custom-background-white .site {
- padding: 0;
- margin-top: 0;
- margin-bottom: 0;
- box-shadow: none;
- }
-}
-
-
-/* =Print
------------------------------------------------ */
-
-@media print {
- body {
- background: none !important;
- color: #000;
- font-size: 10pt;
- }
- footer a[rel=bookmark]:link:after,
- footer a[rel=bookmark]:visited:after {
- content: " [" attr(href) "] "; /* Show URLs */
- }
- a {
- text-decoration: none;
- }
- .entry-content img,
- .comment-content img,
- .author-avatar img,
- img.wp-post-image {
- border-radius: 0;
- box-shadow: none;
- }
- .site {
- clear: both !important;
- display: block !important;
- float: none !important;
- max-width: 100%;
- position: relative !important;
- }
- .site-header {
- margin-bottom: 72px;
- margin-bottom: 5.142857143rem;
- text-align: left;
- }
- .site-header h1 {
- font-size: 21pt;
- line-height: 1;
- text-align: left;
- }
- .site-header h2 {
- color: #000;
- font-size: 10pt;
- text-align: left;
- }
- .site-header h1 a,
- .site-header h2 a {
- color: #000;
- }
- .author-avatar,
- #colophon,
- #respond,
- .commentlist .comment-edit-link,
- .commentlist .reply,
- .entry-header .comments-link,
- .entry-meta .edit-link a,
- .page-link,
- .site-content nav,
- .widget-area,
- img.header-image,
- .main-navigation {
- display: none;
- }
- .wrapper {
- border-top: none;
- box-shadow: none;
- }
- .site-content {
- margin: 0;
- width: auto;
- }
-
- .entry-header .entry-title,
- .entry-title {
- font-size: 21pt;
- }
- footer.entry-meta,
- footer.entry-meta a {
- color: #444;
- font-size: 10pt;
- }
- .author-description {
- float: none;
- width: auto;
- }
-
- /* Comments */
- .commentlist > li.comment {
- background: none;
- position: relative;
- width: auto;
- }
- .commentlist .avatar {
- height: 39px;
- left: 2.2em;
- top: 2.2em;
- width: 39px;
- }
- .comments-area article header cite,
- .comments-area article header time {
- margin-left: 50px;
- margin-left: 3.57142857rem;
- }
-}
\ No newline at end of file
+++ /dev/null
-<?php
-/**
- * The template for displaying Tag pages
- *
- * Used to display archive-type pages for posts in a tag.
- *
- * @link http://codex.wordpress.org/Template_Hierarchy
- *
- * @package WordPress
- * @subpackage Twenty_Twelve
- * @since Twenty Twelve 1.0
- */
-
-get_header(); ?>
-
- <section id="primary" class="site-content">
- <div id="content" role="main">
-
- <?php if ( have_posts() ) : ?>
- <header class="archive-header">
- <h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentytwelve' ), '<span>' . single_tag_title( '', false ) . '</span>' ); ?></h1>
-
- <?php if ( tag_description() ) : // Show an optional tag description ?>
- <div class="archive-meta"><?php echo tag_description(); ?></div>
- <?php endif; ?>
- </header><!-- .archive-header -->
-
- <?php
- /* Start the Loop */
- while ( have_posts() ) : the_post();
-
- /*
- * Include the post format-specific template for the content. If you want to
- * this in a child theme then include a file called called content-___.php
- * (where ___ is the post format) and that will be used instead.
- */
- get_template_part( 'content', get_post_format() );
-
- endwhile;
-
- twentytwelve_content_nav( 'nav-below' );
- ?>
-
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
-
- </div><!-- #content -->
- </section><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
\ No newline at end of file