diff --git a/wp-content/themes/constructor/404.php b/wp-content/themes/constructor/404.php index c850e77e713cda4954ab2231002521f560a44ff0..55ff79aa34893599d56906e18f85ac18ba30d7d8 100644 --- a/wp-content/themes/constructor/404.php +++ b/wp-content/themes/constructor/404.php @@ -7,20 +7,11 @@ <?php get_header(); ?> <div id="content" class="box shadow opacity <?php the_constructor_layout_class() ?>"> <div id="container" > - <div id="posts"> - <div <?php post_class(); ?>> - <div class="title opacity box"> - <h1 class="center"><a href="#" title="<?php _e('Error 404 - Not Found', 'constructor'); ?>"><?php _e('Error 404 - Not Found', 'constructor'); ?></a></h1> - </div> - <div class="entry"> - <p class="center"><?php _e('Sorry, but you are looking for something that isn’t here.', 'constructor'); ?></p> - <p><?php get_search_form() ?></p> - </div> - <div class="footer"> - <div class="line"></div> - </div> - </div> - </div> + <article <?php post_class(); ?>> + <h1 class="opacity box center"><a href="#" title="<?php _e('Error 404 - Not Found', 'constructor'); ?>"><?php _e('Error 404 - Not Found', 'constructor'); ?></a></h1> + <p><?php _e('Sorry, but you are looking for something that isn’t here.', 'constructor'); ?></p> + <p><?php get_search_form() ?></p> + </article> </div><!-- id='container' --> <script type="text/javascript"> // focus on search field after it has loaded diff --git a/wp-content/themes/constructor/admin/admin.php b/wp-content/themes/constructor/admin/admin.php index ed005d24a343cdbb95a2325be860983abf697a2d..fbf2209cab751ad2ad3f20e1a111acc1ca4e029a 100644 --- a/wp-content/themes/constructor/admin/admin.php +++ b/wp-content/themes/constructor/admin/admin.php @@ -33,55 +33,6 @@ $constructor_modules = array( require_once CONSTRUCTOR_DIRECTORY .'/libs/Constructor/Admin.php'; -/** - * Replace scandir() - * - * @category PHP - * @package PHP_Compat - * @link http://php.net/function.scandir - * @author Aidan Lister <aidan@php.net> - * @version $Revision: 1.18 $ - * @since PHP 5 - * @require PHP 4.0.0 (user_error) - */ -if (!function_exists('scandir')) { - function scandir($directory, $sorting_order = 0) - { - if (!is_string($directory)) { - user_error('scandir() expects parameter 1 to be string, ' . - gettype($directory) . ' given', E_USER_WARNING); - return; - } - - if (!is_int($sorting_order) && !is_bool($sorting_order)) { - user_error('scandir() expects parameter 2 to be long, ' . - gettype($sorting_order) . ' given', E_USER_WARNING); - return; - } - - if (!is_dir($directory) || (false === $fh = @opendir($directory))) { - user_error('scandir() failed to open dir: Invalid argument', E_USER_WARNING); - return false; - } - - $files = array (); - while (false !== ($filename = readdir($fh))) { - $files[] = $filename; - } - - closedir($fh); - - if ($sorting_order == 1) { - rsort($files); - } else { - sort($files); - } - - return $files; - } -} - - $admin = new Constructor_Admin(); $admin -> init($constructor_modules); diff --git a/wp-content/themes/constructor/admin/css/colorpicker.css b/wp-content/themes/constructor/admin/css/colorpicker.css index ee0ab05aea982f636779fd82a000f552e594c67b..a53c0cfd7f36cec51bef491ae67112206c6af40d 100644 --- a/wp-content/themes/constructor/admin/css/colorpicker.css +++ b/wp-content/themes/constructor/admin/css/colorpicker.css @@ -1,161 +1,161 @@ -.colorpicker { - width: 356px; - height: 176px; - overflow: hidden; - position: absolute; - background: url(../images/background.png); - font-family: Arial, Helvetica, sans-serif; - display: none; -} -.colorpicker_color { - width: 150px; - height: 150px; - left: 14px; - top: 13px; - position: absolute; - background: #f00; - overflow: hidden; - cursor: crosshair; -} -.colorpicker_color div { - position: absolute; - top: 0; - left: 0; - width: 150px; - height: 150px; - background: url(../images/overlay.png); -} -.colorpicker_color div div { - position: absolute; - top: 0; - left: 0; - width: 11px; - height: 11px; - overflow: hidden; - background: url(../images/select.gif); - margin: -5px 0 0 -5px; -} -.colorpicker_hue { - position: absolute; - top: 13px; - left: 171px; - width: 35px; - height: 150px; - cursor: n-resize; -} -.colorpicker_hue div { - position: absolute; - width: 35px; - height: 9px; - overflow: hidden; - background: url(../images/indic.gif) left top; - margin: -4px 0 0 0; - left: 0px; -} -.colorpicker_new_color { - position: absolute; - width: 60px; - height: 30px; - left: 213px; - top: 13px; - background: #f00; -} -.colorpicker_current_color { - position: absolute; - width: 60px; - height: 30px; - left: 283px; - top: 13px; - background: #f00; -} -.colorpicker input { - background-color: transparent; - border: 1px solid transparent; - position: absolute; - font-size: 10px; - font-family: Arial, Helvetica, sans-serif; - color: #898989; - top: 4px; - right: 11px; - text-align: right; - margin: 0; - padding: 0; - height: 11px; -} -.colorpicker_hex { - position: absolute; - width: 72px; - height: 22px; - background: url(../images/hex.png) top; - left: 212px; - top: 142px; -} -.colorpicker_hex input { - right: 6px; -} -.colorpicker_field { - height: 22px; - width: 62px; - background-position: top; - position: absolute; -} -.colorpicker_field span { - position: absolute; - width: 12px; - height: 22px; - overflow: hidden; - top: 0; - right: 0; - cursor: n-resize; -} -.colorpicker_rgb_r { - background-image: url(../images/rgb_r.png); - top: 52px; - left: 212px; -} -.colorpicker_rgb_g { - background-image: url(../images/rgb_g.png); - top: 82px; - left: 212px; -} -.colorpicker_rgb_b { - background-image: url(../images/rgb_b.png); - top: 112px; - left: 212px; -} -.colorpicker_hsb_h { - background-image: url(../images/hsb_h.png); - top: 52px; - left: 282px; -} -.colorpicker_hsb_s { - background-image: url(../images/hsb_s.png); - top: 82px; - left: 282px; -} -.colorpicker_hsb_b { - background-image: url(../images/hsb_b.png); - top: 112px; - left: 282px; -} -.colorpicker_submit { - position: absolute; - width: 22px; - height: 22px; - background: url(../images/submit.png) top; - left: 322px; - top: 142px; - overflow: hidden; -} -.colorpicker_focus { - background-position: center; -} -.colorpicker_hex.colorpicker_focus { - background-position: bottom; -} -.colorpicker_submit.colorpicker_focus { - background-position: bottom; -} -.colorpicker_slider { - background-position: bottom; -} +.colorpicker { + width: 356px; + height: 176px; + overflow: hidden; + position: absolute; + background: url(../images/background.png); + font-family: Arial, Helvetica, sans-serif; + display: none; +} +.colorpicker_color { + width: 150px; + height: 150px; + left: 14px; + top: 13px; + position: absolute; + background: #f00; + overflow: hidden; + cursor: crosshair; +} +.colorpicker_color div { + position: absolute; + top: 0; + left: 0; + width: 150px; + height: 150px; + background: url(../images/overlay.png); +} +.colorpicker_color div div { + position: absolute; + top: 0; + left: 0; + width: 11px; + height: 11px; + overflow: hidden; + background: url(../images/select.gif); + margin: -5px 0 0 -5px; +} +.colorpicker_hue { + position: absolute; + top: 13px; + left: 171px; + width: 35px; + height: 150px; + cursor: n-resize; +} +.colorpicker_hue div { + position: absolute; + width: 35px; + height: 9px; + overflow: hidden; + background: url(../images/indic.gif) left top; + margin: -4px 0 0 0; + left: 0px; +} +.colorpicker_new_color { + position: absolute; + width: 60px; + height: 30px; + left: 213px; + top: 13px; + background: #f00; +} +.colorpicker_current_color { + position: absolute; + width: 60px; + height: 30px; + left: 283px; + top: 13px; + background: #f00; +} +.colorpicker input { + background-color: transparent; + border: 1px solid transparent; + position: absolute; + font-size: 10px; + font-family: Arial, Helvetica, sans-serif; + color: #898989; + top: 4px; + right: 11px; + text-align: right; + margin: 0; + padding: 0; + height: 11px; +} +.colorpicker_hex { + position: absolute; + width: 72px; + height: 22px; + background: url(../images/hex.png) top; + left: 212px; + top: 142px; +} +.colorpicker_hex input { + right: 6px; +} +.colorpicker_field { + height: 22px; + width: 62px; + background-position: top; + position: absolute; +} +.colorpicker_field span { + position: absolute; + width: 12px; + height: 22px; + overflow: hidden; + top: 0; + right: 0; + cursor: n-resize; +} +.colorpicker_rgb_r { + background-image: url(../images/rgb_r.png); + top: 52px; + left: 212px; +} +.colorpicker_rgb_g { + background-image: url(../images/rgb_g.png); + top: 82px; + left: 212px; +} +.colorpicker_rgb_b { + background-image: url(../images/rgb_b.png); + top: 112px; + left: 212px; +} +.colorpicker_hsb_h { + background-image: url(../images/hsb_h.png); + top: 52px; + left: 282px; +} +.colorpicker_hsb_s { + background-image: url(../images/hsb_s.png); + top: 82px; + left: 282px; +} +.colorpicker_hsb_b { + background-image: url(../images/hsb_b.png); + top: 112px; + left: 282px; +} +.colorpicker_submit { + position: absolute; + width: 22px; + height: 22px; + background: url(../images/submit.png) top; + left: 322px; + top: 142px; + overflow: hidden; +} +.colorpicker_focus { + background-position: center; +} +.colorpicker_hex.colorpicker_focus { + background-position: bottom; +} +.colorpicker_submit.colorpicker_focus { + background-position: bottom; +} +.colorpicker_slider { + background-position: bottom; +} diff --git a/wp-content/themes/constructor/admin/font-face.php b/wp-content/themes/constructor/admin/font-face.php index 155f6785805895fcd6c5cbc60cb86caa218057a3..63c09bc987eaa0d3027f046a0ff21af69006ca60 100644 --- a/wp-content/themes/constructor/admin/font-face.php +++ b/wp-content/themes/constructor/admin/font-face.php @@ -7,18 +7,24 @@ * @todo More flexible */ return array( + 'Aclonica', //'Allan',// 700 weight 'Allerta', '"Allerta Stencil"', 'Amaranth', + '"Annie Use Your Telescope"', '"Anonymous Pro"', 'Anton', '"Architects Daughter"', 'Arimo', // Regular / Italic / Bold / Bold Italic 'Arvo', // Regular / Italic / Bold / Bold Italic + 'Artifika', + 'Asset', 'Astloch', 'Bentham', 'Bevan', + '"Bigshot One"', + 'Brawler', //'Buda', // 300 weight 'Cabin', //'"Cabin Sketch"',// 700 weight @@ -26,6 +32,9 @@ return array( 'Candal', 'Cantarell', // Regular / Italic / Bold / Bold Italic 'Cardo', + '"Carter One"', + 'Caudex', + '"Cedarville Cursive"', '"Cherry Cream Soda"', 'Chewy', //'Coda',// 800 weight @@ -37,16 +46,24 @@ return array( '"Crimson Text"', 'Crushed', 'Cuprum', + 'Damion', '"Dancing Script"', + '"Dawning of a New Day"', + '"Didact Gothic"', '"Droid Sans"', // Regular / Bold '"Droid Sans Mono"', '"Droid Serif"', '"EB Garamond"', '"Expletus Sans"', '"Fontdiner Swanky"', + '"Francois One"', 'Geo', + '"Goblin One"', '"Goudy Bookletter 1911"', + '"Gravitas One"', 'Gruppo', + '"Hammersmith One"', + '"Holtwood One SC"', '"Homemade Apple"', // "IM Fell" family '"IM Fell English"', @@ -56,57 +73,106 @@ return array( '"Irish Grover"', '"Josefin Sans"', '"Josefin Slab"', + 'Judson', + 'Jura', '"Just Another Hand"', '"Just Me Again Down Here"', + 'Kameron', 'Kenia', 'Kranky', 'Kreon', 'Kristi', + '"La Belle Aurore"', 'Lato', '"League Script"', 'Lekton', + 'Limelight', 'Lobster', + '"Lobster Two"', + 'Lora', '"Luckiest Guy"', + 'Mako', + '"Maven Pro"', 'Meddon', 'MedievalSharp', + 'Megrim', 'Merriweather', + 'Metrophobic', + 'Michroma', + 'Miltonian', + '"Miltonian Tattoo"', 'Molengo', + 'Monofett', '"Mountains of Christmas"', + 'Muli', 'Neucha', 'Neuton', + '"News Cycle"', 'Nobile', //'Nova', // 100 weight + '"Nova Square"', + '"Nova Oval"', + '"Nova Cut"', + '"Nova Round"', + '"Nova Script"', + '"Nova Mono"', + 'Nunito', '"OFL Sorts Mill Goudy TT"', '"Old Standard TT"', 'Orbitron', 'Oswald', - '"PT Sans"', - '"PT Serif"', + '"Over the Rainbow"', 'Pacifico', + '"Paytone One"', '"Permanent Marker"', 'Philosopher', + 'Play', + '"Playfair Display"', + 'Podkova', + '"PT Sans"', + '"PT Serif"', 'Puritan', 'Quattrocento', + '"Quattrocento Sans"', 'Radley', //'Raleway', // 100 weight + 'Redressed', '"Reenie Beanie"', '"Rock Salt"', + 'Rokkitt', + '"Ruslan Display"', 'Schoolbell', + '"Shadows Into Light"', + 'Shanti', + '"Sigmar One"', '"Six Caps"', 'Slackey', + 'Smythe', //'Sniglet', // 800 weight + '"Special Elite"', + '"Sue Ellen Francisco"', 'Sunshiney', 'Syncopate', + '"Swanky and Moo Moo"', 'Tangerine', + '"Tenor Sans"', + '"Terminal Dosis Light"', + '"The Girl Next Door"', 'Tinos', 'Ubuntu', + 'Ultra', //'UnifrakturCook', // 700 weight 'UnifrakturMaguntia', 'Unkempt', - 'VT323', + 'Varela', 'Vibur', 'Vollkorn', + 'VT323', + '"Waiting for the Sunrise"', '"Walter Turncoat"', + 'Wallpoet', + '"Wire One"', '"Yanone Kaffeesatz"', + 'Zeyada' ); ?> \ No newline at end of file diff --git a/wp-content/themes/constructor/admin/images/layout-column.png b/wp-content/themes/constructor/admin/images/layout-column.png new file mode 100644 index 0000000000000000000000000000000000000000..0929085826058ec0cc2a9dc030316c2ef531f5ec Binary files /dev/null and b/wp-content/themes/constructor/admin/images/layout-column.png differ diff --git a/wp-content/themes/constructor/admin/settings/css.php b/wp-content/themes/constructor/admin/settings/css.php index 7ec34be18b4a88f4b3980f9d1d3414af037674f8..8082ea036593b8d4e632a50dc38429a2961c3232 100644 --- a/wp-content/themes/constructor/admin/settings/css.php +++ b/wp-content/themes/constructor/admin/settings/css.php @@ -46,19 +46,24 @@ $css_file = $theme_path .'/style.css'; font-size:1.2em; }</pre> <?php _e('Sidebar', 'constructor');?> -<pre>.sidebar{ +<pre>aside { font-size:1.4em; }</pre> <?php _e('Content', 'constructor');?> -<pre>.hentry .title { /* post title */ +<pre>.hentry header { /* post title */ border:0; } .hentry .entry { /* content */ font-size:1.6em } -.hentry .footer { /* footer links */ +.hentry footer { /* footer links */ color:#ccc /* it's gray color */ } +</pre> + <?php _e('Template', 'constructor');?> +<pre>.tile > div { /* fixed Tile layout width */ + width:340px !important; +} </pre> </td> </tr> diff --git a/wp-content/themes/constructor/admin/settings/fonts.php b/wp-content/themes/constructor/admin/settings/fonts.php index c931b635310759f880e937bd7a45a292eaa80e71..fafd3dafe1700bd3c29375a0a535239056da3af5 100644 --- a/wp-content/themes/constructor/admin/settings/fonts.php +++ b/wp-content/themes/constructor/admin/settings/fonts.php @@ -76,6 +76,8 @@ function loadFont(font) { </p> </td> <td rowspan="5" valign="top" class="updated quick-links" width="320px"> + <h3><?php _e('Google Web Fonts', 'constructor') ?></h3> + <p><a href="http://www.google.com/webfonts"><?php _e('Google Web Fonts lets you browse all the fonts available via the Google Web Fonts API. All fonts in the directory are available for use on your website under an open source license and are served by Google servers.', 'constructor') ?></a></p> <h3><?php _e('Font Weight', 'constructor') ?></h3> <p><?php _e('Defines from thin to thick characters. 400 is the same as "normal", and 700 is the same as "bold"', 'constructor') ?> </p> diff --git a/wp-content/themes/constructor/admin/settings/templates.php b/wp-content/themes/constructor/admin/settings/templates.php index 204c01d6f2e049f03153128d40cbb8020e4fd133..0d4f4c4cdb1f5ae71263074cd495a1660b61eb46 100644 --- a/wp-content/themes/constructor/admin/settings/templates.php +++ b/wp-content/themes/constructor/admin/settings/templates.php @@ -34,7 +34,10 @@ $layouts = array_filter($layouts, 'is_php'); <td valign="top" class="updated quick-links" width="240px"> <h3><?php _e('Help', 'constructor'); ?></h3> <a href="http://code.google.com/p/wp-constructor/wiki/ConstructorLayouts" title="Create custom layout">Create custom layout</a> - <br/><br/> + <br/> + <strong><?php _e('Tile Template', 'constructor')?></strong> + <?php _e('Optimized for container with width equals to 1024px', 'constructor')?> + <br/> <dl> <dt><?php _e('Homepage', 'constructor')?></dt> <dd>http://domain.com</dd> diff --git a/wp-content/themes/constructor/author.php b/wp-content/themes/constructor/author.php index 3d3e03806509d9c902c9e055ec236dfddabd78d4..98378728a3921c9bad87f9aea8d7c72f81e13b6b 100644 --- a/wp-content/themes/constructor/author.php +++ b/wp-content/themes/constructor/author.php @@ -16,87 +16,78 @@ $author = get_the_author(); ?> <div id="content" class="box shadow opacity <?php the_constructor_layout_class() ?>"> <div id="container" > - <div id="posts"> - <div <?php echo 'class="author hentry ' . join(' ', get_post_class($class, null)) . '"'; ?>> - <div class="title opacity box"> - <h1> - <a href="#" rel="bookmark" title="<?php echo $author ?>"><?php echo $author; ?></a> - <a class="feed-icon right" href="<?php echo get_author_feed_link(get_the_author_meta('ID')) ?>" title="<?php _e("Author RSS Feed", 'constructor') ?>"><?php _e("RSS Feed", 'constructor') ?></a> - </h1> + <article <?php echo 'class="author hentry ' . join(' ', get_post_class($class, null)) . '"'; ?>> + <h1 class="opacity box"> + <a href="#" rel="bookmark" title="<?php echo $author ?>"><?php echo $author; ?></a> + <a class="feed-icon right" href="<?php echo get_author_feed_link(get_the_author_meta('ID')) ?>" title="<?php _e("Author RSS Feed", 'constructor') ?>"><?php _e("RSS Feed", 'constructor') ?></a> + </h1> + <div class="entry opacity box"> + <div class="wp-caption alignleft persona" style="width: 128px"> + <?php echo get_avatar(get_the_author_meta('email'), 120)?> + <p class="wp-caption-text"><?php printf(__('%1$s %2$s', 'constructor'), get_the_author_meta('first_name'), get_the_author_meta('last_name'))?></p> </div> - <div class="entry opacity box"> - <div class="wp-caption alignleft persona" style="width: 128px"> - <?php echo get_avatar(get_the_author_meta('email'), 120)?> - <p class="wp-caption-text"><?php printf(__('%1$s %2$s', 'constructor'), get_the_author_meta('first_name'), get_the_author_meta('last_name'))?></p> - </div> - <dl class="left"> - <?php if ($first = get_the_author_meta('first_name') - or $last = get_the_author_meta('last_name')) : ?> - <dt><?php _e('Full Name', 'constructor') ?></dt> - <dd><?php printf(__('%1$s %2$s', 'constructor'), $first, $last)?></dd> - <?php endif; ?> + <dl class="left"> + <?php if ($first = get_the_author_meta('first_name') + or $last = get_the_author_meta('last_name')) : ?> + <dt><?php _e('Full Name', 'constructor') ?></dt> + <dd><?php printf(__('%1$s %2$s', 'constructor'), $first, $last)?></dd> + <?php endif; ?> - <?php if ($nickname = get_the_author_meta('nickname')) : ?> - <dt><?php _e('Nickname', 'constructor') ?></dt> - <dd><?php echo $nickname ?></dd> - <?php endif; ?> + <?php if ($nickname = get_the_author_meta('nickname')) : ?> + <dt><?php _e('Nickname', 'constructor') ?></dt> + <dd><?php echo $nickname ?></dd> + <?php endif; ?> - <?php if ($url = get_the_author_meta('url')) : ?> - <dt><?php _e('Website', 'constructor') ?></dt> - <dd><a href="<?php echo $url ?>" title="<?php _e("Visit author website", 'constructor') ?>" rel="external"><?php echo $url ?></a></dd> - <?php endif; ?> + <?php if ($url = get_the_author_meta('url')) : ?> + <dt><?php _e('Website', 'constructor') ?></dt> + <dd><a href="<?php echo $url ?>" title="<?php _e("Visit author website", 'constructor') ?>" rel="external"><?php echo $url ?></a></dd> + <?php endif; ?> - <?php if ($icq = get_the_author_meta('icq')) : ?> - <dt><?php _e('ICQ', 'constructor') ?></dt> - <dd><?php echo $icq ?></dd> - <?php endif; ?> + <?php if ($icq = get_the_author_meta('icq')) : ?> + <dt><?php _e('ICQ', 'constructor') ?></dt> + <dd><?php echo $icq ?></dd> + <?php endif; ?> - <?php if ($aim = get_the_author_meta('aim')) : ?> - <dt><?php _e('AIM', 'constructor') ?></dt> - <dd><?php echo $aim ?></dd> - <?php endif; ?> + <?php if ($aim = get_the_author_meta('aim')) : ?> + <dt><?php _e('AIM', 'constructor') ?></dt> + <dd><?php echo $aim ?></dd> + <?php endif; ?> - <?php if ($yim = get_the_author_meta('yim')) : ?> - <dt><?php _e('Yahoo IM', 'constructor') ?></dt> - <dd><?php echo $yim ?></dd> - <?php endif; ?> + <?php if ($yim = get_the_author_meta('yim')) : ?> + <dt><?php _e('Yahoo IM', 'constructor') ?></dt> + <dd><?php echo $yim ?></dd> + <?php endif; ?> - <?php if ($msn = get_the_author_meta('msn')) : ?> - <dt><?php _e('MSN', 'constructor') ?></dt> - <dd><?php echo $msn ?></dd> - <?php endif; ?> + <?php if ($msn = get_the_author_meta('msn')) : ?> + <dt><?php _e('MSN', 'constructor') ?></dt> + <dd><?php echo $msn ?></dd> + <?php endif; ?> - <?php if ($description = get_the_author_meta('description')) : ?> - <dt><?php _e('About Me', 'constructor') ?></dt> - <dd><?php echo $description ?></dd> - <?php endif; ?> - </dl> - </div> - </div> - <?php if (have_posts()) : ?> - <div <?php post_class(); ?>> - <div class="title opacity box"> - <h2><a href="#" rel="bookmark" title="<?php echo $author ?>"><?php printf(__('Latest posts by %s', 'constructor'), get_the_author_meta('nickname')); ?></a></h2> - </div> - <div class="entry"> - <ul> - <?php while (have_posts()) : the_post(); ?> - <li> - <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a> | <?php the_date() ?> - </li> - <?php endwhile; ?> - </ul> - </div> - <div class="footer"></div> - </div> - <?php else: ?> - <div class="hentry"> - <div class="title opacity box"> - <h2><a href="#"><?php _e('No posts by this author.', 'constructor'); ?></a></h2> - </div> + <?php if ($description = get_the_author_meta('description')) : ?> + <dt><?php _e('About Me', 'constructor') ?></dt> + <dd><?php echo $description ?></dd> + <?php endif; ?> + </dl> </div> - <?php endif; ?> - </div> + </article> + <?php if (have_posts()) : ?> + <article <?php post_class(); ?>> + <h2 class="opacity box"><a href="#" rel="bookmark" title="<?php echo $author ?>"><?php printf(__('Latest posts by %s', 'constructor'), get_the_author_meta('nickname')); ?></a></h2> + <p class="entry"> + <ul> + <?php while (have_posts()) : the_post(); ?> + <li> + <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a> | <?php the_date() ?> + </li> + <?php endwhile; ?> + </ul> + </p> + </article> + <?php else: ?> + <article class="hentry"> + <h2 class="opacity box"><a href="#"><?php _e('No posts by this author.', 'constructor'); ?></a></h2> + </article> + <?php endif; ?> <?php get_constructor_navigation(); ?> </div><!-- id='container' --> <?php get_constructor_sidebar(); ?> diff --git a/wp-content/themes/constructor/changelog.txt b/wp-content/themes/constructor/changelog.txt index 2ff015c17b0aedc29a5d23005bcdb58866cf6510..ec7b0bc36b5d0de5d628834b07c204a46e2cc79e 100644 --- a/wp-content/themes/constructor/changelog.txt +++ b/wp-content/themes/constructor/changelog.txt @@ -1,6 +1,37 @@ = Versions history = This is local copy of file https://code.google.com/p/wp-constructor/wiki/ConstructorHistory +== 1.6.4 == + * Hotfix in default layout + +== 1.6.3 == + * Added Brazilian Portugese language + * Fixed "line end" for all style.css + +== 1.6.2 == + * Updated Google Web Fonts + * Small changes in column layout + * Added new subtheme - "Old Newspaper" (included to default) + * Updated translation catalog + * Updated Russian translation + * Fixed mistake in Italian (issue #166) + +== 1.6.1 == + * Fixed security issue with WP version + * New template for layout - "Three columns" + * Small changes in "Tile" template + * Replace HTML5 javascript + +== 1.6.0 == + * Implemented HTML5 tags: article, header, footer, section, aside + * Cleaned some tags and styles + * Removed scandir.php + * Added support Google Calendar Events Widget + +== 1.5.11 == + * Change logic of the_constructor_layout_class() and get_constructor_sidebar() + * Moved function scandir to separated file (be ready for WP 3.2) + == 1.5.10 == * Return PHP4 compatability * Small changes in simple layout: diff --git a/wp-content/themes/constructor/comments.php b/wp-content/themes/constructor/comments.php index eea7f3a4e3a495caaaa32ffc5bb531d102fba23a..1860e65e9be773521dabadeda8185fe5f606be74 100644 --- a/wp-content/themes/constructor/comments.php +++ b/wp-content/themes/constructor/comments.php @@ -6,14 +6,14 @@ ?> <?php if ( post_password_required() ) : ?> - <div id="comments"> + <section id="comments"> <p class="nopassword"><?php _e('This post is password protected. Enter the password to view comments.', 'constructor'); ?></p> - </div> + </section> <?php return; ?> <?php endif; ?> -<div id="comments"> +<section id="comments"> <?php if ( have_comments() ) : ?> <h3><?php comments_number(__('No Responses', 'constructor'), __('One Response', 'constructor'), __('% Responses', 'constructor'));?> <?php printf(__('to “%s”', 'constructor'), the_title('', '', false)); ?></h3> @@ -21,10 +21,10 @@ <?php wp_list_comments('avatar_size='.get_constructor_avatar_size());?> </ol> <?php if (get_comment_pages_count() > 1 && get_option('page_comments')) : // are there comments to navigate through ?> - <div class="navigation"> + <nav class="navigation"> <div class="alignleft"><?php previous_comments_link() ?></div> <div class="alignright"><?php next_comments_link() ?></div> - </div> + </nav> <?php endif; ?> <?php else: ?> <?php if (!comments_open() && !is_page()) : ?> @@ -43,4 +43,4 @@ add_filter('comment_form_default_fields', 'constructor_comment_fields'); ?> <?php comment_form(); ?> -</div> \ No newline at end of file +</section> \ No newline at end of file diff --git a/wp-content/themes/constructor/css.php b/wp-content/themes/constructor/css.php index 039292b1858cd6d1bde28cada0af3ce130fbac32..266ff34379e14b2bd3dd5cccc1ef61c3b953d72b 100644 --- a/wp-content/themes/constructor/css.php +++ b/wp-content/themes/constructor/css.php @@ -770,25 +770,25 @@ fieldset{ } /*/Author*/ /*Archive*/ -#posts .archive table td{ +.archive table td{ color:{$color_text2} } -#posts .archive table a{ +.archive table a{ padding:4px; color:{$color_text} } -#posts .archive table a:hover{ +.archive table a:hover{ background-color: {$color2}; } /*/Archive*/ /*Sidebar*/ -.sidebar .current_page_item a, -.sidebar .current-cat a{ +aside .current_page_item a, +aside .current-cat a{ font-weight:900; border-color:{$color_text} } -.sidebar .current_page_item li a, -.sidebar .current-cat li a{ +aside .current_page_item li a, +aside .current-cat li a{ font-weight:500; border-color:{$color_border} } @@ -853,5 +853,28 @@ fieldset{ .wp-pagenavi a:hover, .wp-pagenavi span.current { border-color:{$color_border2} !important; } +/*/Plugins:wp-pagenavi*/ +/*Widgets:Google Calendar Events*/ +.gce-widget-grid .gce-calendar, +.gce-widget-grid .gce-calendar th, +.gce-widget-grid .gce-calendar td { + border: 1px solid {$color_border} !important; +} +.gce-widget-grid .gce-calendar .gce-today { + background-color: {$color_bg2} !important; +} +.gce-widget-grid .gce-calendar .gce-has-events { + color:{$color1} !important; +} +.gce-event-info { + color:{$color_text} !important; + border: 1px solid {$color_border} !important; + background-color: {$color_bg} !important; +} +.gce-event-info .gce-tooltip-event { + color:{$color1} !important; + background-color: {$color_bg} !important; +} +/*/Widgets:Google Calendar Events*/ CSS; ?> \ No newline at end of file diff --git a/wp-content/themes/constructor/footer.php b/wp-content/themes/constructor/footer.php index f48c447d006a7971825b7cd87ac6f19b715817b5..238f179ae5e8a604ac676fafd484cb181b4a75e5 100644 --- a/wp-content/themes/constructor/footer.php +++ b/wp-content/themes/constructor/footer.php @@ -6,7 +6,7 @@ ?> </div><!-- id='wrapcontent' --> <div id="wrapfooter" class="wrapper"> - <div id="footer"> + <footer id="footer"> <?php // check active if (is_active_sidebar('footer') @@ -37,7 +37,7 @@ <p class="clear copy"> <?php get_constructor_footer();?> </p> - </div> + </footer> </div> </div> <?php wp_footer(); ?> diff --git a/wp-content/themes/constructor/functions.php b/wp-content/themes/constructor/functions.php index 78b4d2be47d2eb921cea961b72a054a156e47ec0..e853b7fbb6480e83b556a53439fe3a948d3c3380 100644 --- a/wp-content/themes/constructor/functions.php +++ b/wp-content/themes/constructor/functions.php @@ -154,6 +154,7 @@ if (!is_admin()) { * Preview filter * * @param string $content + * @return string */ function constructor_preview($content) { $link = add_query_arg(array('preview' => 1, 'template' => get_template()), '?theme-constructor=css'); @@ -251,7 +252,7 @@ if (!is_admin()) { * get content widget * * @param integer $i post counter - * @return + * @return void */ function get_constructor_content_widget($i) { @@ -275,6 +276,7 @@ if (!is_admin()) { /** * get avatar size * + * @param integer $size * @return string */ function get_constructor_avatar_size($size = 32) @@ -286,6 +288,9 @@ if (!is_admin()) { /** * get no image * + * @param integer $width + * @param integer $height + * @param string $align * @return string */ function get_constructor_noimage($width = 320, $height = 320, $align = 'none') diff --git a/wp-content/themes/constructor/header.php b/wp-content/themes/constructor/header.php index 63cb2c37a177f982d7224556ec9884660595fc96..11a5e345af01bf3a0c8c3c1db89bba9bfb1a7828 100644 --- a/wp-content/themes/constructor/header.php +++ b/wp-content/themes/constructor/header.php @@ -9,6 +9,9 @@ <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <title><?php wp_title('»', true, 'right'); ?> <?php bloginfo('name'); ?></title> + <!--[if lt IE 9]> + <script type="text/javascript" src="<?php echo CONSTRUCTOR_DIRECTORY_URI; ?>/js/html5.js"></script> + <![endif]--> <link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>"/> <link rel="stylesheet" type="text/css" media="print" href="<?php echo CONSTRUCTOR_DIRECTORY_URI; ?>/print.css" /> @@ -21,7 +24,7 @@ <div id="body"> <div id="wrapheader" class="wrapper"> - <div id="header"> + <header id="header"> <?php get_constructor_menu() ?> <div id="title"> <?php if (is_home() || is_front_page()) { ?> @@ -31,7 +34,7 @@ <?php } ?> <div id="description"><?php bloginfo('description');?></div> </div> - </div> + </header> </div> <div id="wrapcontent" class="wrapper"> diff --git a/wp-content/themes/constructor/js/html5.js b/wp-content/themes/constructor/js/html5.js new file mode 100644 index 0000000000000000000000000000000000000000..b87a4e57a484234b2e06f5af65fd00b153f1c647 --- /dev/null +++ b/wp-content/themes/constructor/js/html5.js @@ -0,0 +1,4 @@ +// html5shiv @rem remysharp.com/html5-enabling-script +// iepp v1.6.2 @jon_neal iecss.com/print-protector +// Dual licensed under the MIT or GPL Version 2 licenses +/*@cc_on(function(a,b){function r(a){var b=-1;while(++b<f)a.createElement(e[b])}if(!(!window.attachEvent||!b.createStyleSheet||!function(){var a=document.createElement("div");a.innerHTML="<elem></elem>";return a.childNodes.length!==1}())){a.iepp=a.iepp||{};var c=a.iepp,d=c.html5elements||"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",e=d.split("|"),f=e.length,g=new RegExp("(^|\\s)("+d+")","gi"),h=new RegExp("<(/*)("+d+")","gi"),i=/^\s*[\{\}]\s*$/,j=new RegExp("(^|[^\\n]*?\\s)("+d+")([^\\n]*)({[\\n\\w\\W]*?})","gi"),k=b.createDocumentFragment(),l=b.documentElement,m=l.firstChild,n=b.createElement("body"),o=b.createElement("style"),p=/print|all/,q;c.getCSS=function(a,b){if(a+""===undefined)return"";var d=-1,e=a.length,f,g=[];while(++d<e){f=a[d];if(f.disabled)continue;b=f.media||b,p.test(b)&&g.push(c.getCSS(f.imports,b),f.cssText),b="all"}return g.join("")},c.parseCSS=function(a){var b=[],c;while((c=j.exec(a))!=null)b.push(((i.exec(c[1])?"\n":c[1])+c[2]+c[3]).replace(g,"$1.iepp_$2")+c[4]);return b.join("\n")},c.writeHTML=function(){var a=-1;q=q||b.body;while(++a<f){var c=b.getElementsByTagName(e[a]),d=c.length,g=-1;while(++g<d)c[g].className.indexOf("iepp_")<0&&(c[g].className+=" iepp_"+e[a])}k.appendChild(q),l.appendChild(n),n.className=q.className,n.id=q.id,n.innerHTML=q.innerHTML.replace(h,"<$1font")},c._beforePrint=function(){o.styleSheet.cssText=c.parseCSS(c.getCSS(b.styleSheets,"all")),c.writeHTML()},c.restoreHTML=function(){n.innerHTML="",l.removeChild(n),l.appendChild(q)},c._afterPrint=function(){c.restoreHTML(),o.styleSheet.cssText=""},r(b),r(k);if(c.disablePP)return;m.insertBefore(o,m.firstChild),o.media="print",o.className="iepp-printshim",a.attachEvent("onbeforeprint",c._beforePrint),a.attachEvent("onafterprint",c._afterPrint)}})(this,document);@*/ diff --git a/wp-content/themes/constructor/lang/constructor.pot b/wp-content/themes/constructor/lang/constructor.pot index 6bb7402cb7450f791352d07cc8c1f4a0da6649d2..75d464f74437b53dd44eb9702ef1112dbc413a3f 100644 --- a/wp-content/themes/constructor/lang/constructor.pot +++ b/wp-content/themes/constructor/lang/constructor.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Constructor Theme\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-23 15:34+0200\n" +"POT-Creation-Date: 2011-07-14 12:36+0200\n" "PO-Revision-Date: \n" "Last-Translator: Anton Shevchuk <Anton.Shevchuk@gmail.com>\n" "Language-Team: Anton Shevchuk <AntonShevchuk@gmail.com>\n" @@ -18,7 +18,7 @@ msgstr "" "X-Poedit-SearchPath-0: W:/www/wordpress3/wp-content/themes/constructor\n" #: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:28 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:22 msgid "Pages" msgstr "" @@ -27,7 +27,7 @@ msgid "Categories" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:32 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:32 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:29 msgid "Tags" msgstr "" @@ -43,24 +43,24 @@ msgstr "" msgid "Newer Entries <span>»</span>" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:17 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:19 +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:16 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:18 #, php-format msgid "Permanent Link to %s" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:20 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:23 +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:19 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:21 msgid "Read the rest of this entry »" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:28 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:29 +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:26 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:26 msgid "Back to Parent Page" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:30 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:33 +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:30 msgid "Edit" msgstr "" @@ -68,19 +68,19 @@ msgstr "" msgid "Read more »" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:34 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 msgid "No Comments »" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:34 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 msgid "1 Comment »" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:34 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 msgid "% Comments »" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:34 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 msgid "Comments Closed" msgstr "" @@ -158,11 +158,11 @@ msgstr "" msgid "%B" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/404.php:13 +#: W:/www/wordpress3/wp-content/themes/constructor/404.php:11 msgid "Error 404 - Not Found" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/404.php:16 +#: W:/www/wordpress3/wp-content/themes/constructor/404.php:12 msgid "Sorry, but you are looking for something that isn’t here." msgstr "" @@ -170,70 +170,70 @@ msgstr "" msgid "Header Menu" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/functions.php:293 +#: W:/www/wordpress3/wp-content/themes/constructor/functions.php:298 msgid "No Image" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:22 msgid "Author RSS Feed" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:22 msgid "RSS Feed" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:30 -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:36 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:27 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:33 #, php-format msgid "%1$s %2$s" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:35 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:32 msgid "Full Name" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:40 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:37 msgid "Nickname" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:45 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:42 msgid "Website" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:46 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:43 msgid "Visit author website" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:50 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:47 msgid "ICQ" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:55 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:52 msgid "AIM" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:60 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:57 msgid "Yahoo IM" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:65 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:62 msgid "MSN" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:70 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:67 msgid "About Me" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:79 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:75 #, php-format msgid "Latest posts by %s" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:95 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:88 msgid "No posts by this author." msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/template-sitemap.php:32 +#: W:/www/wordpress3/wp-content/themes/constructor/template-sitemap.php:31 msgid "Archives" msgstr "" @@ -251,14 +251,12 @@ msgid "Simple" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/layouts/single.php:6 -#: W:/www/wordpress3/wp-content/themes/constructor/layouts/page.php:6 -#: W:/www/wordpress3/wp-content/themes/constructor/layouts/thumb.php:6 msgid "Single" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/layouts/single.php:30 -#: W:/www/wordpress3/wp-content/themes/constructor/layouts/default.php:27 -#: W:/www/wordpress3/wp-content/themes/constructor/layouts/thumb.php:30 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/single.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/column.php:51 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/default.php:25 msgid "Posted in" msgstr "" @@ -266,6 +264,10 @@ msgstr "" msgid "List" msgstr "" +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/column.php:6 +msgid "Column" +msgstr "" + #: W:/www/wordpress3/wp-content/themes/constructor/layouts/tiles.php:6 #: W:/www/wordpress3/wp-content/themes/constructor/layouts/tile.php:6 msgid "Tile" @@ -275,88 +277,86 @@ msgstr "" msgid "Default" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:21 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:16 msgid "Themes" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:22 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:17 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:1 msgid "Layout" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:23 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:18 msgid "Templates" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:19 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:1 msgid "Header" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:25 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:120 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:20 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:122 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:52 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:1 msgid "Content" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:26 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:21 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:1 msgid "Comments" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:27 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:22 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:1 msgid "Footer" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:23 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:1 msgid "Fonts" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:29 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:24 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:1 msgid "Colors" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:30 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:25 msgid "Design" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:31 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:26 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:1 msgid "CSS" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:32 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:27 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:1 msgid "Images" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:33 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:28 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:2 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:101 msgid "Slideshow" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:34 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:29 msgid "Save" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:35 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/clean.php:1 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:30 msgid "Clean" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:36 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:31 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:18 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:11 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:6 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:2 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:110 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:111 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:1 msgid "Help" msgstr "" @@ -369,47 +369,55 @@ msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:79 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:98 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:109 -msgid "Font Weight" +msgid "Google Web Fonts" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:80 +msgid "Google Web Fonts lets you browse all the fonts available via the Google Web Fonts API. All fonts in the directory are available for use on your website under an open source license and are served by Google servers." +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:81 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:100 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:111 +msgid "Font Weight" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:82 msgid "Defines from thin to thick characters. 400 is the same as \"normal\", and 700 is the same as \"bold\"" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:83 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:99 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:110 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:101 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:112 msgid "Text Decoration" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:87 msgid "No capitalization. The text renders as it is. This is default" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:86 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:88 msgid "Transforms the first character of each word to uppercase" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:87 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:89 msgid "Transforms all characters to uppercase" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:88 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:90 msgid "Transforms all characters to lowercase" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:93 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:95 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:36 msgid "Title" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:104 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:106 msgid "Description" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:114 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:116 msgid "Headers" msgstr "" @@ -527,6 +535,10 @@ msgstr "" msgid "Sidebar" msgstr "" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:63 +msgid "Template" +msgstr "" + #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:28 msgid "Enable" msgstr "" @@ -584,7 +596,7 @@ msgid "Timeout between slides (ms)" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:84 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:104 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:85 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:47 msgid "Position" msgstr "" @@ -682,41 +694,41 @@ msgstr "" msgid "Sharing Icons" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:53 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:69 msgid "Select which service you would like to use for sharing" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:94 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:75 msgid "Content widgets place" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:95 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:76 msgid "can configured with <a href=\"widgets.php\">widgets</a>, use \"After N Post\" sidebar" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:101 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:82 msgid "Show widgets place" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:106 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:107 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:108 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:109 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:110 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:111 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:112 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:113 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:114 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:115 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:87 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:88 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:89 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:90 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:91 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:92 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:93 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:94 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:95 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:96 #, php-format msgid "after %d post" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:122 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:103 msgid "You can use short code [widgets] in your post, and can configured with <a href=\"widgets.php\">widgets</a> (use \"In Posts\" sidebar)" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:125 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:106 msgid "Available <a href=\"http://code.google.com/p/wp-constructor/wiki/ConstructorShortcodes\" title=\"Constructor Short Codes\">short codes</a>:" msgstr "" @@ -1070,53 +1082,61 @@ msgstr "" msgid "Save Theme" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:66 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:86 msgid "File \"style.css\" is not exists" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:67 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:87 msgid "Anonymous" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:83 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:103 msgid "version" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:17 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:39 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:42 msgid "Homepage" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:19 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:41 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:44 msgid "Post" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:21 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:43 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:46 msgid "Page" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:23 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:45 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:48 msgid "Search" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:25 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:47 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:50 msgid "Date" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:27 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:49 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:52 msgid "Category" msgstr "" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:29 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:51 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:54 msgid "Tag" msgstr "" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:38 +msgid "Tile Template" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:39 +msgid "Optimized for container with width equals to 1024px" +msgstr "" + #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:53 msgid "Borders" msgstr "" @@ -1145,119 +1165,119 @@ msgstr "" msgid "Blur" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:240 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:256 msgid "Home" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:279 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:295 msgid "Search..." msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:439 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 #, php-format msgid "%1$s and %2$s." msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:439 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 msgid "Entries (RSS)" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:439 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 msgid "Comments (RSS)" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:443 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:465 #, php-format msgid "%d queries. %s seconds." msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:43 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:53 msgid "Please check permissions for next directories:" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:108 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:171 #, php-format msgid "File \"%s\" is not a image (jpeg, png, gif, tiff)" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:115 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:178 #, php-format msgid "File \"%s\" can't be move to \"/constructor/current/\" folder" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:276 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:280 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:326 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:330 #: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:48 #: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:51 #, php-format msgid "Directory \"%s\" is not writable." msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:294 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:344 #, php-format msgid "Can't copy file \"%s\" to \"%s\"." msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:303 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:365 #: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:63 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:73 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:77 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:89 #, php-format msgid "Can't copy file \"%s\"." msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:336 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:341 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:110 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:115 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:398 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:403 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:128 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:133 #, php-format msgid "Can't save file \"%s\"." msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:436 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:445 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:628 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:521 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:530 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:713 msgid "Customize Theme" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:437 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:446 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:522 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:531 msgid "Customize" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:468 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:553 msgid "Standart Fonts" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:476 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:561 msgid "Google Fonts" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:631 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:716 msgid "If you like this theme and find it useful, help keep this theme free and actively developed by clicking the donate button (via PayPal or CC)" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:635 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:720 msgid "Options saved." msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:644 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:729 msgid "Some images can't be upload. Please check permissions" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:667 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:752 msgid "Save Changes" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:118 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:136 msgid "Theme was saved, please reload page for view changes" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:145 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:163 msgid "Theme was cleaned" msgstr "" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:147 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:165 #, php-format msgid "System can't remove folder "%s"" msgstr "" diff --git a/wp-content/themes/constructor/lang/de_DE.mo b/wp-content/themes/constructor/lang/de_DE.mo index 1223ae16641dde7e0f01dbcf7ee684780b3baf91..5f2e040bc06cbb14095c4d07d147029595921ee3 100644 Binary files a/wp-content/themes/constructor/lang/de_DE.mo and b/wp-content/themes/constructor/lang/de_DE.mo differ diff --git a/wp-content/themes/constructor/lang/de_DE.po b/wp-content/themes/constructor/lang/de_DE.po index f69a8a4812fa89f769b081ddb61004ca236bbefb..221f41b1c41731319a4867d1625272acc1d1d589 100644 --- a/wp-content/themes/constructor/lang/de_DE.po +++ b/wp-content/themes/constructor/lang/de_DE.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Constructor 0.5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-08 12:53+0100\n" +"POT-Creation-Date: 2011-07-14 12:36+0200\n" "PO-Revision-Date: \n" -"Last-Translator: GW\n" +"Last-Translator: \n" "Language-Team: Team Blogos <wordpress@blogos.dk>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,816 +17,1373 @@ msgstr "" "X-Poedit-Basepath: d:\\wordpress\\themes\\translated\\constructor\n" "X-Poedit-SearchPath-0: d:\\wordpress\\themes\\translated\\constructor\n" -#: d:\wordpress\themes\translated\constructor/404.php:13 +#: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:22 +msgid "Pages" +msgstr "Seiten" + +#: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:30 +msgid "Categories" +msgstr "Kategorien" + +#: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:32 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:29 +msgid "Tags" +msgstr "Tags" + +#: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:37 +msgid "Meta" +msgstr "Meta" + +#: W:/www/wordpress3/wp-content/themes/constructor/navigation.php:16 +msgid "<span>«</span> Older Entries" +msgstr "<span>«</span> Ältere Einträge" + +#: W:/www/wordpress3/wp-content/themes/constructor/navigation.php:17 +msgid "Newer Entries <span>»</span>" +msgstr "Letzte Beiträge »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:16 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:18 +#, php-format +msgid "Permanent Link to %s" +msgstr "Permalink zu %s" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:19 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:21 +msgid "Read the rest of this entry »" +msgstr "Den Rest des Beitrags lesen »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:26 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:26 +msgid "Back to Parent Page" +msgstr "Eine Ebene zurück" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:30 +msgid "Edit" +msgstr "Bearbeiten" + +#: W:/www/wordpress3/wp-content/themes/constructor/slideshow.php:50 +msgid "Read more »" +msgstr "weiter lesen »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 +msgid "No Comments »" +msgstr "Keine Kommentare »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 +msgid "1 Comment »" +msgstr "1 Kommentar »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 +msgid "% Comments »" +msgstr "% Kommentare »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 +msgid "Comments Closed" +msgstr "Kommentarbereich geschlossen" + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:10 +msgid "This post is password protected. Enter the password to view comments." +msgstr "Dieser Beitrag ist geschützt. Passwort eingeben, um die Kommentare zu sehen." + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:18 +msgid "No Responses" +msgstr "Keine Kommentare" + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:18 +msgid "One Response" +msgstr "Ein Kommentar" + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:18 +msgid "% Responses" +msgstr "% Kommentare" + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:18 +#, php-format +msgid "to “%s”" +msgstr "bis “%s”" + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:31 +msgid "Comments are closed." +msgstr "Kommentarbereich geschlossen." + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:14 +msgid "Twitter" +msgstr "Twitter" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:17 +msgid "Facebook" +msgstr "Facebook" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:20 +msgid "Del.icio.us" +msgstr "Del.icio.us" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:23 +#, fuzzy +msgid "Reddit" +msgstr "Bearbeiten" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:26 +msgid "VKontakte" +msgstr "VKontakte" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:29 +msgid "Digg" +msgstr "Digg" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:32 +msgid "Mixx" +msgstr "Mixx" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:35 +msgid "StumbleUpon" +msgstr "StumbleUpon" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:38 +msgid "Google" +msgstr "Google" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:41 +msgid "Memori" +msgstr "Memori" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-archive.php:30 +#, php-format +msgid "%b" +msgstr "%b" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-archive.php:31 +msgid "%B" +msgstr "%B" + +#: W:/www/wordpress3/wp-content/themes/constructor/404.php:11 msgid "Error 404 - Not Found" msgstr "Fehler 404 - nicht gefunden" -#: d:\wordpress\themes\translated\constructor/404.php:16 +#: W:/www/wordpress3/wp-content/themes/constructor/404.php:12 msgid "Sorry, but you are looking for something that isn’t here." msgstr "Sorry, das Gesuchte ist nicht zu finden." -#: d:\wordpress\themes\translated\constructor/author.php:22 +#: W:/www/wordpress3/wp-content/themes/constructor/functions.php:111 +msgid "Header Menu" +msgstr "Header Menü" + +#: W:/www/wordpress3/wp-content/themes/constructor/functions.php:298 +msgid "No Image" +msgstr "Kein Bild" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:22 msgid "Author RSS Feed" msgstr "RSS-Feed des Autors" -#: d:\wordpress\themes\translated\constructor/author.php:22 -#: d:\wordpress\themes\translated\constructor/functions.php:219 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:22 msgid "RSS Feed" msgstr "RSS-Feed" -#: d:\wordpress\themes\translated\constructor/author.php:28 -#: d:\wordpress\themes\translated\constructor/author.php:32 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:27 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:33 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: d:\wordpress\themes\translated\constructor/author.php:31 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:32 msgid "Full Name" msgstr "Ganzer Name" -#: d:\wordpress\themes\translated\constructor/author.php:35 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:37 msgid "Nickname" msgstr "Alias" -#: d:\wordpress\themes\translated\constructor/author.php:40 -#: d:\wordpress\themes\translated\constructor/comments.php:74 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:42 msgid "Website" msgstr "Website" -#: d:\wordpress\themes\translated\constructor/author.php:41 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:43 msgid "Visit author website" msgstr "Zur Website gehen" -#: d:\wordpress\themes\translated\constructor/author.php:45 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:47 msgid "ICQ" msgstr "ICQ" -#: d:\wordpress\themes\translated\constructor/author.php:50 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:52 msgid "AIM" msgstr "AIM" -#: d:\wordpress\themes\translated\constructor/author.php:55 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:57 msgid "Yahoo IM" msgstr "Yahoo IM" -#: d:\wordpress\themes\translated\constructor/author.php:60 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:62 msgid "MSN" msgstr "MSN" -#: d:\wordpress\themes\translated\constructor/author.php:65 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:67 msgid "About Me" msgstr "Über mich" -#: d:\wordpress\themes\translated\constructor/author.php:70 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:75 #, php-format -msgid "Last posts by %s" +msgid "Latest posts by %s" msgstr "Letzte Beiträge von %s" -#: d:\wordpress\themes\translated\constructor/author.php:77 -#: d:\wordpress\themes\translated\constructor/layout-default.php:17 -#: d:\wordpress\themes\translated\constructor/layout-list.php:18 -#: d:\wordpress\themes\translated\constructor/layout-tile.php:17 -#: d:\wordpress\themes\translated\constructor/page.php:20 -#, php-format -msgid "Permanent Link to %s" -msgstr "Permalink zu %s" - -#: d:\wordpress\themes\translated\constructor/author.php:78 -#: d:\wordpress\themes\translated\constructor/layout-default.php:24 -#: d:\wordpress\themes\translated\constructor/layout-list.php:19 -#: d:\wordpress\themes\translated\constructor/layout-tile.php:23 -#: d:\wordpress\themes\translated\constructor/page.php:31 -msgid "F jS, Y" -msgstr "j. F Y" - -#: d:\wordpress\themes\translated\constructor/author.php:81 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:88 msgid "No posts by this author." msgstr "Keine Beiträge dieses Autors." -#: d:\wordpress\themes\translated\constructor/author.php:90 -#: d:\wordpress\themes\translated\constructor/layout-default.php:36 -#: d:\wordpress\themes\translated\constructor/layout-list.php:38 -#: d:\wordpress\themes\translated\constructor/layout-tile.php:31 -msgid "Newer Entries »" -msgstr "Neuere Beiträge »" - -#: d:\wordpress\themes\translated\constructor/author.php:91 -#: d:\wordpress\themes\translated\constructor/layout-default.php:35 -#: d:\wordpress\themes\translated\constructor/layout-list.php:37 -#: d:\wordpress\themes\translated\constructor/layout-tile.php:30 -msgid "« Older Entries" -msgstr "« Ältere Einträge" - -#: d:\wordpress\themes\translated\constructor/comments.php:12 -msgid "This post is password protected. Enter the password to view comments." -msgstr "Dieser Beitrag ist geschützt. Passwort eingeben, um die Kommentare zu sehen." - -#: d:\wordpress\themes\translated\constructor/comments.php:21 -msgid "No Responses" -msgstr "Keine Kommentare" - -#: d:\wordpress\themes\translated\constructor/comments.php:21 -msgid "One Response" -msgstr "Ein Kommentar" - -#: d:\wordpress\themes\translated\constructor/comments.php:21 -msgid "% Responses" -msgstr "% Kommentare" - -#: d:\wordpress\themes\translated\constructor/comments.php:21 -#, php-format -msgid "to “%s”" -msgstr "bis “%s”" - -#: d:\wordpress\themes\translated\constructor/comments.php:39 -msgid "Comments are closed." -msgstr "Kommentarbereich geschlossen." - -#: d:\wordpress\themes\translated\constructor/comments.php:49 -msgid "Leave a Reply" -msgstr "Eine Antwort schreiben" - -#: d:\wordpress\themes\translated\constructor/comments.php:49 -#, php-format -msgid "Leave a Reply for %s" -msgstr "Eine Antwort für %s schreiben" +#: W:/www/wordpress3/wp-content/themes/constructor/template-sitemap.php:31 +msgid "Archives" +msgstr "Archiv" -#: d:\wordpress\themes\translated\constructor/comments.php:56 +#: W:/www/wordpress3/wp-content/themes/constructor/themes/example/config.php:49 #, php-format -msgid "You must be <a href=\"%s\">logged in</a> to post a comment." -msgstr "Um einen Kommentar zu schreiben, bitte <a href=\"%s\">Anmelden</a>." +msgid "%1$s is proudly powered by %2$s" +msgstr "%1$s präsentiert von %2$s" -#: d:\wordpress\themes\translated\constructor/comments.php:63 -#, php-format -msgid "Logged in as <a href=\"%1$s\">%2$s</a>." -msgstr "Als <a href=\"%1$s\">%2$s</a> angemeldet." +#: W:/www/wordpress3/wp-content/themes/constructor/themes/example/config.php:50 +msgid "Constructor Theme" +msgstr "Constructor Theme" -#: d:\wordpress\themes\translated\constructor/comments.php:63 -msgid "Log out of this account" -msgstr "Abmelden" +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/simple.php:6 +msgid "Simple" +msgstr "Beispiel" -#: d:\wordpress\themes\translated\constructor/comments.php:63 -msgid "Log out »" -msgstr "Abgemeldet »" +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/single.php:6 +#, fuzzy +msgid "Single" +msgstr "Kacheln" -#: d:\wordpress\themes\translated\constructor/comments.php:68 -msgid "Name" -msgstr "Name" +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/single.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/column.php:51 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/default.php:25 +msgid "Posted in" +msgstr "Publiziert in" -#: d:\wordpress\themes\translated\constructor/comments.php:68 -#: d:\wordpress\themes\translated\constructor/comments.php:71 -msgid "(required)" -msgstr "(erforderlich)" +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/list.php:6 +msgid "List" +msgstr "Liste" -#: d:\wordpress\themes\translated\constructor/comments.php:71 -msgid "Mail (will not be published)" -msgstr "E-Mail (bleibt vertraulich)" +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/column.php:6 +msgid "Column" +msgstr "Spalte" -#: d:\wordpress\themes\translated\constructor/comments.php:78 -#, php-format -msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" -msgstr "<strong>XHTML:</strong> Diese Tags sind verfügbar: <code>%s</code>" +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/tiles.php:6 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/tile.php:6 +msgid "Tile" +msgstr "Kacheln" -#: d:\wordpress\themes\translated\constructor/comments.php:82 -msgid "Submit Comment" -msgstr "Kommentar abschicken" +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/default.php:6 +msgid "Default" +msgstr "Standard" -#: d:\wordpress\themes\translated\constructor/functions.php:217 -msgid "Home" -msgstr "Startseite" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:16 +msgid "Themes" +msgstr "Themes" -#: d:\wordpress\themes\translated\constructor/functions.php:248 -#: d:\wordpress\themes\translated\constructor/page.php:24 -#: d:\wordpress\themes\translated\constructor/sidebar.php:18 -msgid "Pages" -msgstr "Seiten" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:17 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:1 +msgid "Layout" +msgstr "Layout" -#: d:\wordpress\themes\translated\constructor/functions.php:282 -#, php-format -msgid "%1$s is proudly powered by %2$s" -msgstr "%1$s präsentiert von %2$s" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:18 +msgid "Templates" +msgstr "Templates" -#: d:\wordpress\themes\translated\constructor/functions.php:283 -msgid "Constructor Theme" -msgstr "Constructor Theme" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:19 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:1 +msgid "Header" +msgstr "Kopf" -#: d:\wordpress\themes\translated\constructor/functions.php:284 -#, php-format -msgid "%1$s and %2$s." -msgstr "%1$s und %2$s." +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:20 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:122 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:52 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:1 +msgid "Content" +msgstr "Inhalt" -#: d:\wordpress\themes\translated\constructor/functions.php:284 -msgid "Entries (RSS)" -msgstr "Beiträge (RSS)" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:21 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:1 +msgid "Comments" +msgstr "Kommentare" -#: d:\wordpress\themes\translated\constructor/functions.php:284 -msgid "Comments (RSS)" -msgstr "Kommentare (RSS)" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:22 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:1 +msgid "Footer" +msgstr "Fuß" -#: d:\wordpress\themes\translated\constructor/functions.php:288 -#, php-format -msgid "%d queries. %s seconds." -msgstr "%d Abfragen. %s Sekunden." +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:23 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:1 +msgid "Fonts" +msgstr "Schriften" -#: d:\wordpress\themes\translated\constructor/functions.php:306 -msgid "No Image" -msgstr "Kein Bild" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:1 +msgid "Colors" +msgstr "Farben" -#: d:\wordpress\themes\translated\constructor/layout-default.php:20 -#: d:\wordpress\themes\translated\constructor/layout-list.php:25 -#: d:\wordpress\themes\translated\constructor/page.php:23 -msgid "Read the rest of this entry »" -msgstr "Den Rest des Beitrags lesen »" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:25 +msgid "Design" +msgstr "Design" -#: d:\wordpress\themes\translated\constructor/layout-default.php:26 -#: d:\wordpress\themes\translated\constructor/page.php:32 -#: d:\wordpress\themes\translated\constructor/sidebar.php:22 -msgid "Tags" -msgstr "Tags" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:26 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:1 +msgid "CSS" +msgstr "CSS" -#: d:\wordpress\themes\translated\constructor/layout-default.php:27 -#: d:\wordpress\themes\translated\constructor/page.php:33 -msgid "Edit" -msgstr "Bearbeiten" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:27 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:1 +msgid "Images" +msgstr "Bilder" -#: d:\wordpress\themes\translated\constructor/layout-default.php:28 -#: d:\wordpress\themes\translated\constructor/page.php:34 -msgid "No Comments »" -msgstr "Keine Kommentare »" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:2 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:101 +msgid "Slideshow" +msgstr "Diashow" -#: d:\wordpress\themes\translated\constructor/layout-default.php:28 -#: d:\wordpress\themes\translated\constructor/page.php:34 -msgid "1 Comment »" -msgstr "1 Kommentar »" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:29 +msgid "Save" +msgstr "Speichern" -#: d:\wordpress\themes\translated\constructor/layout-default.php:28 -#: d:\wordpress\themes\translated\constructor/page.php:34 -msgid "% Comments »" -msgstr "% Kommentare »" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:30 +msgid "Clean" +msgstr "" -#: d:\wordpress\themes\translated\constructor/layout-default.php:28 -#: d:\wordpress\themes\translated\constructor/page.php:34 -msgid "Comments Closed" -msgstr "Kommentarbereich geschlossen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:31 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:18 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:11 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:6 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:2 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:110 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:111 +msgid "Help" +msgstr "Hilfe" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:72 +msgid "The quick brown fox jumps over the lazy dog" +msgstr "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern" -#: d:\wordpress\themes\translated\constructor/page.php:29 -msgid "Back to Parent Page" -msgstr "Eine Ebene zurück" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:75 +msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 0123456789" +msgstr "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 0123456789" -#: d:\wordpress\themes\translated\constructor/sidebar.php:20 -msgid "Categories" -msgstr "Kategorien" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:79 +msgid "Google Web Fonts" +msgstr "Google Web Fonts" -#: d:\wordpress\themes\translated\constructor/sidebar.php:27 -msgid "Meta" -msgstr "Meta" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:80 +msgid "Google Web Fonts lets you browse all the fonts available via the Google Web Fonts API. All fonts in the directory are available for use on your website under an open source license and are served by Google servers." +msgstr "" -#: d:\wordpress\themes\translated\constructor/template-archive.php:30 -#, php-format -msgid "%b" -msgstr "%b" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:81 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:100 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:111 +msgid "Font Weight" +msgstr "Schriftgewichtung" -#: d:\wordpress\themes\translated\constructor/template-archive.php:31 -msgid "%B" -msgstr "%B" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:82 +msgid "Defines from thin to thick characters. 400 is the same as \"normal\", and 700 is the same as \"bold\"" +msgstr "" -#: d:\wordpress\themes\translated\constructor/template-sitemap.php:32 -msgid "Archives" -msgstr "Archiv" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:101 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:112 +msgid "Text Decoration" +msgstr "Textdekoration" -#: d:\wordpress\themes\translated\constructor/admin/settings.php:64 -#, php-format -msgid "File \"%s\" is not a image (jpeg, png, gif)" -msgstr "Datei \"%s\" ist kein Bild (jpeg, png, gif)" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:87 +msgid "No capitalization. The text renders as it is. This is default" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings.php:125 -#: d:\wordpress\themes\translated\constructor/admin/settings.php:162 -msgid "Customize Theme" -msgstr "Theme anpassen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:88 +msgid "Transforms the first character of each word to uppercase" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings.php:125 -msgid "Customize" -msgstr "Anpassen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:89 +msgid "Transforms all characters to uppercase" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings.php:163 -msgid "Options saved." -msgstr "Einstellungen gespeichert" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:90 +msgid "Transforms all characters to lowercase" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings.php:167 -msgid "Errors" -msgstr "Fehler" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:95 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:36 +msgid "Title" +msgstr "Title" -#: d:\wordpress\themes\translated\constructor/admin/settings.php:194 -msgid "Save Changes" -msgstr "Änderungen speichern" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:106 +msgid "Description" +msgstr "Beschreibung" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:1 -msgid "Colors" -msgstr "Farben" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:116 +msgid "Headers" +msgstr "Header" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:62 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:52 msgid "Opacity" msgstr "Durchsichtigkeit" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:64 -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:65 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:54 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:55 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:195 msgid "None" msgstr "Keine" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:67 -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:68 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:57 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:58 msgid "Color" msgstr "Farbe" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:70 -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:71 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:61 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:62 +#, fuzzy +msgid "Dark Low" +msgstr "Dunkel" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:64 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:65 msgid "Dark" msgstr "Dunkel" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:73 -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:74 -msgid "Light" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:67 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:68 +#, fuzzy +msgid "Dark High" +msgstr "Dunkel" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:71 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:72 +#, fuzzy +msgid "Light Low" msgstr "Hell" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:79 -msgid "Shadow" -msgstr "Schattierung" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:74 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:75 +msgid "Light" +msgstr "Hell" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:82 -msgid "Only for Safari and Chrome" -msgstr "Nur für Safari und Chrome" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:77 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:78 +#, fuzzy +msgid "Light High" +msgstr "Hell" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:86 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:83 msgid "Elements Colors" msgstr "Elementfarben" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:89 -msgid "background" -msgstr "Hintergrund" - -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:92 -msgid "background alternative" -msgstr "Hintergrund, alternativ" - -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:95 -msgid "opacity style color" -msgstr "Farbe für Durchsichtigkeit" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:86 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:89 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:92 +msgid "tags" +msgstr "Tags" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:98 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:95 msgid "text" msgstr "Text" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:101 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:98 msgid "text alternative" msgstr "Text, alternativ" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:104 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:101 +msgid "background" +msgstr "Hintergrund" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:104 +msgid "background alternative" +msgstr "Hintergrund, alternativ" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:107 +msgid "background for forms" +msgstr "Hintergrund für Formulare" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:110 msgid "border" msgstr "Rand" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:107 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:113 msgid "border alternative" msgstr "Rand, alternativ" -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:110 -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:113 -#: d:\wordpress\themes\translated\constructor/admin/settings/colors.php:116 -msgid "tags" -msgstr "Tags" - -#: d:\wordpress\themes\translated\constructor/admin/settings/content.php:1 -msgid "Content" -msgstr "Inhalt" - -#: d:\wordpress\themes\translated\constructor/admin/settings/content.php:4 -msgid "Posts" -msgstr "Beiträge" - -#: d:\wordpress\themes\translated\constructor/admin/settings/content.php:7 -msgid "Show author link" -msgstr "Link zum Autor anzeigen" - -#: d:\wordpress\themes\translated\constructor/admin/settings/css.php:1 -msgid "CSS" -msgstr "CSS" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:116 +msgid "opacity style color" +msgstr "Farbe für Durchsichtigkeit" -#: d:\wordpress\themes\translated\constructor/admin/settings/css.php:5 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:9 #, php-format msgid "<font color=\"red\"><b>Warning!</b></font>: File \"%s\" is not writable." msgstr "<font color=\"red\"><b>Warnung!</b></font>: Datei \"%s\" ist schreibgeschützt." -#: d:\wordpress\themes\translated\constructor/admin/settings/export.php:1 -msgid "Export" -msgstr "Export" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:19 +#, php-format +msgid "CSS is Cascading Style Sheets - read manual for beginners <a href=\"%1$s\">%1$s</a>" +msgstr "CSS ist geschachtelte Gestaltungsvorlage - Lies Anleitung für Anfänger <a href=\"%1$s\">%1$s</a>" -#: d:\wordpress\themes\translated\constructor/admin/settings/export.php:2 -msgid "Export Current Theme" -msgstr "Aktuelles Theme exportieren" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:20 +msgid "CSS rules" +msgstr "CSS Regeln" -#: d:\wordpress\themes\translated\constructor/admin/settings/export.php:3 -msgid "Use this is options for export your changes" -msgstr "Änderungen können hier gespeichert werden" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:35 +msgid "CSS example" +msgstr "CSS Beispiel" -#: d:\wordpress\themes\translated\constructor/admin/settings/export.php:3 -msgid "save changes before export" -msgstr "vorher sichern" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:44 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:37 +msgid "Header menu" +msgstr "Menu" -#: d:\wordpress\themes\translated\constructor/admin/settings/export.php:6 -msgid "click here and save file" -msgstr "Datei speichern" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:48 +msgid "Sidebar" +msgstr "Sidebar" -#: d:\wordpress\themes\translated\constructor/admin/settings/export.php:12 -#, php-format -msgid "For import theme - use your FTP access and create new folder in folder <code>%s/themes</code> and upload <code>config.php</code>" -msgstr "Zum Neuimport FTP verwenden und neuen Ordner in <code>%s/themes</code> erstellen, die Datei <code>config.php</code> dorthin hochladen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:63 +msgid "Template" +msgstr "Template" -#: d:\wordpress\themes\translated\constructor/admin/settings/fonts.php:1 -msgid "Fonts" -msgstr "Schriften" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:28 +msgid "Enable" +msgstr "Aktivieren" -#: d:\wordpress\themes\translated\constructor/admin/settings/fonts.php:6 -msgid "Header Font" -msgstr "Schritart für Seitenkopf" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:34 +#, fuzzy +msgid "By default use images from posts with thumbnails" +msgstr "Vorgabe: Bilder der aktuellen Seite verwenden" -#: d:\wordpress\themes\translated\constructor/admin/settings/fonts.php:13 -#: d:\wordpress\themes\translated\constructor/admin/settings/fonts.php:25 -msgid "The quick brown fox jumps over the lazy dog" -msgstr "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:38 +msgid "Options" +msgstr "Einstellungen" -#: d:\wordpress\themes\translated\constructor/admin/settings/fonts.php:18 -msgid "Body Font" -msgstr "Text-Schriftart" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:40 +msgid "By default slideshow is showing on homepage only" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings/footer.php:1 -msgid "Footer" -msgstr "Fuß" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:43 +msgid "Show on page" +msgstr "Auf Seite anzeigen" -#: d:\wordpress\themes\translated\constructor/admin/settings/footer.php:4 -msgid "Footer Text" -msgstr "Text für Seitenfuß" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:46 +msgid "Show on single post" +msgstr "In Beitrag anzeigen" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:1 -msgid "Header" -msgstr "Kopf" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:49 +#, fuzzy +msgid "Show on archive" +msgstr "Auf Seite anzeigen" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:5 -msgid "Title position" -msgstr "Titelposition" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:55 +msgid "Height" +msgstr "Höhe" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:64 +msgid "Advanced options" +msgstr "Erweiterte Optionen" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:65 +#, fuzzy +msgid "only for default slideshow" +msgstr "Diashow einschalten" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:7 -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:7 -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:8 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:69 +msgid "Number of slides" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:73 +msgid "Autoplay" +msgstr "Autoplay" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:76 +msgid "Effect time (ms)" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:79 +msgid "Timeout between slides (ms)" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:84 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:47 +msgid "Position" +msgstr "Position" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:86 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:87 +msgid "In Content" +msgstr "Im Inhalt" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:90 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:91 +msgid "Over Content" +msgstr "Über dem Inhalt" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:102 +#, fuzzy +msgid "use <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\" title=\"wordpress.org\">NextGEN-Gallery</a>" +msgstr "Verwende <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGEN-Gallery</a>" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:103 +msgid "required <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" title=\"www.longtailvideo.com\">imagerotator.swf</a>" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:121 +msgid "You can use <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGEN-Gallery</a> plugin for build custom slideshow" +msgstr "Mit dem <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGEN-Gallery</a>-Plugin können Diashows angepasst werden" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:196 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:37 msgid "Left" msgstr "Links" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:8 -msgid "Center" -msgstr "Mitte" - -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:9 -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:10 -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:11 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:197 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:38 msgid "Right" msgstr "Rechts" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:14 -msgid "Title colors" -msgstr "Titelfarben" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:198 +msgid "Two" +msgstr "Zwei" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:17 -msgid "title" -msgstr "Titel" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:199 +msgid "Two Left" +msgstr "Zwei, links" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:20 -msgid "description" -msgstr "Beschreibung" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:200 +msgid "Two Right" +msgstr "Zwei, rechts" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:25 -msgid "Header menu" -msgstr "Menu" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:350 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:67 +msgid "Width" +msgstr "Breite" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:28 -msgid "Don't show menu" -msgstr "Menu nicht zeigen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:352 +msgid "Sidebar Width" +msgstr "Breite Sidebar" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:31 -msgid "Show first-level pages" -msgstr "Zeige Hauptseiten" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:354 +#, fuzzy +msgid "Extrabar Width" +msgstr "Breite Extrabar" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:34 -msgid "Show pages in drop-down menu" -msgstr "Zeige Seiten im Drop-Down-Menu" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:356 +msgid "Header Height" +msgstr "Höhe des Headers" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:37 -msgid "Show pages in drop-down menu (2-levels)" -msgstr "Zeige Seiten im Drop-Down-Menu (2 Ebenen)" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:5 +msgid "Meta information" +msgstr "Meta Informationen" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:40 -msgid "Show link to home page" -msgstr "Zeige Link zur Hauptseite" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:8 +msgid "Show post date" +msgstr "Publikationsdatum anzeigen" -#: d:\wordpress\themes\translated\constructor/admin/settings/header.php:43 -msgid "Show link to RSS feed" -msgstr "Zeige Link zum RSS-Feed" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:12 +msgid "Use this options to control what meta information is shown" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:1 -msgid "Images" -msgstr "Bilder" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:19 +msgid "Link to author page" +msgstr "Link zur Webseite des Autors" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:25 +msgid "List of categories" +msgstr "Kategorien" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:31 +msgid "List of tags" +msgstr "Liste der Tags" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:37 +msgid "Link to comments" +msgstr "Kommentare" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:43 +msgid "Sharing Icons" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:69 +msgid "Select which service you would like to use for sharing" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:75 +msgid "Content widgets place" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:76 +msgid "can configured with <a href=\"widgets.php\">widgets</a>, use \"After N Post\" sidebar" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:82 +#, fuzzy +msgid "Show widgets place" +msgstr "Auf Seite anzeigen" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:14 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:87 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:88 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:89 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:90 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:91 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:92 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:93 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:94 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:95 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:96 #, php-format -msgid "<font color=\"red\"><b>Warning!</b></font>: Directory \"%s\" is not writable." -msgstr "<font color=\"red\"><b>Warnung!</b></font>: Ordner \"%s\" ist schreibgeschützt." +msgid "after %d post" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:103 +msgid "You can use short code [widgets] in your post, and can configured with <a href=\"widgets.php\">widgets</a> (use \"In Posts\" sidebar)" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:106 +msgid "Available <a href=\"http://code.google.com/p/wp-constructor/wiki/ConstructorShortcodes\" title=\"Constructor Short Codes\">short codes</a>:" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:25 +msgid "Avatar size" +msgstr "Avatar Größe" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:36 +msgid "Thumbnail position" +msgstr "Position des Thumbnails" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:4 +msgid "Footer Text" +msgstr "Text für Seitenfuß" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:18 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:7 +msgid "Enter the text you want to appear in the Footer (or just enter a space if you don't want any Footer text)" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:9 +msgid "And you can put your Google Analytics code here" +msgstr "Und du kannst dein Google Analytics Code hier einfügen:" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:5 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:34 msgid "Body Image" msgstr "Hintergrundbild für Text" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:23 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:75 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:107 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:117 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:148 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:179 -msgid "preview" -msgstr "Vorschau" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:6 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:42 +msgid "Background Image" +msgstr "Hintergrundbild" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:29 -msgid "Image Repeat" -msgstr "Bildwiederholung" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:7 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:50 +#, fuzzy +msgid "Header Wrapper Image" +msgstr "Bild für Sidebar" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:30 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:31 -msgid "No Repeat" -msgstr "Ohne Wiederholung" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:8 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:64 +#, fuzzy +msgid "Content Wrapper Image" +msgstr "Inhaltsbild" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:34 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:35 -msgid "Repeat Horizontal" -msgstr "Horizontal wiederholen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:9 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:92 +#, fuzzy +msgid "Footer Wrapper Image" +msgstr "Bild für Fußbereich" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:38 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:39 -msgid "Repeat Vertical" -msgstr "Vertikal wiederholen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:10 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:57 +msgid "Header Image" +msgstr "Bild für Header" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:43 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:44 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:83 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:84 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:97 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:98 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:111 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:112 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:125 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:126 -msgid "Tile" -msgstr "Kacheln" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:11 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:71 +msgid "Content Image" +msgstr "Inhaltsbild" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:50 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:81 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:123 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:154 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:185 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:12 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:99 +msgid "Footer Image" +msgstr "Bild für Fußbereich" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:13 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:78 +msgid "Sidebar Image" +msgstr "Bild für Sidebar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:25 +#, php-format +msgid "<font color=\"red\"><b>Warning!</b></font>: Directory \"%s\" is not writable." +msgstr "<font color=\"red\"><b>Warnung!</b></font>: Ordner \"%s\" ist schreibgeschützt." + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:85 +msgid "Extrabar Image" +msgstr "Bild für Extrabar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:111 +msgid "See helpful illustration!" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:132 +msgid "Preview image" +msgstr "Bildvorschau" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:132 +msgid "preview" +msgstr "Vorschau" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:133 +msgid "Remove image (only from theme)" +msgstr "Bild löschen (nur aus dem Theme)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:133 +msgid "clear" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:153 +msgid "Fixed position" +msgstr "Feste position" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:175 msgid "Image Position" msgstr "Bildposition" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:51 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:82 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:124 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:155 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:186 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:176 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:10 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:49 msgid "Top Left" msgstr "Oben links" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:52 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:83 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:125 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:156 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:187 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:177 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:11 msgid "Top Center" msgstr "Oben Mitte" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:53 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:84 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:126 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:157 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:188 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:178 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:12 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:51 msgid "Top Right" msgstr "Oben rechts" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:57 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:88 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:130 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:161 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:192 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:182 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:55 msgid "Center Left" msgstr "Mitte links" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:58 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:89 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:131 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:162 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:193 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:183 msgid "Center Center" msgstr "Mitte" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:59 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:90 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:132 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:163 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:194 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:184 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:57 msgid "Center Right" msgstr "Mitte rechts" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:63 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:94 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:136 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:167 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:198 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:188 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:22 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:61 msgid "Bottom Left" msgstr "Unten links" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:64 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:95 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:137 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:168 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:199 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:189 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:23 msgid "Bottom Center" msgstr "Unten Mitte" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:65 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:96 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:138 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:169 -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:200 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:190 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:63 msgid "Bottom Right" msgstr "Unten rechts" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:70 -msgid "Background Image" -msgstr "Hintergrundbild" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:193 +msgid "Image Repeat" +msgstr "Bildwiederholung" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:102 -msgid "Content Image" -msgstr "Inhaltsbild" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:194 +msgid "No Repeat" +msgstr "Ohne Wiederholung" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:102 -msgid "repeat by Y and w/out opacity" -msgstr "In y-Richtung wiederholen, nicht durchscheinend" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:195 +msgid "Repeat Horizontal" +msgstr "Horizontal wiederholen" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:112 -msgid "Sidebar Image" -msgstr "Bild für Sidebar" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:197 +msgid "Repeat Vertical" +msgstr "Vertikal wiederholen" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:143 -msgid "Extrabar Image" -msgstr "Bild für Extrabar" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:7 +msgid "Title position" +msgstr "Titelposition" -#: d:\wordpress\themes\translated\constructor/admin/settings/images.php:174 -msgid "Footer Image" -msgstr "Bild für Fußbereich" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:29 +msgid "Hidden title" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:1 -msgid "Layout" -msgstr "Layout" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:32 +msgid "hide title by CSS" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:50 -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:32 -msgid "Options" -msgstr "Einstellungen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:38 +msgid "menu can configured with <a href=\"widgets.php\">widgets</a>, use \"header\" sidebar" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:53 -msgid "Container Width" -msgstr "Containerbreite" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:44 +msgid "Show top menu" +msgstr "Zeige Top-Navigation" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:62 -msgid "Sidebar Width" -msgstr "Breite Sidebar" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:70 +msgid "stretch across the width" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:71 -msgid "Extra Bar Width" -msgstr "Breite Extrabar" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:74 +msgid "You can use <a href=\"nav-menus.php\">navigation menu</a> with name \"Header Menu\"" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:78 -msgid "Homepage" -msgstr "Startseite" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:78 +msgid "Disable pages" +msgstr "Seiten deaktivieren" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:80 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:81 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:94 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:95 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:108 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:109 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:122 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:123 -msgid "Default" -msgstr "Standard" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:79 +msgid "Show first-level pages" +msgstr "Zeige Hauptseiten" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:86 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:87 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:100 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:101 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:114 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:115 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:128 -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:129 -msgid "List" -msgstr "Liste" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:80 +msgid "Show pages in drop-down menu" +msgstr "Zeige Seiten im Drop-Down-Menu" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:92 -msgid "Archive" -msgstr "Archiv" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:81 +msgid "Show pages in drop-down menu (2-levels)" +msgstr "Zeige Seiten im Drop-Down-Menu (2 Ebenen)" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:106 -msgid "Search" -msgstr "Suchen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:82 +msgid "Show pages in drop-down menu (3-levels)" +msgstr "Zeige Seiten im Drop-Down-Menü (3 Ebenen)" -#: d:\wordpress\themes\translated\constructor/admin/settings/layout.php:120 -msgid "Index" -msgstr "Index" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:102 +msgid "Exclude:" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:1 -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:5 -msgid "Sidebar" -msgstr "Sidebar" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:87 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:104 +msgid "(IDs, coma separated)" +msgstr "(IDs, Koma getrennt)" -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:14 -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:15 -msgid "Two" -msgstr "Zwei" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:92 +msgid "Group categories in one menu item" +msgstr "" -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:21 -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:22 -msgid "Two Right" -msgstr "Zwei, rechts" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:95 +msgid "Disable categories" +msgstr "Kategorien deaktivieren" -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:24 -#: d:\wordpress\themes\translated\constructor/admin/settings/sidebar.php:25 -msgid "Two Left" -msgstr "Zwei, links" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:96 +#, fuzzy +msgid "Show first-level categories" +msgstr "Zeige Hauptseiten" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:2 -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:67 -msgid "Slideshow" -msgstr "Diashow" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:97 +msgid "Show categories in drop-down menu" +msgstr "Zeige Kategorien im Drop-Down-Menü" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:26 -msgid "Enable slideshow" -msgstr "Diashow einschalten" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:98 +msgid "Show categories in drop-down menu (2-levels)" +msgstr "Zeige Kategorien im Drop-Down-Menü (2 Ebenen)" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:28 -msgid "by default use images from posts on current page" -msgstr "Vorgabe: Bilder der aktuellen Seite verwenden" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:99 +msgid "Show categories in drop-down menu (3-levels)" +msgstr "Zeige Kategorien im Drop-Down-Menü (2 Ebenen)" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:35 -msgid "Show on page" -msgstr "Auf Seite anzeigen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:106 +msgid "Custom title:" +msgstr "Manueller Titel:" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:38 -msgid "Show on single post" -msgstr "In Beitrag anzeigen" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:110 +msgid "Links" +msgstr "Links" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:43 -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:44 -msgid "In Content" -msgstr "Im Inhalt" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:113 +msgid "Show link to home page" +msgstr "Zeige Link zur Hauptseite" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:47 -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:48 -msgid "Over Content" -msgstr "Über dem Inhalt" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:116 +msgid "Show link to RSS feed" +msgstr "Zeige Link zum RSS-Feed" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:55 -msgid "Height" -msgstr "Höhe" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:118 +msgid "Tools" +msgstr "Tools" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:67 -msgid "use <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGEN-Gallery</a>" -msgstr "Verwende <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGEN-Gallery</a>" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:121 +msgid "Show search form" +msgstr "Zeige Suchformular" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:69 -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:70 -msgid "Disable" -msgstr "Deaktivieren" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:6 +msgid "Constructor Wordpress Theme" +msgstr "Constructor Wordpress Theme" -#: d:\wordpress\themes\translated\constructor/admin/settings/slideshow.php:84 -msgid "You can use <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGEN-Gallery</a> plugin for build custom slideshow" -msgstr "Mit dem <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGEN-Gallery</a>-Plugin können Diashows angepasst werden" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:8 +msgid "Project Homepage" +msgstr "Project Homepage" -#: d:\wordpress\themes\translated\constructor/admin/settings/themes.php:1 -msgid "Themes" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:9 +msgid "Author Homepage" +msgstr "Homepage des Autors" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:12 +msgid "Update Theme" +msgstr "Aktualisiere Theme" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:13 +msgid "" +"Before update «Constructor theme» you should be save all your changes and download your theme to computer,\n" +" because wordpress cleans theme folder before install new version" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:16 +msgid "Related Links" +msgstr "Ähnliche Links" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:27 +msgid "Donate" +msgstr "Spende" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:29 +msgid "You can send your Name and Url for promote on <a href=\"http://donate.hohli.com/\">Donate page</a>" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:46 +msgid "Author works" +msgstr "Projekte des Autors" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/clean.php:3 +msgid "Clean all changes" +msgstr "Reset der Einstellungen" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/clean.php:5 +#, fuzzy +msgid "Clean Theme" +msgstr "Theme anpassen" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:1 +msgid "Save As" +msgstr "Speichern unter" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:13 +msgid "Save Current Theme As ..." +msgstr "Aktuelles Theme exportieren" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:24 +msgid "Theme Name" +msgstr "Name des Themes" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:28 +#, fuzzy +msgid "Theme URI" msgstr "Themes" -#: d:\wordpress\themes\translated\constructor/admin/settings/themes.php:42 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:36 +msgid "Version" +msgstr "Version" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:40 +msgid "Author" +msgstr "Autor" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:44 +msgid "Author URI" +msgstr "Homeage des Autors" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:49 +msgid "Save Theme" +msgstr "Änderungen speichern" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:86 msgid "File \"style.css\" is not exists" msgstr "Datei \"style.css\" existiert nicht" -#: d:\wordpress\themes\translated\constructor/admin/settings/themes.php:43 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:87 msgid "Anonymous" msgstr "Anonym" -#: d:\wordpress\themes\translated\constructor/admin/settings/themes.php:55 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:103 msgid "version" msgstr "Version" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:17 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:42 +msgid "Homepage" +msgstr "Startseite" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:19 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:44 +msgid "Post" +msgstr "Beiträge" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:21 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:46 +msgid "Page" +msgstr "Seiten" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:23 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:48 +msgid "Search" +msgstr "Suchen" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:25 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:50 +msgid "Date" +msgstr "Datum" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:27 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:52 +msgid "Category" +msgstr "Kategorien" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:29 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:54 +msgid "Tag" +msgstr "Tags" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:38 +msgid "Tile Template" +msgstr "Template" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:39 +msgid "Optimized for container with width equals to 1024px" +msgstr "Optimiert für Container mit einer Breite bis zu 1024px" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:53 +msgid "Borders" +msgstr "Ränder" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:61 +msgid "Border radius" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:69 +msgid "Features for modern browsers (not IE of course)" +msgstr "Features für moderne Browser (IE wird nicht unterstützt)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:73 +msgid "Shadow" +msgstr "Schattierung" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:82 +msgid "Horizontal offset" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:85 +msgid "Vertical offset" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:88 +msgid "Blur" +msgstr "Blur" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:256 +msgid "Home" +msgstr "Startseite" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:295 +msgid "Search..." +msgstr "Suchen..." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 +#, php-format +msgid "%1$s and %2$s." +msgstr "%1$s und %2$s." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 +msgid "Entries (RSS)" +msgstr "Beiträge (RSS)" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 +msgid "Comments (RSS)" +msgstr "Kommentare (RSS)" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:465 +#, php-format +msgid "%d queries. %s seconds." +msgstr "%d Abfragen. %s Sekunden." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:53 +msgid "Please check permissions for next directories:" +msgstr "Bitte überprüfe die Rechte für folgende Verzeichnisse:" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:171 +#, php-format +msgid "File \"%s\" is not a image (jpeg, png, gif, tiff)" +msgstr "Datei \"%s\" ist kein Bild (jpeg, png, gif)" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:178 +#, php-format +msgid "File \"%s\" can't be move to \"/constructor/current/\" folder" +msgstr "Datei \"%s\" kann nicht ins Ordner \"/constructor/current/\" verschoben werden" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:326 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:330 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:48 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:51 +#, php-format +msgid "Directory \"%s\" is not writable." +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:344 +#, php-format +msgid "Can't copy file \"%s\" to \"%s\"." +msgstr "Datei «%s» kann nicht nach «%s» kopiert werden." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:365 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:63 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:89 +#, php-format +msgid "Can't copy file \"%s\"." +msgstr "Datei \"%s\" kann nicht kopiert werden." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:398 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:403 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:128 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:133 +#, php-format +msgid "Can't save file \"%s\"." +msgstr "Datei «%s» kann nicht gespeichert werden." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:521 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:530 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:713 +msgid "Customize Theme" +msgstr "Theme anpassen" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:522 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:531 +msgid "Customize" +msgstr "Anpassen" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:553 +msgid "Standart Fonts" +msgstr "Schritard Schriftarten" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:561 +msgid "Google Fonts" +msgstr "Google Fonts" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:716 +msgid "If you like this theme and find it useful, help keep this theme free and actively developed by clicking the donate button (via PayPal or CC)" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:720 +msgid "Options saved." +msgstr "Einstellungen gespeichert" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:729 +msgid "Some images can't be upload. Please check permissions" +msgstr "Einige Bilder können nicht hochgeladen werden. Bitte prüfe die Rechte" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:752 +msgid "Save Changes" +msgstr "Änderungen speichern" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:136 +msgid "Theme was saved, please reload page for view changes" +msgstr "Theme wurde gespeichert, bitte aktualisiere die Webseite um die Änderungen zu sehen" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:163 +msgid "Theme was cleaned" +msgstr "" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:165 +#, php-format +msgid "System can't remove folder "%s"" +msgstr "System kann das Ordner "%s" nicht löschen" + +#~ msgid "F jS, Y" +#~ msgstr "j. F Y" + +#~ msgid "Leave a Reply" +#~ msgstr "Eine Antwort schreiben" + +#~ msgid "Leave a Reply for %s" +#~ msgstr "Eine Antwort für %s schreiben" + +#~ msgid "You must be <a href=\"%s\">logged in</a> to post a comment." +#~ msgstr "Um einen Kommentar zu schreiben, bitte <a href=\"%s\">Anmelden</a>." + +#~ msgid "Logged in as <a href=\"%1$s\">%2$s</a>." +#~ msgstr "Als <a href=\"%1$s\">%2$s</a> angemeldet." + +#~ msgid "Log out of this account" +#~ msgstr "Abmelden" + +#~ msgid "Log out »" +#~ msgstr "Abgemeldet »" + +#~ msgid "Name" +#~ msgstr "Name" + +#~ msgid "(required)" +#~ msgstr "(erforderlich)" + +#~ msgid "Mail (will not be published)" +#~ msgstr "E-Mail (bleibt vertraulich)" + +#~ msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" +#~ msgstr "<strong>XHTML:</strong> Diese Tags sind verfügbar: <code>%s</code>" + +#~ msgid "Errors" +#~ msgstr "Fehler" + +#~ msgid "Only for Safari and Chrome" +#~ msgstr "Nur für Safari und Chrome" + +#~ msgid "Show author link" +#~ msgstr "Link zum Autor anzeigen" + +#~ msgid "Export" +#~ msgstr "Export" + +#~ msgid "Use this is options for export your changes" +#~ msgstr "Änderungen können hier gespeichert werden" + +#~ msgid "save changes before export" +#~ msgstr "vorher sichern" + +#~ msgid "click here and save file" +#~ msgstr "Datei speichern" + +#~ msgid "" +#~ "For import theme - use your FTP access and create new folder in folder " +#~ "<code>%s/themes</code> and upload <code>config.php</code>" +#~ msgstr "" +#~ "Zum Neuimport FTP verwenden und neuen Ordner in <code>%s/themes</code> " +#~ "erstellen, die Datei <code>config.php</code> dorthin hochladen" + +#~ msgid "Body Font" +#~ msgstr "Text-Schriftart" + +#~ msgid "Center" +#~ msgstr "Mitte" + +#~ msgid "Title colors" +#~ msgstr "Titelfarben" + +#~ msgid "title" +#~ msgstr "Titel" + +#~ msgid "Don't show menu" +#~ msgstr "Menu nicht zeigen" + +#~ msgid "repeat by Y and w/out opacity" +#~ msgstr "In y-Richtung wiederholen, nicht durchscheinend" + +#~ msgid "Container Width" +#~ msgstr "Containerbreite" + +#~ msgid "Archive" +#~ msgstr "Archiv" + +#~ msgid "Index" +#~ msgstr "Index" diff --git a/wp-content/themes/constructor/lang/it_IT.mo b/wp-content/themes/constructor/lang/it_IT.mo index 00041f0668cb2e71327fad514839ed29e55f9c77..1612a65fef588c2e514f4dda0bc32f7fc67a5a43 100644 Binary files a/wp-content/themes/constructor/lang/it_IT.mo and b/wp-content/themes/constructor/lang/it_IT.mo differ diff --git a/wp-content/themes/constructor/lang/it_IT.po b/wp-content/themes/constructor/lang/it_IT.po index 3c79982cc8fa7b1676e4934deb9e3080f858416a..5608b3fb226d5d4f1115c0835d776b5cf7b1330d 100644 --- a/wp-content/themes/constructor/lang/it_IT.po +++ b/wp-content/themes/constructor/lang/it_IT.po @@ -4,7 +4,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-19 16:40+0200\n" "PO-Revision-Date: \n" -"Last-Translator: giovanni <giococcodue@gmail.com>\n" +"Last-Translator: Anton Shevchuk <Anton.Shevchuk@gmail.com>\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -121,7 +121,7 @@ msgstr "Nessuna risposta" #: W:/wordpress/wp-content/themes/constructor/comments.php:21 msgid "One Response" -msgstr "Una rispsota" +msgstr "Una risposta" #: W:/wordpress/wp-content/themes/constructor/comments.php:21 msgid "% Responses" diff --git a/wp-content/themes/constructor/lang/pt_BR.mo b/wp-content/themes/constructor/lang/pt_BR.mo new file mode 100644 index 0000000000000000000000000000000000000000..a6c812960ac152678262096aa8ddac5e8ee811ff Binary files /dev/null and b/wp-content/themes/constructor/lang/pt_BR.mo differ diff --git a/wp-content/themes/constructor/lang/pt_BR.po b/wp-content/themes/constructor/lang/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..85286d724a514c7e7ef0d66b2b414582efb66b11 --- /dev/null +++ b/wp-content/themes/constructor/lang/pt_BR.po @@ -0,0 +1,1286 @@ +msgid "" +msgstr "" +"Project-Id-Version: Constructor Theme\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-07-14 12:36+0200\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: Anton Shevchuk <AntonShevchuk@gmail.com>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Russian\n" +"X-Poedit-Country: RUSSIAN FEDERATION\n" +"X-Poedit-KeywordsList: __;_e;_c\n" +"X-Poedit-Basepath: .\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11) ? 0 : ((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2);\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-SearchPath-0: W:/www/wordpress3/wp-content/themes/constructor\n" + +#: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:22 +msgid "Pages" +msgstr "Páginas" + +#: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:30 +msgid "Categories" +msgstr "Categorias" + +#: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:32 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:29 +msgid "Tags" +msgstr "Tags" + +#: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:37 +msgid "Meta" +msgstr "Meta" + +#: W:/www/wordpress3/wp-content/themes/constructor/navigation.php:16 +msgid "<span>«</span> Older Entries" +msgstr "<span>«</span> Entradas mais Antigas" + +#: W:/www/wordpress3/wp-content/themes/constructor/navigation.php:17 +msgid "Newer Entries <span>»</span>" +msgstr "Entradas mais novas <span>»</span>" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:16 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:18 +#, php-format +msgid "Permanent Link to %s" +msgstr "Link permanente para %s" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:19 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:21 +msgid "Read the rest of this entry »" +msgstr "Ler o resto desta Entrada »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:26 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:26 +msgid "Back to Parent Page" +msgstr "Voltar para a página pai" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:30 +msgid "Edit" +msgstr "Editar" + +#: W:/www/wordpress3/wp-content/themes/constructor/slideshow.php:50 +msgid "Read more »" +msgstr "Ler mais »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 +msgid "No Comments »" +msgstr "Sem comentários »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 +msgid "1 Comment »" +msgstr "1 Comentário »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 +msgid "% Comments »" +msgstr "% Comentários »" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 +msgid "Comments Closed" +msgstr "Comentários fechados" + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:10 +msgid "This post is password protected. Enter the password to view comments." +msgstr "Esta postagem é protegida por senha. Digite a senha para ver os comentários." + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:18 +msgid "No Responses" +msgstr "Sem respostas" + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:18 +msgid "One Response" +msgstr "Uma resposta" + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:18 +msgid "% Responses" +msgstr "% Respostas" + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:18 +#, php-format +msgid "to “%s”" +msgstr "para “%s”" + +#: W:/www/wordpress3/wp-content/themes/constructor/comments.php:31 +msgid "Comments are closed." +msgstr "Comentários estão fechados." + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:14 +msgid "Twitter" +msgstr "Twitter" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:17 +msgid "Facebook" +msgstr "Facebook" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:20 +msgid "Del.icio.us" +msgstr "Del.icio.us" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:23 +msgid "Reddit" +msgstr "Reddit" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:26 +msgid "VKontakte" +msgstr "VKontakte" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:29 +msgid "Digg" +msgstr "Digg" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:32 +msgid "Mixx" +msgstr "Mixx" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:35 +msgid "StumbleUpon" +msgstr "StumbleUpon" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:38 +msgid "Google" +msgstr "Google" + +#: W:/www/wordpress3/wp-content/themes/constructor/social.php:41 +msgid "Memori" +msgstr "Memori" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-archive.php:30 +#, php-format +msgid "%b" +msgstr "%b" + +#: W:/www/wordpress3/wp-content/themes/constructor/template-archive.php:31 +msgid "%B" +msgstr "%B" + +#: W:/www/wordpress3/wp-content/themes/constructor/404.php:11 +msgid "Error 404 - Not Found" +msgstr "Erro 404 - Não encontrado" + +#: W:/www/wordpress3/wp-content/themes/constructor/404.php:12 +msgid "Sorry, but you are looking for something that isn’t here." +msgstr "desculpe, mas você está procurando algo que não se encontra aqui." + +#: W:/www/wordpress3/wp-content/themes/constructor/functions.php:111 +msgid "Header Menu" +msgstr "Menu cabeçalho" + +#: W:/www/wordpress3/wp-content/themes/constructor/functions.php:298 +msgid "No Image" +msgstr "Sem imagens" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:22 +msgid "Author RSS Feed" +msgstr "Autor do Feed RSS" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:22 +msgid "RSS Feed" +msgstr "RSS Feed" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:27 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:33 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s %2$s" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:32 +msgid "Full Name" +msgstr "Nome Completo" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:37 +msgid "Nickname" +msgstr "Apelido" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:42 +msgid "Website" +msgstr "Website" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:43 +msgid "Visit author website" +msgstr "Visitar site do autor" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:47 +msgid "ICQ" +msgstr "ICQ" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:52 +msgid "AIM" +msgstr "AIM" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:57 +msgid "Yahoo IM" +msgstr "Yahoo IM" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:62 +msgid "MSN" +msgstr "MSN" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:67 +msgid "About Me" +msgstr "Sobre mim" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:75 +#, php-format +msgid "Latest posts by %s" +msgstr "Últimas postagens de %s" + +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:88 +msgid "No posts by this author." +msgstr "Nenhuma postagem deste autor." + +#: W:/www/wordpress3/wp-content/themes/constructor/template-sitemap.php:31 +msgid "Archives" +msgstr "Arquivos" + +#: W:/www/wordpress3/wp-content/themes/constructor/themes/example/config.php:49 +#, php-format +msgid "%1$s is proudly powered by %2$s" +msgstr "%1$s é orgulhosamente construído por %2$s" + +#: W:/www/wordpress3/wp-content/themes/constructor/themes/example/config.php:50 +msgid "Constructor Theme" +msgstr "Tema Constructor" + +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/simple.php:6 +msgid "Simple" +msgstr "Simples" + +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/single.php:6 +msgid "Single" +msgstr "Único" + +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/single.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/column.php:51 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/default.php:25 +msgid "Posted in" +msgstr "Postado em" + +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/list.php:6 +msgid "List" +msgstr "Lista" + +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/column.php:6 +msgid "Column" +msgstr "Coluna" + +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/tiles.php:6 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/tile.php:6 +msgid "Tile" +msgstr "Ladrilho" + +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/default.php:6 +msgid "Default" +msgstr "Padrão" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:16 +msgid "Themes" +msgstr "Temas" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:17 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:1 +msgid "Layout" +msgstr "Layout" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:18 +msgid "Templates" +msgstr "Templates" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:19 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:1 +msgid "Header" +msgstr "Cabeçalho" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:20 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:122 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:52 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:1 +msgid "Content" +msgstr "Conteúdo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:21 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:1 +msgid "Comments" +msgstr "Comentários" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:22 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:1 +msgid "Footer" +msgstr "Rodapé" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:23 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:1 +msgid "Fonts" +msgstr "Fontes" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:1 +msgid "Colors" +msgstr "Cores" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:25 +msgid "Design" +msgstr "Design" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:26 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:1 +msgid "CSS" +msgstr "CSS" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:27 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:1 +msgid "Images" +msgstr "Imagens" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:2 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:101 +msgid "Slideshow" +msgstr "Slideshow" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:29 +msgid "Save" +msgstr "Salvar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:30 +msgid "Clean" +msgstr "Limpar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:31 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:18 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:11 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:6 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:2 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:110 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:111 +msgid "Help" +msgstr "Ajuda" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:72 +msgid "The quick brown fox jumps over the lazy dog" +msgstr "A veloz raposa marrom ataca o cão preguiçoso" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:75 +msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 0123456789" +msgstr "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 0123456789" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:79 +msgid "Google Web Fonts" +msgstr "Fontes da web Google" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:80 +msgid "Google Web Fonts lets you browse all the fonts available via the Google Web Fonts API. All fonts in the directory are available for use on your website under an open source license and are served by Google servers." +msgstr "Google Web Fonts permite que você navegue por todas as fontes disponíveis via a API Google Web Fonts. Todas as fontes para uso no seu site da web festào sob licença opensource e são providas pelos servidores Google." + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:81 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:100 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:111 +msgid "Font Weight" +msgstr "Altura da Fonte" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:82 +msgid "Defines from thin to thick characters. 400 is the same as \"normal\", and 700 is the same as \"bold\"" +msgstr "Define a espessura dos caracteres. 400 é o mesmo que \"normal\", e 700 é o mesmo que \"bold\"" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:101 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:112 +msgid "Text Decoration" +msgstr "Decoração do Texto" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:87 +msgid "No capitalization. The text renders as it is. This is default" +msgstr "Sem capitalização do texto. Ele é renderizado conforme seu tipo normal. Este é o padrão" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:88 +msgid "Transforms the first character of each word to uppercase" +msgstr "Transforma o primeiro caracter da cada palavra para maiúsculo." + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:89 +msgid "Transforms all characters to uppercase" +msgstr "Todo o texto ficará maiúsculo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:90 +msgid "Transforms all characters to lowercase" +msgstr "Todos os carcteres ficarão minúsculos" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:95 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:36 +msgid "Title" +msgstr "Título" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:106 +msgid "Description" +msgstr "Descrição" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:116 +msgid "Headers" +msgstr "Cabeçalhos" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:52 +msgid "Opacity" +msgstr "Opacidade" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:54 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:55 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:195 +msgid "None" +msgstr "Nenhum" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:57 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:58 +msgid "Color" +msgstr "Cor" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:61 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:62 +msgid "Dark Low" +msgstr "Escuro baixo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:64 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:65 +msgid "Dark" +msgstr "Escuro" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:67 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:68 +msgid "Dark High" +msgstr "Escuro Alto" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:71 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:72 +msgid "Light Low" +msgstr "Luz baixa" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:74 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:75 +msgid "Light" +msgstr "Luz" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:77 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:78 +msgid "Light High" +msgstr "Luz Alta" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:83 +msgid "Elements Colors" +msgstr "Cores dos elementos" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:86 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:89 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:92 +msgid "tags" +msgstr "tags" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:95 +msgid "text" +msgstr "texto" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:98 +msgid "text alternative" +msgstr "Texto alternativo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:101 +msgid "background" +msgstr "Plano de fundo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:104 +msgid "background alternative" +msgstr "Plano de fundo Alternativo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:107 +msgid "background for forms" +msgstr "Plano de fundo para formulários" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:110 +msgid "border" +msgstr "Borda" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:113 +msgid "border alternative" +msgstr "Borda alternativa" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:116 +msgid "opacity style color" +msgstr "Color do estilo de opacidade" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:9 +#, php-format +msgid "<font color=\"red\"><b>Warning!</b></font>: File \"%s\" is not writable." +msgstr "<font color=\"red\"><b>Aviso!</b></font>: arquivo \"%s\" não é gravável." + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:19 +#, php-format +msgid "CSS is Cascading Style Sheets - read manual for beginners <a href=\"%1$s\">%1$s</a>" +msgstr "CSS is Cascading Style Sheets - Ler o manual do iniciante <a href=\"%1$s\">%1$s</a>" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:20 +msgid "CSS rules" +msgstr "Regras CSS" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:35 +msgid "CSS example" +msgstr "Exemplo CSS" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:44 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:37 +msgid "Header menu" +msgstr "Menu cabeçalho" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:48 +msgid "Sidebar" +msgstr "Sidebar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:63 +msgid "Template" +msgstr "Template" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:28 +msgid "Enable" +msgstr "Habilitar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:34 +msgid "By default use images from posts with thumbnails" +msgstr "Por padrão use imagens de post com amostras (thumbnails)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:38 +msgid "Options" +msgstr "Opções" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:40 +msgid "By default slideshow is showing on homepage only" +msgstr "Por padrão o slideshow só é mostrado na homepage" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:43 +msgid "Show on page" +msgstr "Mostrar na página" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:46 +msgid "Show on single post" +msgstr "Mostrar em um post único" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:49 +msgid "Show on archive" +msgstr "Mostrar no arquivo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:55 +msgid "Height" +msgstr "Altura" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:64 +msgid "Advanced options" +msgstr "Opções avançadas" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:65 +msgid "only for default slideshow" +msgstr "Somente para Slideshow apdrão" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:69 +msgid "Number of slides" +msgstr "Número de Slides" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:73 +msgid "Autoplay" +msgstr "Autoplay" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:76 +msgid "Effect time (ms)" +msgstr "Tempo de efeito (ms)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:79 +msgid "Timeout between slides (ms)" +msgstr "Timeout entre os Slides (ms)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:84 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:47 +msgid "Position" +msgstr "Posição" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:86 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:87 +msgid "In Content" +msgstr "No conteúdo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:90 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:91 +msgid "Over Content" +msgstr "Sobre o conteúdo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:102 +msgid "use <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\" title=\"wordpress.org\">NextGEN-Gallery</a>" +msgstr "use <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\" title=\"wordpress.org\">NextGEN-Gallery</a>" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:103 +msgid "required <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" title=\"www.longtailvideo.com\">imagerotator.swf</a>" +msgstr "requerido <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" title=\"www.longtailvideo.com\">imagerotator.swf</a>" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:121 +msgid "You can use <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGEN-Gallery</a> plugin for build custom slideshow" +msgstr "Você pode utilizar o <a href=\"http://wordpress.org/extend/plugins/nextgen-gallery/\">NextGEN-Gallery</a> plugin para construir um slideshow personalizado" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:196 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:37 +msgid "Left" +msgstr "Esquerda" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:197 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:38 +msgid "Right" +msgstr "Direita" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:198 +msgid "Two" +msgstr "dois" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:199 +msgid "Two Left" +msgstr "Duas à esquerda" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:200 +msgid "Two Right" +msgstr "Duas à direita" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:350 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:67 +msgid "Width" +msgstr "Largura" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:352 +msgid "Sidebar Width" +msgstr "Largura da Sidebar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:354 +msgid "Extrabar Width" +msgstr "largura da Extrabar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:356 +msgid "Header Height" +msgstr "Altura do cabeçalho" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:5 +msgid "Meta information" +msgstr "Meta informação" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:8 +msgid "Show post date" +msgstr "Mostrar data da postagem" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:12 +msgid "Use this options to control what meta information is shown" +msgstr "Use esta opção para controlar a meta informação mostrada" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:19 +msgid "Link to author page" +msgstr "Linkar à pagina do autor" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:25 +msgid "List of categories" +msgstr "Lista de categorias" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:31 +msgid "List of tags" +msgstr "Lista de Tags" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:37 +msgid "Link to comments" +msgstr "Link para comentários" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:43 +msgid "Sharing Icons" +msgstr "Ícones de compartilhamento" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:69 +msgid "Select which service you would like to use for sharing" +msgstr "Selecione o serviço que você gostaria de usar para compartilhar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:75 +msgid "Content widgets place" +msgstr "Local do contéudo widgets " + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:76 +msgid "can configured with <a href=\"widgets.php\">widgets</a>, use \"After N Post\" sidebar" +msgstr "Pode ser configurado com <a href=\"widgets.php\">widgets</a>, use \"After N Post\" sidebar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:82 +msgid "Show widgets place" +msgstr "Mostrar o local dos Widgets" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:87 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:88 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:89 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:90 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:91 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:92 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:93 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:94 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:95 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:96 +#, php-format +msgid "after %d post" +msgstr "Depois de %d postagem" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:103 +msgid "You can use short code [widgets] in your post, and can configured with <a href=\"widgets.php\">widgets</a> (use \"In Posts\" sidebar)" +msgstr "Você pode utilizar o shortcode [widgets] em sua postagem, e pode ser configurado com <a href=\"widgets.php\">widgets</a> (use \"In Posts\" sidebar)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:106 +msgid "Available <a href=\"http://code.google.com/p/wp-constructor/wiki/ConstructorShortcodes\" title=\"Constructor Short Codes\">short codes</a>:" +msgstr "Available <a href=\"http://code.google.com/p/wp-constructor/wiki/ConstructorShortcodes\" title=\"Constructor Short Codes\">short codes</a>:" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:25 +msgid "Avatar size" +msgstr "Tamanho do Avatar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:36 +msgid "Thumbnail position" +msgstr "Posição do Thumbnail" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:4 +msgid "Footer Text" +msgstr "Texto do rodapé" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:7 +msgid "Enter the text you want to appear in the Footer (or just enter a space if you don't want any Footer text)" +msgstr "Entre com o texto que você quer que apareça no Rodapé (ou apenas utilize um espaço para caso você não queira texto)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:9 +msgid "And you can put your Google Analytics code here" +msgstr "Você pode colocar seu código do Google Analytics aqui" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:5 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:34 +msgid "Body Image" +msgstr "Imagem do corpo da página" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:6 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:42 +msgid "Background Image" +msgstr "Imagem de fundo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:7 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:50 +msgid "Header Wrapper Image" +msgstr "Imagem do wrapper do cabeçalho" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:8 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:64 +msgid "Content Wrapper Image" +msgstr "Imagem do wrapper do contéudo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:9 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:92 +msgid "Footer Wrapper Image" +msgstr "Imagem do Wrapper do rodapé" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:10 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:57 +msgid "Header Image" +msgstr "Imagem do cabeçalho" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:11 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:71 +msgid "Content Image" +msgstr "Imagem do conteúdo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:12 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:99 +msgid "Footer Image" +msgstr "Imagem do rodapé" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:13 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:78 +msgid "Sidebar Image" +msgstr "Imagem da Sidebar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:25 +#, php-format +msgid "<font color=\"red\"><b>Warning!</b></font>: Directory \"%s\" is not writable." +msgstr "<font color=\"red\"><b>Aviso!</b></font>: Diretório \"%s\" não gravável." + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:85 +msgid "Extrabar Image" +msgstr "Imagem da Extrabar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:111 +msgid "See helpful illustration!" +msgstr "Veja uma ilustração muito útil!" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:132 +msgid "Preview image" +msgstr "Imagem de previsão" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:132 +msgid "preview" +msgstr "previsão" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:133 +msgid "Remove image (only from theme)" +msgstr "Remover imagem (somente do tema)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:133 +msgid "clear" +msgstr "limpar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:153 +msgid "Fixed position" +msgstr "Posição fixada" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:175 +msgid "Image Position" +msgstr "Posição da imagem" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:176 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:10 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:49 +msgid "Top Left" +msgstr "Superior esquerdo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:177 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:11 +msgid "Top Center" +msgstr "Superior central" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:178 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:12 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:51 +msgid "Top Right" +msgstr "Superior direito" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:182 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:55 +msgid "Center Left" +msgstr "Central esquerdo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:183 +msgid "Center Center" +msgstr "Central" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:184 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:57 +msgid "Center Right" +msgstr "Central direito" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:188 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:22 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:61 +msgid "Bottom Left" +msgstr "Inferior esquerdo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:189 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:23 +msgid "Bottom Center" +msgstr "Inferior central" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:190 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:63 +msgid "Bottom Right" +msgstr "Inferior direito" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:193 +msgid "Image Repeat" +msgstr "Repetir imagem" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:194 +msgid "No Repeat" +msgstr "Sem repetição" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:195 +msgid "Repeat Horizontal" +msgstr "Repetição horizontal" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:197 +msgid "Repeat Vertical" +msgstr "Repetição vertical" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:7 +msgid "Title position" +msgstr "Posição do título" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:29 +msgid "Hidden title" +msgstr "Ocultar título" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:32 +msgid "hide title by CSS" +msgstr "Título oculto por CSS" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:38 +msgid "menu can configured with <a href=\"widgets.php\">widgets</a>, use \"header\" sidebar" +msgstr "O menu pode ser configurado com <a href=\"widgets.php\">widgets</a>, use \"cabeçalho\" sidebar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:44 +msgid "Show top menu" +msgstr "Mostrar menu superior" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:70 +msgid "stretch across the width" +msgstr "Ajustar através da largura" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:74 +msgid "You can use <a href=\"nav-menus.php\">navigation menu</a> with name \"Header Menu\"" +msgstr "Você pode utilizar <a href=\"nav-menus.php\">navigation menu</a> com nome \"Menu de cabeçalho\"" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:78 +msgid "Disable pages" +msgstr "Desabilitar páginas" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:79 +msgid "Show first-level pages" +msgstr "Mostrar primeiro-nivel de páginas" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:80 +msgid "Show pages in drop-down menu" +msgstr "Mostrar páginas em um menu drop-down" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:81 +msgid "Show pages in drop-down menu (2-levels)" +msgstr "Mostrar páginas em um menu drop-down (2-Níveis)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:82 +msgid "Show pages in drop-down menu (3-levels)" +msgstr "Mostrar páginas em um menu drop-down (3-Níveis)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:102 +msgid "Exclude:" +msgstr "Excluir" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:87 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:104 +msgid "(IDs, coma separated)" +msgstr "(IDs, separados por vírgula)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:92 +msgid "Group categories in one menu item" +msgstr "Agrupar categorias em um item de menu" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:95 +msgid "Disable categories" +msgstr "Desabilitar categorias" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:96 +msgid "Show first-level categories" +msgstr "Mostrar categorias de primeiro nível" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:97 +msgid "Show categories in drop-down menu" +msgstr "Mostrar categorias em um menu Drop-down" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:98 +msgid "Show categories in drop-down menu (2-levels)" +msgstr "Mostrar categorias em um menu Drop-down (2-níveis)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:99 +msgid "Show categories in drop-down menu (3-levels)" +msgstr "Mostrar categorias em um menu Drop-down (3-níveis)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:106 +msgid "Custom title:" +msgstr "Título personalizado" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:110 +msgid "Links" +msgstr "Links" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:113 +msgid "Show link to home page" +msgstr "Mostrar link para home page" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:116 +msgid "Show link to RSS feed" +msgstr "Mostrar link para o Feed RSS" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:118 +msgid "Tools" +msgstr "Ferramentas" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:121 +msgid "Show search form" +msgstr "Mostrar formulário de busca" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:6 +msgid "Constructor Wordpress Theme" +msgstr "Tema Constructor Wordpress" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:8 +msgid "Project Homepage" +msgstr "Project Homepage" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:9 +msgid "Author Homepage" +msgstr "Author Homepage" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:12 +msgid "Update Theme" +msgstr "Atualizar tema" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:13 +msgid "" +"Before update «Constructor theme» you should be save all your changes and download your theme to computer,\n" +" because wordpress cleans theme folder before install new version" +msgstr "" +"Antes de atualizar o «Constructor theme» você deve salvar todas as alterações e baixar o tema para o computador,\n" +" porque o WordPress limpa seu diretório de temas assim que uma nova atualização é instalada." + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:16 +msgid "Related Links" +msgstr "Links relacionados" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:27 +msgid "Donate" +msgstr "Doar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:29 +msgid "You can send your Name and Url for promote on <a href=\"http://donate.hohli.com/\">Donate page</a>" +msgstr "Você pode enviar seu nome e URL para promover seu projeto em <a href=\"http://donate.hohli.com/\">Página de doações</a>" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:46 +msgid "Author works" +msgstr "Trabalhos do autor" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/clean.php:3 +msgid "Clean all changes" +msgstr "Limpar todas as alterações" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/clean.php:5 +msgid "Clean Theme" +msgstr "Limpar tema" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:1 +msgid "Save As" +msgstr "Salvar como" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:13 +msgid "Save Current Theme As ..." +msgstr "Salvar tema atual como..." + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:24 +msgid "Theme Name" +msgstr "Nome do tema" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:28 +msgid "Theme URI" +msgstr "URI do tema" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:36 +msgid "Version" +msgstr "Versão" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:40 +msgid "Author" +msgstr "Autor" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:44 +msgid "Author URI" +msgstr "Autor da URI" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/save.php:49 +msgid "Save Theme" +msgstr "Salvar Tema" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:86 +msgid "File \"style.css\" is not exists" +msgstr "Arquivo\"style.css\" não existe" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:87 +msgid "Anonymous" +msgstr "Anônimo" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:103 +msgid "version" +msgstr "Versão" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:17 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:42 +msgid "Homepage" +msgstr "Homepage" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:19 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:44 +msgid "Post" +msgstr "Postar" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:21 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:46 +msgid "Page" +msgstr "Página" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:23 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:48 +msgid "Search" +msgstr "Procurar..." + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:25 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:50 +msgid "Date" +msgstr "Data" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:27 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:52 +msgid "Category" +msgstr "Categoria" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:29 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:54 +msgid "Tag" +msgstr "Tag" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:38 +msgid "Tile Template" +msgstr "Modelo de telha" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:39 +msgid "Optimized for container with width equals to 1024px" +msgstr "Otimizado para containers com largura igual a 1024px" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:53 +msgid "Borders" +msgstr "Bordas" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:61 +msgid "Border radius" +msgstr "Raio da borda" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:69 +msgid "Features for modern browsers (not IE of course)" +msgstr "Recursos para navegadores modernos (não IE, é claro)" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:73 +msgid "Shadow" +msgstr "Sombra" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:82 +msgid "Horizontal offset" +msgstr "Horizontal offset" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:85 +msgid "Vertical offset" +msgstr "Vertical offset" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:88 +msgid "Blur" +msgstr "Borrar" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:256 +msgid "Home" +msgstr "Início" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:295 +msgid "Search..." +msgstr "Procurar..." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 +#, php-format +msgid "%1$s and %2$s." +msgstr "%1$s e %2$s." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 +msgid "Entries (RSS)" +msgstr "Entradas (RSS)" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 +msgid "Comments (RSS)" +msgstr "Comentários (RSS)" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:465 +#, php-format +msgid "%d queries. %s seconds." +msgstr "%d consultas. %s segundos." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:53 +msgid "Please check permissions for next directories:" +msgstr "Por favor verifique as permissões para os seguintes diretórios:" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:171 +#, php-format +msgid "File \"%s\" is not a image (jpeg, png, gif, tiff)" +msgstr "O arquivo \"%s\" não é uma imagem (jpeg, png, gif, tiff)" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:178 +#, php-format +msgid "File \"%s\" can't be move to \"/constructor/current/\" folder" +msgstr "O arquivo \"%s\" não pode ser movido para o diretório \"/constructor/current/\" " + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:326 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:330 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:48 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:51 +#, php-format +msgid "Directory \"%s\" is not writable." +msgstr "O diretório \"%s\" não é gravável" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:344 +#, php-format +msgid "Can't copy file \"%s\" to \"%s\"." +msgstr "Não é possível copiar o arquivo \"%s\" para \"%s\"." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:365 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:63 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:89 +#, php-format +msgid "Can't copy file \"%s\"." +msgstr "Não é possível copiar o arquivo \"%s\"." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:398 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:403 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:128 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:133 +#, php-format +msgid "Can't save file \"%s\"." +msgstr "Não é possível salvar o arquivo \"%s\"." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:521 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:530 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:713 +msgid "Customize Theme" +msgstr "Personalizar tema" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:522 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:531 +msgid "Customize" +msgstr "Personalizar" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:553 +msgid "Standart Fonts" +msgstr "Fontes Padrão" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:561 +msgid "Google Fonts" +msgstr "Fontes Google" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:716 +msgid "If you like this theme and find it useful, help keep this theme free and actively developed by clicking the donate button (via PayPal or CC)" +msgstr "Se você gosta desse tema e deseja que o projeto sempre permaneça ativo e desenvolvido, ajuda a mantê-lo fazendo uma doação clicando no botão doar (via PayPal ou CC)" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:720 +msgid "Options saved." +msgstr "Opções salvas." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:729 +msgid "Some images can't be upload. Please check permissions" +msgstr "Alguma imagens não podem ser carregado para o servidor. Por favor cheque suas permissões" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:752 +msgid "Save Changes" +msgstr "Salvar alterações" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:136 +msgid "Theme was saved, please reload page for view changes" +msgstr "O tema foi salvo, por favor recarregue as páginas para ver as alterações realizadas" + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:163 +msgid "Theme was cleaned" +msgstr "O Tema foi limpo." + +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:165 +#, php-format +msgid "System can't remove folder "%s"" +msgstr "O sistema não foi capaz remover os diretório "%s"" + diff --git a/wp-content/themes/constructor/lang/ru_RU.mo b/wp-content/themes/constructor/lang/ru_RU.mo index c75ba3f31bfc048d60590ebc498061d832a7a69f..b878636afb722bde7798e7aecf09acc918a3ad71 100644 Binary files a/wp-content/themes/constructor/lang/ru_RU.mo and b/wp-content/themes/constructor/lang/ru_RU.mo differ diff --git a/wp-content/themes/constructor/lang/ru_RU.po b/wp-content/themes/constructor/lang/ru_RU.po index a3fcc3cd83b164d99d02bbda3b50849b13e346d5..d829b146fb6cef69034f832b861c773e8e44306d 100644 --- a/wp-content/themes/constructor/lang/ru_RU.po +++ b/wp-content/themes/constructor/lang/ru_RU.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: Constructor Theme\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-23 15:34+0200\n" -"PO-Revision-Date: 2011-03-23 16:33+0200\n" +"POT-Creation-Date: 2011-07-14 12:36+0200\n" +"PO-Revision-Date: 2011-07-14 12:49+0200\n" "Last-Translator: Anton Shevchuk <Anton.Shevchuk@gmail.com>\n" "Language-Team: Anton Shevchuk <AntonShevchuk@gmail.com>\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "X-Poedit-SearchPath-0: W:/wordpress.dark.php5.nixsolutions.com/wp-content/themes/constructor\n" #: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:28 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:22 msgid "Pages" msgstr "Страницы" @@ -27,7 +27,7 @@ msgid "Categories" msgstr "Рубрики" #: W:/www/wordpress3/wp-content/themes/constructor/sidebar.php:32 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:32 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:29 msgid "Tags" msgstr "Метки" @@ -43,24 +43,24 @@ msgstr "<span>«</span> Предыдущие записи" msgid "Newer Entries <span>»</span>" msgstr "Следующие записи <span>»</span>" -#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:17 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:19 +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:16 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:18 #, php-format msgid "Permanent Link to %s" msgstr "Постоянная ссылка на %s" -#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:20 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:23 +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:19 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:21 msgid "Read the rest of this entry »" msgstr "Читать запись полностью »" -#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:28 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:29 +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:26 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:26 msgid "Back to Parent Page" msgstr "Вверх" -#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:30 -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:33 +#: W:/www/wordpress3/wp-content/themes/constructor/template-authors.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:30 msgid "Edit" msgstr "Редактировать" @@ -68,19 +68,19 @@ msgstr "Редактировать" msgid "Read more »" msgstr "Еще »" -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:34 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 msgid "No Comments »" msgstr "Нет комментариев »" -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:34 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 msgid "1 Comment »" msgstr "1 комментарий »" -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:34 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 msgid "% Comments »" msgstr "% комментариев »" -#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:34 +#: W:/www/wordpress3/wp-content/themes/constructor/template-monocolumn.php:31 msgid "Comments Closed" msgstr "Комментарии закрыты" @@ -158,11 +158,11 @@ msgstr "%b" msgid "%B" msgstr "%B" -#: W:/www/wordpress3/wp-content/themes/constructor/404.php:13 +#: W:/www/wordpress3/wp-content/themes/constructor/404.php:11 msgid "Error 404 - Not Found" msgstr "Ошибка 404 — Не найдено" -#: W:/www/wordpress3/wp-content/themes/constructor/404.php:16 +#: W:/www/wordpress3/wp-content/themes/constructor/404.php:12 msgid "Sorry, but you are looking for something that isn’t here." msgstr "Извините, но того, что вы ищете, здесь нет" @@ -170,70 +170,70 @@ msgstr "Извините, но того, что вы ищете, здесь не msgid "Header Menu" msgstr "Меню в шапке сайта" -#: W:/www/wordpress3/wp-content/themes/constructor/functions.php:293 +#: W:/www/wordpress3/wp-content/themes/constructor/functions.php:298 msgid "No Image" msgstr "Без Изображения" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:22 msgid "Author RSS Feed" msgstr "Лента RSS" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:22 msgid "RSS Feed" msgstr "Лента RSS" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:30 -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:36 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:27 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:33 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:35 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:32 msgid "Full Name" msgstr "Ф.И.О" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:40 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:37 msgid "Nickname" msgstr "Никнейм" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:45 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:42 msgid "Website" msgstr "Сайт" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:46 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:43 msgid "Visit author website" msgstr "Посетить " -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:50 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:47 msgid "ICQ" msgstr "ICQ" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:55 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:52 msgid "AIM" msgstr "AIM" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:60 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:57 msgid "Yahoo IM" msgstr "Yahoo IM" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:65 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:62 msgid "MSN" msgstr "MSN" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:70 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:67 msgid "About Me" msgstr "Обо мне" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:79 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:75 #, php-format msgid "Latest posts by %s" msgstr "Последнии записи пользователя %s" -#: W:/www/wordpress3/wp-content/themes/constructor/author.php:95 +#: W:/www/wordpress3/wp-content/themes/constructor/author.php:88 msgid "No posts by this author." msgstr "Записи данного автора отсутствуют" -#: W:/www/wordpress3/wp-content/themes/constructor/template-sitemap.php:32 +#: W:/www/wordpress3/wp-content/themes/constructor/template-sitemap.php:31 msgid "Archives" msgstr "Архив" @@ -251,14 +251,12 @@ msgid "Simple" msgstr "Простенький" #: W:/www/wordpress3/wp-content/themes/constructor/layouts/single.php:6 -#: W:/www/wordpress3/wp-content/themes/constructor/layouts/page.php:6 -#: W:/www/wordpress3/wp-content/themes/constructor/layouts/thumb.php:6 msgid "Single" msgstr "Запись" -#: W:/www/wordpress3/wp-content/themes/constructor/layouts/single.php:30 -#: W:/www/wordpress3/wp-content/themes/constructor/layouts/default.php:27 -#: W:/www/wordpress3/wp-content/themes/constructor/layouts/thumb.php:30 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/single.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/column.php:51 +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/default.php:25 msgid "Posted in" msgstr "Опубликовано в " @@ -266,6 +264,10 @@ msgstr "Опубликовано в " msgid "List" msgstr "Списком" +#: W:/www/wordpress3/wp-content/themes/constructor/layouts/column.php:6 +msgid "Column" +msgstr "Колонка" + #: W:/www/wordpress3/wp-content/themes/constructor/layouts/tiles.php:6 #: W:/www/wordpress3/wp-content/themes/constructor/layouts/tile.php:6 msgid "Tile" @@ -275,88 +277,86 @@ msgstr "Плиткой" msgid "Default" msgstr "По умолчанию" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:21 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:16 msgid "Themes" msgstr "Тема" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:22 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:17 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/layout.php:1 msgid "Layout" msgstr "Макет" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:23 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:18 msgid "Templates" msgstr "Шаблоны" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:24 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:19 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:1 msgid "Header" msgstr "«Шапка»" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:25 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:120 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:20 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:122 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:52 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:1 msgid "Content" msgstr "Контент" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:26 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:21 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/comments.php:1 msgid "Comments" msgstr "Комментарии" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:27 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:22 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:1 msgid "Footer" msgstr "«Подвал»" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:28 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:23 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:1 msgid "Fonts" msgstr "Шрифты" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:29 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:24 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/colors.php:1 msgid "Colors" msgstr "Цвета" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:30 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:25 msgid "Design" msgstr "Дизайн" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:31 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:26 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:1 msgid "CSS" msgstr "CSS" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:32 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:27 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:1 msgid "Images" msgstr "Изображения" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:33 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:28 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:2 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:101 msgid "Slideshow" msgstr "Слайдшоу" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:34 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:29 msgid "Save" msgstr "Сохранить изменения" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:35 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/clean.php:1 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:30 msgid "Clean" msgstr "Очистка" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:36 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/admin.php:31 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:18 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:11 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/footer.php:6 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:2 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:110 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/images.php:111 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/help.php:1 msgid "Help" msgstr "Помощь" @@ -369,47 +369,55 @@ msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod msgstr "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 0123456789" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:79 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:98 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:109 +msgid "Google Web Fonts" +msgstr "Шрифты от Google" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:80 +msgid "Google Web Fonts lets you browse all the fonts available via the Google Web Fonts API. All fonts in the directory are available for use on your website under an open source license and are served by Google servers." +msgstr "Шрифты от Google подгружаются браузером посредством Google Web Fonts API. Все шрифты распространяются как open source и расположены на серверах «империи зла»" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:81 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:100 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:111 msgid "Font Weight" msgstr "Толщина шрифта" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:80 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:82 msgid "Defines from thin to thick characters. 400 is the same as \"normal\", and 700 is the same as \"bold\"" msgstr "Значение 400 соответствует «normal», 700 — «bold»" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:83 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:99 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:110 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:101 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:112 msgid "Text Decoration" msgstr "Эффект для текста" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:87 msgid "No capitalization. The text renders as it is. This is default" msgstr "Не изменять" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:86 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:88 msgid "Transforms the first character of each word to uppercase" msgstr "Каждое новое слово с большой буквы" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:87 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:89 msgid "Transforms all characters to uppercase" msgstr "Приведение текста к верхнему регистру" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:88 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:90 msgid "Transforms all characters to lowercase" msgstr "Приведение текста к нижнему регистру" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:93 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:95 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:36 msgid "Title" msgstr "Заголовок" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:104 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:106 msgid "Description" msgstr "Описание" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:114 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/fonts.php:116 msgid "Headers" msgstr "Заголовки" @@ -527,6 +535,10 @@ msgstr "Меню в шапке сайта" msgid "Sidebar" msgstr "Боковая панель" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/css.php:63 +msgid "Template" +msgstr "Шаблоны" + #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:28 msgid "Enable" msgstr "Включить" @@ -584,7 +596,7 @@ msgid "Timeout between slides (ms)" msgstr "Задержка между слайдами (ms)" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/slideshow.php:84 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:104 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:85 #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/header.php:47 msgid "Position" msgstr "Расположение" @@ -680,43 +692,43 @@ msgstr "Ссылка на комментарии" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:43 msgid "Sharing Icons" -msgstr "Икноки социальных сервисов" +msgstr "Иконки социальных сервисов" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:53 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:69 msgid "Select which service you would like to use for sharing" msgstr "Выберите какие сервисы желаете использовать" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:94 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:75 msgid "Content widgets place" msgstr "Виджеты в контенте" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:95 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:76 msgid "can configured with <a href=\"widgets.php\">widgets</a>, use \"After N Post\" sidebar" msgstr "меню можно настроить с помощью <a href=\"widgets.php\">виджетов</a> (см. «After N Post» сайдбар)" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:101 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:82 msgid "Show widgets place" msgstr "Отображать виджеты" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:106 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:107 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:108 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:109 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:110 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:111 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:112 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:113 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:114 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:115 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:87 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:88 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:89 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:90 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:91 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:92 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:93 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:94 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:95 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:96 #, php-format msgid "after %d post" msgstr "после %d записи" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:122 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:103 msgid "You can use short code [widgets] in your post, and can configured with <a href=\"widgets.php\">widgets</a> (use \"In Posts\" sidebar)" msgstr "Вы можете использовать код [widgets] при написании записей, и настроить содержимое с помощью <a href=\"widgets.php\">виджетов</a> (см. «In Posts» сайдбар)" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:125 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/content.php:106 msgid "Available <a href=\"http://code.google.com/p/wp-constructor/wiki/ConstructorShortcodes\" title=\"Constructor Short Codes\">short codes</a>:" msgstr "Доступные <a href=\"http://code.google.com/p/wp-constructor/wiki/ConstructorShortcodes\" title=\"Constructor Short Codes\">коды</a>:" @@ -1070,53 +1082,61 @@ msgstr "URL Автора" msgid "Save Theme" msgstr "Сохранить Тему" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:66 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:86 msgid "File \"style.css\" is not exists" msgstr "Файла «style.css» не существует" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:67 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:87 msgid "Anonymous" msgstr "Аноним" -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:83 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/themes.php:103 msgid "version" msgstr "версия" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:17 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:39 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:42 msgid "Homepage" msgstr "Домашняя страница" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:19 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:41 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:44 msgid "Post" msgstr "Запись" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:21 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:43 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:46 msgid "Page" msgstr "Страница" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:23 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:45 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:48 msgid "Search" msgstr "Поиск" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:25 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:47 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:50 msgid "Date" msgstr "Даты" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:27 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:49 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:52 msgid "Category" msgstr "Рубрики" #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:29 -#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:51 +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:54 msgid "Tag" msgstr "Метки" +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:38 +msgid "Tile Template" +msgstr "Шаблон Плитка" + +#: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/templates.php:39 +msgid "Optimized for container with width equals to 1024px" +msgstr "Оптимизировано для сайта шириной в 1024px" + #: W:/www/wordpress3/wp-content/themes/constructor/admin/settings/design.php:53 msgid "Borders" msgstr "Границы" @@ -1145,119 +1165,119 @@ msgstr "Отступ по вертикали" msgid "Blur" msgstr "Размытие" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:240 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:256 msgid "Home" msgstr "Главная" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:279 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:295 msgid "Search..." msgstr "Поиск..." -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:439 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 #, php-format msgid "%1$s and %2$s." msgstr "%1$s и %2$s." -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:439 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 msgid "Entries (RSS)" msgstr "Записи (RSS)" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:439 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:461 msgid "Comments (RSS)" msgstr "Комментарии (RSS)" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:443 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Main.php:465 #, php-format msgid "%d queries. %s seconds." msgstr "%d запросов. %s секунд." -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:43 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:53 msgid "Please check permissions for next directories:" msgstr "Проверьте права доступа для следующих директорий" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:108 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:171 #, php-format msgid "File \"%s\" is not a image (jpeg, png, gif, tiff)" msgstr "Файл «%s» не является изображением" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:115 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:178 #, php-format msgid "File \"%s\" can't be move to \"/constructor/current/\" folder" msgstr "Не удалось переместить файл «%s» в папку «/constructor/current/»" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:276 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:280 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:326 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:330 #: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:48 #: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:51 #, php-format msgid "Directory \"%s\" is not writable." msgstr "Директория «%s» имеет атрибут только для чтения." -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:294 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:344 #, php-format msgid "Can't copy file \"%s\" to \"%s\"." msgstr "Нельзя скопировать файл «%s» в «%s» " -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:303 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:365 #: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:63 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:73 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:77 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:85 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:89 #, php-format msgid "Can't copy file \"%s\"." msgstr "Нельзя скопировать файл «%s»." -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:336 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:341 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:110 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:115 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:398 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:403 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:128 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:133 #, php-format msgid "Can't save file \"%s\"." msgstr "Нельзя сохранить файл «%s»." -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:436 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:445 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:628 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:521 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:530 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:713 msgid "Customize Theme" msgstr "Настройки темы" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:437 -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:446 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:522 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:531 msgid "Customize" msgstr "Настройки" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:468 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:553 msgid "Standart Fonts" msgstr "Стандартные шрифты" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:476 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:561 msgid "Google Fonts" msgstr "Шрифты от Google" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:631 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:716 msgid "If you like this theme and find it useful, help keep this theme free and actively developed by clicking the donate button (via PayPal or CC)" msgstr "Если Вам понравилась данная темы, то Вы можете помочь материально." -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:635 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:720 msgid "Options saved." msgstr "Настройки сохранены." -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:644 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:729 msgid "Some images can't be upload. Please check permissions" msgstr "Некоторые картинки не были залиты. Проверьте права доступа." -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:667 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Admin.php:752 msgid "Save Changes" msgstr "Сохранить изменения" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:118 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:136 msgid "Theme was saved, please reload page for view changes" msgstr "Тема сохранена, обновите страницу пожайлуста" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:145 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:163 msgid "Theme was cleaned" msgstr "Настройки темы были удалены" -#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:147 +#: W:/www/wordpress3/wp-content/themes/constructor/libs/Constructor/Ajax.php:165 #, php-format msgid "System can't remove folder "%s"" msgstr "Система не смогла удалить директорию «%s»" diff --git a/wp-content/themes/constructor/layouts/column.php b/wp-content/themes/constructor/layouts/column.php new file mode 100644 index 0000000000000000000000000000000000000000..73fa2eabb162a94b0a54d66bb708e07ce6f4f5d1 --- /dev/null +++ b/wp-content/themes/constructor/layouts/column.php @@ -0,0 +1,71 @@ +<?php +/** + * @package WordPress + * @subpackage constructor + */ +__('Column', 'constructor'); // required for correct translation +?> +<div id="content" class="box shadow opacity <?php the_constructor_layout_class('none') ?>"> + <div id="container" class="column"> + <?php get_constructor_slideshow(true) ?> + <?php + /* Need three columns, with next layout + + 1 | 2 | 3 + 4 | 5 | 6 + 7 | 8 | .. + + */ + if (have_posts()) : + global $wp_query; + $wp_query->post_count; + for ($col=0; $col < 3; $col++) : + ?> + <section> + <?php + // start from -1 + for ($i=$col-1; $i < $wp_query->post_count; $i = $i+3) : + if ($i >= $wp_query->post_count-1) continue; + $wp_query->current_post = $i; + the_post(); + ?> + <article <?php post_class('opacity shadow box'); ?> id="post-<?php the_ID() ?>"> + <header class="opacity"> + <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> + </header> + <div class="thumbnail"> + <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"> + <?php + the_post_thumbnail('tile-post-thumbnail'); + ?> + </a> + </div> + <div class="entry"> + <?php the_content(''); ?> + </div> + <footer> + <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> + <?php if (get_constructor_option('content', 'date')) { the_date(); echo ' | '; } ?> + <?php if (get_constructor_option('content', 'links', 'author')) { the_author_posts_link(); echo ' | '; } ?> + <?php if (get_constructor_option('content', 'links', 'category') && count( get_the_category() ) ) : ?> + <?php _e('Posted in', 'constructor'); echo ": "; the_category(', '); echo ' | ';?> + <?php endif; ?> + <?php if (get_constructor_option('content', 'links', 'comments')) { + comments_popup_link( + __('No Comments »', 'constructor'), + __('1 Comment »', 'constructor'), + __('% Comments »', 'constructor'), + 'comments-link', + __('Comments Closed', 'constructor') + ); + } ?> + </footer> + </article> + <?php endfor; ?> + </section> + <?php endfor; ?> + <?php get_constructor_navigation(); ?> + <?php endif; ?> + </div> + <?php get_constructor_sidebar(); ?> +</div><!-- id='content' --> \ No newline at end of file diff --git a/wp-content/themes/constructor/layouts/default.php b/wp-content/themes/constructor/layouts/default.php index 399be9315f30c35ace9958da81e7d263979f3731..e2f4ac2c1b9fe9e3d80e699563a02fec6066786f 100644 --- a/wp-content/themes/constructor/layouts/default.php +++ b/wp-content/themes/constructor/layouts/default.php @@ -9,39 +9,35 @@ __('Default', 'constructor'); // required for correct translation <div id="container" > <?php get_constructor_slideshow(true) ?> <?php if (have_posts()) : $i = 0; ?> - <div id="posts"> <?php while (have_posts()) : the_post(); $i++; ?> - <div <?php post_class(); ?> id="post-<?php the_ID() ?>"> - <div class="title opacity box"> + <article <?php post_class(); ?> id="post-<?php the_ID() ?>"> + <header class="opacity box"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> - </div> + </header> <div class="entry"> <?php the_content(__('Read the rest of this entry »', 'constructor')); ?> </div> - <div class="footer"> - <div class="links"> - <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> - <?php if (get_constructor_option('content', 'date')) { the_date(); echo ' | '; } ?> - <?php if (get_constructor_option('content', 'links', 'author')) { the_author_posts_link(); echo ' | '; } ?> - <?php if (get_constructor_option('content', 'links', 'category') && count( get_the_category() ) ) : ?> - <?php _e('Posted in', 'constructor'); echo ": "; the_category(', '); echo ' | ';?> - <?php endif; ?> - <?php if (get_constructor_option('content', 'links', 'tags')) { the_tags(__('Tags', 'constructor') . ': ', ', ', ' |'); } ?> - <?php if (get_constructor_option('content', 'links', 'comments')) { - comments_popup_link( - __('No Comments »', 'constructor'), - __('1 Comment »', 'constructor'), - __('% Comments »', 'constructor'), - 'comments-link', - __('Comments Closed', 'constructor') - ); - } ?> - </div> - </div> - </div> + <footer> + <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> + <?php if (get_constructor_option('content', 'date')) { the_date(); echo ' | '; } ?> + <?php if (get_constructor_option('content', 'links', 'author')) { the_author_posts_link(); echo ' | '; } ?> + <?php if (get_constructor_option('content', 'links', 'category') && count( get_the_category() ) ) : ?> + <?php _e('Posted in', 'constructor'); echo ": "; the_category(', '); echo ' | ';?> + <?php endif; ?> + <?php if (get_constructor_option('content', 'links', 'tags')) { the_tags(__('Tags', 'constructor') . ': ', ', ', ' |'); } ?> + <?php if (get_constructor_option('content', 'links', 'comments')) { + comments_popup_link( + __('No Comments »', 'constructor'), + __('1 Comment »', 'constructor'), + __('% Comments »', 'constructor'), + 'comments-link', + __('Comments Closed', 'constructor') + ); + } ?> + </footer> + </article> <?php get_constructor_content_widget($i) ?> <?php endwhile; ?> - </div> <?php comments_template(); ?> <?php get_constructor_navigation(); ?> <?php endif; ?> diff --git a/wp-content/themes/constructor/layouts/list.php b/wp-content/themes/constructor/layouts/list.php index 05f6f936cf193496af3414bdf5fa3a6881fd87db..8e83e655c5be387a77ca4e5560f6dd9ed7701112 100644 --- a/wp-content/themes/constructor/layouts/list.php +++ b/wp-content/themes/constructor/layouts/list.php @@ -9,25 +9,23 @@ __('List', 'constructor'); // required for correct translation <div id="container" > <?php get_constructor_slideshow(true) ?> <?php if (have_posts()) : $i = 0; ?> - <div id="posts"> <?php while (have_posts()) : the_post(); $i++; ?> - <div <?php post_class('box list opacity shadow'); ?> id="post-<?php the_ID() ?>"> - <div class="title"> + <article <?php post_class('box list opacity shadow'); ?> id="post-<?php the_ID() ?>"> + <header> <h2> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a> </h2> <div class="date color2"><?php the_date() ?></div> - </div> + </header> <div class="entry clear"> <?php the_post_thumbnail( 'list-post-thumbnail', array('class' => 'thumb alignleft') ); ?> <?php the_content(__('Read the rest of this entry »', 'constructor')); ?> </div> <?php if (is_singular()) get_constructor_social() ?> - <div class="footer"></div> - </div> + <footer></footer> + </article> <?php get_constructor_content_widget($i) ?> <?php endwhile; ?> - </div> <?php comments_template(); ?> <?php get_constructor_navigation(); ?> <?php endif; ?> diff --git a/wp-content/themes/constructor/layouts/page.php b/wp-content/themes/constructor/layouts/page.php index 0be4d54eec4184351cda47833a0a15575b0dd4a0..8c39a7007287dd36a03d61ffff0c35c228920ca6 100644 --- a/wp-content/themes/constructor/layouts/page.php +++ b/wp-content/themes/constructor/layouts/page.php @@ -9,37 +9,33 @@ __('Single', 'constructor'); // required for correct translation <div id="container"> <?php get_constructor_slideshow(true) ?> <?php if (have_posts()) : ?> - <div id="posts"> <?php while (have_posts()) : the_post(); global $post; ?> - <div <?php post_class(); ?> id="post-<?php the_ID() ?>"> - <div class="title opacity box"> + <article <?php post_class(); ?> id="post-<?php the_ID() ?>"> + <header class="opacity box"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1> - </div> + </header> <div class="entry"> <?php the_content(__('Read the rest of this entry »', 'constructor')) ?> <?php wp_link_pages(array('before' => '<p class="pages"><strong>'.__('Pages', 'constructor').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div> - <div class="footer"> - <div class="links"> - <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> - <?php if ($post->post_parent) : $parent_link = get_permalink($post->post_parent); ?> - <a href="<?php echo $parent_link; ?>"><?php _e('Back to Parent Page', 'constructor');?></a> | - <?php endif; ?> - <?php if (get_constructor_option('content', 'date')) { the_date(); echo ' | '; } ?> - <?php if (get_constructor_option('content', 'links', 'comments')) { - comments_popup_link( - __('No Comments »', 'constructor'), - __('1 Comment »', 'constructor'), - __('% Comments »', 'constructor'), - 'comments-link', - __('Comments Closed', 'constructor') - ); - } ?> - </div> - </div> - </div> + <footer> + <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> + <?php if ($post->post_parent) : $parent_link = get_permalink($post->post_parent); ?> + <a href="<?php echo $parent_link; ?>"><?php _e('Back to Parent Page', 'constructor');?></a> | + <?php endif; ?> + <?php if (get_constructor_option('content', 'date')) { the_date(); echo ' | '; } ?> + <?php if (get_constructor_option('content', 'links', 'comments')) { + comments_popup_link( + __('No Comments »', 'constructor'), + __('1 Comment »', 'constructor'), + __('% Comments »', 'constructor'), + 'comments-link', + __('Comments Closed', 'constructor') + ); + } ?> + </footer> + </article> <?php endwhile; ?> - </div> <?php comments_template(); ?> <?php endif; ?> </div><!-- id='container' --> diff --git a/wp-content/themes/constructor/layouts/simple.php b/wp-content/themes/constructor/layouts/simple.php index b899fc2981d8d0fcbc17ff7ca46459423d916beb..ffa937e9933e850a86be8e552ac348aebc4e2c97 100644 --- a/wp-content/themes/constructor/layouts/simple.php +++ b/wp-content/themes/constructor/layouts/simple.php @@ -9,12 +9,11 @@ __('Simple', 'constructor'); // required for correct translation <div id="container" > <?php get_constructor_slideshow(true) ?> <?php if (have_posts()) : ?> - <div id="posts"> <?php while (have_posts()) : the_post();?> - <div <?php post_class('simple'); ?> id="post-<?php the_ID() ?>"> - <div class="title"> + <article <?php post_class('simple'); ?> id="post-<?php the_ID() ?>"> + <header> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> - </div> + </header> <div class="entry"> <?php // without "more" link @@ -22,10 +21,9 @@ __('Simple', 'constructor'); // required for correct translation ?> </div> <?php if (is_singular()) get_constructor_social() ?> - <div class="footer"></div> - </div> + <footer></footer> + </article> <?php endwhile; ?> - </div> <?php comments_template(); ?> <?php get_constructor_navigation(); ?> <?php endif; ?> diff --git a/wp-content/themes/constructor/layouts/single.php b/wp-content/themes/constructor/layouts/single.php index e6d24e46edbc8f27dbbd4d84e5af424c05366462..be90e73924415f19dbafb9e2ab6e6885664300be 100644 --- a/wp-content/themes/constructor/layouts/single.php +++ b/wp-content/themes/constructor/layouts/single.php @@ -10,19 +10,17 @@ __('Single', 'constructor'); // required for correct translation <?php get_constructor_slideshow(true) ?> <?php if (have_posts()) : ?> - <div id="posts"> <?php while (have_posts()) : the_post(); ?> - <div <?php post_class(); ?> id="post-<?php the_ID() ?>"> - <div class="title opacity box"> + <article <?php post_class(); ?> id="post-<?php the_ID() ?>"> + <header class="opacity box"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1> - </div> + </header> <div class="entry"> <?php the_content(__('Read the rest of this entry »', 'constructor')) ?> <?php wp_link_pages(array('before' => '<p class="pages"><strong>'.__('Pages', 'constructor').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div> <?php get_constructor_social() ?> - <div class="footer"> - <div class="links"> + <footer> <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> <?php if (get_constructor_option('content', 'date')) { the_date(); echo ' | '; } ?> <?php if (get_constructor_option('content', 'links', 'author')) { the_author_posts_link(); echo ' | '; } ?> @@ -39,11 +37,9 @@ __('Single', 'constructor'); // required for correct translation __('Comments Closed', 'constructor') ); } ?> - </div> - </div> - </div> + </footer> + </article> <?php endwhile; ?> - </div> <?php comments_template(); ?> <?php get_constructor_navigation(); ?> <?php endif; ?> diff --git a/wp-content/themes/constructor/layouts/thumb.php b/wp-content/themes/constructor/layouts/thumb.php index b28bd6a7bb7e9db9eaaa65d0d3be2181003a1cab..a34f3be7907497071d4b2931d8563fd0ae90d86d 100644 --- a/wp-content/themes/constructor/layouts/thumb.php +++ b/wp-content/themes/constructor/layouts/thumb.php @@ -9,40 +9,36 @@ __('Single', 'constructor'); // required for correct translation <div id="container" > <?php get_constructor_slideshow(true) ?> <?php if (have_posts()) : ?> - <div id="posts"> <?php while (have_posts()) : the_post(); ?> - <div <?php post_class(); ?> id="post-<?php the_ID() ?>"> - <div class="title opacity box"> + <article <?php post_class(); ?> id="post-<?php the_ID() ?>"> + <header class="opacity box"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1> - </div> + </header> <div class="entry"> <?php echo get_the_post_thumbnail(NULL, 'tile-post-thumbnail', array('class'=>'aligncenter')) ?> <?php the_content(__('Read the rest of this entry »', 'constructor')) ?> <?php wp_link_pages(array('before' => '<p class="pages"><strong>'.__('Pages', 'constructor').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div> - <div class="footer"> - <div class="links"> - <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> - <?php if (get_constructor_option('content', 'date')) { the_date(); echo ' | '; } ?> - <?php if (get_constructor_option('content', 'links', 'author')) { the_author_posts_link(); echo ' | '; } ?> - <?php if (get_constructor_option('content', 'links', 'category') && count( get_the_category() ) ) : ?> - <?php _e('Posted in', 'constructor'); echo ": "; the_category(', '); ?> - <?php endif; ?> - <?php if (get_constructor_option('content', 'links', 'tags')) { the_tags(__('Tags', 'constructor') . ': ', ', ', ' |'); } ?> - <?php if (get_constructor_option('content', 'links', 'comments')) { - comments_popup_link( - __('No Comments »', 'constructor'), - __('1 Comment »', 'constructor'), - __('% Comments »', 'constructor'), - 'comments-link', - __('Comments Closed', 'constructor') - ); - } ?> - </div> - </div> - </div> + <footer> + <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> + <?php if (get_constructor_option('content', 'date')) { the_date(); echo ' | '; } ?> + <?php if (get_constructor_option('content', 'links', 'author')) { the_author_posts_link(); echo ' | '; } ?> + <?php if (get_constructor_option('content', 'links', 'category') && count( get_the_category() ) ) : ?> + <?php _e('Posted in', 'constructor'); echo ": "; the_category(', '); ?> + <?php endif; ?> + <?php if (get_constructor_option('content', 'links', 'tags')) { the_tags(__('Tags', 'constructor') . ': ', ', ', ' |'); } ?> + <?php if (get_constructor_option('content', 'links', 'comments')) { + comments_popup_link( + __('No Comments »', 'constructor'), + __('1 Comment »', 'constructor'), + __('% Comments »', 'constructor'), + 'comments-link', + __('Comments Closed', 'constructor') + ); + } ?> + </footer> + </article> <?php endwhile; ?> - </div> <?php comments_template(); ?> <?php get_constructor_navigation(); ?> <?php endif; ?> diff --git a/wp-content/themes/constructor/layouts/tile.php b/wp-content/themes/constructor/layouts/tile.php index 13108017ea1e5f87b6b6690b98ad7416cd3d1172..dd76d0415a5a8991236d0e9d5bc3788357dbe5d7 100644 --- a/wp-content/themes/constructor/layouts/tile.php +++ b/wp-content/themes/constructor/layouts/tile.php @@ -6,15 +6,15 @@ __('Tile', 'constructor'); // required for correct translation ?> <div id="content" class="box shadow opacity <?php the_constructor_layout_class('none') ?>"> - <div id="container" > + <div id="container" class="tile"> <?php get_constructor_slideshow(true) ?> <?php if (have_posts()) : ?> - <div id="posts" class="tile"> <?php while (have_posts()) : the_post(); ?> - <div <?php post_class('opacity shadow box'); ?> id="post-<?php the_ID() ?>"> - <div class="title opacity"> + <div> + <article <?php post_class('opacity shadow box'); ?> id="post-<?php the_ID() ?>"> + <header class="opacity"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> - </div> + </header> <div class="thumbnail"> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"> <?php @@ -26,14 +26,15 @@ __('Tile', 'constructor'); // required for correct translation ?> </a> </div> - <div class="links opacity"> + <footer class="opacity"> <div class="date"><?php the_date() ?></div> <div class="comments"><?php comments_popup_link('0', '1', '%', 'button', '' ); ?></div> - </div> + </footer> + </article> </div> <?php endwhile; ?> - </div> <?php get_constructor_navigation(); ?> <?php endif; ?> </div> + <?php get_constructor_sidebar(); ?> </div><!-- id='content' --> \ No newline at end of file diff --git a/wp-content/themes/constructor/layouts/tiles.php b/wp-content/themes/constructor/layouts/tiles.php index 1249604086c00b9c5d63f9e43575b27d52c2e9c5..34968e52e20bfa661f356789994229423ce72d6c 100644 --- a/wp-content/themes/constructor/layouts/tiles.php +++ b/wp-content/themes/constructor/layouts/tiles.php @@ -9,30 +9,28 @@ __('Tile', 'constructor'); // required for correct translation <div id="container" > <?php get_constructor_slideshow(true) ?> <?php if (have_posts()) : ?> - <div id="posts"> <?php while (have_posts()) : the_post(); ?> - <div <?php post_class('tiles'); ?> id="post-<?php the_ID() ?>"> - <div class="thumbnail"> - <?php - // try to found post thubmnail - if (!($thumb = get_the_post_thumbnail(NULL, 'list-post-thumbnail'))) { - $thumb = get_constructor_noimage(128,128); - } - echo $thumb; - ?> - </div> - <div class="announce opacity"> + <article <?php post_class('tiles'); ?> id="post-<?php the_ID() ?>"> + <h2 class="announce opacity"> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"> <span class="color4"><?php the_date() ?></span> <?php the_title(); ?> </a> + </h2> + <div class="thumbnail"> + <?php + // try to found post thubmnail + if (!($thumb = get_the_post_thumbnail(NULL, 'list-post-thumbnail'))) { + $thumb = get_constructor_noimage(128,128); + } + echo $thumb; + ?> </div> - </div> + </article> <?php endwhile; ?> - <div class="tiles next"> - <?php next_posts_link('→') ?> - </div> + <div class="tiles next"> + <?php next_posts_link('→') ?> </div> <?php endif; ?> </div> diff --git a/wp-content/themes/constructor/libs/Constructor/Admin.php b/wp-content/themes/constructor/libs/Constructor/Admin.php index 177c337ca56cfc87efa54bfd3ba2ff8a49e2c241..47d0b41a6b392acd1ae45f71da90db516478604f 100644 --- a/wp-content/themes/constructor/libs/Constructor/Admin.php +++ b/wp-content/themes/constructor/libs/Constructor/Admin.php @@ -29,6 +29,7 @@ class Constructor_Admin extends Constructor_Abstract /** * init all hooks + * @param array $modules */ function init($modules = array()) { @@ -299,9 +300,7 @@ class Constructor_Admin extends Constructor_Abstract function save($theme) { global $current_user, $template_uri; - // setup permissions for save - $permission = 0777; - + // get theme options $constructor = $this->_options; $admin = $this->_admin; @@ -347,6 +346,18 @@ class Constructor_Admin extends Constructor_Abstract } } } + // copy all images (*.png, *.jpeg, *.jpg, *.gif) + // and check it + $files = scandir($path_old); + $files = array_diff($files, array('.','..','.svn','screenshot.png','config.php','style.css')); + foreach ($files as $file) { + if (in_array(strtolower(pathinfo($file, PATHINFO_EXTENSION)), array('png', 'jpg', 'jpeg', 'gif')) + && @getimagesize($path_old . '/'. $file) + ) { + @copy($path_old.'/'.$file, $path.'/'.$file); + } + } + // copy default screenshot (if not exist) if (!file_exists($path.'/screenshot.png')) { if (!@copy(CONSTRUCTOR_DIRECTORY.'/admin/images/screenshot.png', $path.'/screenshot.png')) { @@ -398,7 +409,7 @@ Author URI: $author_uri /** * readFile * - * @param string file + * @param string $file * @return string */ function readFile($file) diff --git a/wp-content/themes/constructor/libs/Constructor/Ajax.php b/wp-content/themes/constructor/libs/Constructor/Ajax.php index d6c9cc32a6341162d6534a5770cbd612ec22b9bf..10637db3b0b41d55055817facbce1300cb976a5c 100644 --- a/wp-content/themes/constructor/libs/Constructor/Ajax.php +++ b/wp-content/themes/constructor/libs/Constructor/Ajax.php @@ -66,6 +66,18 @@ class Constructor_Ajax extends Constructor_Abstract } } + // copy all images (*.png, *.jpeg, *.jpg, *.gif) + // and check it + $files = scandir($path_old); + $files = array_diff($files, array('.','..','.svn','screenshot.png','config.php','style.css')); + foreach ($files as $file) { + if (in_array(pathinfo($file, PATHINFO_EXTENSION), array('png', 'jpg', 'jpeg', 'gif')) + && @getimagesize($path_old . '/'. $file) + ) { + @copy($path_old.'/'.$file, $path_new.'/'.$file); + } + } + // copy default screenshot (if not exist) if (!file_exists($path_new.'/screenshot.png') && file_exists($path_old.'/screenshot.png')) { @@ -78,6 +90,7 @@ class Constructor_Ajax extends Constructor_Abstract } } + require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-base.php'; require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-direct.php'; @@ -158,6 +171,7 @@ Author URI: $author_uri * * Used for remove folders in $wp_uploads['basepath'] .'/constructor' * + * @param string $folder * @return void */ function _clean($folder) diff --git a/wp-content/themes/constructor/libs/Constructor/Main.php b/wp-content/themes/constructor/libs/Constructor/Main.php index e93290360961c625d874aa18149d754823ad1a03..cc5efb2e435a02a6b0b8b2237f88db00b163afe9 100644 --- a/wp-content/themes/constructor/libs/Constructor/Main.php +++ b/wp-content/themes/constructor/libs/Constructor/Main.php @@ -7,6 +7,20 @@ require_once 'Abstract.php'; class Constructor_Main extends Constructor_Abstract { + /** + * Current layout + * + * - none + * - right + * - left + * - two + * - two-right + * - two-left + * + * @var string + */ + var $_layout; + /** * init all hooks */ @@ -23,7 +37,7 @@ class Constructor_Main extends Constructor_Abstract */ function addThemeScripts() { - wp_enqueue_script('constructor-theme', CONSTRUCTOR_DIRECTORY_URI.'/js/ready.js', array('jquery')); + wp_enqueue_script('constructor-theme', CONSTRUCTOR_DIRECTORY_URI.'/js/ready.js', array('jquery'), null); } /** @@ -36,19 +50,19 @@ class Constructor_Main extends Constructor_Abstract { // load style if (file_exists(CONSTRUCTOR_CUSTOM_CACHE .'/style.css')) { - wp_enqueue_style('constructor-style', CONSTRUCTOR_CUSTOM_CACHE_URI .'/style.css'); + wp_enqueue_style('constructor-style', CONSTRUCTOR_CUSTOM_CACHE_URI .'/style.css', array(), null); } else { - wp_enqueue_style('constructor-style', home_url().'/?theme-constructor=css'); + wp_enqueue_style('constructor-style', home_url().'/?theme-constructor=css', array(), null); } // load constructor subtheme style if ($this->isDefaultTheme($this->getTheme())) { if (file_exists(CONSTRUCTOR_DEFAULT_THEMES.'/'.$this->getTheme().'/style.css')) { - wp_enqueue_style( 'constructor-theme', CONSTRUCTOR_DEFAULT_THEMES_URI .'/'.$this->getTheme().'/style.css'); + wp_enqueue_style( 'constructor-theme', CONSTRUCTOR_DEFAULT_THEMES_URI .'/'.$this->getTheme().'/style.css', array(), null); } } else { if (file_exists(CONSTRUCTOR_CUSTOM_THEMES.'/'.$this->getTheme().'/style.css')) { - wp_enqueue_style( 'constructor-theme', CONSTRUCTOR_CUSTOM_THEMES_URI .'/'.$this->getTheme().'/style.css'); + wp_enqueue_style( 'constructor-theme', CONSTRUCTOR_CUSTOM_THEMES_URI .'/'.$this->getTheme().'/style.css', array(), null); } } @@ -79,11 +93,11 @@ class Constructor_Main extends Constructor_Abstract } /** - * get_constructor_slideshow + * get constructor slideshow * * @access public * @param boolean $in In or Out of content container - * @return rettype return + * @return false|string */ function getSlideshow($in = false) { @@ -117,7 +131,7 @@ class Constructor_Main extends Constructor_Abstract } /** - * get_constructor_default_slideshow + * get constructor default slideshow * * generate code for embedded slideshow * @@ -130,7 +144,7 @@ class Constructor_Main extends Constructor_Abstract $options = $this->_options['slideshow']['advanced']; $options['slideshow'] = home_url().'/?theme-constructor=slideshow&w='.$width.'&h='.$height; // $options['thumbPath'] = CONSTRUCTOR_DIRECTORY_URI."/libs/timthumb.php?src="; - $options = json_encode($options); + $optionsJSON = json_encode($options); echo '<div class="wp-sl"></div>'; wp_enqueue_script('constructor-slideshow', CONSTRUCTOR_DIRECTORY_URI.'/js/jquery.wp-slideshow.js'); @@ -138,7 +152,7 @@ class Constructor_Main extends Constructor_Abstract echo " <script type='text/javascript'> /* <![CDATA[ */ - var wpSl = $options; + var wpSl = $optionsJSON; /* ]]> */ </script>"; } @@ -190,6 +204,8 @@ class Constructor_Main extends Constructor_Abstract } else { $sidebar = $this->_options['sidebar']; } + + $this->_layout = $sidebar; return 'layout-'.$sidebar; } @@ -204,8 +220,8 @@ class Constructor_Main extends Constructor_Abstract { if (!isset($this->_options['menu']['flag']) or !$this->_options['menu']['flag']) return false; - echo '<div id="menu" class="opacity shadow">'; - echo '<ul class="menu">'; + echo '<nav id="menu" class="opacity shadow">'; + echo '<ul>'; // before items if (!empty($before)) { @@ -306,14 +322,14 @@ class Constructor_Main extends Constructor_Abstract echo '</li>'; } echo '</ul>'; - echo '</div>'; + echo '</nav>'; } /** * get constructor content widget * * @param integer $i post counter - * @return + * @return string */ function getContentWidget($i) { @@ -343,8 +359,7 @@ class Constructor_Main extends Constructor_Abstract /** * get_constructor_author * - * @param string $before - * @param string $after + * @param integer $size * @return string */ function getAvatarSize($size = 32) @@ -364,8 +379,15 @@ class Constructor_Main extends Constructor_Abstract */ function getSidebar() { - // switch statement for $this->_options['sidebar'] - switch ($this->_options['sidebar']) { + // use config or template value + if ($this->_layout) { + $layout = $this->_layout; + } else { + $layout = $this->_options['sidebar']; + } + + // switch statement for $layout + switch ($layout) { case 'left': case 'right': get_sidebar(); @@ -492,4 +514,5 @@ class Constructor_Main extends Constructor_Abstract return $category_class; } } + ?> \ No newline at end of file diff --git a/wp-content/themes/constructor/navigation.php b/wp-content/themes/constructor/navigation.php index 915750db9ccfad03b1ffbdfef2047e8df20ec31e..b5a6630723ac0bc82c08e2e534cf217a704c5062 100644 --- a/wp-content/themes/constructor/navigation.php +++ b/wp-content/themes/constructor/navigation.php @@ -6,7 +6,7 @@ * @subpackage constructor */ ?> -<div class="navigation"> +<nav class="navigation"> <?php if (is_singular()) : // Whether is single post, is a page, or is an attachment ?> <div class="alignleft"><?php next_post_link('%link', '<span>«</span> %title') ?></div> <div class="alignright"><?php previous_post_link('%link', '%title <span>»</span>') ?></div> @@ -16,4 +16,4 @@ <div class="alignleft"><?php next_posts_link(__('<span>«</span> Older Entries', 'constructor')) ?></div> <div class="alignright"><?php previous_posts_link(__('Newer Entries <span>»</span>', 'constructor')) ?></div> <?php endif; ?> -</div> \ No newline at end of file +</nav> \ No newline at end of file diff --git a/wp-content/themes/constructor/sidebar-extra.php b/wp-content/themes/constructor/sidebar-extra.php index a9cd730a4e9adc29babf490fe23902af393e0450..d4fb5df184753c9d5b089968afed9309de2ded82 100644 --- a/wp-content/themes/constructor/sidebar-extra.php +++ b/wp-content/themes/constructor/sidebar-extra.php @@ -4,7 +4,7 @@ * @subpackage Constructor */ ?> -<div id="extra" class="sidebar"> +<aside id="extra"> <ul><?php // switch statement for widget place switch (true) { @@ -23,4 +23,4 @@ } ?> </ul> -</div> \ No newline at end of file +</aside> \ No newline at end of file diff --git a/wp-content/themes/constructor/sidebar.php b/wp-content/themes/constructor/sidebar.php index 1dad9ebb1dd84ce25795ba7dd4384d1cd463fe74..5099814168c416434a1dd2c8acc84a3c9a7add55 100644 --- a/wp-content/themes/constructor/sidebar.php +++ b/wp-content/themes/constructor/sidebar.php @@ -4,7 +4,7 @@ * @subpackage Constructor */ ?> -<div id="sidebar" class="sidebar"> +<aside id="sidebar"> <ul> <?php // switch statement for widget place @@ -47,4 +47,4 @@ } ?> </ul> -</div> \ No newline at end of file +</aside> \ No newline at end of file diff --git a/wp-content/themes/constructor/style.css b/wp-content/themes/constructor/style.css index 3c912a6d7b4fdda3891ffa1d0f17103f777b7201..d6d23d200ea0bc25921970bafe7923054a764d28 100644 --- a/wp-content/themes/constructor/style.css +++ b/wp-content/themes/constructor/style.css @@ -1,14 +1,11 @@ /* Theme Name: Constructor Theme URI: http://code.google.com/p/wp-constructor/ -Description: Wordpress Constructor Theme for those who want to create a unique blog design quickly and effortlessly (many layouts, configured colors, custom fonts and slideshow, etc). -Start build your own theme from <a href="themes.php?page=functions.php">settings page</a>. - -Version: 1.5.10 +Description: Wordpress Constructor Theme for those who want to create a unique blog design quickly and effortlessly (many layouts, configured colors, custom fonts and slideshow, etc). Start build your own theme from <a href="themes.php?page=functions.php">settings page</a>. +Version: 1.6.4 Author: Anton Shevchuk Author URI: http://anton.shevchuk.name/ Tags: fixed-width, one-column, two-columns, three-columns, threaded-comments, custom-colors, custom-header, theme-options, left-sidebar, right-sidebar - License: GNU General Public License, v2 (or newer) License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html @@ -48,6 +45,9 @@ h4 {font-size:1.4em; margin:8px 0} h5 {font-size:1.2em; margin:6px 0} h6 {font-size:1.2em; margin:4px 0} +section, header, article, footer, aside { + display:block; +} pre { font-size:1.0em; line-height:1.4em; @@ -257,157 +257,164 @@ img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img { } /*/Header*/ /*Sidebar*/ -.sidebar { +aside { /*padding:0 0 6px 6px;*/ padding:1px; font-size:1.4em; line-height:1.4em } -.sidebar h3{ +aside h3{ font-size:1.4em; padding:4px } -.sidebar a { +aside a { padding:0; } -.sidebar a:hover { +aside a:hover { text-decoration:underline } -.sidebar .tagcloud { +aside .tagcloud { padding:0px 16px } -.sidebar ul ul{ +aside ul ul{ margin:2px; padding:0 0 0 4px; } -.sidebar li { +aside li { margin:2px; list-style:none; } -.sidebar li li li { +aside li li li { padding:2px 2px 2px 6px; list-style:circle inside; } /*/Sidebar*/ -/*Post*/ -#posts { - padding:10px; - overflow:hidden -} -.hentry { +/*Article*/ +article { clear:both; + overflow: hidden; position:relative; - width:100%; - margin:0 0 10px 0 + padding:10px; } -.hentry .title h1, -.hentry .title h2, -.hentry .title h3 { + +article > h1, +article > h2, +article > h3, +article header h1, +article header h2, +article header h3 { margin:0; font-weight:700 !important; font-size:2em; line-height:1.4em; } -.hentry .title h1 a, -.hentry .title h2 a{ +article > h1 a, +article > h2 a, +article header h1 a, +article header h2 a{ display:block; padding:10px 12px; } -.hentry .title, .pagetitle { +article > h1, +article > h2, +article > h3, +article header, .pagetitle { margin-bottom: 8px } -.hentry .entry { +article > p, +article .entry { font-size:1.4em; line-height:1.6em; padding:4px; overflow:hidden; } -.hentry .entry h1, -.hentry .entry h2, -.hentry .entry h3, -.hentry .entry h4, -.hentry .entry h5, -.hentry .entry h6, -.hentry .entry ul, -.hentry .entry ol { +article .entry h1, +article .entry h2, +article .entry h3, +article .entry h4, +article .entry h5, +article .entry h6, +article .entry ul, +article .entry ol { margin-left:12px; } -.hentry .entry p{ +article .entry p{ margin-bottom:4px } -.hentry .entry a, -.hentry .footer a{ +article > p a, +article .entry a, +article footer a{ text-decoration:underline; } -.hentry .entry img.alignleft { +article .entry img.alignleft { margin: 0 4px 4px 0 } -.hentry .entry img.alignright { +article .entry img.alignright { margin: 0 4px 0 4px } -.hentry .entry ol, -.hentry .entry ul { +article .entry ol, +article .entry ul { padding-left:20px } -.hentry .entry li ol, -.hentry .entry li ul { +article .entry li ol, +article .entry li ul { padding-left:6px } -.hentry .entry ul { +article .entry ul { list-style:circle } -.hentry .entry li { +article .entry li { padding:2px; } -.hentry .gallery { +article .gallery { margin: 0 auto 18px; } -.hentry .gallery .gallery-item { +article .gallery .gallery-item { float: left; margin-top: 0; text-align: center; width: 33%; } -.hentry .gallery .gallery-caption { +article .gallery .gallery-caption { font-size:0.8em; margin: 0 0 12px; } -.hentry .gallery dl { +article .gallery dl { margin: 0; } -.hentry .gallery img { +article .gallery img { border-width:2px; border-style:solid; padding:4px; } -.hentry .gallery br+br { +article .gallery br+br { display: none; } -.hentry .pages { +article .pages { padding:8px 0; margin:8px 0; clear:both; } -.hentry .more-link { +article .more-link { } -.hentry .social { +article .social { overflow:hidden; clear:both; margin:4px 0; } - .hentry .social a { + article .social a { background:url('images/social.png') no-repeat 0 0 ; display:block; float:right; @@ -436,22 +443,17 @@ img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img { .social a.memori { background-position: -432px 0; } .social a.memori:hover { background-position: -432px 100%; } -.hentry .footer { +article footer { overflow:hidden; - clear:both -} -.hentry .footer .links { - float:right -} -.hentry .footer .line { - clear:both + clear:both; + text-align: right; } /* for big external images */ -.hentry .crop { +article .crop { position:relative; overflow:hidden; } -.hentry .crop img { +article .crop img { position:absolute; border:0; padding:0; @@ -521,19 +523,22 @@ img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img { /*/Simple*/ /*Tile*/ .tile { - padding: 5px !important; + } - -.tile .hentry { +.tile > div { + width:33.3%; + float:left; clear:none; +} +.tile article { position:relative; - width:328px; + min-width:328px; height:328px; - float:left; margin:4px; + padding:0; } -.tile .title { +.tile header { width:100%; z-index:10; position:absolute; @@ -544,7 +549,7 @@ img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img { margin:0; } -.tile .title h2 a { +.tile header h2 a { padding:2px 4px; } .tile a { @@ -553,33 +558,30 @@ img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img { .tile .thumbnail { z-index:0; - position:absolute; - top:2px; - left:4px; width:320px; - margin:2px auto; + height:320px; + margin:4px auto; } -.tile .links { +.tile footer { z-index:10; - position:absolute; bottom:8px; + position:absolute; left:0; height:32px; width:100%; } -.tile .links .date{ +.tile footer .date{ font-size:1.4em; text-indent:0.8em; padding:0; float:left; - width:280px; line-height:32px; } -.tile .links .comments { +.tile footer .comments { float:right; } -.tile .links .comments a{ +.tile footer .comments a{ margin:4px 6px 0 0; padding: 5px 8px; text-align:center; @@ -611,7 +613,7 @@ img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img { margin:4px; width:128px; height:128px; - font-size:1.4em; + font-size:1em; } .tiles .announce span{ display:block; @@ -626,6 +628,20 @@ img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img { text-align:center; } /*/Tiles*/ +/*Column*/ +.column #container { + overflow: hidden +} +.column section { + width:33.3%; + float:left; + clear:none; +} +.column article { + margin:4px; + padding:4px; +} +/*/Column*/ /*List*/ .list { @@ -670,6 +686,7 @@ img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img { display:block; width:auto; height:32px; + line-height:32px; margin:0 20px } .wp-pagenavi { @@ -846,7 +863,7 @@ tr td { .entry tr td { padding: 6px 24px; } -.sidebar th { +aside th { text-align:center; } /*/Table*/ @@ -963,8 +980,8 @@ tr td { /*Feed*/ .feed-icon { position:absolute; - top:8px; - right:16px; + top:16px; + right:24px; padding-right:20px !important; display:block; font-size:0.6em; @@ -1114,18 +1131,18 @@ tr td { /*/Slideshow*/ /*Templates*/ /*Archive*/ -#posts .archive table { +.archive table { margin:10px auto; width:90%; } -#posts .archive table th{ +.archive table th{ padding:0; } -#posts .archive table td{ +.archive table td{ padding:0; text-align:center; } -#posts .archive table a{ +.archive table a{ padding:4px; text-align:center; display:block; @@ -1160,8 +1177,8 @@ tr td { /*/Theme*/ /* optional rounded corners for browsers that support it */ -.hentry .entry .crop, -.hentry .entry img, +article .entry .crop, +article .entry img, .commentlist li, .wp-caption, input, select, textarea, diff --git a/wp-content/themes/constructor/template-archive.php b/wp-content/themes/constructor/template-archive.php index 0deb52b7d39a6374bfd2955edf706e740076edcd..7f4637aa919dadade0db8bef260137042da6c663 100644 --- a/wp-content/themes/constructor/template-archive.php +++ b/wp-content/themes/constructor/template-archive.php @@ -42,12 +42,11 @@ foreach ($AllPosts as $Post) { get_header(); ?> <div id="content" class="box shadow opacity <?php the_constructor_layout_class() ?>"> <div id="container" > - <div id="posts"> <?php while (have_posts()) : the_post(); ?> - <div <?php post_class(); ?> id="post-<?php the_ID() ?>"> - <div class="title opacity box"> + <article <?php post_class(); ?> id="post-<?php the_ID() ?>"> + <header class="opacity box"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1> - </div> + </header> <div class="entry archive"> <?php the_content(__('Read the rest of this entry »', 'constructor')) ?> <table> @@ -81,18 +80,14 @@ get_header(); ?> <?php endfor; ?> <?php endforeach; ?> </div> - <div class="footer"> - <div class="links"> + <footer> <?php if($post->post_parent) : $parent_link = get_permalink($post->post_parent); ?> <a href="<?php echo $parent_link; ?>"><?php _e('Back to Parent Page', 'constructor');?></a> | <?php endif; ?> <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> - </div> - </div> - </div> + </footer> + </article> <?php endwhile; ?> - </div> - </div><!-- id='container' --> <?php get_constructor_sidebar(); ?> </div><!-- id='content' --> diff --git a/wp-content/themes/constructor/template-authors.php b/wp-content/themes/constructor/template-authors.php index 13f5bc2da1b7b0aa30d80d6006d694f99beb1cba..2ef699b23611563806e3a1f0a1c0b22c44077357 100644 --- a/wp-content/themes/constructor/template-authors.php +++ b/wp-content/themes/constructor/template-authors.php @@ -10,30 +10,25 @@ Template Name: Authors get_header(); ?> <div id="content" class="box shadow opacity <?php the_constructor_layout_class() ?>"> <div id="container" class="container-authors"> - <div id="posts"> <?php while (have_posts()) : the_post(); ?> - <div <?php post_class(); ?> id="post-<?php the_ID() ?>"> - <div class="title opacity box"> + <article <?php post_class(); ?> id="post-<?php the_ID() ?>"> + <header class="opacity box"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1> - </div> + </header> <div class="entry"> <?php the_content(__('Read the rest of this entry »', 'constructor')) ?> <ul> <?php wp_list_authors('optioncount=1&exclude_admin=0&show_fullname=1') ?> </ul> </div> - <div class="footer"> - <div class="links"> + <footer> <?php if($post->post_parent) : $parent_link = get_permalink($post->post_parent); ?> <a href="<?php echo $parent_link; ?>"><?php _e('Back to Parent Page', 'constructor');?></a> | <?php endif; ?> <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> - </div> - </div> - </div> + </footer> + </article> <?php endwhile; ?> - </div> - </div><!-- id='container' --> <?php get_constructor_sidebar(); ?> </div><!-- id='content' --> diff --git a/wp-content/themes/constructor/template-monocolumn.php b/wp-content/themes/constructor/template-monocolumn.php index 61892d6539d9436f7c4dfb410f0a4e463a01b324..95c4ae64f8aa29e4f7916cbf78bc20345e8dbe2d 100644 --- a/wp-content/themes/constructor/template-monocolumn.php +++ b/wp-content/themes/constructor/template-monocolumn.php @@ -12,30 +12,26 @@ wp_enqueue_script( 'comment-reply' ); get_header(); ?> <div id="content" class="box shadow opacity <?php the_constructor_layout_class('none') ?>"> <div id="container"> - <div id="posts"> <?php while (have_posts()) : the_post(); ?> - <div <?php post_class(); ?> id="post-<?php the_ID() ?>"> - <div class="title opacity box"> + <article <?php post_class(); ?> id="post-<?php the_ID() ?>"> + <header class="title opacity box"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1> - </div> + </header> <div class="entry"> - <?php the_content(__('Read the rest of this entry »', 'constructor')) ?> <?php wp_link_pages(array('before' => '<p class="pages"><strong>'.__('Pages', 'constructor').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div> - <div class="footer"> - <div class="links"> + <footer> <?php if($post->post_parent) : $parent_link = get_permalink($post->post_parent); ?> <a href="<?php echo $parent_link; ?>"><?php _e('Back to Parent Page', 'constructor');?></a> | <?php endif; ?> <?php the_date() ?> | <?php the_tags(__('Tags', 'constructor') . ': ', ', ', ' |'); ?> <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> - <?php comments_popup_link(__('No Comments »', 'constructor'), __('1 Comment »', 'constructor'), __('% Comments »', 'constructor'), 'comments-link', __('Comments Closed', 'constructor') ); ?> </div> - </div> - </div> + <?php comments_popup_link(__('No Comments »', 'constructor'), __('1 Comment »', 'constructor'), __('% Comments »', 'constructor'), 'comments-link', __('Comments Closed', 'constructor') ); ?> + </footer> + </article> <?php endwhile; ?> - </div> </div><!-- id='container' --> </div><!-- id='content' --> <?php get_footer(); ?> diff --git a/wp-content/themes/constructor/template-parent.php b/wp-content/themes/constructor/template-parent.php index f1e6e62cb68f6e230f33d900a25705bda0332cc0..0a0fe38c5f68fa8599508f5ea9c470faadfec8ab 100644 --- a/wp-content/themes/constructor/template-parent.php +++ b/wp-content/themes/constructor/template-parent.php @@ -10,12 +10,11 @@ Template Name: Parent Page get_header(); ?> <div id="content" class="box shadow opacity <?php the_constructor_layout_class() ?>"> <div id="container"> - <div id="posts"> <?php while (have_posts()) : the_post(); ?> - <div <?php post_class(); ?> id="post-<?php the_ID() ?>"> - <div class="title opacity box"> + <article <?php post_class(); ?> id="post-<?php the_ID() ?>"> + <header class="opacity box"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1> - </div> + </header> <div class="entry"> <?php the_content(__('Read the rest of this entry »', 'constructor')) ?> <ul> @@ -23,20 +22,17 @@ get_header(); ?> </ul> <?php wp_link_pages(array('before' => '<p class="pages"><strong>'.__('Pages', 'constructor').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div> - <div class="footer"> - <div class="links"> + <footer> <?php if ($post->post_parent) : $parent_link = get_permalink($post->post_parent); ?> <a href="<?php echo $parent_link; ?>"><?php _e('Back to Parent Page', 'constructor');?></a> | <?php endif; ?> <?php the_date() ?> | <?php the_tags(__('Tags', 'constructor') . ': ', ', ', ' |'); ?> <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?> - <?php comments_popup_link(__('No Comments »', 'constructor'), __('1 Comment »', 'constructor'), __('% Comments »', 'constructor'), 'comments-link', __('Comments Closed', 'constructor') ); ?> </div> - </div> - </div> + <?php comments_popup_link(__('No Comments »', 'constructor'), __('1 Comment »', 'constructor'), __('% Comments »', 'constructor'), 'comments-link', __('Comments Closed', 'constructor') ); ?> + </footer> + </article> <?php endwhile; ?> - </div> - </div><!-- id='container' --> <?php get_constructor_sidebar(); ?> </div><!-- id='content' --> diff --git a/wp-content/themes/constructor/template-sitemap.php b/wp-content/themes/constructor/template-sitemap.php index f42f055e8a96eab094ca10ae18dd058fe2dbfcca..b6cc5e0828089e88ec54479254385574eaf0e333 100644 --- a/wp-content/themes/constructor/template-sitemap.php +++ b/wp-content/themes/constructor/template-sitemap.php @@ -10,12 +10,11 @@ Template Name: Sitemap get_header(); ?> <div id="content" class="box shadow opacity <?php the_constructor_layout_class() ?>"> <div id="container"> - <div id="posts"> <?php while (have_posts()) : the_post(); ?> - <div <?php post_class(); ?> id="post-<?php the_ID() ?>"> - <div class="title opacity box"> + <article <?php post_class(); ?> id="post-<?php the_ID() ?>"> + <header class="opacity box"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1> - </div> + </header> <div class="entry"> <?php the_content(__('Read the rest of this entry »', 'constructor')) ?> @@ -47,17 +46,14 @@ get_header(); ?> </ul> <?php endforeach;*/ ?> </div> - <div class="footer"> - <div class="links"> + <footer> <?php if($post->post_parent) : $parent_link = get_permalink($post->post_parent); ?> <a href="<?php echo $parent_link; ?>"><?php _e('Back to Parent Page', 'constructor');?></a> | <?php endif; ?> <?php edit_post_link(__('Edit', 'constructor'), '', ''); ?> - </div> - </div> - </div> + </footer> + </article> <?php endwhile; ?> - </div> </div><!-- id='container' --> <?php get_constructor_sidebar(); ?> </div><!-- id='content' --> diff --git a/wp-content/themes/constructor/themes/black-urban/style.css b/wp-content/themes/constructor/themes/black-urban/style.css index 20e45def2545e0615f66dc82a37d3af666f3787c..93abb555de1652c259b394f38a67d0c7e2d95a71 100644 --- a/wp-content/themes/constructor/themes/black-urban/style.css +++ b/wp-content/themes/constructor/themes/black-urban/style.css @@ -2,11 +2,11 @@ Theme Name: Black Urban Theme URI: Description: Black Urban Constructor Theme based on <a href="http://wordpress.org/extend/themes/black-urban">Black Urban WP Theme</a> -Version: 1.5.0 +Version: 1.6.0 Author: Anton Shevchuk Author URI: http://anton.shevchuk.name/ */ -.hentry .footer { +.hentry footer { height: 80px !important; border: 0; background: url(barbed-wire.jpg) 50% 100% no-repeat; diff --git a/wp-content/themes/constructor/themes/default/style.css b/wp-content/themes/constructor/themes/default/style.css index 3aecc5105d53a90affa66df8731e8532363bb988..528f93a6276043d2de41ff684a7e23a0e8b30181 100644 --- a/wp-content/themes/constructor/themes/default/style.css +++ b/wp-content/themes/constructor/themes/default/style.css @@ -2,7 +2,7 @@ Theme Name: Default Theme URI: Description: Default Constructor Theme -Version: 1.5.0 +Version: 1.6.0 Author: Anton Shevchuk Author URI: http://anton.shevchuk.name/ */ \ No newline at end of file diff --git a/wp-content/themes/constructor/themes/lime/style.css b/wp-content/themes/constructor/themes/lime/style.css index f599f1c25e64566d440e2fd1a9ea947c787c098a..8343f01e3bc94845e691e75f9208af4316e05b02 100644 --- a/wp-content/themes/constructor/themes/lime/style.css +++ b/wp-content/themes/constructor/themes/lime/style.css @@ -2,11 +2,11 @@ Theme Name: Lime Theme URI: Description: Lime Constructor Theme -Version: 1.5.0 +Version: 1.6.0 Author: Anton Shevchuk Author URI: http://anton.shevchuk.name/ */ -.hentry .footer { +article footer { height: 80px; background: url(line.png) 50% 100% no-repeat } @@ -31,8 +31,4 @@ Author URI: http://anton.shevchuk.name/ .navigation .alignleft a:hover, .navigation .alignright a:hover { background-position: 100% 100% -} - -body.page .hentry .title a { - text-align: center; } \ No newline at end of file diff --git a/wp-content/themes/constructor/themes/old-newspaper/config.php b/wp-content/themes/constructor/themes/old-newspaper/config.php new file mode 100644 index 0000000000000000000000000000000000000000..8b6e88cba4738c41908439b4bac511209b963871 --- /dev/null +++ b/wp-content/themes/constructor/themes/old-newspaper/config.php @@ -0,0 +1,240 @@ +<?php +/* Save on 2011-07-05 07:46 */ +return array ( + 'sidebar' => 'right', + 'layout' => + array ( + 'header' => '142', + 'width' => '1024', + 'sidebar' => '240', + 'extra' => '120', + 'fluid' => + array ( + 'flag' => false, + 'width' => 80, + 'min-width' => 960, + 'max-width' => 1280, + ), + 'home' => 'column', + 'index' => 'default', + 'page' => 'page', + 'single' => 'single', + 'archive' => 'default', + 'date' => 'default', + 'category' => 'default', + 'tag' => 'default', + 'search' => 'default', + ), + 'title' => + array ( + 'pos' => 'center top', + 'hidden' => false, + ), + 'content' => + array ( + 'date' => true, + 'links' => + array ( + 'author' => true, + 'category' => false, + 'tags' => false, + 'comments' => true, + ), + 'widget' => + array ( + 'flag' => false, + 'after' => 1, + ), + 'social' => + array ( + 'twitter' => '1', + 'facebook' => '1', + 'delicious' => '1', + 'reddit' => '1', + 'vkontakte' => '0', + 'digg' => '0', + 'mixx' => '0', + 'stumbleupon' => '0', + 'google' => '0', + 'memori' => '0', + ), + ), + 'comments' => + array ( + 'avatar' => + array ( + 'size' => '64', + 'pos' => 'right', + ), + ), + 'footer' => + array ( + 'text' => '', + ), + 'fonts' => + array ( + 'title' => + array ( + 'family' => 'UnifrakturMaguntia', + 'size' => '64', + 'weight' => '800', + 'color' => '#333', + 'transform' => 'capitalize', + ), + 'description' => + array ( + 'family' => 'Georgia,Times,serif', + 'size' => '14', + 'weight' => '600', + 'color' => '#777', + 'transform' => 'none', + ), + 'header' => + array ( + 'family' => 'Georgia,Times,serif', + ), + 'content' => + array ( + 'family' => 'Georgia,Times,serif', + ), + ), + 'menu' => + array ( + 'pos' => 'left bottom', + 'width' => '100%', + 'flag' => true, + 'home' => false, + 'rss' => true, + 'search' => false, + 'pages' => + array ( + 'depth' => '0', + 'exclude' => '0', + ), + 'categories' => + array ( + 'depth' => '1', + 'exclude' => '0', + 'group' => true, + 'title' => '', + ), + ), + 'slideshow' => + array ( + 'flag' => false, + 'layout' => 'in', + 'onpage' => false, + 'onsingle' => false, + 'onarchive' => false, + 'showposts' => 10, + 'id' => 0, + 'height' => 200, + 'advanced' => + array ( + 'play' => false, + 'effect' => 'slide', + 'effectTime' => 300, + 'timeout' => 3000, + 'thumb' => false, + ), + ), + 'design' => + array ( + 'box' => + array ( + 'flag' => false, + 'radius' => 6, + ), + 'shadow' => + array ( + 'flag' => false, + 'x' => 0, + 'y' => 0, + 'blur' => 3, + ), + ), + 'images' => + array ( + 'body' => + array ( + 'src' => '', + 'pos' => 'left top', + 'repeat' => 'no-repeat', + 'fixed' => false, + ), + 'wrap' => + array ( + 'src' => '', + 'pos' => 'left top', + 'repeat' => 'no-repeat', + 'fixed' => false, + ), + 'header' => + array ( + 'src' => '', + 'pos' => 'right top', + 'repeat' => 'no-repeat', + ), + 'wrapper' => + array ( + 'src' => '', + 'pos' => 'left top', + 'repeat' => 'no-repeat', + ), + 'sidebar' => + array ( + 'src' => '', + 'pos' => 'left top', + 'repeat' => 'no-repeat', + ), + 'extrabar' => + array ( + 'src' => '', + 'pos' => 'left top', + 'repeat' => 'no-repeat', + ), + 'footer' => + array ( + 'src' => '', + 'pos' => 'left top', + 'repeat' => 'no-repeat', + ), + 'wrapheader' => + array ( + 'src' => '', + 'pos' => 'left top', + 'repeat' => 'no-repeat', + ), + 'wrapcontent' => + array ( + 'src' => '', + 'pos' => 'left top', + 'repeat' => 'no-repeat', + ), + 'wrapfooter' => + array ( + 'src' => '', + 'pos' => 'left top', + 'repeat' => 'no-repeat', + ), + ), + 'opacity' => 'none', + 'color' => + array ( + 'bg' => '#fff7e5', + 'bg2' => '#faead5', + 'opacity' => '#fff', + 'title' => '#333', + 'title2' => '#555', + 'text' => '#333', + 'text2' => '#aaa', + 'border' => '#422303', + 'border2' => '#3d2000', + 'form' => '#fff', + 'header1' => '#4f2e18', + 'header2' => '#3d230f', + 'header3' => '#40270e', + ), + 'theme-reload' => '0', +) + ?> \ No newline at end of file diff --git a/wp-content/themes/constructor/themes/old-newspaper/screenshot.png b/wp-content/themes/constructor/themes/old-newspaper/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..0f6d1575004ca5fc72f6475ae371c97078071ca0 Binary files /dev/null and b/wp-content/themes/constructor/themes/old-newspaper/screenshot.png differ diff --git a/wp-content/themes/constructor/themes/old-newspaper/style.css b/wp-content/themes/constructor/themes/old-newspaper/style.css new file mode 100644 index 0000000000000000000000000000000000000000..09ecf33b6bb879e6d17d1c4d85c4a2ebde3b5a7a --- /dev/null +++ b/wp-content/themes/constructor/themes/old-newspaper/style.css @@ -0,0 +1,64 @@ +/* +Theme Name: Old Newspaper +Theme URI: +Description: Very simple theme, without any background images +Version: 1.6.0 +Author: Anton Shevchuk +Author URI: http://anton.shevchuk.name +*/ + +#menu { + margin-left:-1px; + border-top: 3px solid #333333; + border-bottom: 2px dotted #333333; + border-left: 1px solid #333333; + border-right: 1px solid #333333; + background:#FFF7E5; + margin-bottom:0 +} +.current-menu-item > a { + text-decoration:underline; +} + +#wrapheader { + background:#e9e1d1 +} + +#title { + margin-top:10px; +} +article header { + margin:0; +} +article footer { + border-bottom: 2px dotted #333333; + padding-bottom: 4px; + margin-bottom: 4px; +} +#content{ + border-left: 1px solid #333333; + border-right: 1px solid #333333; + border-bottom: 3px solid #333333; +} +.thread-even, .even { + border: 1px solid #AAAAAA; +} +.thread-odd, .odd { + border: 1px solid #AAAAAA; +} +.layout-right #container { + border-right: 1px solid #333; +} +.layout-left #container { + border-left: 1px solid #333; +} +.layout-two #container { + border-right: 1px solid #333; + border-left: 1px solid #333; +} +li.widget { + border-bottom:1px solid #777 +} +#footer .copy{ + text-align:right; +} \ No newline at end of file diff --git a/wp-content/themes/constructor/themes/orange/style.css b/wp-content/themes/constructor/themes/orange/style.css index 32f5b20a9529cf8b920d35ebd2c00dd48f2bc139..c2bd7fa35282bce1f75773af3f41803e6e54dc37 100644 --- a/wp-content/themes/constructor/themes/orange/style.css +++ b/wp-content/themes/constructor/themes/orange/style.css @@ -2,11 +2,11 @@ Theme Name: Orange Theme URI: Description: Orange Constructor Theme -Version: 1.5.0 +Version: 1.6.0 Author: Anton Shevchuk Author URI: http://anton.shevchuk.name/ */ -.hentry .footer { +article footer { height: 80px; background: url(line.png) 50% 100% no-repeat } diff --git a/wp-content/themes/constructor/themes/ukraine/style.css b/wp-content/themes/constructor/themes/ukraine/style.css index 7c4a72423d66c8c82ef71a2f622bc751c2600cd4..275a6be1c25df9ef51c2c369a9e796ec73878ad7 100644 --- a/wp-content/themes/constructor/themes/ukraine/style.css +++ b/wp-content/themes/constructor/themes/ukraine/style.css @@ -2,7 +2,7 @@ Theme Name: Ukraine Theme URI: Description: Ukraine Theme. Special for my compatriots -Version: 1.5.0 +Version: 1.6.0 Author: Anton Shevchuk Author URI: http://anton.shevchuk.name/ */