diff --git a/wp-content/themes/thematic/library/extensions/comments-extensions.php b/wp-content/themes/thematic/library/extensions/comments-extensions.php
index 1b7209270c62fcb3c0cb1e58df404f6f36815461..ced08a61f7af65c9ee429015ca6c60817db456c9 100644
--- a/wp-content/themes/thematic/library/extensions/comments-extensions.php
+++ b/wp-content/themes/thematic/library/extensions/comments-extensions.php
@@ -226,8 +226,8 @@ function thematic_comment_form_args( $post_id = null ) {
 	
 	$fields =  array(
 		'author' => '<div id="form-section-author" class="form-section"><div class="form-label">' . '<label for="author">' . __( 'Name', 'thematic' ) . '</label> ' . ( $req ? '<span class="required">' . _x( '*', 'denotes required field', 'thematic' ) . '</span>' : '' ) . '</div>' . '<div class="form-input">' . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' .  ' maxlength="20" tabindex="3"' . $aria_req . ' /></div></div><!-- #form-section-author .form-section -->',
-		'email'  => '<div id="form-section-email" class="form-section"><div class="form-label"><label for="email">' . __( 'Email', 'thematic' ) . '</label> ' . ( $req ? '<span class="required">' . _x( '*', 'denotes required field', 'thematic' ) . '</span>' : '' ) . '</div><div class="form-input">' . '<input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30" maxlength="50" tabindex="4"' . $aria_req . ' /></div></div><!-- #form-section-email .form-section -->',
-		'url'    => '<div id="form-section-url" class="form-section"><div class="form-label"><label for="url">' . __( 'Website', 'thematic' ) . '</label></div>' . '<div class="form-input"><input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" maxlength="50" tabindex="5" /></div></div><!-- #form-section-url .form-section -->',
+		'email'  => '<div id="form-section-email" class="form-section"><div class="form-label"><label for="email">' . __( 'Email', 'thematic' ) . '</label> ' . ( $req ? '<span class="required">' . _x( '*', 'denotes required field', 'thematic' ) . '</span>' : '' ) . '</div><div class="form-input">' . '<input id="email" name="email" type="email" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30" maxlength="50" tabindex="4"' . $aria_req . ' /></div></div><!-- #form-section-email .form-section -->',
+		'url'    => '<div id="form-section-url" class="form-section"><div class="form-label"><label for="url">' . __( 'Website', 'thematic' ) . '</label></div>' . '<div class="form-input"><input id="url" name="url" type="url" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" maxlength="50" tabindex="5" /></div></div><!-- #form-section-url .form-section -->',
 	);
 
 	
diff --git a/wp-content/themes/thematic/library/extensions/content-extensions.php b/wp-content/themes/thematic/library/extensions/content-extensions.php
index 44d69089bf49035dbdcf04c7cf05a341e2b3ffc0..466b03f97ce35115970f10d084cecfcc49b0ca25 100644
--- a/wp-content/themes/thematic/library/extensions/content-extensions.php
+++ b/wp-content/themes/thematic/library/extensions/content-extensions.php
@@ -910,10 +910,13 @@ if (function_exists('childtheme_override_postheader_posttitle'))  {
 	 * Filter: thematic_postheader_posttitle
 	 */
 	function thematic_postheader_posttitle() {
-		
 		$posttitle = "\n\n\t\t\t\t\t";
+		
+		if ( !$title_content = get_the_title() )  
+			$title_content = '<a href="' . get_permalink() . '">' . _x('(Untitled)', 'Default title for untitled posts', 'thematic') . '</a>';
+	    
 	    if (is_single() || is_page()) {
-	        $posttitle .= '<h1 class="entry-title">' . get_the_title() . "</h1>\n";
+	        $posttitle .= '<h1 class="entry-title">' . $title_content . "</h1>\n";
 	    } elseif (is_404()) {    
 	        $posttitle .= '<h1 class="entry-title">' . __('Not Found', 'thematic') . "</h1>\n";
 	    } else {
@@ -921,7 +924,8 @@ if (function_exists('childtheme_override_postheader_posttitle'))  {
 	        $posttitle .= sprintf('<a href="%s" title="%s" rel="bookmark">%s</a>',
 	        						apply_filters('the_permalink', get_permalink()),
 									sprintf( esc_attr__('Permalink to %s', 'thematic'), the_title_attribute( 'echo=0' ) ),
-	        						get_the_title());   
+	        						$title_content
+	        						);   
 	        $posttitle .= "</h2>\n";
 	    }
 	    
@@ -1147,6 +1151,7 @@ if (function_exists('childtheme_override_content'))  {
 					}
 			}
 		} elseif ( strtolower($thematic_content_length) == 'none') {
+			$post= '';		
 		} else {
 			$post = get_the_content( thematic_more_text() );
 			$post = apply_filters('the_content', $post);
@@ -1198,10 +1203,10 @@ if (function_exists('childtheme_override_category_archives'))  {
 				<li id="category-archives" class="content-column">
 					<h2><?php _e('Archives by Category', 'thematic') ?></h2>
 					<ul>
-						<?php wp_list_categories(array('optioncount' => true, 
-														'feed' => 'RSS',
-														'title_li' => '',
-														'show_count' => true)); ?> 
+						<?php wp_list_categories( array ( 'feed' => 'RSS',
+														  'title_li' => '',
+														  'show_count' => true ) );
+						?> 
 					</ul>
 				</li>
 <?php }
@@ -1660,7 +1665,7 @@ if (function_exists('childtheme_override_postfooter_postconnect'))  {
 								__('Trackback URL', 'thematic'))
 							);
 	    } elseif ((comments_open()) && !(pings_open())) { /* Only comments open */
-	        $postconnect = sprintf( __('Trackbacks are closed, but you can %1$spost a comment%2$s.', '1s and 2s are the a href link wrappers, do not reverse them', 'thematic'), sprintf('<a class="comment-link" title="%s" href="#respond">', esc_attr__('Post a comment', 'thematic')), '</a>');
+	        $postconnect = sprintf( _x('Trackbacks are closed, but you can %1$spost a comment%2$s.', '1s and 2s are the a href link wrappers, do not reverse them', 'thematic'), sprintf('<a class="comment-link" title="%s" href="#respond">', esc_attr__('Post a comment', 'thematic')), '</a>');
 	    } elseif (!(comments_open()) && !(pings_open())) { /* Comments and trackbacks closed */
 	        $postconnect = __('Both comments and trackbacks are currently closed.', 'thematic');
 	    }
diff --git a/wp-content/themes/thematic/library/extensions/dynamic-classes.php b/wp-content/themes/thematic/library/extensions/dynamic-classes.php
index d9da6b6d1e3e0dea9984a34079b302998d7c9eef..e875898f7382cbc923f23094242187ee69d3a67b 100644
--- a/wp-content/themes/thematic/library/extensions/dynamic-classes.php
+++ b/wp-content/themes/thematic/library/extensions/dynamic-classes.php
@@ -6,53 +6,22 @@
  * @subpackage DynamicClasses
  */
  
-if ( function_exists( 'childtheme_override_body' ) )  {
-	/**
-	 * @ignore
-	 */function thematic_body() {
-		childtheme_override_body();
-	}
-} else {
-	/**
-	 * @ignore
-	 */function thematic_body() {
-		thematic_bodyopen();
-	}
-}
-
-/**
- * thematic_bodyopen function
- */
-function thematic_bodyopen() {
-    if ( apply_filters( 'thematic_show_bodyclass',TRUE ) ) { 
-        // Creating the body class
-    	echo '<body ';
-    	body_class();
-    	echo '>' . "\n\n";
-    } else {
-    	echo '<body>' . "\n\n";
-    }
-}
-
 
 if ( function_exists( 'childtheme_override_body_class' ) )  {
-	_deprecated_function( 'childtheme_override_body_class', '1.0.1.3','filter body_class()' );
 	/**
 	 * @ignore
-	 */function thematic_body_class() {
+	 */
+	 function thematic_body_class() {
 		childtheme_override_body_class();
 	}
 } else {
 	/**
 	 * Generates semantic classes for BODY element
 	 *
-	 * @param bool $print (default: true)
+	 * @param array $c body classes
 	 */
 	function thematic_body_class( $c ) {
-		_deprecated_function( 'thematic_body_class', '1.0.1.3', 'filter body_class()' );
 		global $wp_query, $current_user, $blog_id, $post, $taxonomy;
-	    
-	    $c = array();
 	
 		if ( apply_filters('thematic_show_bc_wordpress', TRUE ) ) {
 	        // It's surely a WordPress blog, right?
@@ -293,7 +262,7 @@ if ( function_exists( 'childtheme_override_body_class' ) )  {
 				        $c[] = 'search-paged-' . $page;
  				} 
  			// Paged classes; for page x = 1	For all post types
- 			} elseif ( strpos( $post->post_content, '<!--nextpage-->') )  { 
+ 			} elseif ( preg_match( '/<!--nextpage(.*?)-->/', $post->post_content ) )  { 
  				if ( thematic_is_custom_post_type() ) {
 				    	$c[] = str_replace( '_','-',$post->post_type ) . '-paged-1';
  				    } elseif (is_page()) {
@@ -309,15 +278,22 @@ if ( function_exists( 'childtheme_override_body_class' ) )  {
 	}
 }
 
-// Add Legacy Body Classes to body_class()
-if ( current_theme_supports ( 'thematic_legacy_body_class' ) ) {
-	add_filter( 'body_class', 'thematic_body_class', 20 );
+/**
+ * Add thematic body classes if child theme activates it
+ */
+function thematic_activate_body_classes() {
+	if ( current_theme_supports ( 'thematic_legacy_body_class' ) ) {
+		add_filter( 'body_class', 'thematic_body_class', 20 );
+	}
+	
+	// Add browser CSS class to the end (queuing through priority) of the body classes 
+	if ( apply_filters( 'thematic_show_bc_browser', TRUE ) ) {
+		add_filter( 'body_class', 'thematic_browser_class_names', 30 ); 
+	}
 }
+add_action( 'init', 'thematic_activate_body_classes' );
+
 
-// Add browser CSS class to the end (queuing through priority) of the body classes 
-if ( apply_filters( 'thematic_show_bc_browser', TRUE ) ) {
-	add_filter( 'body_class', 'thematic_browser_class_names', 30 ); 
-}
 
 /**
  * thematic_browser_class_names function.
@@ -413,10 +389,10 @@ function thematic_browser_class_names($classes) {
 
 
 if (function_exists('childtheme_override_post_class'))  {
-	_deprecated_function( 'childtheme_override_post_class', '1.0.1.3', 'filter post_class()' );
 	/**
 	 * @ignore
-	 */function thematic_post_class() {
+	 */
+	 function thematic_post_class() {
 		childtheme_override_post_class();
 	}
 } else {
@@ -424,12 +400,14 @@ if (function_exists('childtheme_override_post_class'))  {
 	 * Generates semantic classes for each post DIV element
 	 */
 	function thematic_post_class( $c ) {
-		_deprecated_function( 'thematic_post_class', '1.0.1.3', 'filter post_class()' );
 
 		global $post, $thematic_post_alt, $thematic_content_length, $taxonomy;
 	
 		// hentry for hAtom compliace, gets 'alt' for every other post DIV, describes the post type and p[n]
-		$c = array( 'hentry', "p$thematic_post_alt", str_replace( '_', '-', $post->post_type) , $post->post_status );
+		$c[] = 'hentry';
+		$c[] = "p$thematic_post_alt";
+		$c[] =  str_replace( '_', '-', $post->post_type );
+		$c[] =  $post->post_status ;
 	
 		// Author for the post queried
 		$c[] = 'author-' . sanitize_title_with_dashes( strtolower( get_the_author_meta( 'user_login' ) ) );
@@ -463,34 +441,26 @@ if (function_exists('childtheme_override_post_class'))  {
 			}
 		}
 
-		// For posts displayed as full content
-		if ($thematic_content_length == 'full')
-			$c[] = 'is-full';
+		$thematic_excerpt_more = preg_match( '/<!--more(.*?)-->/', $post->post_content );
 
 		// For posts displayed as excerpts
-		if ($thematic_content_length == 'excerpt') {
+		if ( $thematic_content_length == 'excerpt' || ( !is_single() && $thematic_excerpt_more ) ) {
 			$c[] = 'is-excerpt';
-			if ( has_excerpt() && !preg_match( '/<!--more(.*?)?-->/', $post->post_content ) ) {
+			if ( has_excerpt() ) {
 				// For wp-admin Write Page generated excerpts
 				$c[] = 'custom-excerpt';
+			} elseif ( $thematic_excerpt_more ) {
+				// For  more tag
+				$c[] = 'moretag-excerpt';
 			} else {
-				// For automatically generated excerpts
+				// For auto generated excerpts
 				$c[] = 'auto-excerpt';
 			}
+		// For posts displayed as full content
+		} elseif (  $thematic_content_length == 'full'  )  {
+				$c[] = 'is-full';
 		}
-		
-		// For single posts that had a wp-admin Write Page generated excerpt  
-		if ( has_excerpt() && is_single() )
-			$c[] = 'has-excerpt';
-			
-		//	For posts using more tag
-		if ( preg_match( '/<!--more(.*?)?-->/', $post->post_content ) ) {	
-			if ( !is_single() ) {
-				$c[] = 'wp-teaser';
-			} elseif ( is_single() ) {
-				$c[] = 'has-teaser';
-			}
-		}
+
 						
 		// For posts with comments open or closed
 		if ( comments_open() ) {
@@ -528,9 +498,16 @@ if (function_exists('childtheme_override_post_class'))  {
 		return array_unique(apply_filters( 'thematic_post_class', $c )); // Available filter: thematic_post_class
 	}
 }
-if ( current_theme_supports ( 'thematic_legacy_post_class' ) ) {
-	add_filter( 'post_class', 'thematic_post_class', 20 );
+
+/**
+ * Add thematic post classes if child theme activates it
+ */
+function thematic_activate_post_classes() {
+	if ( current_theme_supports ( 'thematic_legacy_post_class' ) ) {
+		add_filter( 'post_class', 'thematic_post_class', 20 );
+	}
 }
+add_action( 'init', 'thematic_activate_post_classes' );
 
 /**
  * Define the num val for 'alt' classes (in post DIV and comment LI)
diff --git a/wp-content/themes/thematic/library/extensions/header-extensions.php b/wp-content/themes/thematic/library/extensions/header-extensions.php
index 579e5331ce9ce0a7401e6d1f1ac7586acd97ccd6..7a4b7a4cc2f5fd84e3fa51d6d1e020921feb2f47 100644
--- a/wp-content/themes/thematic/library/extensions/header-extensions.php
+++ b/wp-content/themes/thematic/library/extensions/header-extensions.php
@@ -499,10 +499,34 @@ function thematic_add_menuclass($ulclass) {
 }
 
 
+if ( function_exists( 'childtheme_override_body' ) )  {
+	/**
+	 * @ignore
+	 */
+	 function thematic_body() {
+		childtheme_override_body();
+	}
+} else {
+	/**
+	 * Creates the body tag
+	 */
+	 function thematic_body() {
+    	if ( apply_filters( 'thematic_show_bodyclass',TRUE ) ) { 
+        	// Creating the body class
+    		echo '<body ';
+    		body_class();
+    		echo '>' . "\n\n";
+    	} else {
+    		echo '<body>' . "\n\n";
+    	}
+	}
+}
+
+
 /**
  * Register action hook: thematic_before
  * 
- * Located in header.php, just after the opening body tag, before anything else.
+ * Located in header.php, just after the body tag, before anything else.
  */
 function thematic_before() {
     do_action( 'thematic_before' );
diff --git a/wp-content/themes/thematic/library/extensions/shortcodes.php b/wp-content/themes/thematic/library/extensions/shortcodes.php
index 7824ccad063a582d2c7b865a95cb43798f1b238b..74e8568863307b6319c06b28c873db81786d21ad 100644
--- a/wp-content/themes/thematic/library/extensions/shortcodes.php
+++ b/wp-content/themes/thematic/library/extensions/shortcodes.php
@@ -11,7 +11,6 @@
  * @package ThematicCoreLibrary
  * @subpackage Shortcodes
  *
- * @TODO: remove all references to deprecated function, get_theme_data()
  */
 
 
@@ -75,13 +74,8 @@ add_shortcode('the-year', 'thematic_shortcode_year');
  * Display the name of the parent theme.
  */
 function thematic_shortcode_theme_name() {
-    if ( function_exists( 'wp_get_theme' ) ) {
-        $frameworkData = wp_get_theme( 'thematic' );
-        return $frameworkData->display( 'Name', false );
-    } else { 
-        $frameworkData = get_theme_data(  get_template_directory() . '/style.css' );
-        return $frameworkData['Title'];
-    }
+    $frameworkData = wp_get_theme( 'thematic' );
+    return $frameworkData->display( 'Name', false );
 }
 add_shortcode('theme-name', 'thematic_shortcode_theme_name');
 
@@ -90,13 +84,8 @@ add_shortcode('theme-name', 'thematic_shortcode_theme_name');
  * Display the name of the parent theme author.
  */
 function thematic_shortcode_theme_author() {
-    if ( function_exists( 'wp_get_theme' ) ) {
-        $frameworkData = wp_get_theme( 'thematic' );
-        return $frameworkData->display( 'Author', false );
-    } else { 
-        $frameworkData = get_theme_data(  get_template_directory() . '/style.css' );
-        return $frameworkData['Author'];
-    }
+    $frameworkData = wp_get_theme( 'thematic' );
+    return $frameworkData->display( 'Author', false );
 }
 add_shortcode('theme-author', 'thematic_shortcode_theme_author');
 
@@ -105,13 +94,8 @@ add_shortcode('theme-author', 'thematic_shortcode_theme_author');
  * Display the URI of the parent theme.
  */
 function thematic_shortcode_theme_uri() {
-    if ( function_exists( 'wp_get_theme' ) ) {
-        $frameworkData = wp_get_theme( 'thematic' );
-        return $frameworkData->display( 'ThemeURI', false );
-    } else { 
-        $frameworkData = get_theme_data(  get_template_directory() . '/style.css' );
-        return $frameworkData['URI'];
-    }
+    $frameworkData = wp_get_theme( 'thematic' );
+    return $frameworkData->display( 'ThemeURI', false );
 }
 add_shortcode('theme-uri', 'thematic_shortcode_theme_uri');
 
@@ -120,13 +104,8 @@ add_shortcode('theme-uri', 'thematic_shortcode_theme_uri');
  * Display the version no. of the parent theme.
  */
 function thematic_shortcode_theme_version() {
-    if ( function_exists( 'wp_get_theme' ) ) {
-        $frameworkData = wp_get_theme( 'thematic' );
-        return trim( $frameworkData->display('Version', false));
-    } else { 
-        $frameworkData = get_theme_data(  get_template_directory() . '/style.css' );
-        return trim( $frameworkData['Version'] );
-    }
+    $frameworkData = wp_get_theme( 'thematic' );
+    return trim( $frameworkData->display('Version', false));
 }
 add_shortcode('theme-version', 'thematic_shortcode_theme_version');
 
@@ -136,13 +115,8 @@ add_shortcode('theme-version', 'thematic_shortcode_theme_version');
  * Display the name of the child theme.
  */
 function thematic_shortcode_child_name() {
-    if ( function_exists( 'wp_get_theme' ) ) {
-        $frameworkData = wp_get_theme();
-        return $frameworkData->display( 'Name', false );
-    } else { 
-        $frameworkData = get_theme_data( get_stylesheet_directory() . '/style.css' );
-        return $frameworkData['Title'];
-    }
+    $frameworkData = wp_get_theme();
+    return $frameworkData->display( 'Name', false );
 }
 add_shortcode('child-name', 'thematic_shortcode_child_name');
 
@@ -151,13 +125,8 @@ add_shortcode('child-name', 'thematic_shortcode_child_name');
  * Display the name of the child theme author.
  */
 function thematic_shortcode_child_author() {
-    if ( function_exists( 'wp_get_theme' ) ) {
-        $frameworkData = wp_get_theme();
-        return $frameworkData->display( 'Author', false );
-    } else { 
-        $frameworkData = get_theme_data( get_stylesheet_directory() . '/style.css' );
-        return $frameworkData['Author'];
-    }
+    $frameworkData = wp_get_theme();
+    return $frameworkData->display( 'Author', false );
 }
 add_shortcode('child-author', 'thematic_shortcode_child_author');
 
@@ -166,13 +135,8 @@ add_shortcode('child-author', 'thematic_shortcode_child_author');
  * Display the URI of the child theme.
  */
 function thematic_shortcode_child_uri() {
-    if ( function_exists( 'wp_get_theme' ) ) {
-        $frameworkData = wp_get_theme();
-        return $frameworkData->display( 'ThemeURI', false );
-    } else { 
-        $frameworkData = get_theme_data( get_stylesheet_directory() . '/style.css' );
-        return $frameworkData['URI'];
-    }
+    $frameworkData = wp_get_theme();
+    return $frameworkData->display( 'ThemeURI', false );
 }
 add_shortcode('child-uri', 'thematic_shortcode_child_uri');
 
@@ -182,12 +146,7 @@ add_shortcode('child-uri', 'thematic_shortcode_child_uri');
  * 
  */
 function thematic_shortcode_child_version() {
-    if ( function_exists( 'wp_get_theme' ) ) {
-        $frameworkData = wp_get_theme();
-        return trim( $frameworkData->display('Version', false));
-    } else { 
-        $frameworkData = get_theme_data( get_stylesheet_directory() . '/style.css' );
-        return trim( $frameworkData['Version'] );
-    }
+    $frameworkData = wp_get_theme();
+    return trim( $frameworkData->display('Version', false));
 }
 add_shortcode('child-version', 'thematic_shortcode_child_version');
diff --git a/wp-content/themes/thematic/library/extensions/theme-options.php b/wp-content/themes/thematic/library/extensions/theme-options.php
index c3eea8f81585e6624f8e2beca2ac70fb08b5c720..2b536a3c7c135399ddb7537c6c537efe57250d95 100644
--- a/wp-content/themes/thematic/library/extensions/theme-options.php
+++ b/wp-content/themes/thematic/library/extensions/theme-options.php
@@ -188,7 +188,6 @@ add_action( 'admin_menu', 'thematic_opt_add_page' );
  * Override: childtheme_override_opt_page_help <br>
  * 
  * @since Thematic 1.0 
- * @todo remove conditional compatibilty  WP version > 3.3 and remove fallback to 3.2
  */
 if (function_exists('childtheme_override_opt_page_help')) {
 	function thematic_opt_page_help() {
@@ -212,43 +211,16 @@ if (function_exists('childtheme_override_opt_page_help')) {
 		
 		$help = apply_filters ( 'thematic_theme_opt_help_txt', $help );
 	
-        if ( method_exists( $screen, 'add_help_tab' ) ) {
-        	// WordPress 3.3
-			$screen->add_help_tab( array( 'title' => __( 'Overview', 'thematic' ), 'id' => 'theme-opt-help', 'content' => $help, ) );
-			$screen->set_help_sidebar( $sidebar );
+        $screen->add_help_tab( array( 'title' => __( 'Overview', 'thematic' ), 'id' => 'theme-opt-help', 'content' => $help, ) );
+		$screen->set_help_sidebar( $sidebar );
                         
-			} else {
-             	thematic_legacy_help();
-           	}
         }
 }
 
-/**
- * Adds a settings section to display legacy help text and theme links
- *
- * @since Thematic 1.0
- * @todo remove Legacy help when two point relases of WP have occurred after 3.3
- */
-function thematic_legacy_help() {
-        add_settings_section ('thematic_opt_help_section', '', 'thematic_do_legacy_help_section', 'thematic_opt_page');
-}
-
-
-/**
- * Renders the legacy help text and theme links
- * 
- * @since Thematic 1.0
- * @todo remove Legacy help when two point relases of WP have occurred after 3.3
- */
-function thematic_do_legacy_help_section() { 
-    echo '<p>'. sprintf ( _x( 'For more information about this theme, %1$svisit ThematicTheme.com%2$s', '%1$s and %2$s are <a> tags', 'thematic') , '<a href="http://thematictheme.com">', '</a>') . ' ' . sprintf ( _x( 'Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic.', '%1$s and %2$s are <a> tags', 'thematic'), '<a href="http://thematictheme.com/forums/">', '</a>' ) .'</p>' ;
-}
-
 /**
  * Renders the them options page
  *
  * @since Thematic 1.0
- * @todo: remove get_current_theme()
  */
 function thematic_do_opt_page() { ?>
 
@@ -256,12 +228,8 @@ function thematic_do_opt_page() { ?>
 	<?php screen_icon(); ?>
 
 	<?php 
-	if ( function_exists( 'wp_get_theme' ) ) {
-        $frameworkData = wp_get_theme();
-        $theme = $frameworkData->display( 'Name', false );
- 	} else {
- 		$theme = get_current_theme();
- 	} 
+		$frameworkData = wp_get_theme();
+    	$theme = $frameworkData->display( 'Name', false ); 
  	?>
 
 	<h2><?php printf( _x( '%s Theme Options', '{$current theme} Theme Options', 'thematic' ), $theme ); ?></h2>
@@ -337,19 +305,14 @@ function thematic_do_footer_opt() {
  * Renders Leagcy Options elements
  *
  * @since Thematic 1.0
- * @todo: remove get_current_theme()
  */
 function thematic_do_legacy_opt() {
 ?>
 	<input id="thm_legacy_opt" type="checkbox" value="1" name="thematic_theme_opt[del_legacy_opt]"  <?php checked( thematic_get_theme_opt('del_legacy_opt'), 1 ); ?> />
 
 	<?php 
-	if ( function_exists( 'wp_get_theme' ) ) {
         $frameworkData = wp_get_theme();
         $theme = $frameworkData->display( 'Name', false );
- 	} else {
- 		$theme = get_current_theme();
- 	} 
  	?>
 
 	<label for="thm_legacy_opt"><?php printf( _x( '%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database.', '{$current theme} Theme Options', 'thematic' ), $theme ); ?></label>
@@ -367,8 +330,8 @@ function thematic_do_legacy_opt() {
  * @since Thematic 1.0 
  */
 if (function_exists('childtheme_override_validate_opt')) {
-	function thematic_thematic_validate_opt() {
-		childtheme_override_validate_opt();
+	function thematic_validate_opt($input) {
+		childtheme_override_validate_opt($input);
 	}
 } else {
  	function thematic_validate_opt($input){
@@ -377,10 +340,10 @@ if (function_exists('childtheme_override_validate_opt')) {
  	   // Index Insert position must be a non-negative number
  	   if ( !is_numeric( $input['index_insert'] ) || $input['index_insert'] < 0 )  {
  	   		add_settings_error(
- 	   		'thematic_theme_opt',
- 	   		'thematic_insert_opt',
- 	   		__('The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value.', 'thematic' ),
- 	   		'error'
+ 	   			'thematic_theme_opt',
+ 	   			'thematic_insert_opt',
+ 	   			__('The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value.', 'thematic' ),
+ 	   			'error'
  	   		);
  	   } else {
  	   	// A sanitize numeric value to ensure a whole number
diff --git a/wp-content/themes/thematic/library/languages/ca.mo b/wp-content/themes/thematic/library/languages/ca.mo
index 84d217cf1020ee1d9721417fa32e86aaca69a555..c7d96b4aac66896a5c76bc6511299bc4890c425e 100644
Binary files a/wp-content/themes/thematic/library/languages/ca.mo and b/wp-content/themes/thematic/library/languages/ca.mo differ
diff --git a/wp-content/themes/thematic/library/languages/ca.po b/wp-content/themes/thematic/library/languages/ca.po
index 35d52444871668077d2871c3bea3f09163374315..d468db49de6f80586f3aa83fce39ff8d8efd4678 100644
--- a/wp-content/themes/thematic/library/languages/ca.po
+++ b/wp-content/themes/thematic/library/languages/ca.po
@@ -1,14 +1,24 @@
-# Translation of Thematic 1.0.3 in Catalan
-# This file is distributed under the same license as the Thematic 1.0.3 package.
+# Translation of Thematic 1.0.3.x in Catalan
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2012-10-22 09:59:21+0000\n"
+"PO-Revision-Date: 2013-03-05 17:46:44+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: Thematic 1.0.3\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
 
 #: archives.php:20 template-page-blog.php:22
 msgid "The template %s"
@@ -75,7 +85,7 @@ msgid "Post Comment"
 msgstr "Publicar comentari"
 
 #: library/extensions/comments-extensions.php:228
-#: library/legacy/deprecated.php:357
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Nom"
 
@@ -86,17 +96,17 @@ msgid "*"
 msgstr "*"
 
 #: library/extensions/comments-extensions.php:229
-#: library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "Email"
 
 #: library/extensions/comments-extensions.php:230
-#: library/legacy/deprecated.php:367
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Website"
 
 #: library/extensions/comments-extensions.php:238
-#: library/legacy/deprecated.php:354
+#: library/legacy/deprecated.php:362
 msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
 msgid "Your email is %1$snever%2$s published nor shared."
 msgstr "El teu email %1$smai%2$s serà publicat ni compartit."
@@ -107,32 +117,32 @@ msgid "Required fields are marked %1$s*%2$s"
 msgstr "Els camps obligatoris estan marcats amb un %1$s*%2$s"
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "You must be %1$slogged in%2$s to post a comment."
 msgstr "Has d'%1$sobrir una sessió%2$s per a escriure un comentari."
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "Log in"
 msgstr "Obrir sessió"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as %s"
 msgstr "Sessió oberta com %s"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out of this account"
 msgstr "Tancar la sessió"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out?"
 msgstr "Tancar la sessió?"
 
 #: library/extensions/comments-extensions.php:244
-#: library/legacy/deprecated.php:379
+#: library/legacy/deprecated.php:387
 msgctxt "%$1s and %$2s are <abbr> tags"
 msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr "Pots utilitzar aquestes etiquetes i atributs %1$sHTML%2$s"
@@ -174,162 +184,158 @@ msgid "Yearly Archives: %s"
 msgstr "Any: %s"
 
 #: library/extensions/content-extensions.php:424
-#: library/extensions/content-extensions.php:1706
+#: library/extensions/content-extensions.php:1710
 msgid "Older posts"
 msgstr "Entrades més antigues"
 
 #: library/extensions/content-extensions.php:426
-#: library/extensions/content-extensions.php:1708
+#: library/extensions/content-extensions.php:1712
 msgid "Newer posts"
 msgstr "Entrades més recents"
 
 #: library/extensions/content-extensions.php:888
-#: library/extensions/content-extensions.php:1418
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Editar entrada"
 
 #: library/extensions/content-extensions.php:890
-#: library/extensions/content-extensions.php:1420
+#: library/extensions/content-extensions.php:1424
 #: library/extensions/discussion-extensions.php:37
-#: library/extensions/discussion.php:84 links.php:54 page.php:52
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
 #: template-page-archives.php:55 template-page-fullwidth.php:53
 msgid "Edit"
 msgstr "Editar"
 
-#: library/extensions/content-extensions.php:918
+#: library/extensions/content-extensions.php:921
 #: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "No s'ha trobat"
 
-#: library/extensions/content-extensions.php:923
-#: library/extensions/content-extensions.php:1141
+#: library/extensions/content-extensions.php:926
 #: library/extensions/content-extensions.php:1145
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
 msgid "Permalink to %s"
 msgstr "Enllaç permanent a %s"
 
-#: library/extensions/content-extensions.php:983
+#: library/extensions/content-extensions.php:987
 msgid "By"
 msgstr "Per"
 
-#: library/extensions/content-extensions.php:994
+#: library/extensions/content-extensions.php:998
 msgid "View all posts by %s"
 msgstr "Veure totes les entrades escrites per %s"
 
-#: library/extensions/content-extensions.php:1023
+#: library/extensions/content-extensions.php:1027
 msgid "Published:"
 msgstr "Publicat:"
 
-#: library/extensions/content-extensions.php:1199
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Arxius per Categoria"
 
-#: library/extensions/content-extensions.php:1230
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Arxius per Mes"
 
-#: library/extensions/content-extensions.php:1291
+#: library/extensions/content-extensions.php:1295
 msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
 msgstr "Disculpa les molèsties, però no hem pogut trobar el que buscaves. El cercador pot ser-te d'ajuda."
 
-#: library/extensions/content-extensions.php:1297 search.php:70
+#: library/extensions/content-extensions.php:1301 search.php:70
 msgid "Find"
 msgstr "Trobar"
 
-#: library/extensions/content-extensions.php:1316
+#: library/extensions/content-extensions.php:1320
 msgid "Read More %s"
 msgstr "Llegir més %s"
 
-#: library/extensions/content-extensions.php:1368
+#: library/extensions/content-extensions.php:1372
 msgid "Browse the %s archive."
 msgstr "Explorar l'arxiu de %s."
 
-#: library/extensions/content-extensions.php:1370
+#: library/extensions/content-extensions.php:1374
 msgid "Permalink to %s Archive"
 msgstr "Enllaç permanent a l'arxiu de %s"
 
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1380
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
 msgid "Bookmark the %1$spermalink%2$s."
 msgstr "Guardar l'%1$senllaç permanent%2$s."
 
-#: library/extensions/content-extensions.php:1534
+#: library/extensions/content-extensions.php:1538
 msgid "This entry was posted in %s"
 msgstr "Aquesta entrada va ser publicada en %s"
 
-#: library/extensions/content-extensions.php:1545
+#: library/extensions/content-extensions.php:1549
 msgid "Also posted in %s"
 msgstr "També publicada en %s"
 
-#: library/extensions/content-extensions.php:1549
+#: library/extensions/content-extensions.php:1553
 msgid "Posted in %s"
 msgstr "Publicat en %s"
 
-#: library/extensions/content-extensions.php:1575
+#: library/extensions/content-extensions.php:1579
 msgid "This entry is tagged"
 msgstr "Aquesta entrada està etiquetada com"
 
-#: library/extensions/content-extensions.php:1578
+#: library/extensions/content-extensions.php:1582
 msgid "and tagged"
 msgstr "i etiquetada com"
 
-#: library/extensions/content-extensions.php:1581
+#: library/extensions/content-extensions.php:1585
 msgid "Also tagged"
 msgstr "També etiquetada com"
 
-#: library/extensions/content-extensions.php:1583
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Etiquetes"
 
-#: library/extensions/content-extensions.php:1613
-#: library/extensions/content-extensions.php:1619
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
 msgid "Comment on %s"
 msgstr "Comentar en %s"
 
-#: library/extensions/content-extensions.php:1615
+#: library/extensions/content-extensions.php:1619
 msgid "%s Response"
 msgid_plural "%s Responses"
 msgstr[0] "%s Resposta"
 msgstr[1] "%s Respostes"
 
-#: library/extensions/content-extensions.php:1620
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Deixar un comentari"
 
-#: library/extensions/content-extensions.php:1623
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Comentaris tancats"
 
-#: library/extensions/content-extensions.php:1647
+#: library/extensions/content-extensions.php:1651
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
 msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
 msgstr "%1$sAfegeix un comentari%2$s o deixa un trackback: %3$s"
 
-#: library/extensions/content-extensions.php:1648
-#: library/extensions/content-extensions.php:1663
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Publicar un comentari"
 
-#: library/extensions/content-extensions.php:1652
-#: library/extensions/content-extensions.php:1659
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "URL del Trackback per a la teva entrada"
 
-#: library/extensions/content-extensions.php:1653
-#: library/extensions/content-extensions.php:1660
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "URL del Trackback"
 
-#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1660
 msgctxt "%s is trackback url, wrapped in link tags"
 msgid "Comments are closed, but you can leave a trackback: %s"
 msgstr "Els comentaris estan tancats, però pots deixar un trackback: %s"
 
-#: library/extensions/content-extensions.php:1663
-msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
-msgstr "Els trackbacks estan tancats, però pots %1$safegir un comentari%2$s."
-
-#: library/extensions/content-extensions.php:1665
+#: library/extensions/content-extensions.php:1669
 msgid "Both comments and trackbacks are currently closed."
 msgstr "Tant els comentaris com els trackbacks estan tancats."
 
@@ -381,11 +387,11 @@ msgstr "Canal RSS d'entrades"
 msgid "Comments RSS feed"
 msgstr "Canal RSS de comentaris"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Saltar la navegació al contingut"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Saltar al contingut"
 
@@ -447,31 +453,31 @@ msgctxt "%1$s and %2$s are <a> tags"
 msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
 msgstr "Si us plau visita els %1$sFòrums de ThematicTheme.com%2$s si tens preguntes sobre Thematic."
 
-#: library/extensions/theme-options.php:256
+#: library/extensions/theme-options.php:267
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options"
 msgstr "Opcions del tema %s"
 
-#: library/extensions/theme-options.php:294
+#: library/extensions/theme-options.php:305
 msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
 msgstr "L'àrea inserida en la portada apareixerà després d'aquest número d'entrada. Si no escrius res o escrius 0 es desactivarà aquesta característica."
 
-#: library/extensions/theme-options.php:307
+#: library/extensions/theme-options.php:318
 msgctxt "%1$s and %2$s are <a> tags"
 msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
 msgstr "Mostrar una %1$svCard amb microformat%2$s amb l'avatar, la biografia i el correu electrònic de l'autor a la seva pàgina."
 
-#: library/extensions/theme-options.php:320
+#: library/extensions/theme-options.php:331
 msgctxt "%s are shortcode tags"
 msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
 msgstr "Pots utilitzar HTML i etiquetes en el text del peu de pàgina. Exemples d'etiquetes: %s"
 
-#: library/extensions/theme-options.php:333
+#: library/extensions/theme-options.php:355
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
 msgstr "Les opcions del tema %s s'han actualitzat a un format millorat. Elimina les opcions antigues de la base de dades."
 
-#: library/extensions/theme-options.php:360
+#: library/extensions/theme-options.php:382
 msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
 msgstr "La posició de l'àrea inserida en la portada ha de ser un número igual o més gran que zero. Aquesta opció ha tornat al seu valor anterior."
 
@@ -621,11 +627,11 @@ msgstr "Totes les entrades"
 msgid "All comments"
 msgstr "Tots els comentaris"
 
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as"
 msgstr "Sessió oberta com"
 
-#: library/legacy/deprecated.php:357 library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
 msgid "<span class=\"required\">*</span>"
 msgstr "<span class=\"required\">*</span>"
 
@@ -660,9 +666,6 @@ msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http
 msgid "http://themeshaper.com/"
 msgstr "http://themeshaper.com/"
 
-msgid "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-msgstr "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-
 msgid "Deprecated Archives Template"
 msgstr "Plantilla d'Arxius Obsoleta"
 
diff --git a/wp-content/themes/thematic/library/languages/cs_CZ.mo b/wp-content/themes/thematic/library/languages/cs_CZ.mo
index 2f9a983dce43fb450de2f1c6e91d0ffd8ec8a536..4372d5c33851a04d2ab1de1ae3f41e25ead04efa 100644
Binary files a/wp-content/themes/thematic/library/languages/cs_CZ.mo and b/wp-content/themes/thematic/library/languages/cs_CZ.mo differ
diff --git a/wp-content/themes/thematic/library/languages/cs_CZ.po b/wp-content/themes/thematic/library/languages/cs_CZ.po
index 2a796b6807e0f2d4e3c5776e6de889ab10ff6758..fb73bc7267f3eb2d52effeaa8653fbd26df28227 100644
--- a/wp-content/themes/thematic/library/languages/cs_CZ.po
+++ b/wp-content/themes/thematic/library/languages/cs_CZ.po
@@ -1,524 +1,683 @@
-# kubrick theme pot file.
-# Copyright (C) 2007 WordPress
-# This file is distributed under the same license as the kubrick theme package.
-#
+# Translation of Thematic 1.0.3.x in Czech
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Čeština pro Thematic\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-18 20:58+0100\n"
-"PO-Revision-Date: 2010-08-09 12:25+0100\n"
-"Last-Translator: Shane <janfertek@gmail.com>\n"
-"Language-Team: Jan Feřtek <janfertek@gmail.com>\n"
+"PO-Revision-Date: 2013-03-05 17:46:51+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Czech\n"
-"X-Poedit-Country: CZECH REPUBLIC\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e\n"
-"X-Poedit-Basepath: .\n"
-"Plural-Forms: nplurals=3;\n"
-"X-Poedit-SearchPath-0: \n"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/archives.php:42
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/links.php:53
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:40
-msgid "Edit"
-msgstr "Upravit"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/attachment.php:39
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Stránky:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/author.php:53
+#: author.php:67
 msgid "Email "
 msgstr "E-mail "
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:10
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
+
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Tento příspěvek je chráněn heslem. Zadejte heslo pro zobrazení komentářů."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "Trackbacky <span>(%d)</span>"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
+
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
+
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>jeden</span> trackback"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "<a href=\"%s\" title=\"Přihlásit se\">Přihlašte se</a> pro přidání komentáře."
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Jste přihlášen(a) jako <a href=\"%1$s\">%2$s</a>.</span> <span class=\"logout\">Chcete se <a href=\"%3$s\" title=\"Odhlásit se z tohoto účtu\" >odhlásit</a>?</span></span>"
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "Poslat komentář"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Váš e-mail nebude <em>nikdy</em> zveřejněn nebo sdílen."
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "Poslat odpověď na %s"
+
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Povinná pole jsou označena <span class=\"required\">*</span>."
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Odeslat komentář"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Jméno"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "E-mail"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:103
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Web"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Můžete použít tyto <abbr title=\"HyperText Markup Language\">HTML</abbr> tagy a atributy:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:38
-msgid "Pages: "
-msgstr "Stránky: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:41
-msgid "Nothing Found"
-msgstr "Nic nenalezeno"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:43
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Nebyly nalezeny žádné výsledky. Zkuste prosím zadat jiný výraz."
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:48
-msgid "Find"
-msgstr "Najít"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>Jeden</span> komentář"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "Komentáře <span>(%d)</span>"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:96
-msgid "Post a Comment"
-msgstr "Poslat komentář"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:103
-#, php-format
-msgid "Post a Reply to %s"
-msgstr "Poslat odpověď na %s"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:110
-msgid "Comment"
-msgstr "Komentář"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:117
-msgid "Post Comment"
-msgstr "Odeslat komentář"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:147
-msgid "Author Archives: "
-msgstr "Archiv autora "
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:153
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Archiv rubriky"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:162
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Najít výsledky pro:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:168
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Archiv štítku"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:174
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Archiv dne <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:178
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Archiv měsíce <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:182
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Archiv roku <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:186
-msgid "Blog Archives"
-msgstr "Archiv blogu"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:209
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:725
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Starší příspěvky"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:210
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:726
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Novější příspěvky <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:394
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:618
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Upravit příspěvek"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:406
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Upravit"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Nenalezeno"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:411
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid "Permalink to "
-msgstr "Trvalý odkaz na "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:441
-msgid "By "
-msgstr "Vložil(a) "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:444
-msgid "View all posts by "
-msgstr "Zobrazit všechny příspěvky od "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:455
-msgid "Published: "
-msgstr "Publikováno "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:523
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Archiv podle rubriky"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:534
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Archiv podle měsíců"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:562
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Omlouváme se, ale tato stránka neexistuje. Můžete ji zkusit vyhledat."
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:578
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Více <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Najít"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:629
-msgid "This entry was posted in "
-msgstr "Příspěvek z rubriky "
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:632
-msgid "Also posted in "
-msgstr "Také byl publikován v "
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:635
-msgid "Posted in "
-msgstr "Příspěvek z rubriky "
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:646
-msgid " and tagged"
-msgstr " a označen"
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:649
-msgid " Also tagged "
-msgstr " Také označen "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:651
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Označen jako"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:663
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:666
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:669
-msgid "Comment on "
-msgstr "Komentáře k "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:664
-msgid " Comments"
-msgstr " komentářů"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:667
-msgid " Comment"
-msgstr " Komentář"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:670
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Přidat komentář"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:673
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Komentáře uzavřeny"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid ". Bookmark the "
-msgstr ". Přidat do záložek "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:687
-msgid "permalink"
-msgstr "trvalý odkaz"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:689
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Napsat komentář"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:690
-msgid " or leave a trackback: "
-msgstr " nebo vložit trackback: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "URL trackbacku pro váš příspěvek"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "URL trackbacku"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:693
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " Komentáře jsou uzavřeny, ale můžete vložit trackback: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:696
-msgid " Trackbacks are closed, but you can "
-msgstr " Trackbacky jsou uzavřeny, ale můžete "
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
-msgid "post a comment"
-msgstr "napsat komentář"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:699
-msgid " Both comments and trackbacks are currently closed."
-msgstr " Komentáře a trackbacky jsou nyní uzavřeny."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Vloženo %1$s v %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Trvalý odkaz na tento komentář\">Trvalý odkaz</a>"
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Komentář čeká na schválení.</span>\n"
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:22
+#: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Odpovědět"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:23
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
 msgstr "Pokud chcete odpovědět, přihlaste se."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "Vložil(a) %1$s na %2$s v %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Trackback čeká na schválení.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:251
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "RSS příspěvků"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:269
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "RSS komentářů"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Přeskočit navigaci a přejít na obsah"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Přejít na obsah"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
 msgstr "Úvodní text se nezobrazuje, protože toto je chráněný příspěvek."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Přihlásit se"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Odhlásit se"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:13
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "Pozice widgetu Index Insert"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "Zvolte počet příspěvků, za kterým se na úvodní stránce zobrazí widget Index Insert."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "Informace na stránce o autorovi"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "Zobrazit <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">vCard</a> — avatar, biografii a e-mail — na stránce o autorovi."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "Text v patičce webu"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "V textu patičky můžete použít tyto značky: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Poháněno [wp-link]em. Využívá šablonu [theme-link]."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:75
-msgid "settings saved."
-msgstr "- nastavení uloženo."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings reset."
-msgstr "- obnovit nastavení."
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "widgets reset."
-msgstr "- obnovit widgety."
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:190
-msgid "Save changes"
-msgstr "Uložit změny"
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:196
-msgid "Reset"
-msgstr "Obnovit výchozí"
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:202
-msgid "Reset Widgets"
-msgstr "Obnovit widgety"
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:207
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Informace o této šabloně naleznete na webu <a href=\"http://themeshaper.com\">ThemeShaper</a>. Pokud máte nějaké otázky ohledně šablony Thematic, můžete navštívit <a href=\"http://themeshaper.com/forums/\">fórum ThemeShaper</a>."
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:12
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "Hledaný výraz potvrďte enterem"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:18
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:281
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:43
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "Hledat"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:43
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
 msgstr "Primární prostor pro widgety, často používaný jako boční menu."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:58
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
 msgstr "Sekundární prostor pro widgety, často používaný jako boční menu."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:73
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
 msgstr "První prostor pro widgety v patičce webu."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:88
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
 msgstr "Druhý prostor pro widgety v patičce webu."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:103
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
 msgstr "Třetí prostor pro widgety v patičce webu."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:118
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr "Zobrazí se nahoře na úvodní straně."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:133
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr "Zobrazí se za x-tým příspěvkem na úvodní straně (hodnotu x nastavíte v Thematic Options)."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:148
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr "Zobrazí se dole na úvodní straně."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:163
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr "Zobrazí se nahoře na stránce příspěvku."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:178
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
 msgstr "Zobrazí se mezi příspěvkem a komentáři na stránce příspěvku."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:193
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr "Zobrazí se dole na stránce příspěvku."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:208
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr "Zobrazí se nahoře na Stránce (Pages)."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:223
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr "Zobrazí se dole na Stránce (Pages)."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:283
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:55
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr "Titulek:"
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:285
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:286
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:72
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
 msgstr "RSS odkazy"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/widgets.php:157
 msgid "All posts"
 msgstr "Všechny příspěvky"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/widgets.php:158
 msgid "All comments"
 msgstr "Všechny komentáře"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:96
-msgid "Title:"
-msgstr "Titulek:"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Stránky: "
 
-#~ msgid "definitions created."
-#~ msgstr "definiciones creadas."
-#~ msgid "failed to create directory:"
-#~ msgstr "error al crear directorio:"
-#~ msgid "failed to create the file:"
-#~ msgstr "error al crear el archivo:"
-#~ msgid "Create Definitions"
-#~ msgstr "Crear Definiciones"
-#~ msgid "Pages"
-#~ msgstr "Páginas"
-#~ msgid "Categories"
-#~ msgstr "Categorías"
-#~ msgid "Archives"
-#~ msgstr "Archivos"
-#~ msgid "RSS Feeds"
-#~ msgstr "Canales RSS"
-#~ msgid "Blog Index"
-#~ msgstr "Índice del blog"
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Nic nenalezeno"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Nebyly nalezeny žádné výsledky. Zkuste prosím zadat jiný výraz."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/da_DK.mo b/wp-content/themes/thematic/library/languages/da_DK.mo
index e4b721582d1f1b2f732d580a780993079e51b978..edc4d7996c711c9224bd5eadc46d80155a9db02f 100644
Binary files a/wp-content/themes/thematic/library/languages/da_DK.mo and b/wp-content/themes/thematic/library/languages/da_DK.mo differ
diff --git a/wp-content/themes/thematic/library/languages/da_DK.po b/wp-content/themes/thematic/library/languages/da_DK.po
index b415b74057d86de03644d4712e454769793b758d..663e727b23fffd117d1aa589a07108360107b288 100644
--- a/wp-content/themes/thematic/library/languages/da_DK.po
+++ b/wp-content/themes/thematic/library/languages/da_DK.po
@@ -1,521 +1,682 @@
-# Danske oversættelse af Thematic
-# Copyright 2010 Ask Hjorth Larsen m.fl.
-#
-# (Anders Jenbo?)
-# Ask Hjorth Larsen, 2010.
-#
-# Konventioner
-#
-# author page -> forfatterside
-#
-# trackback -> trackback.  I hvertfald indtil jeg finder ud af hvad det er
-#
-# comment -> kommentar
-# post -> indlæg
-# footer -> sidefod.  Kan måske referere til signaturtekstområdet ... ændres?
+# Translation of Thematic 1.0.3.x in Danish
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-18 20:58+0100\n"
-"PO-Revision-Date: 2010-12-26 14:55+0100\n"
-"Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n"
-"Language-Team: \n"
+"PO-Revision-Date: 2013-03-05 17:46:49+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e\n"
-"X-Poedit-Basepath: .\n"
-"X-Poedit-SearchPath-0: c:\\xampp\\htdocs\\development\\wp-content\\themes\\thematic\n"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/archives.php:42
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/links.php:53
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:40
-msgid "Edit"
-msgstr "Rediger"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/attachment.php:39
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Sider:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/author.php:53
+#: author.php:67
 msgid "Email "
 msgstr "E-mail "
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:10
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
+
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Dette indlæg er beskyttet med adgangskode. Indtast adgangskoden for at se kommentarer."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> trackbacks"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
+
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
+
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>Et</span> trackback"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Du skal være <a href=\"%s\" title=\"Log ind\">logget ind</a> for at skrive en kommentar."
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Logget ind som <a href=\"%1$s\" title=\"Logget ind som %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log denne konto ud\">Log ud?</a></span>"
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "Skriv en kommentar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Din e-mail vil <em>aldrig</em> blive vist eller delt med andre."
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "Skriv et svar til %s"
+
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Obligatoriske felter er markeret med <span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Skriv kommentar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Navn"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "E-mail"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:103
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Website"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Du kan bruge disse <abbr title=\"HyperText Markup Language\">HTML</abbr>-mærker og -attributter:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:38
-msgid "Pages: "
-msgstr "Sider: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:41
-msgid "Nothing Found"
-msgstr "Intet fundet"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:43
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Beklager, men dine søgeord gav ingen resultater. Prøv venligst igen med nogle andre nøgleord."
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:48
-msgid "Find"
-msgstr "Find"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>En</span> kommentar"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> kommentarer"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:96
-msgid "Post a Comment"
-msgstr "Skriv en kommentar"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:103
-#, php-format
-msgid "Post a Reply to %s"
-msgstr "Skriv et svar til %s"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:110
-msgid "Comment"
-msgstr "Kommentar"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:117
-msgid "Post Comment"
-msgstr "Skriv kommentar"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:147
-msgid "Author Archives: "
-msgstr "Forfatterarkiver: "
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:153
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Kategoriarkiver:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:162
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Søgeresultater for:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:168
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Mærkearkiver:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:174
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Daglige arkiver: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:178
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Månedlige arkiver: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:182
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Årlige arkiver: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:186
-msgid "Blog Archives"
-msgstr "Blogarkiver"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:209
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:725
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Ældre indlæg"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:210
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:726
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Nyere indlæg <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:394
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:618
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Rediger indlæg"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:406
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Rediger"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Ikke fundet"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:411
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid "Permalink to "
-msgstr "Permalink til "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:441
-msgid "By "
-msgstr "Af "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:444
-msgid "View all posts by "
-msgstr "Vis alle indlæg af "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:455
-msgid "Published: "
-msgstr "Udgivet: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:523
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Arkiver efter kategori"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:534
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Arkiver efter måned"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:562
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Beklager, men vi kunne ikke finde det, du ledte efter. Måske vil en søgning kunne hjælpe."
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Find"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:578
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Læs mere <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:629
-msgid "This entry was posted in "
-msgstr "Dette indlæg blev sendt til "
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:632
-msgid "Also posted in "
-msgstr "Også sendt til "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:635
-msgid "Posted in "
-msgstr "Sendt til "
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:646
-msgid " and tagged"
-msgstr " og mærket"
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:649
-msgid " Also tagged "
-msgstr " Også mærket "
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:651
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Mærket"
 
-# Bemærk at 'Comment on <something>' -> 'Kommentér <noget>'
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:663
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:666
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:669
-msgid "Comment on "
-msgstr "Kommentér "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:664
-msgid " Comments"
-msgstr " Kommentarer"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:667
-msgid " Comment"
-msgstr " Kommentar"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
 
-# leave ~ skriv
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:670
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Skriv en kommentar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:673
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Kommentarer lukket"
 
-# bruger ubestemt på dansk -- dette ødelægger næppe noget
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid ". Bookmark the "
-msgstr ". Bogmærk "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:687
-msgid "permalink"
-msgstr "permalink"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:689
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Skriv en kommentar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:690
-msgid " or leave a trackback: "
-msgstr " eller efterlad en trackback: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Trackback-adresse til dit indlæg"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Trackback-adresse"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:693
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " Der er lukket for kommentarer, men du kan efterlade et trackback: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:696
-msgid " Trackbacks are closed, but you can "
-msgstr " Der er lukket for trackbacks, men du kan "
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-# Bemærk.  Lader til at være fortsat fra " Trackbacks are closed, but you can "
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
-msgid "post a comment"
-msgstr "skrive en kommentar"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:699
-msgid " Both comments and trackbacks are currently closed."
-msgstr " Der er nu lukket for både kommentarer og trackbacks."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-# Ikke sikker, kan nogen (Anders?) tjekke at dette er meningsfuldt?
-# Tror det begynder i stil med "Skrevet 17/7 14:23..."
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Skrevet %1$s kl. %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink til denne kommentar\">Permalink</a>"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
+
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Din kommentar afventer godkendelse fra moderator.</span>\n"
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:22
+#: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Svar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:23
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
 msgstr "Log ind for at svare."
 
-# navn, dato, tid - velsagtens
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "Af %1$s, %2$s kl. %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Din trackback afventer godkendelse fra moderator.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:251
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "RSS-kilde for indlæg"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:269
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "RSS-kilde for kommentarer"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Hop til indholdet"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Hop til indhold"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
 msgstr "Der er intet uddrag, da dette er et beskyttet indlæg."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Log ind"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Log af"
-
-# ???
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:13
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "Position af indeksindsættelse"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "Kontrollen for indeksindsættelse (Index Insert) vil følge efter dette antal indlæg."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "Side til information om forfatter"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "Vis et <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">mikroformateret vCard</a> — med forfatterens profilbillede, biografi og e-mail — på forfattersiden."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "Tekst i sidefod"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "Du kan bruge følgende forkortelseskoder i din sidefodstekst: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Kører på [wp-link]. Bygget med [theme-link]."
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:75
-msgid "settings saved."
-msgstr "indstillinger gemt."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings reset."
-msgstr "indstillinger nulstillet."
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "widgets reset."
-msgstr "kontroller nulstillet."
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:190
-msgid "Save changes"
-msgstr "Gem ændringer"
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:196
-msgid "Reset"
-msgstr "Nulstil"
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:202
-msgid "Reset Widgets"
-msgstr "Nulstil kontroller"
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:207
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Besøg <a href=\"http://themeshaper.com\">ThemeShaper</a> for at få yderligere oplysninger om dette tema. Besøg <a href=\"http://themeshaper.com/forums/\">ThemeShapers forum</a> hvis du har spørgsmål om Thematic."
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:12
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "Skriv og tryk enter for at søge"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:18
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:281
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:43
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "Søg"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:43
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
 msgstr "Det primære kontrolområde, der oftest bruges som en sidebjælke."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:58
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
 msgstr "Det sekundære kontrolområde, der oftest bruges som en sidebjælke."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:73
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
 msgstr "Det første kontrolområde i sidefoden."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:88
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
 msgstr "Det andet kontrolområde i sidefoden."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:103
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
 msgstr "Det tredje kontrolområde i sidefoden."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:118
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr "Det øverste kontrolområde, der vises på indekssiden."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:133
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr "Kontrolområdet, der indsætes efter x indlæg på indekssiden."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:148
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr "Det nederste kontrolområde, der vises på indekssiden."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:163
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr "Det øverste kontrolområde, der vises på et enkelt indlæg."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:178
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
 msgstr "Kontrolområdet, der indsættes mellem et indlæg og dets kommentarer."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:193
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr "Det nederste kontrolområde, der vises på et enkelt indlæg."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:208
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr "Det øverste kontrolområde, der vises på en side."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:223
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr "Det nederste kontrolområde, der vises på en side."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:283
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:55
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr "Titel:"
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:285
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:286
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:72
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
 msgstr "RSS-links"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/widgets.php:157
 msgid "All posts"
 msgstr "Alle indlæg"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/widgets.php:158
 msgid "All comments"
 msgstr "Alle kommentarer"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:96
-msgid "Title:"
-msgstr "Titel:"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Sider: "
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Intet fundet"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Beklager, men dine søgeord gav ingen resultater. Prøv venligst igen med nogle andre nøgleord."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/de_DE.mo b/wp-content/themes/thematic/library/languages/de_DE.mo
index 38d2d23a4d43e35f791fe558d63bff9f3ac53889..187ad7b98bee698b106f4dcbfa8daabc69aa5cc2 100644
Binary files a/wp-content/themes/thematic/library/languages/de_DE.mo and b/wp-content/themes/thematic/library/languages/de_DE.mo differ
diff --git a/wp-content/themes/thematic/library/languages/de_DE.po b/wp-content/themes/thematic/library/languages/de_DE.po
index 774a9fa9ed686dc8b3f1861f10a5c7d218284500..f6cb5f55928aae472418a4fbae6ad27f1388b891 100644
--- a/wp-content/themes/thematic/library/languages/de_DE.po
+++ b/wp-content/themes/thematic/library/languages/de_DE.po
@@ -1,390 +1,407 @@
-# kubrick theme pot file.
-# Copyright (C) 2007 WordPress
-# This file is distributed under the same license as the kubrick theme package.
-# Chris <chris@thematictheme.com>, 2012.
-#
+# Translation of Thematic 1.0.3.x in German
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: 2012-06-02 18:18+0100\n"
-"Last-Translator: Chris <chris@thematictheme.com>\n"
-"Language-Team: Deutsch <>\n"
-"Language: \n"
+"PO-Revision-Date: 2013-03-05 17:46:47+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: German\n"
-"X-Poedit-Country: GERMANY\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e\n"
-"X-Poedit-Basepath: .\n"
-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
-"X-Poedit-SearchPath-0: .\n"
-
-#: library/extensions/content-extensions.php:947
-#: library/extensions/content-extensions.php:1461
-#: library/extensions/discussion-extensions.php:36
-#: library/extensions/discussion.php:84
-#: links.php:60
-#: page.php:60
-#: template-page-archives.php:63
-#: template-page-fullwidth.php:61
-msgid "Edit"
-msgstr "Bearbeiten"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
 
-#: attachment.php:62
-#: library/extensions/content-extensions.php:666
-#: library/extensions/content-extensions.php:732
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr "Das Template %s"
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Seiten:"
 
 #: author.php:67
 msgid "Email "
-msgstr "E-Mail "
+msgstr "E-Mail an"
+
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr "Bitte versuchen Sie nicht, diese Seite direkt zu laden."
 
 #: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Dieser Beitrag ist passwortgesch&uuml;tzt. Bitte geben Sie das Passwort ein, um Kommentare lesen zu k&ouml;nnen."
 
 #: comments.php:111
-msgid "<span>One</span> Trackback"
-msgstr "<span>Ein</span> Trackback"
-
-#: comments.php:142
-#: library/extensions/comments-extensions.php:234
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Sie m&uuml;ssen <a href=\"%s\" title=\"Anmelden\">angemeldet</a> sein, um kommentieren zu k&ouml;nnen."
-
-#: comments.php:156
-#: library/extensions/comments-extensions.php:235
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Angemeldet als <a href=\"%1$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\">Abmelden?</a></span>"
-
-#: comments.php:164
-#: library/extensions/comments-extensions.php:233
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Ihre E-Mail wird <em>niemals</em> ver&ouml;ffentlicht oder verteilt."
-
-#: comments.php:164
-#: library/extensions/comments-extensions.php:233
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Erforderliche Felder sind mit <span class=\"required\">*</span> markiert"
-
-#: comments.php:167
-#: library/extensions/comments-extensions.php:224
-msgid "Name"
-msgstr "Name"
-
-#: comments.php:167
-#: comments.php:172
-#: library/extensions/comments-extensions.php:224
-#: library/extensions/comments-extensions.php:225
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
-
-#: comments.php:172
-#: library/extensions/comments-extensions.php:225
-msgid "Email"
-msgstr "E-Mail"
-
-#: comments.php:177
-#: library/extensions/comments-extensions.php:226
-msgid "Website"
-msgstr "Website"
-
-#: comments.php:189
-#: library/extensions/comments-extensions.php:236
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Sie k&oumlnnen folgende <abbr title=\"HyperText Markup Language\">HTML</abbr> Tags und Attribute verwenden:"
-
-#: page.php:58
-#: template-page-fullwidth.php:59
-msgid "Pages: "
-msgstr "Seiten: "
-
-#: search.php:56
-msgid "Nothing Found"
-msgstr "Nichts gefunden"
+msgid "Trackbacks"
+msgstr "Trackbacks"
 
-#: search.php:60
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Entschuldigung, aber wir haben nichts gefunden. Bitte versuchen Sie es mit anderen Schlüsselwörtern."
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr "%1$sEin%2$s Trackback"
 
-#: library/extensions/content-extensions.php:1346
-#: search.php:70
-msgid "Find"
-msgstr "Suchen"
+#: functions.php:194
+msgid "Primary Menu"
+msgstr "Prim&auml;res Men&uuml;"
 
 #: library/extensions/comments-extensions.php:120
-msgid "<span>One</span> Comment"
-msgstr "<span>Ein</span> Kommentar"
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr "%1$sEin%2$s Kommentar"
+
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr "Kommentare"
 
-#: library/extensions/comments-extensions.php:154
+#: library/extensions/comments-extensions.php:155
 msgid "Post a Comment"
-msgstr "Einen Kommentar abgeben"
+msgstr "Einen Kommentar hinterlassen"
 
-#: library/extensions/comments-extensions.php:165
-#, php-format
+#: library/extensions/comments-extensions.php:167
 msgid "Post a Reply to %s"
 msgstr "Schreiben Sie eine Antwort an %s"
 
-#: library/extensions/comments-extensions.php:176
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
 msgid "Comment"
 msgstr "Kommentar"
 
-# @ thematic
-#: library/extensions/comments-extensions.php:187
+#: library/extensions/comments-extensions.php:190
 msgid "Cancel reply"
 msgstr "Antwort abbrechen"
 
-#: library/extensions/comments-extensions.php:198
+#: library/extensions/comments-extensions.php:202
 msgid "Post Comment"
 msgstr "Absenden"
 
-#: library/extensions/content-extensions.php:340
-#: library/extensions/header-extensions.php:84
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
+msgid "Name"
+msgstr "Name"
+
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr "*"
+
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
+msgid "Email"
+msgstr "E-Mail"
+
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
+msgid "Website"
+msgstr "Website"
+
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr "Ihre E-Mail wird %1$sniemals%2$s veröffentlicht oder weitergegeben."
+
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr "Erforderliche Felder sind mit  %1$s*%2$s markiert"
+
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr "Sie müssen %1$sangemeldet%2$s sein, um zu kommentieren."
+
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr "Anmelden"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr "Angemeldet als %s"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr "Aus diesem Konto abmelden"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr "Abmelden?"
+
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr "Sie können diese %1$sHTML%2$s-Tags und -Attribute verwenden"
+
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr "Autorenarchiv:"
+
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Kategorien-Archiv:"
 
-#: library/extensions/content-extensions.php:349
-#: library/extensions/header-extensions.php:80
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Suchergebnisse für:"
 
-#: library/extensions/content-extensions.php:355
-#: library/extensions/header-extensions.php:88
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Tag-Archiv:"
 
-#: library/extensions/content-extensions.php:364
-#: library/extensions/content-extensions.php:373
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
 msgid "Archives:"
-msgstr "Archive:"
-
-#: library/extensions/content-extensions.php:379
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "T&auml;gliche Archive: <span>%s</span>"
-
-#: library/extensions/content-extensions.php:383
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Monatliche Archive: <span>%s</span>"
-
-#: library/extensions/content-extensions.php:387
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "J&auml;hrliche Archive: <span>%s</span>"
-
-#: library/extensions/content-extensions.php:429
-#: library/extensions/content-extensions.php:1728
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> &Auml;ltere Beitr&aumlge"
-
-#: library/extensions/content-extensions.php:431
-#: library/extensions/content-extensions.php:1729
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Neuere Beitr&aumlge <span class=\"meta-nav\">&raquo;</span>"
-
-#: library/extensions/content-extensions.php:946
-#: library/extensions/content-extensions.php:1460
+msgstr "Archiv:"
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr "Tagesarchiv: %s"
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr "Monatsarchiv: %s"
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr "Jahresarchiv: %s"
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr "Ältere Beiträge"
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr "Neuere Beiträge"
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Bearbeiten"
 
-#: library/extensions/content-extensions.php:975
-#: library/extensions/header-extensions.php:92
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Nicht gefunden"
 
-#: library/extensions/content-extensions.php:980
-#: library/extensions/content-extensions.php:1413
-#: library/extensions/content-extensions.php:1417
-msgid "Permalink to "
-msgstr "Permanent-Link zu "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr "Permalink auf %s"
 
-#: library/extensions/content-extensions.php:1041
-msgid "By "
-msgstr "Von "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr "Von"
 
-#: library/extensions/content-extensions.php:1051
-msgid "View all posts by "
-msgstr "Alle Beitr&auml;ge zeigen von "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr "Zeige alle Beiträge von %s"
 
-#: library/extensions/content-extensions.php:1079
-msgid "Published: "
-msgstr "Ver&ouml;ffentlicht am: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr "Veröffentlicht:"
 
-#: library/extensions/content-extensions.php:1252
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
-msgstr "Archive nach Kategorie"
+msgstr "Archiv nach Kategorie"
 
-#: library/extensions/content-extensions.php:1280
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
-msgstr "Archive nach Monat"
+msgstr "Archiv nach Monat"
 
-# @ thematic
-#: library/extensions/content-extensions.php:1413
-msgid "Browse the "
-msgstr "Durchsuche "
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr "Es tut uns leid, aber die Seite konnte nicht gefunden werden. Vielleicht hilft eine Suche."
 
-#: library/extensions/content-extensions.php:1413
-msgid " Archive"
-msgstr " Archive"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Suchen"
 
-#: library/extensions/content-extensions.php:1414
-msgid " archive"
-msgstr " Archive"
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr "Lesen Sie mehr %s"
 
-#: library/extensions/content-extensions.php:1417
-msgid "Bookmark the "
-msgstr "Lesezeichen: "
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr "Das %s-Archiv anschauen."
 
-#: library/extensions/content-extensions.php:1418
-msgid "permalink"
-msgstr "Permalink"
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr "Permalink auf %s-Archiv"
 
-#: library/extensions/content-extensions.php:1572
-msgid "This entry was posted in "
-msgstr "Dieser Eintrag wurde ver&ouml;ffentlicht in "
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr "Ein Lesezeichen auf das %1$sPermalink%2$s. setzen."
 
-#: library/extensions/content-extensions.php:1580
-msgid "Also posted in "
-msgstr "Ebenfalls ver&ouml;ffentlicht in "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr "Dieser Beitrag wurde in %s ver&ouml;ffentlicht"
 
-#: library/extensions/content-extensions.php:1583
-msgid "Posted in "
-msgstr "Ver&ouml;ffentlicht in "
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr "Auch in %s ver&ouml;ffentlicht"
 
-#: library/extensions/content-extensions.php:1609
-msgid " This entry is tagged"
-msgstr " Dieser Eintrag wurde ver&ouml;ffentlicht in "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr "In %s ver&ouml;ffentlicht"
 
-#: library/extensions/content-extensions.php:1612
-msgid " and tagged"
-msgstr " und getagged "
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr "Dieser Eintrag ist getaggt"
 
-#: library/extensions/content-extensions.php:1615
-msgid " Also tagged "
-msgstr " Auch getagged "
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr "und getaggt"
 
-#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr "Ebenso getaggt"
+
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
-msgstr "Getagged"
+msgstr "Getaggt"
 
-#: library/extensions/content-extensions.php:1644
-#: library/extensions/content-extensions.php:1647
-#: library/extensions/content-extensions.php:1650
-msgid "Comment on "
-msgstr "Kommentar"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr "%s kommentieren"
 
-#: library/extensions/content-extensions.php:1651
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] "%s Antwort"
+msgstr[1] "%s Antworten"
+
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Kommentieren"
 
-#: library/extensions/content-extensions.php:1654
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Kommentare geschlossen"
 
-#: library/extensions/content-extensions.php:1678
-#: library/extensions/content-extensions.php:1686
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr "%1$sKommentieren%2$s oder einen Trackback hinterlassen: %3$s"
+
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Kommentieren"
 
-#: library/extensions/content-extensions.php:1679
-msgid " or leave a trackback: "
-msgstr " oder ein Trackback hinterlassen: "
-
-#: library/extensions/content-extensions.php:1680
-#: library/extensions/content-extensions.php:1683
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Trackback-URL für Ihren Beitrag"
 
-#: library/extensions/content-extensions.php:1680
-#: library/extensions/content-extensions.php:1683
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Trackback-URL"
 
-#: library/extensions/content-extensions.php:1682
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " Kommentare sind geschlossen, aber Sie k&ouml;nnen ein Trackback hinterlassen: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr "Die Kommentare sind geschlossen, aber Sie können einen Trackback hinterlassen: %s"
 
-#: library/extensions/content-extensions.php:1685
-msgid " Trackbacks are closed, but you can "
-msgstr " Trackbacks sind geschlossen, aber sie k&ouml;nnen "
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr "Sowohl Kommentare als auch Trackbacks sind geschlossen."
 
-#: library/extensions/content-extensions.php:1686
-msgid "post a comment"
-msgstr "Kommentieren"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr "Am %s um %s Uhr ver&ouml;ffentlicht"
 
-#: library/extensions/content-extensions.php:1688
-msgid " Both comments and trackbacks are currently closed."
-msgstr " Momentan ist weder das Kommentieren noch das Setzen eines Trackbacks m&ouml;glich."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr "Permalink zu diesem Kommentar"
 
-#: library/extensions/discussion-extensions.php:27
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Erstellt am %1$s um %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink zu diesem Kommentar\">Permanent-Link</a>"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr "Permalink"
 
-#: library/extensions/discussion-extensions.php:35
+#: library/extensions/discussion-extensions.php:36
 msgid "Edit comment"
 msgstr "Kommentar bearbeiten"
 
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr "Ihr Kommentar wartet auf Freischaltung."
+
 #: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Antworten"
 
 #: library/extensions/discussion.php:53
 msgid "Log in to reply."
-msgstr "Sie müssen eingeloggt sein, um antworten zu k&ouml;nnen."
+msgstr "Sie m&uuml;ssen eingeloggt sein, um Antworten zu k&ouml;nnen."
 
 #: library/extensions/discussion.php:80
-#, php-format
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "Von %1$s am %2$s um %3$s"
+msgstr "Von %1$s am %2$s um %3$s Uhr ver&ouml;ffentlicht "
+
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr "Ihr Trackback wartet auf Freischaltung."
 
-#: library/extensions/header-extensions.php:302
+#: library/extensions/header-extensions.php:319
 #: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "RSS-Feed der Beitr&auml;ge"
 
-#: library/extensions/header-extensions.php:326
+#: library/extensions/header-extensions.php:343
 #: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "RSS-Feed der Kommentare"
 
-# @ thematic
-#: functions.php:253
-msgid "Primary Menu"
-msgstr "Prim&auml;res Men&uml"
-
-#: library/extensions/header-extensions.php:625
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Navigation zu Inhalt überspringen"
 
-#: library/extensions/header-extensions.php:625
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Zum Inhalt springen"
 
-#: library/extensions/helpers.php:50
-#: library/extensions/helpers.php:69
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
-msgstr "Es existiert kein Auszug, da dieser Beitrag gesch&uuml;tzt ist."
-
-#: library/extensions/shortcodes.php:40
-msgid "Login"
-msgstr "Anmelden"
-
-#: library/extensions/shortcodes.php:42
-msgid "Logout"
-msgstr "Abmelden"
+msgstr "Es existiert keine Zusammenfassung, da dieser Beitrag gesch&uuml;tzt ist."
 
 #: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
-msgstr "Index Position zum Einf&uuml;gen"
+msgstr "Position zum Einfügen des Index"
 
 #: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
@@ -394,96 +411,211 @@ msgstr "Info auf der Autorenseite"
 msgid "Text in Footer"
 msgstr "Text im Footer"
 
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr "Legacy Optionen entfernen"
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr "Theme Optionen"
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr "F&uuml;r mehr Informationen:"
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr "F&uuml;r Support:"
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr "Foren"
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr "Die folgenden Optionen werden vom Thematic Theme Framework und / oder einem Child Theme freigeschaltet."
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr "Neue Optionen k&ouml;nnen mit einem Child Theme hinzugef&uuml;gt werden. Ebenfalls k&ouml;nnen die Default Optionen entfernt werden. Diese Information kann auch über ein Child Theme ge&auml;ndert werden."
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr "&Uuml;bersicht"
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr "Mehr Information zu diesem Theme auf %1$ThematicTheme.com%2$s"
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr "Besuchen Sie das %1$sThematicTheme.com Forum%2$ wenn Sie Fragen zu Thematic haben."
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr "%s Theme-Optionen"
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr "Das Insert-Index-Widget erscheint nach dem angebenen Beitrag. Keine Eingabe oder eine 0 schalten dieses Feature ab."
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr "Eine %1$svCard%2$s mit dem Avatar, der Biografie und der E-Mail des Autors auf seiner Seite anzeigen."
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr "Sie können HTML und Shortcodes in Ihrem Footer-Text verwenden. Beispiele für Shortcodes: %s"
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr "Die %s Theme Options wurden in ein verbessertes Format überführt. Die alten Optionen aus der Datenbank l&ouml;schen."
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr "Der Wert für die Position, an der der Index eingefügt wird, muss ein numerischer Wert gleich oder gr&ouml;&szlig;er 0 sein. Der urspr&uuml;ngliche Wert wurde wiederhergestellt."
+
 #: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "Suchtext eingeben"
 
 #: library/extensions/widgets-extensions.php:40
-#: library/extensions/widgets.php:56
-#: library/extensions/widgets.php:61
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "Suchen"
 
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
-msgstr "Der prim&auml;re Widget Bereich, haupts&auml;chlich als Sidebar verwendet."
+msgstr "Der prim&auml;re Widget-Bereich, haupts&auml;chlich als Sidebar verwendet."
+
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
 
 #: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
-msgstr "Der sekund&auml;re Widget Bereich, haupts&auml;chlich als Sidebar verwendet."
+msgstr "Der sekund&auml;re Widget-Bereich, haupts&auml;chlich als Sidebar verwendet."
+
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
 
 #: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
-msgstr "Der erste Widget Bereich im Footer."
+msgstr "Der erste Widget-Bereich im Footer."
+
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
 
 #: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
-msgstr "Der zweite Widget Bereich im Footer."
+msgstr "Der zweite Widget-Bereich im Footer."
+
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
 
 #: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
-msgstr "Der dritte Widget Bereich im Footer."
+msgstr "Der dritte Widget-Bereich im Footer."
+
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr "Index oben"
 
 #: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
-msgstr "Der Widget Bereich oberhalb des Contents der Index Seite."
+msgstr "Der Widget-Bereich oberhalb des Contents der Index Seite."
+
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr "Index Einbetteil"
 
 #: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
-msgstr "Der eingeschobene Widget Bereich auf der Index Seite."
+msgstr "Der eingeschobene Widget-Bereich auf der Index-Seite."
+
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr "Index unten"
 
 #: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
-msgstr "Der Widget Bereich unterhalb des Contents der Index Seite."
+msgstr "Der Widget-Bereich unterhalb des Contents der Index-Seite."
+
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr "Beitragsanfang"
 
 #: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
-msgstr "Der Widget Bereich oberhalb des Contents einer Single Post."
+msgstr "Der Widget-Bereich oberhalb des Contents eines einzelnen Artikels."
+
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr "Einzelner Beitrag Einbetteil"
 
 #: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
-msgstr "Der eingeschobene Widget Bereich einer Single Post."
+msgstr "Der eingeschobene Widget-Bereich eines einzelnen Artikels."
+
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr "Beitragsende"
 
 #: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
-msgstr "Der Widget Bereich unterhalb des Contents einer Single Post."
+msgstr "Der Widget-Bereich unterhalb des Contents eines einzelnen Artikels."
+
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr "Seitenanfang"
 
 #: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
-msgstr "Der Widget Bereich oberhalb des Contents einer Page."
+msgstr "Der Widget-Bereich oberhalb des Contents einer Seite."
+
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr "Seitenende"
 
 #: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
-msgstr "Der Widget Bereich unterhalb des Contents einer Page."
+msgstr "Der Widget-Bereich unterhalb des Contents einer Seite."
 
-# @ thematic
 #: library/extensions/widgets.php:55
 msgid "A search form for your blog"
-msgstr "Eine Such Form für Ihren Blog"
+msgstr "Ein Suchformular für Ihr Blog"
 
-#: library/extensions/widgets.php:77
-#: library/extensions/widgets.php:132
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
 #: library/extensions/widgets.php:175
 msgid "Title:"
 msgstr "Titel:"
 
-# @ thematic
 #: library/extensions/widgets.php:100
 msgid "Log in/out and admin"
 msgstr "An-/Abmelden und Adminbereich"
 
-#: library/extensions/widgets.php:101
-#: library/extensions/widgets.php:106
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-# @ thematic
 #: library/extensions/widgets.php:145
 msgid "Links to your posts and comments feed"
 msgstr "Links zu den Feeds Ihrer Beitr&auml;ge und Kommentare"
 
-#: library/extensions/widgets.php:146
-#: library/extensions/widgets.php:151
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
 msgstr "RSS-Links:"
 
@@ -495,613 +627,56 @@ msgstr "Alle Beitr&auml;ge"
 msgid "All comments"
 msgstr "Alle Kommentare"
 
-# @ thematic
-#: archives.php:20
-#: template-page-blog.php:22
-#, php-format
-msgid "The template %s"
-msgstr "Das Template %s"
-
-# @ thematic
-#: comments.php:24
-msgid "Please do not load this page directly."
-msgstr "Bitte versuchen Sie nicht, diese Seite direkt zu laden."
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr "Eingeloggt als"
 
-#: comments.php:111
-msgid "Trackbacks"
-msgstr "Trackbacks"
-
-#: library/extensions/comments-extensions.php:131
-msgid "Comments"
-msgstr "Kommentare"
-
-#: library/extensions/content-extensions.php:334
-msgid "Author Archives:"
-msgstr "Autorenarchive:"
-
-#: library/extensions/content-extensions.php:1340
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
-msgstr "Es tut uns leid, aber die Seite konnte nicht gefunden werden. Vielleicht hilft eine Suche."
-
-# @ thematic
-#: library/extensions/content-extensions.php:1364
-#, php-format
-msgid "Read More %s"
-msgstr "Lesen SIe mehr %s"
-
-#: library/extensions/content-extensions.php:1645
-msgid "Responses"
-msgstr "Antworten"
-
-#: library/extensions/content-extensions.php:1648
-msgid "Response"
-msgstr "Antwort"
-
-#: library/extensions/discussion.php:37
-msgid "Your comment is awaiting moderation"
-msgstr "Ihr Kommentar wartet auf Freischaltung."
-
-#: library/extensions/discussion.php:90
-msgid "Your trackback is awaiting moderation"
-msgstr "Ihr Trackback wartet auf Freischaltung."
-
-# @ thematic
-#: library/extensions/theme-options.php:56
-msgid "Remove Legacy Options"
-msgstr "Legacy Optionen entfernen"
-
-# @ thematic
-#: library/extensions/theme-options.php:204
-msgid "For more information:"
-msgstr "F&uuml;r mehr Informationen:"
-
-# @ thematic
-#: library/extensions/theme-options.php:206
-msgid "For support:"
-msgstr "F&uuml;r Support:"
-
-# @ thematic
-#: library/extensions/theme-options.php:208
-msgid "forums"
-msgstr "Foren"
-
-# @ thematic
-#: library/extensions/theme-options.php:212
-msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
-msgstr "Die folgenden Optionen werden vom Thematic Theme Framework und / oder einem Child Theme freigeschaltet."
-
-# @ thematic
-#: library/extensions/theme-options.php:213
-msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
-msgstr "Neue Optionen k&ouml;nnen mit einem Child Theme hinzugef&uuml;gt werden. Ebenfalls k&ouml;nnen die Default Optionen entfernt werden. Diese Information kann auch über ein Child Theme ge&auml;ndert werden."
-
-# @ thematic
-#: library/extensions/theme-options.php:219
-msgid "Overview"
-msgstr "&Uuml;bersicht"
-
-#: library/extensions/theme-options.php:247
-msgid "For more information about this theme, <a href=\"http://thematictheme.com\">visit ThemeTheme.com</a>. Please visit the <a href=\"http://thematictheme.com/forums/\">ThematicTheme.com Forums</a> if you have any questions about Thematic."
-msgstr "Um mehr Information &uuml;ber dieses Theme zu erhalten, <a href=\"http://thematictheme.com\">besuchen Sie ThematicTheme.com</a>. Bitte besuchen Sie die <a href=\"http://thematictheme.com/forums/\">ThematicTheme.com Foren</a> falls Sie Fragen zu Thematic haben."
-
-# @ thematic
-#: library/extensions/theme-options.php:262
-#, php-format
-msgid "%s Theme Options"
-msgstr "%s Theme Optionen"
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
 
-#: library/extensions/theme-options.php:276
-msgid "Save Changes"
-msgstr "&Aumlnderungen speichern"
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Seiten:"
 
-# @ thematic
-#: library/extensions/theme-options.php:311
-msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
-msgstr "Der Widget Bereich Index Insert erscheint nach dem angebenen Beitrag. Keine Eingabe oder eine 0 schalten dieses Feature ab."
-
-# @ thematic
-#: library/extensions/theme-options.php:324
-msgid "Display a"
-msgstr "Zeige eine"
-
-# @ thematic
-#: library/extensions/theme-options.php:324
-msgid "with the author's avatar, bio and email on the author page."
-msgstr "mit dem Avatar, einer Info und der Email auf der Seite des Authors an."
-
-# @ thematic
-#: library/extensions/theme-options.php:337
-msgid "You can use HTML and shortcodes in your footer text. Shortcode examples"
-msgstr "Sie k&ouml;nnen HTML und Shortcodes im Footer Text verwenden. Shortcode Beispiele"
-
-# @ thematic
-#: library/extensions/theme-options.php:350
-#, php-format
-msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
-msgstr "%s Theme Optionen wurden auf ein verbessertes Format &uuml;bertragen. Sie k&ouml;nnen jetzt die alten Optionen aus der Datenbank entfernen."
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Nichts gefunden\t"
 
-# @ thematic
-#: library/extensions/theme-options.php:377
-msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
-msgstr "Die Position für den Index Insert Bereich muss ein numerischer Wert gleich oder gr&ouml;&szlig;er 0 sein. Der urspr&uuml;ngliche Wert wurde wiederhergestellt."
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Entschuldigung, aber wir haben nichts gefunden. Bitte versuchen Sie es mit anderen Schl;uuml;sselw%ouml;rtern."
 
-# @ thematic
 #: template-page-blog.php:22
-#, php-format
 msgid "You can include a %s in a childtheme"
-msgstr "Sie können ein %s in ein Child Theme einf&uuml;gen."
-
-#~ msgid "<span>%d</span> Trackbacks"
-#~ msgstr "<span>%d</span> Trackbacks"
-
-#~ msgid "<span>%d</span> Comments"
-#~ msgstr "<span>%d</span> Kommentare"
-
-#~ msgid "Blog Archives"
-#~ msgstr "Blog-Archiv"
-
-#~ msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-#~ msgstr "Mehr lesen <span class=\"meta-nav\">&raquo;</span>"
-
-#~ msgid "The widgetized Index Insert will follow after this post number."
-#~ msgstr ""
-#~ "The widgetized Index Insert erfolgt nach dem Beitrag Nummer (wie "
-#~ "angegeben). "
-
-#~ msgid ""
-#~ "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank"
-#~ "\">microformatted vCard</a>—with the author's avatar, bio and email—on "
-#~ "the author page."
-#~ msgstr ""
-#~ "Zeige eine <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank"
-#~ "\">vCard</a>—mit dem Avatar, Bio und E-Mail Adresse auf der Seite des "
-#~ "Autors an."
-
-#~ msgid ""
-#~ "You can use the following shortcodes in your footer text: [wp-link] "
-#~ "[theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-#~ msgstr ""
-#~ "Sie können die folgenden Shortcodes verwenden: [wp-link] [theme-link] "
-#~ "[loginout-link] [blog-title] [the-year]"
-
-#~ msgid "Powered by [wp-link]. Built on the [theme-link]."
-#~ msgstr "Angetrieben von [wp-link]. Darstellung basiert auf [theme-link]."
-
-#~ msgid "settings saved."
-#~ msgstr "Einstellungen gespeichert."
-
-#~ msgid "settings reset."
-#~ msgstr "Einstellungen zur&uuml;ckgesetzt"
-
-#~ msgid "widgets reset."
-#~ msgstr "Widgets zur&uuml;ckgesetzt"
-
-#~ msgid "Reset"
-#~ msgstr "Zur&uuml;cksetzen"
-
-#~ msgid "Reset Widgets"
-#~ msgstr "Widgets zur&uuml;cksetzen"
-
-#~ msgid "definitions created."
-#~ msgstr "Definitionen erstellt."
-
-#~ msgid "failed to create directory:"
-#~ msgstr "Erstellen des Verzeichnisses fehlgeschlagen:"
-
-#~ msgid "failed to create the file:"
-#~ msgstr "Erstellen der Datei fehlgeschlagen:"
-
-#~ msgid "Create Definitions"
-#~ msgstr "Erstelle Definitionen"
-
-#~ msgid "Pages"
-#~ msgstr "Seiten"
-
-#~ msgid "Categories"
-#~ msgstr "Kategorien"
-
-#~ msgid "RSS Feeds"
-#~ msgstr "RSS-Feeds"
-
-#~ msgid ""
-#~ "Enter the HTML text that will appear in the bottom of your footer. Feel "
-#~ "free to remove or change any links. <strong>Hint:</strong> <a href="
-#~ "\"http://www.w3schools.com/HTML/html_links.asp\" target=\"_blank\">how to "
-#~ "write a link</a>."
-#~ msgstr ""
-#~ "Gebe einen HTML Text ein, der am Ende des Footers erscheinen soll. Alle "
-#~ "Links können geändert oder entfernt werden. <strong>Hinweis:</strong> <a "
-#~ "href=\"http://www.w3schools.com/HTML/html_links.asp\" target=\"_blank"
-#~ "\">Syntax eines Links</a>."
-
-#~ msgid ""
-#~ "<span id=\"generator-link\">Powered by <a href=\"http://WordPress.org/\" "
-#~ "title=\"WordPress\" rel=\"generator\">WordPress</a></span><span class="
-#~ "\"meta-sep\">. </span><span id=\"designer-link\">Built on the <a href="
-#~ "\"http://themeshaper.com/thematic-for-wordpress\" title=\"Thematic Theme "
-#~ "Framework\" rel=\"designer\">Thematic Theme Framework</a>.</span>"
-#~ msgstr ""
-#~ "<span id=\"generator-link\">Angetrieben von <a href=\"http://WordPress."
-#~ "org/\" title=\"WordPress\" rel=\"generator\">WordPress</a></span><span "
-#~ "class=\"meta-sep\">. </span><span id=\"designer-link\">Die Darstellung "
-#~ "basiert auf dem <a href=\"http://themeshaper.com/thematic-for-wordpress\" "
-#~ "title=\"Thematic Theme Framework\" rel=\"designer\">Thematic Theme "
-#~ "Framework</a>.</span>"
-
-#~ msgid "Blog Index"
-#~ msgstr "Blog-Index"
-
-#~ msgid "Blog Buttons"
-#~ msgstr "Blog Buttons"
+msgstr "Sie k&ouml;nnen ein %s in ein Child Theme einf&uuml;gen."
 
-#~ msgid "Page"
-#~ msgstr "Seite"
+msgid "Thematic"
+msgstr "Thematic"
 
-#~ msgid "Error 404 - Not Found"
-#~ msgstr "Fehler 404 - Nicht gefunden"
+msgid "http://thematictheme.com"
+msgstr "http://thematictheme.com/"
 
-#~ msgid "Archive for the &#8216;%s&#8217; Category"
-#~ msgstr "Archiv f&uuml;r die Kategorie &#8222;%s&#8220;"
-
-#~ msgid "Posts Tagged &#8216;%s&#8217;"
-#~ msgstr "Artikel-Schlagworte: &#8222;%s&#8220;"
-
-#~ msgid "Archive for %s|Daily archive page"
-#~ msgstr "Archiv f&uuml;r %s"
-
-#~ msgid "F jS, Y"
-#~ msgstr "j. F Y"
-
-#~ msgid "Archive for %s|Monthly archive page"
-#~ msgstr "Archiv f&uuml;r %s"
-
-#~ msgid "F, Y"
-#~ msgstr "F Y"
-
-#~ msgid "Archive for %s|Yearly archive page"
-#~ msgstr "Archiv f&uuml;r %s"
-
-#~ msgid "Y"
-#~ msgstr "Y"
-
-#~ msgid "&laquo; Older Entries"
-#~ msgstr "&laquo; &Auml;ltere Eintr&auml;ge"
-
-#~ msgid "Newer Entries &raquo;"
-#~ msgstr "Neuere Eintr&auml;ge &raquo;"
-
-#~ msgid "l, F jS, Y"
-#~ msgstr "l, j. F Y"
-
-#~ msgid "Tags:"
-#~ msgstr "Schlagworte:"
-
-#~ msgid "No Comments &#187;"
-#~ msgstr "Keine Kommentare &#187;"
-
-#~ msgid "1 Comment &#187;"
-#~ msgstr "1 Kommentar &#187;"
-
-#~ msgid "% Comments &#187;"
-#~ msgstr "% Kommentare &#187;"
-
-#~ msgid "Archives by Subject:"
-#~ msgstr "Archive nach Thema:"
-
-#~ msgid "Permanent Link: %s"
-#~ msgstr "Permanent-Link: %s"
-
-#~ msgid "Read the rest of this entry &raquo;"
-#~ msgstr "Diesen Beitrag weiterlesen &raquo;"
-
-#~ msgid "This entry was posted %1$s on %2$s at %3$s and is filed under %4$s."
-#~ msgstr ""
-#~ "Dieser Beitrag wurde vor %1$s am %2$s um %3$s Uhr ver&ouml;ffentlicht und "
-#~ "unter %4$s gespeichert."
-
-#~ msgid ""
-#~ "You can follow any responses to this entry through the <a href='%s'>RSS "
-#~ "2.0</a> feed."
-#~ msgstr ""
-#~ "Sie k&ouml;nnen Kommentare zu diesem Eintrag &uuml;ber den <a "
-#~ "href='%s'>RSS-2.0</a>-Feed verfolgen."
-
-#~ msgid ""
-#~ "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel="
-#~ "\"trackback\">trackback</a> from your own site."
-#~ msgstr ""
-#~ "Sie k&ouml;nnen einen <a href=\"#respond\">Kommentar hinterlassen</a> "
-#~ "oder einen <a href=\"%s\" rel=\"trackback\">Trackback</a> von Ihrer "
-#~ "Website hierher setzen."
-
-#~ msgid ""
-#~ "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback"
-#~ "\">trackback</a> from your own site."
-#~ msgstr ""
-#~ "Kommentare sind momentan deaktiviert, aber Sie k&ouml;nnen einen <a href="
-#~ "\"%s\" rel=\"trackback\">Trackback</a> von Ihrer Website hierher setzen."
-
-#~ msgid ""
-#~ "You can skip to the end and leave a response. Pinging is currently not "
-#~ "allowed."
-#~ msgstr ""
-#~ "Sie k&ouml;nnen einen <a href=\"#respond\">Kommentar hinterlassen</a>, "
-#~ "Pingbacks/Trackbacks sind momentan deaktiviert."
-
-#~ msgid "Edit this entry."
-#~ msgstr "Diesen Eintrag bearbeiten"
-
-#~ msgid "Sorry, no attachments matched your criteria."
-#~ msgstr ""
-#~ "Leider wurden keine Anh&auml;nge gefunden, die Ihren Kriterien "
-#~ "entsprechen."
-
-#~ msgid "No Responses"
-#~ msgstr "Keine Kommentare"
-
-#~ msgid "One Response"
-#~ msgstr "1 Kommentar"
-
-#~ msgid "to &#8220;%s&#8221;"
-#~ msgstr "zu &#8222;%s&#8220;"
-
-#~ msgid "<cite>%s</cite> Says:"
-#~ msgstr "<cite>%s</cite> sagt:"
-
-#~ msgid "edit"
-#~ msgstr "bearbeiten"
-
-#~ msgid "Comments are closed."
-#~ msgstr "Kommentieren ist momentan nicht m&ouml;glich."
-
-#~ msgid "Leave a Reply"
-#~ msgstr "Kommentieren"
-
-#~ msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
-#~ msgstr "Angemeldet als <a href=\"%1$s\">%2$s</a>."
-
-#~ msgid "Log out of this account"
-#~ msgstr "Jetzt abmelden"
-
-#~ msgid "Log out &raquo;"
-#~ msgstr "Abmelden &raquo;"
-
-#~ msgid "(required)"
-#~ msgstr "(ben&ouml;tigt)"
-
-#~ msgid "Mail (will not be published)"
-#~ msgstr "E-Mail (wird nicht ver&ouml;ffentlicht)"
-
-#~ msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
-#~ msgstr ""
-#~ "<strong>XHTML:</strong> Sie k&ouml;nnen folgende Elemente nutzen: <code>"
-#~ "%s</code>"
-
-#~ msgid "Submit Comment"
-#~ msgstr "Kommentar senden"
-
-#~ msgid "%1$s - Comments on %2$s"
-#~ msgstr "%1$s - Kommentare zu %2$s"
-
-#~ msgid ""
-#~ "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on "
-#~ "this post."
-#~ msgstr ""
-#~ "<abbr title=\"Really Simple Syndication\">RSS</abbr>-Feed f&uuml;r "
-#~ "Kommentare zu diesem Artikel."
-
-#~ msgid ""
-#~ "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack "
-#~ "this entry is: <em>%s</em>"
-#~ msgstr ""
-#~ "Die Trackback-<abbr title=\"Universal Resource Locator\">URL</abbr> zu "
-#~ "diesem Artikel ist: <em>%s</em>"
-
-#~ msgid "Pingback"
-#~ msgstr "Pingback"
-
-#~ msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
-#~ msgstr "von %1$s &#8212; %2$s um <a href=\"#comment-%3$s\">%4$s Uhr</a>"
-
-#~ msgid "No comments yet."
-#~ msgstr "Noch keine Kommentare."
-
-#~ msgid ""
-#~ "Line and paragraph breaks automatic, e-mail address never displayed, "
-#~ "<acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: "
-#~ "<code>%s</code>"
-#~ msgstr ""
-#~ "Zeilen- und Absatzumbr&uuml;che werden automatisch eingef&uuml;gt, Ihre E-"
-#~ "Mail wird nicht angezeigt.Erlaubtes <acronym title=\"Hypertext Markup "
-#~ "Language\">HTML</acronym>:"
-
-#~ msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
-#~ msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
-
-#~ msgid "Say It!"
-#~ msgstr "Senden"
-
-#~ msgid "Sorry, the comment form is closed at this time."
-#~ msgstr "Kommentieren ist momentan leider nicht m&ouml;glich."
-
-#~ msgid "Close this window."
-#~ msgstr "Fenster schlie&szlig;en."
-
-#~ msgid ""
-#~ "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art "
-#~ "semantic personal publishing platform\"><strong>WordPress</strong></a>"
-#~ msgstr ""
-#~ "<a href=\"%s\" title=\"WordPress, die f&uuml;hrende Weblog-Anwendung"
-#~ "\"><strong>WordPress</strong></a>"
-
-#~ msgid "%1$s is proudly powered by %2$s"
-#~ msgstr "%1$s l&auml;uft mit %2$s"
-
-#~ msgid "%1$s and %2$s."
-#~ msgstr "%1$s und %2$s."
-
-#~ msgid "Entries (RSS)"
-#~ msgstr "Beitr&auml;ge (RSS)"
-
-#~ msgid "%d queries. %s seconds."
-#~ msgstr "%d Abfragen. %s Sekunden."
-
-#~ msgid "Customize Header"
-#~ msgstr "Kopfbereich anpassen"
-
-#~ msgid "Header Image and Color"
-#~ msgstr "Hintergrundbild und -farbe"
-
-#~ msgid "Close Color Picker"
-#~ msgstr "Farbw&auml;hler schlie&szlig;en"
-
-#~ msgid "Save"
-#~ msgstr "Speichern"
-
-#~ msgid "Font Color:"
-#~ msgstr "Schriftfarbe:"
-
-#~ msgid "Any CSS color (%s or %s or %s)"
-#~ msgstr "Eine beliebige CSS-Farbe (%s oder %s oder %s)"
-
-#~ msgid "Upper Color:"
-#~ msgstr "Farbe f&uuml;r oben:"
-
-#~ msgid "HEX only (%s or %s)"
-#~ msgstr "Nur HEX (%s oder %s)"
-
-#~ msgid "Lower Color:"
-#~ msgstr "Farbe f&uuml;r unten:"
-
-#~ msgid "Toggle Text"
-#~ msgstr "Text umschalten"
-
-#~ msgid "Use Defaults"
-#~ msgstr "Standard verwenden"
-
-#~ msgid "Font Color"
-#~ msgstr "Schriftfarbe"
-
-#~ msgid "Upper Color"
-#~ msgstr "Farbe f&uuml;r oben"
-
-#~ msgid "Lower Color"
-#~ msgstr "Farbe f&uuml;r unten"
-
-#~ msgid "Advanced"
-#~ msgstr "Erweitert"
-
-#~ msgid "Update Header &raquo;"
-#~ msgstr "Kopfbereich aktualisieren &raquo;"
-
-#~ msgid "Font Color (CSS):"
-#~ msgstr "Schriftfarbe (CSS):"
-
-#~ msgid "Upper Color (HEX):"
-#~ msgstr "Farbe f&uuml;r oben (HEX):"
-
-#~ msgid "Lower Color (HEX):"
-#~ msgstr "Farbe f&uuml;r unten (HEX):"
-
-#~ msgid "Select Default Colors"
-#~ msgstr "Standardfarben ausw&auml;hlen"
-
-#~ msgid "Toggle Text Display"
-#~ msgstr "Textanzeige aktivieren/deaktivieren"
-
-#~ msgid "&raquo; Blog Archive"
-#~ msgstr "&raquo; Blogarchiv"
-
-#~ msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
-#~ msgstr ""
-#~ "Dieser Beitrag wurde am %1$s um %2$s Uhr veröffentlicht und unter %3$s "
-#~ "gespeichert."
-
-#~ msgid "Sorry, no posts matched your criteria."
-#~ msgstr ""
-#~ "Leider wurden keine Artikel gefunden, die Ihren Kriterien entsprechen."
-
-#~ msgid "Sorry, but you are looking for something that isn&#8217;t here."
-#~ msgstr "Es konnten leider keine passenden Inhalte gefunden werden."
-
-#~ msgid "Read the rest of this page &raquo;"
-#~ msgstr "Diesen Seite weiterlesen &raquo;"
-
-#~ msgid "Search for:"
-#~ msgstr "Suchen nach:"
-
-#~ msgid "No posts found. Try a different search?"
-#~ msgstr ""
-#~ "Ihre Suche ergab keine Treffer. M&ouml;chten Sie eine neue Suche starten?"
-
-#~ msgid "Author"
-#~ msgstr "Autor"
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
 
-#~ msgid "You are currently browsing the archives for the %s category."
-#~ msgstr "Sie sind momentan im Archiv der Kategorie %s."
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
 
-#~ msgid ""
-#~ "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives "
-#~ "for the day %3$s."
-#~ msgstr ""
-#~ "Sie sind momentan im Blogarchiv f&uuml;r den %3$s von <a href=\"%1$s/\">"
-#~ "%2$s</a>."
+msgid "http://themeshaper.com/"
+msgstr "http://themeshaper.com/"
 
-#~ msgid ""
-#~ "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives "
-#~ "for %3$s."
-#~ msgstr ""
-#~ "Sie sind momentan im Blogarchiv f&uuml;r %3$s von <a href=\"%1$s/\">%2$s</"
-#~ "a>."
+msgid "Deprecated Archives Template"
+msgstr "veraltetes Archiv Template"
 
-#~ msgid ""
-#~ "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives "
-#~ "for the year %3$s."
-#~ msgstr ""
-#~ "Sie sind momentan im Blogarchiv f&uuml;r das Jahr %3$s von <a href=\"%1$s/"
-#~ "\">%2$s</a>."
+msgid "Links Page"
+msgstr "Linkseite"
 
-#~ msgid ""
-#~ "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for "
-#~ "<strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything "
-#~ "in these search results, you can try one of these links."
-#~ msgstr ""
-#~ "Sie haben im Blogarchiv von <a href=\"%1$s/\">%2$s</a> nach "
-#~ "<strong>&#8222;%3$s&#8220;</strong> gesucht. Falls Sie in den "
-#~ "Suchergebnissen nicht f&uuml;ndig werden, helfen Ihnen m&ouml;"
-#~ "glicherweise die folgenden Links."
+msgid "Archives Page"
+msgstr "Archivseite"
 
-#~ msgid ""
-#~ "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
-#~ msgstr "Sie sind momentan im Blogarchiv von <a href=\"%1$s/\">%2$s</a>."
+msgid "Deprecated Blog Template"
+msgstr "veraltetes Blog Template"
 
-#~ msgid "This page validates as XHTML 1.0 Transitional"
-#~ msgstr "Diese Seite ist valides XHTML 1.0 Transitional"
-
-#~ msgid "XHTML Friends Network"
-#~ msgstr "XHTML Friends Network"
-
-#~ msgid "XFN"
-#~ msgstr "XFN"
-
-#~ msgid ""
-#~ "Powered by WordPress, state-of-the-art semantic personal publishing "
-#~ "platform."
-#~ msgstr "L&auml;uft mit WordPress, der f&uuml;hrenden Weblog-Anwendung."
-
-#~ msgid "Edit this entry"
-#~ msgstr "Diesen Eintrag bearbeiten"
-
-#~ msgid ""
-#~ "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art "
-#~ "semantic personal publishing platform\"><strong>Wordpress</strong></a>"
-#~ msgstr ""
-#~ "<a href=\"%s\" title=\"WordPress, die f&uuml;hrende Weblog-Anwendung"
-#~ "\"><strong>WordPress</strong></a>"
-
-#~ msgid ""
-#~ "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out "
-#~ "of this account\">Logout &raquo;</a>"
-#~ msgstr ""
-#~ "Angemeldet als <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\">Abmelden "
-#~ "&raquo;</a>"
+msgid "Full Width"
+msgstr "Volle Breite"
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/el.mo b/wp-content/themes/thematic/library/languages/el.mo
index a0f1a6fadd4d9d11bdd21072567b6d3b5c12a75d..c1d91e0352482ef90153e60b458d91a205de737a 100644
Binary files a/wp-content/themes/thematic/library/languages/el.mo and b/wp-content/themes/thematic/library/languages/el.mo differ
diff --git a/wp-content/themes/thematic/library/languages/el.po b/wp-content/themes/thematic/library/languages/el.po
index bac7cf05eff9cd2b02d1477d155fa12609cc5c98..38490f5aa82e356be92af9a72fb0ee71b620cd6e 100644
--- a/wp-content/themes/thematic/library/languages/el.po
+++ b/wp-content/themes/thematic/library/languages/el.po
@@ -1,488 +1,682 @@
+# Translation of Thematic 1.0.3.x in Greek
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-03-15 11:44+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Demetris Kikizas <op111.net@gmail.com>\n"
-"Language-Team: op111.net <op111.net@gmail.com>\n"
+"PO-Revision-Date: 2013-03-05 17:46:53+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Poedit-Language: Greek\n"
-"X-Poedit-Country: Greece\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/404.php:10
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Συγγνώμη!  Αυτό που ζητούσατε δεν βρέθηκε.  Θέλετε να δοκιμάσετε την αναζήτηση;"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/404.php:15
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:58
-msgid "Find"
-msgstr "Αναζήτηση"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:16
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Αρχείο ημέρας:  <span>%s</span>"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:18
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Αρχείο μηνός:  <span>%s</span>"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:20
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Αρχείο έτους:  <span>%s</span>"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:22
-msgid "Blog Archives"
-msgstr "Αρχείο ιστολογίου"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:31
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:53
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:21
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:57
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:20
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:42
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:17
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:49
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:21
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:43
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">«</span> Προηγούμενα άρθρα"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:32
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:54
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:22
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:58
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:21
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:43
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:18
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:50
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:22
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:44
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Επόμενα άρθρα <span class=\"meta-nav\">»</span>"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:41
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/attachment.php:20
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:45
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:30
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:30
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:31
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Συνέχεια <span class=\"meta-nav\">»</span>"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archives.php:20
-msgid "Archives by Category"
-msgstr "Αρχείο κατά κατηγορία"
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archives.php:26
-msgid "Archives by Month"
-msgstr "Αρχείο κατά μήνα"
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archives.php:32
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/links.php:20
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/page.php:16
-msgid "Edit"
-msgstr "Επεξεργασία"
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/attachment.php:22
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:32
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Σελίδες: "
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:15
-msgid "Author Archives: "
-msgstr "Αρχείο συντάκτη: "
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:34
+#: author.php:67
 msgid "Email "
 msgstr "Ηλ. διεύθυνση"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:13
-msgid "Category Archives:"
-msgstr "Αρχείο κατηγορίας: "
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:10
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Το άρθρο προστατεύεται με συνθηματικό. Για να δείτε τα σχόλια, πληκτρολογήστε το συνθηματικό σας."
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:31
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> σχόλια"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:31
-msgid "<span>One</span> Comment"
-msgstr "<span>Ένα</span> σχόλιο"
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> τράκμπακ"
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>Ένα</span> τράκμπακ"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:67
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:155
 msgid "Post a Comment"
 msgstr "Αφήστε σχόλιο"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:67
-#, php-format
+#: library/extensions/comments-extensions.php:167
 msgid "Post a Reply to %s"
 msgstr "Απαντήστε στο %s"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Για να σχολιάσετε πρέπει να <a href=\"%s\" title=\"Log in\">συνδεθείτε</a>."
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Έχετε συνδεθεί ως <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Αποσύνδεση;</a></span>"
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Η διεύθυνσή σας δεν δημοσιεύεται <em>ούτε</em> κοινοποιείται!"
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Τα πεδία με αστερίσκο (<span class=\"required\">*</span>) είναι υποχρεωτικά."
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Υποβολή"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:93
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Όνομα"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:93
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:98
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "Ηλ. διεύθυνση"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:103
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Ιστοσελίδα"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:110
-msgid "Comment"
-msgstr "Σχόλιο"
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Επιτρέπεται η χρήση των εξής στοιχείων και ιδιοτήτων <abbr title=\"HyperText Markup Language\">HTML</abbr>:"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:120
-msgid "Post Comment"
-msgstr "Υποβολή"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/page.php:14
-msgid "Pages: "
-msgstr "Σελίδες: "
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:15
-msgid "Search Results for:"
-msgstr "Αποτελέσματα για: "
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:51
-msgid "Nothing Found"
-msgstr "Δεν βρέθηκαν άρθρα"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:53
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Η αναζήτησή σας δεν έφερε αποτελέσματα.  Αν θέλετε, ξαναδοκιμάστε με διαφορετικούς όρους."
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:6
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:10
-msgid "Search"
-msgstr "Αναζήτηση"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:16
-msgid "Pages"
-msgstr "Σελίδες"
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:23
-msgid "Categories"
-msgstr "Κατηγορίες"
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
+msgid "Category Archives:"
+msgstr "Αρχείο κατηγορίας: "
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:31
-msgid "Archives"
-msgstr "Αρχείο"
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
+msgid "Search Results for:"
+msgstr "Αποτελέσματα για: "
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:50
-msgid "RSS Feeds"
-msgstr "Κανάλια RSS"
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
+msgid "Tag Archives:"
+msgstr "Αρχείο ετικέτας: "
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:52
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:390
-msgid "Posts RSS feed"
-msgstr "Κανάλι RSS άρθρων"
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:52
-msgid "All posts"
-msgstr "Όλα τα άρθρα"
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:53
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:408
-msgid "Comments RSS feed"
-msgstr "Κανάλι RSS σχολίων"
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:53
-msgid "All comments"
-msgstr "Όλα τα σχόλια"
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:58
-msgid "Meta"
-msgstr "Μεταπληροφορίες"
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/tag.php:13
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:207
-msgid "Tag Archives:"
-msgstr "Αρχείο ετικέτας: "
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Δημοσιεύτηκε %1$s στις %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Μόνιμος σύνδεσμος προς το σχόλιο\">Σύνδεσμος</a>"
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
+msgid "Edit post"
+msgstr "Επεξεργασία άρθρου"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Το σχόλιό σας είναι υπό έγκριση.</span>\n"
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Επεξεργασία"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:22
-msgid "Reply"
-msgstr "Απάντηση"
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
+msgid "Not Found"
+msgstr "Δεν βρέθηκε!"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:23
-msgid "Log in to reply."
-msgstr "Συνδεθείτε για να απαντήσετε"
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
-msgid "By %1$s on %2$s at %3$s"
-msgstr "Από %1$s στις %2$s, %3$s"
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Το τράκμπακ είναι υπό έγκριση.</span>\\n"
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/helpers.php:44
-msgid "There is no excerpt because this is a protected post."
-msgstr "Δεν βλέπετε σύνοψη διότι το άρθρο προστατεύεται με συνθηματικό."
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:61
-msgid "Skip navigation to the content"
-msgstr "Μετάβαση κατευθείαν στο περιεχόμενο"
+#: library/extensions/content-extensions.php:1203
+msgid "Archives by Category"
+msgstr "Αρχείο κατά κατηγορία"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:61
-msgid "Skip to content"
-msgstr "Μετάβαση στο περιεχόμενο"
+#: library/extensions/content-extensions.php:1234
+msgid "Archives by Month"
+msgstr "Αρχείο κατά μήνα"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:211
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:497
-msgid "Not Found"
-msgstr "Δεν βρέθηκε!"
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:489
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:544
-msgid "Edit post"
-msgstr "Επεξεργασία άρθρου"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Αναζήτηση"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:502
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:597
-msgid "Permalink to "
-msgstr "Μόνιμος σύνδεσμος του "
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:511
-msgid "By "
-msgstr "Από "
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:513
-msgid "View all posts by "
-msgstr "Προβολή όλων των άρθρων του/της"
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:516
-msgid "Published: "
-msgstr "Δημοσίευση: "
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:551
-msgid "This entry was posted in "
-msgstr "Καταχωρήθηκε στην κατηγορία/ες:  "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:554
-msgid "Also posted in "
-msgstr "Επίσης στις κατηγορίες: "
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:557
-msgid "Posted in "
-msgstr "Κατηγορίες: "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:564
-msgid " and tagged"
-msgstr "– Ετικέτες: "
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:567
-msgid " Also tagged "
-msgstr " Άλλες ετικέτες: "
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:569
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Ετικέτες:"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:578
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:581
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:584
-msgid "Comment on "
-msgstr "Κάντε σχόλιο στο: "
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:579
-msgid " Comments"
-msgstr " Σχόλια"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:582
-msgid " Comment"
-msgstr " Σχόλιο"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:585
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Γράψτε σχόλιο"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:588
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Τα σχόλια έχουν κλείσει"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:597
-msgid ". Bookmark the "
-msgstr " – Κρατήστε τον "
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:598
-msgid "permalink"
-msgstr "σύνδεσμο"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:600
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:608
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "– Κάντε σχόλιο"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:601
-msgid " or leave a trackback: "
-msgstr " ή αφήστε τράκμπακ: "
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:602
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:605
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "URL για τράκμπακ στο άρθρο"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:602
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:605
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "URL για τράκμπακ"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:604
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " Τα σχόλια έχουν κλείσει.  Αν θέλετε, αφήστε τράκμπακ: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
+
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:607
-msgid " Trackbacks are closed, but you can "
-msgstr " Τα τράκμπακ έχουν κλείσει.  Αν θέλετε, "
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
+
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
+
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
+
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:608
-msgid "post a comment"
-msgstr "αφήστε ένα σχόλιο"
+#: library/extensions/discussion.php:52
+msgid "Reply"
+msgstr "Απάντηση"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:610
-msgid " Both comments and trackbacks are currently closed."
-msgstr " Τα σχόλια και τράκμπακ είναι κλειστά επί του παρόντος."
+#: library/extensions/discussion.php:53
+msgid "Log in to reply."
+msgstr "Συνδεθείτε για να απαντήσετε"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Σύνδεση"
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
+msgid "By %1$s on %2$s at %3$s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Αποσύνδεση"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:13
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
+msgid "Posts RSS feed"
+msgstr "Κανάλι RSS άρθρων"
+
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
+msgid "Comments RSS feed"
+msgstr "Κανάλι RSS σχολίων"
+
+#: library/extensions/header-extensions.php:667
+msgid "Skip navigation to the content"
+msgstr "Μετάβαση κατευθείαν στο περιεχόμενο"
+
+#: library/extensions/header-extensions.php:667
+msgid "Skip to content"
+msgstr "Μετάβαση στο περιεχόμενο"
+
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
+msgid "There is no excerpt because this is a protected post."
+msgstr "Δεν βλέπετε σύνοψη διότι το άρθρο προστατεύεται με συνθηματικό."
+
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "Θέση ευρετηρίου"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "Μετά από πόσα άρθρα να εμφανίζεται η ένθετη μονάδα της αρχικής σελίδας;"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "Σελίδες συντακτών"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "Προβολή <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">vCard σε μικροφορμάτ</a> —με εικόνα, βιογραφικό και ηλ. διεύθυνση— στις σελίδες συντακτών"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "Κείμενο υποσέλιδου"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [the-year]"
-msgstr "Στο υποσέλιδο γίνεται να χρησιμοποιήσετε τις εξής κωδικοσυντομεύσεις:<br />[wp-link] [theme-link] [loginout-link] [blog-title] [the-year]"
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Με τη δύναμη του [wp-link] και του [theme-link]"
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings saved."
-msgstr "– Οι ρυθμίσεις αποθηκεύτηκαν."
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "settings reset."
-msgstr "– Αποκαταστάθηκαν οι αρχικές τιμές."
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:78
-msgid "widgets reset."
-msgstr "– Αποκαταστάθηκαν οι αρχικές ρυθμίσεις μονάδων."
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:191
-msgid "Save changes"
-msgstr "Αποθήκευση αλλαγών"
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:197
-msgid "Reset"
-msgstr "Επαναφορά"
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:203
-msgid "Reset Widgets"
-msgstr "Επαναφορά μονάδων"
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:208
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Μάθετε περισσότερα για το Thematic:  <a href=\"http://themeshaper.com\">ThemeShaper.com</a>.  Για οποιαδήποτε απορία γύρω από το Thematic, είστε ευσπρόσεκτοι στο <a href=\"http://themeshaper.com/forums/\">φόρουμ του ThemeShaper.com</a>."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/widgets.php:55
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/widgets.php:245
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/widgets.php:246
-msgid "RSS Links"
-msgstr "Σύνδεσμοι RSS"
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:34
+msgid "To search, type and hit enter"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
+msgid "Search"
+msgstr "Αναζήτηση"
+
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
+msgid "The primary widget area, most often used as a sidebar."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
+msgid "The secondary widget area, most often used as a sidebar."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:102
+msgid "The 1st widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
+msgid "The 2nd widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
+msgid "The 3rd widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
+msgid "The top widget area displayed on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:162
+msgid "The widget area inserted after x posts on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:177
+msgid "The bottom widget area displayed on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
+msgid "The top widget area displayed on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
+msgid "The widget area inserted between the post and the comments on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
+msgid "The bottom widget area displayed on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
+msgid "The top widget area displayed on a page."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/widgets.php:79
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
+msgid "The bottom widget area displayed on a page."
+msgstr ""
+
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
 msgid "Title:"
 msgstr "Τίτλος:"
 
-#, fuzzy
-#~ msgid "Site Meta"
-#~ msgstr "Δείτε την ιστοσελίδα"
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
+msgid "Meta"
+msgstr "Μεταπληροφορίες"
+
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
+msgid "RSS Links"
+msgstr "Σύνδεσμοι RSS"
+
+#: library/extensions/widgets.php:157
+msgid "All posts"
+msgstr "Όλα τα άρθρα"
 
-#, fuzzy
-#~ msgid "Blog Index"
-#~ msgstr "Όνομα ιστολογίου"
+#: library/extensions/widgets.php:158
+msgid "All comments"
+msgstr "Όλα τα σχόλια"
+
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Σελίδες: "
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Δεν βρέθηκαν άρθρα"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Η αναζήτησή σας δεν έφερε αποτελέσματα.  Αν θέλετε, ξαναδοκιμάστε με διαφορετικούς όρους."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/es_ES.mo b/wp-content/themes/thematic/library/languages/es_ES.mo
index 58989666f8de9e63be0217b724dc4e801ac33c73..6a69196d6fed4ecd504f453b68faa8918af05a1c 100644
Binary files a/wp-content/themes/thematic/library/languages/es_ES.mo and b/wp-content/themes/thematic/library/languages/es_ES.mo differ
diff --git a/wp-content/themes/thematic/library/languages/es_ES.po b/wp-content/themes/thematic/library/languages/es_ES.po
index 18749b17ca68d39ca32870ba9261872ef91b4c10..550b4f1141c5c0f1500c3bf21317c4d5aa99410d 100644
--- a/wp-content/themes/thematic/library/languages/es_ES.po
+++ b/wp-content/themes/thematic/library/languages/es_ES.po
@@ -1,14 +1,24 @@
-# Translation of Thematic 1.0.3 in Spanish (Spain)
-# This file is distributed under the same license as the Thematic 1.0.3 package.
+# Translation of Thematic 1.0.3.x in Spanish (Spain)
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2012-10-22 09:59:06+0000\n"
+"PO-Revision-Date: 2013-03-05 17:46:41+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: Thematic 1.0.3\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr "(Sin Título)"
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr "Trackbacks están cerrados, pero puede %1$spublicar un comentario%2$s."
 
 #: archives.php:20 template-page-blog.php:22
 msgid "The template %s"
@@ -75,7 +85,7 @@ msgid "Post Comment"
 msgstr "Publicar Comentario"
 
 #: library/extensions/comments-extensions.php:228
-#: library/legacy/deprecated.php:357
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Nombre"
 
@@ -86,17 +96,17 @@ msgid "*"
 msgstr "*"
 
 #: library/extensions/comments-extensions.php:229
-#: library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "Email"
 
 #: library/extensions/comments-extensions.php:230
-#: library/legacy/deprecated.php:367
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Sitio Web"
 
 #: library/extensions/comments-extensions.php:238
-#: library/legacy/deprecated.php:354
+#: library/legacy/deprecated.php:362
 msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
 msgid "Your email is %1$snever%2$s published nor shared."
 msgstr "Tu email %1$snunca%2$s se publicará ni se compartirá."
@@ -107,32 +117,32 @@ msgid "Required fields are marked %1$s*%2$s"
 msgstr "Los campos obligatorios están marcados con un %1$s*%2$s"
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "You must be %1$slogged in%2$s to post a comment."
 msgstr "Debes %1$siniciar una sesión%2$s para escribir un comentario."
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "Log in"
 msgstr "Iniciar sesión"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as %s"
 msgstr "Sesión iniciada como %s"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out of this account"
 msgstr "Cerrar la sesión"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out?"
 msgstr "¿Cerrar la sesión?"
 
 #: library/extensions/comments-extensions.php:244
-#: library/legacy/deprecated.php:379
+#: library/legacy/deprecated.php:387
 msgctxt "%$1s and %$2s are <abbr> tags"
 msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr "Puedes usar estas etiquetas y atributos %1$sHTML%2$s"
@@ -174,162 +184,158 @@ msgid "Yearly Archives: %s"
 msgstr "Año: %s"
 
 #: library/extensions/content-extensions.php:424
-#: library/extensions/content-extensions.php:1706
+#: library/extensions/content-extensions.php:1710
 msgid "Older posts"
 msgstr "Entradas más antiguas"
 
 #: library/extensions/content-extensions.php:426
-#: library/extensions/content-extensions.php:1708
+#: library/extensions/content-extensions.php:1712
 msgid "Newer posts"
 msgstr "Entradas más recientes"
 
 #: library/extensions/content-extensions.php:888
-#: library/extensions/content-extensions.php:1418
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Editar entrada"
 
 #: library/extensions/content-extensions.php:890
-#: library/extensions/content-extensions.php:1420
+#: library/extensions/content-extensions.php:1424
 #: library/extensions/discussion-extensions.php:37
-#: library/extensions/discussion.php:84 links.php:54 page.php:52
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
 #: template-page-archives.php:55 template-page-fullwidth.php:53
 msgid "Edit"
 msgstr "Editar"
 
-#: library/extensions/content-extensions.php:918
+#: library/extensions/content-extensions.php:921
 #: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "No Encontrado"
 
-#: library/extensions/content-extensions.php:923
-#: library/extensions/content-extensions.php:1141
+#: library/extensions/content-extensions.php:926
 #: library/extensions/content-extensions.php:1145
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
 msgid "Permalink to %s"
 msgstr "Enlace permanente a %s"
 
-#: library/extensions/content-extensions.php:983
+#: library/extensions/content-extensions.php:987
 msgid "By"
 msgstr "Por"
 
-#: library/extensions/content-extensions.php:994
+#: library/extensions/content-extensions.php:998
 msgid "View all posts by %s"
 msgstr "Ver todas las entradas escritas por %s"
 
-#: library/extensions/content-extensions.php:1023
+#: library/extensions/content-extensions.php:1027
 msgid "Published:"
 msgstr "Publicado:"
 
-#: library/extensions/content-extensions.php:1199
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Archivos por Categoría"
 
-#: library/extensions/content-extensions.php:1230
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Archivos por Mes"
 
-#: library/extensions/content-extensions.php:1291
+#: library/extensions/content-extensions.php:1295
 msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
 msgstr "Disculpa las molestias, pero no hemos podido encontrar lo que buscabas. El buscador puede serte de ayuda."
 
-#: library/extensions/content-extensions.php:1297 search.php:70
+#: library/extensions/content-extensions.php:1301 search.php:70
 msgid "Find"
 msgstr "Buscar"
 
-#: library/extensions/content-extensions.php:1316
+#: library/extensions/content-extensions.php:1320
 msgid "Read More %s"
 msgstr "Leer más %s"
 
-#: library/extensions/content-extensions.php:1368
+#: library/extensions/content-extensions.php:1372
 msgid "Browse the %s archive."
 msgstr "Explorar el archivo de %s."
 
-#: library/extensions/content-extensions.php:1370
+#: library/extensions/content-extensions.php:1374
 msgid "Permalink to %s Archive"
 msgstr "Enlace permanente al archivo de %s"
 
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1380
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
 msgid "Bookmark the %1$spermalink%2$s."
 msgstr "Guardar el %1$senlace permanente%2$s."
 
-#: library/extensions/content-extensions.php:1534
+#: library/extensions/content-extensions.php:1538
 msgid "This entry was posted in %s"
 msgstr "Esta entrada fue publicada en %s"
 
-#: library/extensions/content-extensions.php:1545
+#: library/extensions/content-extensions.php:1549
 msgid "Also posted in %s"
 msgstr "También publicado en %s"
 
-#: library/extensions/content-extensions.php:1549
+#: library/extensions/content-extensions.php:1553
 msgid "Posted in %s"
 msgstr "Publicado en %s"
 
-#: library/extensions/content-extensions.php:1575
+#: library/extensions/content-extensions.php:1579
 msgid "This entry is tagged"
 msgstr "Esta entrada está etiquetada como"
 
-#: library/extensions/content-extensions.php:1578
+#: library/extensions/content-extensions.php:1582
 msgid "and tagged"
 msgstr "y etiquetada como"
 
-#: library/extensions/content-extensions.php:1581
+#: library/extensions/content-extensions.php:1585
 msgid "Also tagged"
 msgstr "También etiquetada como"
 
-#: library/extensions/content-extensions.php:1583
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Etiquetas:"
 
-#: library/extensions/content-extensions.php:1613
-#: library/extensions/content-extensions.php:1619
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
 msgid "Comment on %s"
 msgstr "Comentar en %s"
 
-#: library/extensions/content-extensions.php:1615
+#: library/extensions/content-extensions.php:1619
 msgid "%s Response"
 msgid_plural "%s Responses"
 msgstr[0] "%s Respuesta"
 msgstr[1] "%s Respuestas"
 
-#: library/extensions/content-extensions.php:1620
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Dejar un comentario"
 
-#: library/extensions/content-extensions.php:1623
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Comentarios cerrados"
 
-#: library/extensions/content-extensions.php:1647
+#: library/extensions/content-extensions.php:1651
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
 msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
 msgstr "%1$sAñade un comentario%2$s o deja un trackback: %3$s"
 
-#: library/extensions/content-extensions.php:1648
-#: library/extensions/content-extensions.php:1663
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Publica un comentario"
 
-#: library/extensions/content-extensions.php:1652
-#: library/extensions/content-extensions.php:1659
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "URL del Trackback para tu entrada"
 
-#: library/extensions/content-extensions.php:1653
-#: library/extensions/content-extensions.php:1660
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "URL del Trackback"
 
-#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1660
 msgctxt "%s is trackback url, wrapped in link tags"
 msgid "Comments are closed, but you can leave a trackback: %s"
 msgstr "Los comentarios están cerrados, pero puedes dejar un trackback: %s"
 
-#: library/extensions/content-extensions.php:1663
-msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
-msgstr "Los trackbacks están cerrados, pero puedes %1$sañadir un comentario%2$s."
-
-#: library/extensions/content-extensions.php:1665
+#: library/extensions/content-extensions.php:1669
 msgid "Both comments and trackbacks are currently closed."
 msgstr "Tanto los comentarios como los trackbacks están cerrados."
 
@@ -381,11 +387,11 @@ msgstr "Canal RSS de entradas"
 msgid "Comments RSS feed"
 msgstr "Canal RSS de comentarios"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Saltar la navegación al contenido"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Saltar al contenido"
 
@@ -447,31 +453,31 @@ msgctxt "%1$s and %2$s are <a> tags"
 msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
 msgstr "Por favor, visita los %1$sForos de ThematicTheme.com%2$s si tienes dudas acerca de Thematic."
 
-#: library/extensions/theme-options.php:256
+#: library/extensions/theme-options.php:267
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options"
 msgstr "Opciones del tema %s"
 
-#: library/extensions/theme-options.php:294
+#: library/extensions/theme-options.php:305
 msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
 msgstr "El área insertada en la portada aparecerá después de este número de entrada. Si no escribes nada o escribes 0 se desactivará esta característica."
 
-#: library/extensions/theme-options.php:307
+#: library/extensions/theme-options.php:318
 msgctxt "%1$s and %2$s are <a> tags"
 msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
 msgstr "Mostrar una %1$svCard con microformato%2$s con el avatar, la biografía y el correo electrónico del autor en su página."
 
-#: library/extensions/theme-options.php:320
+#: library/extensions/theme-options.php:331
 msgctxt "%s are shortcode tags"
 msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
 msgstr "Puedes usar HTML y etiquetas en el texto del pie de página. Ejemplos de etiquetas: %s"
 
-#: library/extensions/theme-options.php:333
+#: library/extensions/theme-options.php:355
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
 msgstr "Las opciones del tema %s se han actualizado a un formato mejorado. Elimina las opciones antiguas de la base de datos."
 
-#: library/extensions/theme-options.php:360
+#: library/extensions/theme-options.php:382
 msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
 msgstr "La posición del área insertada en la portada debe ser un número igual o mayor que cero. Esta opción ha vuelto a su valor anterior."
 
@@ -621,11 +627,11 @@ msgstr "Todas las entradas"
 msgid "All comments"
 msgstr "Todos los comentarios"
 
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as"
 msgstr "Sesión iniciada como"
 
-#: library/legacy/deprecated.php:357 library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
 msgid "<span class=\"required\">*</span>"
 msgstr "<span class=\"required\">*</span>"
 
@@ -660,9 +666,6 @@ msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http
 msgid "http://themeshaper.com/"
 msgstr "http://themeshaper.com/"
 
-msgid "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-msgstr "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-
 msgid "Deprecated Archives Template"
 msgstr "Plantilla de Archivos Obsoleta"
 
diff --git a/wp-content/themes/thematic/library/languages/et.mo b/wp-content/themes/thematic/library/languages/et.mo
index 6c332deb8797accf650a30519223845e3d568b94..1071fad6097c4f8aaa13f3693928ca1509c31497 100644
Binary files a/wp-content/themes/thematic/library/languages/et.mo and b/wp-content/themes/thematic/library/languages/et.mo differ
diff --git a/wp-content/themes/thematic/library/languages/et.po b/wp-content/themes/thematic/library/languages/et.po
index 9a9bcedb1af4963c77809b1d49544c37e45ee712..9c039f5cc39c765e1f8564eca53e11afee6d1001 100644
--- a/wp-content/themes/thematic/library/languages/et.po
+++ b/wp-content/themes/thematic/library/languages/et.po
@@ -1,14 +1,24 @@
-# Translation of Thematic 1.0.3 in Estonian
-# This file is distributed under the same license as the Thematic 1.0.3 package.
+# Translation of Thematic 1.0.3.x in Estonian
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2012-09-02 09:54:11+0000\n"
+"PO-Revision-Date: 2013-03-05 17:46:40+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: Thematic 1.0.3\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr "(pealkirjata)"
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr "Trackback-viited pole lubatud, aga võid %1$sjätta kommentaari%2$s."
 
 #: archives.php:20 template-page-blog.php:22
 msgid "The template %s"
@@ -75,7 +85,7 @@ msgid "Post Comment"
 msgstr "Lisa kommentaar"
 
 #: library/extensions/comments-extensions.php:228
-#: library/legacy/deprecated.php:357
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Nimi"
 
@@ -86,17 +96,17 @@ msgid "*"
 msgstr "*"
 
 #: library/extensions/comments-extensions.php:229
-#: library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "E-post"
 
 #: library/extensions/comments-extensions.php:230
-#: library/legacy/deprecated.php:367
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Veebileht"
 
 #: library/extensions/comments-extensions.php:238
-#: library/legacy/deprecated.php:354
+#: library/legacy/deprecated.php:362
 msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
 msgid "Your email is %1$snever%2$s published nor shared."
 msgstr "Sinu e-posti ei avaldata ega jagata %1$skunagi%2$s published nor shared."
@@ -107,32 +117,32 @@ msgid "Required fields are marked %1$s*%2$s"
 msgstr "Kohustuslikke välju tähistab %1$s*%2$s"
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "You must be %1$slogged in%2$s to post a comment."
 msgstr "Kommenteerimiseks pead olema %1$ssisse loginud%2$s."
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "Log in"
 msgstr "Logi sisse"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as %s"
 msgstr "Sisse logitud kasutajana %s"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out of this account"
 msgstr "Logi välja"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out?"
 msgstr "Logid välja?"
 
 #: library/extensions/comments-extensions.php:244
-#: library/legacy/deprecated.php:379
+#: library/legacy/deprecated.php:387
 msgctxt "%$1s and %$2s are <abbr> tags"
 msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr "Võid kasutada järgmisi %1$sHTML%2$s märgendeid ja atribuute"
@@ -174,162 +184,158 @@ msgid "Yearly Archives: %s"
 msgstr "Aasta arhiiv: %s"
 
 #: library/extensions/content-extensions.php:424
-#: library/extensions/content-extensions.php:1706
+#: library/extensions/content-extensions.php:1710
 msgid "Older posts"
 msgstr "Vanemad postitused"
 
 #: library/extensions/content-extensions.php:426
-#: library/extensions/content-extensions.php:1708
+#: library/extensions/content-extensions.php:1712
 msgid "Newer posts"
 msgstr "Uuemad postitused"
 
 #: library/extensions/content-extensions.php:888
-#: library/extensions/content-extensions.php:1418
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Muuda postitust"
 
 #: library/extensions/content-extensions.php:890
-#: library/extensions/content-extensions.php:1420
+#: library/extensions/content-extensions.php:1424
 #: library/extensions/discussion-extensions.php:37
-#: library/extensions/discussion.php:84 links.php:54 page.php:52
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
 #: template-page-archives.php:55 template-page-fullwidth.php:53
 msgid "Edit"
 msgstr "Muuda"
 
-#: library/extensions/content-extensions.php:918
+#: library/extensions/content-extensions.php:921
 #: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Lehte ei leitud (viga 404)"
 
-#: library/extensions/content-extensions.php:923
-#: library/extensions/content-extensions.php:1141
+#: library/extensions/content-extensions.php:926
 #: library/extensions/content-extensions.php:1145
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
 msgid "Permalink to %s"
 msgstr "Püsiviide: %s"
 
-#: library/extensions/content-extensions.php:983
+#: library/extensions/content-extensions.php:987
 msgid "By"
 msgstr "Autor"
 
-#: library/extensions/content-extensions.php:994
+#: library/extensions/content-extensions.php:998
 msgid "View all posts by %s"
 msgstr "Vaata kõiki %s postitusi"
 
-#: library/extensions/content-extensions.php:1023
+#: library/extensions/content-extensions.php:1027
 msgid "Published:"
 msgstr "Avaldatud:"
 
-#: library/extensions/content-extensions.php:1199
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Arhiivid rubriikide kaupa"
 
-#: library/extensions/content-extensions.php:1230
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Arhiivid kuude kaupa"
 
-#: library/extensions/content-extensions.php:1291
+#: library/extensions/content-extensions.php:1295
 msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
 msgstr "Soovitud leht ei ole leitav. Vahest aitab otsing?"
 
-#: library/extensions/content-extensions.php:1297 search.php:70
+#: library/extensions/content-extensions.php:1301 search.php:70
 msgid "Find"
 msgstr "Otsi"
 
-#: library/extensions/content-extensions.php:1316
+#: library/extensions/content-extensions.php:1320
 msgid "Read More %s"
 msgstr "Loe edasi %s"
 
-#: library/extensions/content-extensions.php:1368
+#: library/extensions/content-extensions.php:1372
 msgid "Browse the %s archive."
 msgstr "Vaata %s arhiivi."
 
-#: library/extensions/content-extensions.php:1370
+#: library/extensions/content-extensions.php:1374
 msgid "Permalink to %s Archive"
 msgstr "Püsiviide %s arhiivile"
 
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1380
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
 msgid "Bookmark the %1$spermalink%2$s."
 msgstr "Talleta %1$spüsiviide%2$s."
 
-#: library/extensions/content-extensions.php:1534
+#: library/extensions/content-extensions.php:1538
 msgid "This entry was posted in %s"
 msgstr "Postitatud rubriiki %s"
 
-#: library/extensions/content-extensions.php:1545
+#: library/extensions/content-extensions.php:1549
 msgid "Also posted in %s"
 msgstr "Lisaks postitatud rubriiki %s"
 
-#: library/extensions/content-extensions.php:1549
+#: library/extensions/content-extensions.php:1553
 msgid "Posted in %s"
 msgstr "Postitatud rubriiki %s"
 
-#: library/extensions/content-extensions.php:1575
+#: library/extensions/content-extensions.php:1579
 msgid "This entry is tagged"
 msgstr "Postituse märksõnad"
 
-#: library/extensions/content-extensions.php:1578
+#: library/extensions/content-extensions.php:1582
 msgid "and tagged"
 msgstr "märksõnaga"
 
-#: library/extensions/content-extensions.php:1581
+#: library/extensions/content-extensions.php:1585
 msgid "Also tagged"
 msgstr "Lisaks märksõna"
 
-#: library/extensions/content-extensions.php:1583
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Sildistatud"
 
-#: library/extensions/content-extensions.php:1613
-#: library/extensions/content-extensions.php:1619
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
 msgid "Comment on %s"
 msgstr "Kommenteeri %s"
 
-#: library/extensions/content-extensions.php:1615
+#: library/extensions/content-extensions.php:1619
 msgid "%s Response"
 msgid_plural "%s Responses"
 msgstr[0] "%s vastus"
 msgstr[1] "%s vastust"
 
-#: library/extensions/content-extensions.php:1620
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Kommenteeri"
 
-#: library/extensions/content-extensions.php:1623
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Kommenteerimine suletud"
 
-#: library/extensions/content-extensions.php:1647
+#: library/extensions/content-extensions.php:1651
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
 msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
 msgstr "%1$sKommenteeri%2$s või lisa trackback-viide: %3$s"
 
-#: library/extensions/content-extensions.php:1648
-#: library/extensions/content-extensions.php:1663
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Postita kommentaar"
 
-#: library/extensions/content-extensions.php:1652
-#: library/extensions/content-extensions.php:1659
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Trackback-viite URL Sinu postituse jaoks"
 
-#: library/extensions/content-extensions.php:1653
-#: library/extensions/content-extensions.php:1660
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Trackback-viite URL"
 
-#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1660
 msgctxt "%s is trackback url, wrapped in link tags"
 msgid "Comments are closed, but you can leave a trackback: %s"
 msgstr "Kommenteerimine on suletud, aga võid lisada trackback-viite: %s"
 
-#: library/extensions/content-extensions.php:1663
-msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
-msgstr "Trackback-viited on keelatud, aga võid %1$sjätta kommentaari%2$s."
-
-#: library/extensions/content-extensions.php:1665
+#: library/extensions/content-extensions.php:1669
 msgid "Both comments and trackbacks are currently closed."
 msgstr "Kommenteerimine ja trackback-viidete lisamine ei ole lubatud."
 
@@ -381,11 +387,11 @@ msgstr "Postituse RSS"
 msgid "Comments RSS feed"
 msgstr "Kommentaaride RSS"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Möödu navigatsioonist sisu juurde"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Siirdu sisu juurde"
 
@@ -447,31 +453,31 @@ msgctxt "%1$s and %2$s are <a> tags"
 msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
 msgstr "Küsimustele leiad vastuse %1$sThematicTheme.com foorumist%2$s."
 
-#: library/extensions/theme-options.php:256
+#: library/extensions/theme-options.php:267
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options"
 msgstr "%s teema sätted"
 
-#: library/extensions/theme-options.php:294
+#: library/extensions/theme-options.php:305
 msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
 msgstr "Index Insert lisatakse pärast niimitmendat postitust. Tühi lahter või 0 keelab selle mooduli."
 
-#: library/extensions/theme-options.php:307
+#: library/extensions/theme-options.php:318
 msgctxt "%1$s and %2$s are <a> tags"
 msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
 msgstr "Kuva %1$smikroformaadis vCard%2$s autori avatari, tutvustuse ja e-postiga tema lehel."
 
-#: library/extensions/theme-options.php:320
+#: library/extensions/theme-options.php:331
 msgctxt "%s are shortcode tags"
 msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
 msgstr "Jaluses saab kasutada HTMLi ja lühikoode, näiteks: %s"
 
-#: library/extensions/theme-options.php:333
+#: library/extensions/theme-options.php:355
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
 msgstr "%s teema sätted on viidud uuemasse formaati. Kustuta iganenud seaded andmebaasist."
 
-#: library/extensions/theme-options.php:360
+#: library/extensions/theme-options.php:382
 msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
 msgstr "Index Insert mooduli positsiooniks sobib 0 või sellest suurem number. Taastatud sätte eelmine väärtus."
 
@@ -494,7 +500,7 @@ msgstr "Peamine mooduliala (primary widget area), harilikult kasutusel külgpaan
 
 #: library/extensions/widgets-extensions.php:85
 msgid "Secondary Aside"
-msgstr "Primary Aside"
+msgstr "Secondary Aside"
 
 #: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
@@ -518,7 +524,7 @@ msgstr "Teine mooduliala jaluses (2nd widget area)."
 
 #: library/extensions/widgets-extensions.php:130
 msgid "3rd Subsidiary Aside"
-msgstr "3. jalusemoodul"
+msgstr "3rd Subsidiary Aside"
 
 #: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
@@ -621,11 +627,11 @@ msgstr "Kõik postitused"
 msgid "All comments"
 msgstr "Kõik kommentaarid"
 
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as"
 msgstr "Sisse logitud kasutajana"
 
-#: library/legacy/deprecated.php:357 library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
 msgid "<span class=\"required\">*</span>"
 msgstr "<span class=\"required\">*</span>"
 
@@ -660,9 +666,6 @@ msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http
 msgid "http://themeshaper.com/"
 msgstr "http://themeshaper.com/"
 
-msgid "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-msgstr "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-
 msgid "Deprecated Archives Template"
 msgstr "Iganenud arhiivide põhi"
 
diff --git a/wp-content/themes/thematic/library/languages/fa_IR.mo b/wp-content/themes/thematic/library/languages/fa_IR.mo
index 6a9c681db6eeb6dca7e26ca965768388f285a559..ef3910dfc47992efc49ac031aa7679850a5b9259 100644
Binary files a/wp-content/themes/thematic/library/languages/fa_IR.mo and b/wp-content/themes/thematic/library/languages/fa_IR.mo differ
diff --git a/wp-content/themes/thematic/library/languages/fa_IR.po b/wp-content/themes/thematic/library/languages/fa_IR.po
index 2e96d61d067225669a36f573449302d7c8f0ed89..89d67349ac8aadfe906008100ae5c60c08310ce5 100644
--- a/wp-content/themes/thematic/library/languages/fa_IR.po
+++ b/wp-content/themes/thematic/library/languages/fa_IR.po
@@ -1,501 +1,681 @@
+# Translation of Thematic 1.0.3.x in Persian
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic 0.9.7.7\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-18 20:58+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Tafreevar.Com <tafreevar.weblog@gmail.com>\n"
-"Language-Team: Tafreevar.Com <tafreevar.weblog@gmail.com>\n"
+"PO-Revision-Date: 2013-03-05 17:46:50+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e;_ngettext:1,2\n"
-"X-Poedit-Basepath: .\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Poedit-Language: Persian\n"
-"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
-"X-Poedit-SearchPath-0: c:\\xampp\\htdocs\\development\\wp-content\\themes\\thematic\n"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/archives.php:42
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/links.php:53
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:40
-msgid "Edit"
-msgstr "ويرايش"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/attachment.php:39
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "برگه‌ها:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/author.php:53
+#: author.php:67
 msgid "Email "
 msgstr "رايانامه "
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:10
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
+
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "اين مطلب رمزدار است. رمز را وارد كنيد تا ديدگاه‌ها را مشاهده نماييد."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> بازتاب"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
+
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
+
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>يك</span> بازتاب"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "شما بايد <a href=\"%s\" title=\"ورود\">وارد شويد</a> تا ديدگاه خود را بنويسيد."
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">شما با نام <a href=\"%1$s\" title=\"واردشده با نام %2$s\">%2$s</a>وارد شده‌ايد.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"خارج شويد\">مي‌خواهيد خارج شويد؟</a></span>"
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "ارسال ديدگاه"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "ايميل شما <em>هرگز</em> منتشر نشده يا به ديگران داده نخواهد شد."
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "پاسخ به ديدگاه %s"
+
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "قسمت‌هاي ضروري با علامت <span class=\"required\">*</span> مشخص شده‌اند"
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "ارسال ديدگاه"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "نام"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "رايانامه"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:103
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "وب‌سايت"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "شما مي‌توانيد از اين كدهاي  <abbr title=\"زبان نشانه‌گذاري ابرمتن\">HTML</abbr> استفاده كنيد: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:38
-msgid "Pages: "
-msgstr "برگه‌ها: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:41
-msgid "Nothing Found"
-msgstr "چيزي يافت نشد"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:43
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "متأسفانه عبارت مورد جستجوي شما پيدا نشد. لطفاً جستجوي خود را با كليدواژه‌هاي ديگري تكرار كنيد."
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:48
-msgid "Find"
-msgstr "پيدا كن"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>يك</span> ديدگاه"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> ديدگاه"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:96
-msgid "Post a Comment"
-msgstr "ارسال ديدگاه"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:103
-#, php-format
-msgid "Post a Reply to %s"
-msgstr "پاسخ به ديدگاه %s"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:110
-msgid "Comment"
-msgstr "ديدگاه"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:117
-msgid "Post Comment"
-msgstr "ارسال ديدگاه"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:147
-msgid "Author Archives: "
-msgstr "بايگاني نويسندگان: "
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:153
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "بايگاني موضوعات:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:162
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "نتايج جستجوي:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:168
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "بايگاني برچسب‌ها:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:174
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "بايگاني روزانه: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:178
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "بايگاني ماهانه: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:182
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "بايگاني سالانه: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:186
-msgid "Blog Archives"
-msgstr "بايگاني‌ها"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:209
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:725
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> مطالب پيشين"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:210
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:726
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "مطالب تازه <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:394
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:618
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "ويرايش مطلب"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:406
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "ويرايش"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "يافت نشد"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:411
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid "Permalink to "
-msgstr "پيوند يكتا به "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:441
-msgid "By "
-msgstr "نويسنده: "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:444
-msgid "View all posts by "
-msgstr "مشاهده تمام مطالب "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:455
-msgid "Published: "
-msgstr "انتشار: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:523
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "بايگاني موضوعي"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:534
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "بايگاني ماهانه"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:562
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "متأسفانه آنچه مي‌خواستيد پيدا نشد. ممكن است با جستجو پيدا شود."
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "پيدا كن"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:578
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "ادامه مطلب <span class=\"meta-nav\">&laquo;</span>"
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:629
-msgid "This entry was posted in "
-msgstr "موضوع: "
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:632
-msgid "Also posted in "
-msgstr "و نيز: "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:635
-msgid "Posted in "
-msgstr "موضوع: "
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:646
-msgid " and tagged"
-msgstr " برچسب‌ها:"
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:649
-msgid " Also tagged "
-msgstr "و نيز: "
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:651
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "برچسب‌ها:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:663
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:666
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:669
-msgid "Comment on "
-msgstr "ارسال ديدگاه درباره "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:664
-msgid " Comments"
-msgstr " ديدگاه"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:667
-msgid " Comment"
-msgstr " ديدگاه"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:670
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "ارسال ديدگاه"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:673
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "بخش ديدگاه‌ها مسدود است."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid ". Bookmark the "
-msgstr ". علامت‌گذاري: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:687
-msgid "permalink"
-msgstr "پيوند جاودان"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:689
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "ارسال ديدگاه"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:690
-msgid " or leave a trackback: "
-msgstr " يا بازتاب: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "پيوند بازتاب"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "پيوند بازتاب"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:693
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " بخش ديدگاه‌ها مسدود است اما مي‌توانيد بازتاب بدهيد: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:696
-msgid " Trackbacks are closed, but you can "
-msgstr " بازتاب مسدود است اما مي‌توانيد "
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
-msgid "post a comment"
-msgstr "ارسال ديدگاه"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:699
-msgid " Both comments and trackbacks are currently closed."
-msgstr " بخش بازتاب و ديدگاه در حال حاضر مسدود است."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "ارسال‌شده در تاريخ %1$s و ساعت %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"پيوند جاودان اين ديدگاه\">پيوند جاودان</a>"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>ديدگاه شما در صف بررسي است.</span>\n"
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:22
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
+
+#: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "پاسخ"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:23
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
 msgstr "براي پاسخ دادن بايد وارد شويد."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "توسط %1$s در تاريخ %2$s ساعت %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">ديدگاه شما در صف بررسي است.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:251
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "خوراك RSS مطالب"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:269
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "خوراك RSS ديدگاه‌ها"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "اصل مطلب"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "اصل مطلب"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
 msgstr "اين مطلب چكيده ندارد چون رمزدار است."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "ورود"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "خروج"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:13
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "محل درج ويجت مياني"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "ويجت مياني صفحه اصلي بايد پس از اين تعداد مطلب قرار گيرد."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "اطلاعات صفحه نويسنده"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "يك <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">vCard ميكروفرمت</a> —حاوي آواتار، بيوگرافي و ايميل نويسنده— در صفحه نويسنده نمايش بده."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "متن پانويس"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "شما مي‌توانيد از اين كدهاي كوتاه‌شده در متن پانويس استفاده كنيد:  [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "قدرت گرفته از [wp-link]. ساخته‌شده بر اساس پوسته [theme-link]."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:75
-msgid "settings saved."
-msgstr "تنظيمات ذخيره شد."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings reset."
-msgstr "تنظيمات به حالت اوليه بازگردانده شد."
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "widgets reset."
-msgstr "ويجت‌ها به حالت اوليه بازگردانده شد."
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:190
-msgid "Save changes"
-msgstr "ذخيره تغييرات"
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:196
-msgid "Reset"
-msgstr "بازگرداني به حالت اوليه"
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:202
-msgid "Reset Widgets"
-msgstr "بازگرداني ويجت‌ها به حالت اوليه"
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:207
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "براي كسب اطلاعات بيشتر درباره اين پوسته به <a href=\"http://themeshaper.com\">ThemeShaper</a> مراجعه كنيد. لطفاً اگر سؤالي در مورد Thematic داريد به <a href=\"http://themeshaper.com/forums/\">انجمن‌هاي ThemeShaper</a> مراجعه نماييد."
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:12
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "جستجو در سايت"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:18
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:281
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:43
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "جستجو"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:43
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
 msgstr "ناحيه ويجت اصلي كه معمولاً بعنوان ستون كناري استفاده مي‌شود."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:58
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
 msgstr "ناحيه ويجت فرعي كه معمولاً بعنوان ستون كناري استفاده مي‌شود."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:73
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
 msgstr "اولين ناحيه ويجت در پانويس"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:88
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
 msgstr "دومين ناحيه ويجت در پانويس"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:103
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
 msgstr "سومين ناحيه ويجت در پانويس"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:118
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr "ناحيه ويجت بالايي كه در بالاي صفحه اصلي نمايش داده مي‌شود"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:133
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr "ناحيه ويجت مياني كه پس از تعداد مشخصي از مطالب در صفحه اصلي درج مي‌شود"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:148
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr "ناحيه ويجت پاييني كه در پايين صفحه اصلي نمايش داده مي‌شود"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:163
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr "ناحيه ويجت بالايي كه در بالاي صفحه جداگانه‌‌ي هر مطلب نمايش داده مي‌شود"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:178
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
 msgstr "ناحيه ويجتي كه در صفحه جداگانه‌‌ي هر مطلب، بين متن مطلب و ديدگاه‌ها نمايش داده مي‌شود"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:193
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr "ناحيه ويجت پاييني كه در پايين صفحه جداگانه‌‌ي هر مطلب نمايش داده مي‌شود"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:208
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr "ناحيه ويجت بالايي كه در بالاي هر برگه نمايش داده مي‌شود"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:223
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr "ناحيه ويجت پاييني كه در پايين هر برگه نمايش داده مي‌شود"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:283
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:55
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr "عنوان:"
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "متا"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:285
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:286
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:72
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
 msgstr "پيوندهاي RSS"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/widgets.php:157
 msgid "All posts"
 msgstr "همه مطالب"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/widgets.php:158
 msgid "All comments"
 msgstr "همه ديدگاه‌ها"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:96
-msgid "Title:"
-msgstr "عنوان:"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "برگه‌ها: "
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "چيزي يافت نشد"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "متأسفانه عبارت مورد جستجوي شما پيدا نشد. لطفاً جستجوي خود را با كليدواژه‌هاي ديگري تكرار كنيد."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/fi.mo b/wp-content/themes/thematic/library/languages/fi.mo
index 51dc8adaa7c847012eb1479a2c08ae107473b5bf..7a3c980f5426badc2bbcb75ae629adf4441d0782 100644
Binary files a/wp-content/themes/thematic/library/languages/fi.mo and b/wp-content/themes/thematic/library/languages/fi.mo differ
diff --git a/wp-content/themes/thematic/library/languages/fi.po b/wp-content/themes/thematic/library/languages/fi.po
index a0703ccc7d3d941637286e04ba5227c9cd1a7dd3..4f49e6db33b37d6203bd422596cd360db0622088 100644
--- a/wp-content/themes/thematic/library/languages/fi.po
+++ b/wp-content/themes/thematic/library/languages/fi.po
@@ -1,500 +1,682 @@
+# Translation of Thematic 1.0.3.x in Finnish
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-18 20:58+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Mikito Takada <mt>\n"
-"Language-Team: \n"
+"PO-Revision-Date: 2013-03-05 17:46:50+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e\n"
-"X-Poedit-Basepath: .\n"
-"X-Poedit-Language: Finnish\n"
-"X-Poedit-Country: FINLAND\n"
-"X-Poedit-SearchPath-0: c:\\xampp\\htdocs\\development\\wp-content\\themes\\thematic\n"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/archives.php:42
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/links.php:53
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:40
-msgid "Edit"
-msgstr "Muokkaa"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/attachment.php:39
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Sivut:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/author.php:53
+#: author.php:67
 msgid "Email "
 msgstr "Sähköposti "
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:10
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
+
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Tämä artikkeli on salasanasuojattu. Syötä salasana nähdäksesi kommentit."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> paluuviitettä"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
+
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
+
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>Yksi</span> paluuviite"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Sinun täytyy <a href=\"%s\" title=\"Kirjaudu sisään\">kirjautua sisään</a> kommentoidaksesi."
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Kirjautunut sisään käyttäjänä <a href=\"%1$s\" title=\"Kirjautunut sisään käyttäjänä %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Kirjaudu ulos\">Kirjaudu ulos?</a></span>"
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "Kirjoita kommentti"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Sähköpostiosoitettasi <em>ei koskaan</em> julkaista."
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "Kirjoita vastaus viestiin %s"
+
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Pakolliset kentät merkitty tähdellä <span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Kirjoita kommentti"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Nimi"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "Sähköposti"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:103
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Kotisivu"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Voit käyttää seuraavia <abbr title=\"HyperText Markup Language\">HTML</abbr> tageja ja attribuutteja:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:38
-msgid "Pages: "
-msgstr "Sivut: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:41
-msgid "Nothing Found"
-msgstr "Ei tuloksia"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:43
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Valitettavasti haku ei tuottanut tuloksia. Kokeile eri hakusanoja."
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:48
-msgid "Find"
-msgstr "Etsi"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>Yksi</span> kommentti"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> kommenttia"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:96
-msgid "Post a Comment"
-msgstr "Kirjoita kommentti"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:103
-#, php-format
-msgid "Post a Reply to %s"
-msgstr "Kirjoita vastaus viestiin %s"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:110
-msgid "Comment"
-msgstr "Kommentti"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:117
-msgid "Post Comment"
-msgstr "Kirjoita kommentti"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:147
-msgid "Author Archives: "
-msgstr "Kirjoittajan arkistot: "
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:153
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Aiheen arkistot: "
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:162
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Hakutulokset haulle:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:168
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Avainsanan arkistot:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:174
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Päiväkohtaiset arkistot: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:178
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Kuukausikohtaiset arkistot: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:182
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Vuosiarkistot: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:186
-msgid "Blog Archives"
-msgstr "Blogin arkistot"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:209
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:725
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Vanhemmat artikkelit"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:210
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:726
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Uudemmat artikkelit <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:394
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:618
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Muokkaa artikkelia"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:406
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Muokkaa"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Ei löytynyt"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:411
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid "Permalink to "
-msgstr "Kestolinkki osoitteeseen "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:441
-msgid "By "
-msgstr "Kirjoittanut "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:444
-msgid "View all posts by "
-msgstr "Näytä kaikki viestit "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:455
-msgid "Published: "
-msgstr "Julkaistu: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:523
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Arkistot aiheen mukaan"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:534
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Arkistot kuukauden mukaan"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:562
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Etsimääsi sivua ei löytynyt. Kokeile hakutoimintoa."
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Etsi"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:578
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Lue lisää <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:629
-msgid "This entry was posted in "
-msgstr "Tämän artikkelin aihe on "
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:632
-msgid "Also posted in "
-msgstr "Myös aiheissa "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:635
-msgid "Posted in "
-msgstr "Aiheessa "
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:646
-msgid " and tagged"
-msgstr "ja avainsanat "
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:649
-msgid " Also tagged "
-msgstr "Myös avainsanat "
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:651
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Avainsanat "
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:663
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:666
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:669
-msgid "Comment on "
-msgstr "Kommentoi artikkelia "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:664
-msgid " Comments"
-msgstr " Kommentit"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:667
-msgid " Comment"
-msgstr " Kommentti"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:670
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Kirjoita kommentti"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:673
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Kommentit poissa käytöstä"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid ". Bookmark the "
-msgstr ". Aseta kirjanmerkki "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:687
-msgid "permalink"
-msgstr "kestolinkki"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:689
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Kirjoita kommentti"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:690
-msgid " or leave a trackback: "
-msgstr " tai jätä paluuviite: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Paluuviitteiden URL artikkelille"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Paluuviitteen URL"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:693
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr "Kommentit ovat poissa käytöstä, mutta voit jättää paluuviitteen: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:696
-msgid " Trackbacks are closed, but you can "
-msgstr "Paluuvitteet ovat poissa käytöstä, mutta voit "
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
-msgid "post a comment"
-msgstr "kirjoittaa kommentin"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:699
-msgid " Both comments and trackbacks are currently closed."
-msgstr "Kommentit ja paluuviitteet ovat poissa käytöstä."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Kirjoitettu %1$s klo %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Kestolinkki tähän kommenttiin\">Kestolinkki</a>"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
+
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Kommenttisi odottaa arviointia.</span>\n"
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:22
+#: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Vastaa"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:23
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
 msgstr "Kirjaudu sisään vastataksesi."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "Kirjoittanut %1$s, %2$s klo %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Paluuviitteesi odottaa arviointia.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:251
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "Viestien RSS-syöte"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:269
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "Kommenttien RSS-syöte"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Ohita navigointi sisältöön"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Siirry sisältöön"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
 msgstr "Viesti on salasanasuojattu, joten siitä ei näytetä otetta."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Kirjaudu sisään"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Kirjaudu ulos"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:13
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "Indeksin sijoitus"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "Widgetiksi muunnettu Index Insert sijoitetaan tällä numerolla olevan postin jälkeen."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "Tiedot kirjoittajasta -sivu"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "Näytä <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">mikroformaatissa oleva vCard</a>—kirjoittajan avatarilla, henkilötiedoilla ja sähköpostilla —kirjoittajan sivulla."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "Teksti alapalkissa"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "Voit käyttää seuraavia lyhytkoodeja alapalkin tekstissä: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Toteusalustana [wp-link] ja pohjana [theme-link]."
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:75
-msgid "settings saved."
-msgstr "asetukset tallennettu."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings reset."
-msgstr "asetukset nollattu."
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "widgets reset."
-msgstr "widgetit nollattu."
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:190
-msgid "Save changes"
-msgstr "Tallenna muutokset"
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:196
-msgid "Reset"
-msgstr "Nollaa"
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:202
-msgid "Reset Widgets"
-msgstr "Nollaa widgetit"
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:207
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Lisätietoja tästä teemasta <a href=\"http://themeshaper.com\">ThemeShaper -sivustolta</a>. Vieraile <a href=\"http://themeshaper.com/forums/\">ThemeShaperin foorumeilla</a> mikäli sinulla on kysymyksiä Thematiciin liittyen."
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:12
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "Kirjota hakutermi ja paina enter suorittaaksesi haun"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:18
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:281
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:43
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "Hae"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:43
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
 msgstr "Ensisijainen vimpainalue, useimmiten käytetty sivupalkkina."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:58
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
 msgstr "Toissijainen vimpainalue, useimmiten käytetty sivupalkkina."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:73
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
 msgstr "Ensimmäinen vimpainalue alapalkissa."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:88
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
 msgstr "Toinen vimpainalue alapalkissa."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:103
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
 msgstr "Kolmas vimpainalue alapalkissa."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:118
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr "Ylin vimpainalue joka näytetään etusivulla."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:133
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr "Vimpainalue, joka näytetään x postin jälkeen etusivulla."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:148
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr "Pohjimmainen vimpainalue etusivulla."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:163
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr "Ylin vimpainalue, joka näytetään yksittäisessä artikkelissa."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:178
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
 msgstr "Vimpainalue, joka näytetään artikkelin ja kommenttien välillä yksittäisessä artikkelissa."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:193
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr "Pohjimmainen vimpainalue, joka näytetään yksittäisessä artikkelissa."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:208
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr "Ylin vimpainalue, joka näytetään sivulla."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:223
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr "Pohjimmainen vimpainalue, joka näytetään sivulla."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:283
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:55
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr "Otsikko:"
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:285
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:286
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:72
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
 msgstr "RSS linkit"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/widgets.php:157
 msgid "All posts"
 msgstr "Kaikki artikkelit"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/widgets.php:158
 msgid "All comments"
 msgstr "Kaikki kommentit"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:96
-msgid "Title:"
-msgstr "Otsikko:"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Sivut: "
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Ei tuloksia"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Valitettavasti haku ei tuottanut tuloksia. Kokeile eri hakusanoja."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/fr_FR.mo b/wp-content/themes/thematic/library/languages/fr_FR.mo
index d26bf520663aa95622654d5b3e42081d3aa29c30..2e7888546873a13d348f74de4e0d7550cf1be7fa 100644
Binary files a/wp-content/themes/thematic/library/languages/fr_FR.mo and b/wp-content/themes/thematic/library/languages/fr_FR.mo differ
diff --git a/wp-content/themes/thematic/library/languages/fr_FR.po b/wp-content/themes/thematic/library/languages/fr_FR.po
index 3b061103ed7ca68987947378377ad849e0356a77..f7259c0cbb7f36863e4f9476a2bb746f0d9103c2 100644
--- a/wp-content/themes/thematic/library/languages/fr_FR.po
+++ b/wp-content/themes/thematic/library/languages/fr_FR.po
@@ -1,14 +1,24 @@
-# Translation of Thematic 1.0.3 in French (France)
-# This file is distributed under the same license as the Thematic 1.0.3 package.
+# Translation of Thematic 1.0.3.x in French (France)
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2012-09-02 09:53:48+0000\n"
+"PO-Revision-Date: 2013-03-05 17:46:40+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: Thematic 1.0.3\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr "(Sans titre)"
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr "Les trackbacks sont fermés, mais vous pouvez %1$slaisser un commentaire%2$s."
 
 #: archives.php:20 template-page-blog.php:22
 msgid "The template %s"
@@ -75,7 +85,7 @@ msgid "Post Comment"
 msgstr "Valider le commentaire"
 
 #: library/extensions/comments-extensions.php:228
-#: library/legacy/deprecated.php:357
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Nom"
 
@@ -86,17 +96,17 @@ msgid "*"
 msgstr "*"
 
 #: library/extensions/comments-extensions.php:229
-#: library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "E-mail"
 
 #: library/extensions/comments-extensions.php:230
-#: library/legacy/deprecated.php:367
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Site web"
 
 #: library/extensions/comments-extensions.php:238
-#: library/legacy/deprecated.php:354
+#: library/legacy/deprecated.php:362
 msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
 msgid "Your email is %1$snever%2$s published nor shared."
 msgstr "Votre e-mail ne sera %1$sjamais%2$s publié ni communiqué."
@@ -107,32 +117,32 @@ msgid "Required fields are marked %1$s*%2$s"
 msgstr "Les champs obligatoires sont indiqués par %1$s*%2$s"
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "You must be %1$slogged in%2$s to post a comment."
 msgstr "Vous devez être %1$sconnecté%2$s pour laisser un commentaire."
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "Log in"
 msgstr "Connexion"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as %s"
 msgstr "Connecté en tant que %s"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out of this account"
 msgstr "Se déconnecter de ce compte"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out?"
 msgstr "Se déconnecter&nbsp;?"
 
 #: library/extensions/comments-extensions.php:244
-#: library/legacy/deprecated.php:379
+#: library/legacy/deprecated.php:387
 msgctxt "%$1s and %$2s are <abbr> tags"
 msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr "Vous pouvez utiliser ces balises et attributs %1$sHTML%2$s"
@@ -174,162 +184,158 @@ msgid "Yearly Archives: %s"
 msgstr "Archives annuelles&nbsp;: %s"
 
 #: library/extensions/content-extensions.php:424
-#: library/extensions/content-extensions.php:1706
+#: library/extensions/content-extensions.php:1710
 msgid "Older posts"
 msgstr "Articles plus anciens"
 
 #: library/extensions/content-extensions.php:426
-#: library/extensions/content-extensions.php:1708
+#: library/extensions/content-extensions.php:1712
 msgid "Newer posts"
 msgstr "Articles plus récents"
 
 #: library/extensions/content-extensions.php:888
-#: library/extensions/content-extensions.php:1418
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Modifier cet article"
 
 #: library/extensions/content-extensions.php:890
-#: library/extensions/content-extensions.php:1420
+#: library/extensions/content-extensions.php:1424
 #: library/extensions/discussion-extensions.php:37
-#: library/extensions/discussion.php:84 links.php:54 page.php:52
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
 #: template-page-archives.php:55 template-page-fullwidth.php:53
 msgid "Edit"
 msgstr "Modifier"
 
-#: library/extensions/content-extensions.php:918
+#: library/extensions/content-extensions.php:921
 #: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Introuvable"
 
-#: library/extensions/content-extensions.php:923
-#: library/extensions/content-extensions.php:1141
+#: library/extensions/content-extensions.php:926
 #: library/extensions/content-extensions.php:1145
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
 msgid "Permalink to %s"
 msgstr "Permalien vers %s"
 
-#: library/extensions/content-extensions.php:983
+#: library/extensions/content-extensions.php:987
 msgid "By"
 msgstr "Par"
 
-#: library/extensions/content-extensions.php:994
+#: library/extensions/content-extensions.php:998
 msgid "View all posts by %s"
 msgstr "Voir tous les articles par %s"
 
-#: library/extensions/content-extensions.php:1023
+#: library/extensions/content-extensions.php:1027
 msgid "Published:"
 msgstr "Publié&nbsp;:"
 
-#: library/extensions/content-extensions.php:1199
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Archives par catégorie"
 
-#: library/extensions/content-extensions.php:1230
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Archives par mois"
 
-#: library/extensions/content-extensions.php:1291
+#: library/extensions/content-extensions.php:1295
 msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
 msgstr "Désolé, nous n'avons pas pu trouver ce que vous cherchiez. Le moteur de recherche pourra peut-être vous aider."
 
-#: library/extensions/content-extensions.php:1297 search.php:70
+#: library/extensions/content-extensions.php:1301 search.php:70
 msgid "Find"
 msgstr "Trouver"
 
-#: library/extensions/content-extensions.php:1316
+#: library/extensions/content-extensions.php:1320
 msgid "Read More %s"
 msgstr "Lire la suite %s"
 
-#: library/extensions/content-extensions.php:1368
+#: library/extensions/content-extensions.php:1372
 msgid "Browse the %s archive."
 msgstr "Parcourir l'archive %s."
 
-#: library/extensions/content-extensions.php:1370
+#: library/extensions/content-extensions.php:1374
 msgid "Permalink to %s Archive"
 msgstr "Permalien vers l'archive %s"
 
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1380
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
 msgid "Bookmark the %1$spermalink%2$s."
 msgstr "Bookmarker le %1$spermalien%2$s."
 
-#: library/extensions/content-extensions.php:1534
+#: library/extensions/content-extensions.php:1538
 msgid "This entry was posted in %s"
 msgstr "Cet article a été publié dans %s"
 
-#: library/extensions/content-extensions.php:1545
+#: library/extensions/content-extensions.php:1549
 msgid "Also posted in %s"
 msgstr "Également publié dans %s"
 
-#: library/extensions/content-extensions.php:1549
+#: library/extensions/content-extensions.php:1553
 msgid "Posted in %s"
 msgstr "Publié dans %s"
 
-#: library/extensions/content-extensions.php:1575
+#: library/extensions/content-extensions.php:1579
 msgid "This entry is tagged"
 msgstr "Cet article est marqué avec les mots-clefs"
 
-#: library/extensions/content-extensions.php:1578
+#: library/extensions/content-extensions.php:1582
 msgid "and tagged"
 msgstr "avec les mots-clefs"
 
-#: library/extensions/content-extensions.php:1581
+#: library/extensions/content-extensions.php:1585
 msgid "Also tagged"
 msgstr "Autres mots-clefs&nbsp;:"
 
-#: library/extensions/content-extensions.php:1583
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Mots-clefs&nbsp;:"
 
-#: library/extensions/content-extensions.php:1613
-#: library/extensions/content-extensions.php:1619
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
 msgid "Comment on %s"
 msgstr "Commentaire sur %s"
 
-#: library/extensions/content-extensions.php:1615
+#: library/extensions/content-extensions.php:1619
 msgid "%s Response"
 msgid_plural "%s Responses"
 msgstr[0] "%s réponse"
 msgstr[1] "%s réponses"
 
-#: library/extensions/content-extensions.php:1620
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Laisser un commentaire"
 
-#: library/extensions/content-extensions.php:1623
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Commentaires fermés"
 
-#: library/extensions/content-extensions.php:1647
+#: library/extensions/content-extensions.php:1651
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
 msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
 msgstr "%1$sLaisser un commentaire%2$s ou faire un trackback&nbsp;: %3$s"
 
-#: library/extensions/content-extensions.php:1648
-#: library/extensions/content-extensions.php:1663
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Laisser un commentaire"
 
-#: library/extensions/content-extensions.php:1652
-#: library/extensions/content-extensions.php:1659
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "URL de trackback pour votre article"
 
-#: library/extensions/content-extensions.php:1653
-#: library/extensions/content-extensions.php:1660
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "URL de trackback"
 
-#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1660
 msgctxt "%s is trackback url, wrapped in link tags"
 msgid "Comments are closed, but you can leave a trackback: %s"
 msgstr "Les commentaires sont fermés, mais vous pouvez faire un trackback&nbsp;: %s"
 
-#: library/extensions/content-extensions.php:1663
-msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
-msgstr "Les trackbacks sont fermés, mais vous pouvez %1$slaisser un commentaire%2$s."
-
-#: library/extensions/content-extensions.php:1665
+#: library/extensions/content-extensions.php:1669
 msgid "Both comments and trackbacks are currently closed."
 msgstr "Les commentaires et les trackbacks sont fermés."
 
@@ -381,11 +387,11 @@ msgstr "Flux RSS des articles"
 msgid "Comments RSS feed"
 msgstr "Flux RSS des commentaires"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Passer la navigation"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Aller au contenu"
 
@@ -447,31 +453,31 @@ msgctxt "%1$s and %2$s are <a> tags"
 msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
 msgstr "Connectez-vous aux %1$sforums de ThematicTheme.com%2$s si vous avez des questions à propos de Thematic."
 
-#: library/extensions/theme-options.php:256
+#: library/extensions/theme-options.php:267
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options"
 msgstr "Options du thème %s"
 
-#: library/extensions/theme-options.php:294
+#: library/extensions/theme-options.php:305
 msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
 msgstr "Le bloc widget inséré en page d'accueil apparaîtra après ce numéro d'article. Laisser le champ vide ou saisir 0 pour désactiver cette fonctionnalité."
 
-#: library/extensions/theme-options.php:307
+#: library/extensions/theme-options.php:318
 msgctxt "%1$s and %2$s are <a> tags"
 msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
 msgstr "Afficher une %1$svCard microformatée%2$s comportant l'avatar, la biographie et l'e-mail de l'auteur sur la page \"auteur\"."
 
-#: library/extensions/theme-options.php:320
+#: library/extensions/theme-options.php:331
 msgctxt "%s are shortcode tags"
 msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
 msgstr "Vous pouvez utiliser du HTML et des \"shortcodes\" dans votre texte de pied de page. Exemples de \"shortcodes\": %s"
 
-#: library/extensions/theme-options.php:333
+#: library/extensions/theme-options.php:355
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
 msgstr "Les options du thème %s ont été mises à niveau vers un format amélioré. Supprimer les anciennes options de la base de données."
 
-#: library/extensions/theme-options.php:360
+#: library/extensions/theme-options.php:382
 msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
 msgstr "La valeur de position du bloc inséré en page d'accueil doit être un nombre supérieur ou égal à zéro. Ce paramètre a été rétabli à la valeur précédente."
 
@@ -621,11 +627,11 @@ msgstr "Tous les articles"
 msgid "All comments"
 msgstr "Tous les commentaires"
 
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as"
 msgstr "Connecté en tant que"
 
-#: library/legacy/deprecated.php:357 library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
 msgid "<span class=\"required\">*</span>"
 msgstr "<span class=\"required\">*</span>"
 
@@ -660,9 +666,6 @@ msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http
 msgid "http://themeshaper.com/"
 msgstr "http://themeshaper.com/"
 
-msgid "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-msgstr "blanc, trois-colonnes, deux-colonnes, largeur-fixe, options-de-thème, barre-latérale-gauche, barre latérale-droite, commentaires-imbriqués, article-épinglé, microformats"
-
 msgid "Deprecated Archives Template"
 msgstr "Modèle déprécié de page \"Archives\""
 
diff --git a/wp-content/themes/thematic/library/languages/he_IL.mo b/wp-content/themes/thematic/library/languages/he_IL.mo
index e0ba45a98490505e4c095ea2f7359ca34752ad56..b2e109eaeaa71fff4a37818088a0afea7b72edb0 100644
Binary files a/wp-content/themes/thematic/library/languages/he_IL.mo and b/wp-content/themes/thematic/library/languages/he_IL.mo differ
diff --git a/wp-content/themes/thematic/library/languages/he_IL.po b/wp-content/themes/thematic/library/languages/he_IL.po
index d84869c965bbfbf84e6c6414e32439d5379d3af7..3b9487fb78ccf3c24fcc7262932ce00fe4157cc1 100644
--- a/wp-content/themes/thematic/library/languages/he_IL.po
+++ b/wp-content/themes/thematic/library/languages/he_IL.po
@@ -1,25 +1,31 @@
-# Translation of Thematic 1.0.3 in Hebrew
-# This file is distributed under the same license as the Thematic 1.0.3 package.
+# Translation of Thematic 1.0.3.x in Hebrew
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2012-06-25 15:46:54+0000\n"
+"PO-Revision-Date: 2013-03-05 17:46:51+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: Thematic 1.0.3\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
 
-#: library/extensions/content-extensions.php:947
-#: library/extensions/content-extensions.php:1461
-#: library/extensions/discussion-extensions.php:36
-#: library/extensions/discussion.php:84 links.php:60 page.php:60
-#: template-page-archives.php:63 template-page-fullwidth.php:61
-msgid "Edit"
-msgstr "לערוך"
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: attachment.php:62 library/extensions/content-extensions.php:666
-#: library/extensions/content-extensions.php:732
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "עמודים:"
 
@@ -27,275 +33,333 @@ msgstr "עמודים:"
 msgid "Email "
 msgstr "אימייל"
 
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
+
 #: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "הפוסט הזה מוגן בססמא. הכנס ססמא כדי לראות תגובות."
 
 #: comments.php:111
-msgid "<span>One</span> Trackback"
-msgstr "<span>One</span> Trackback"
+msgid "Trackbacks"
+msgstr ""
+
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
+
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: comments.php:142 library/extensions/comments-extensions.php:234
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "כדי להגיב אתה צריך להיות <a href=\"%s\" title=\"Log in\">מחובר</a> ."
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "השאר תגובה"
+
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "השב ל%s"
 
-#: comments.php:156 library/extensions/comments-extensions.php:235
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">מחובר כ -  <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">להתנתק?</a></span>"
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
 
-#: comments.php:164 library/extensions/comments-extensions.php:233
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "האמייל שלך <em>לעולם לא</em> יפורסם, יושכר או ימכר."
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: comments.php:164 library/extensions/comments-extensions.php:233
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "שדות חובה מסומנים ב<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "השאר תגובה"
 
-#: comments.php:167 library/extensions/comments-extensions.php:224
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "שם"
 
-#: comments.php:167 comments.php:172
-#: library/extensions/comments-extensions.php:224
-#: library/extensions/comments-extensions.php:225
-msgid "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
 msgstr ""
 
-#: comments.php:172 library/extensions/comments-extensions.php:225
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "אימייל"
 
-#: comments.php:177 library/extensions/comments-extensions.php:226
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "אתר"
 
-#: comments.php:189 library/extensions/comments-extensions.php:236
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "ניתן להשתמש בטאגי <abbr title=\"HyperText Markup Language\">HTML</abbr> הבאים:"
-
-#: page.php:58 template-page-fullwidth.php:59
-msgid "Pages: "
-msgstr "עמודים:"
-
-#: search.php:56
-msgid "Nothing Found"
-msgstr "לא נמצא כלום"
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: search.php:60
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "מתנצלים, לא נמצא שומדבר שתואם את החיפוש שלך. בבקשה נסה שוב עם מלים אחרות."
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1346 search.php:70
-msgid "Find"
-msgstr "מצא"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: library/extensions/comments-extensions.php:120
-msgid "<span>One</span> Comment"
-msgstr "תגובה <span>אחת</span>"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:154
-msgid "Post a Comment"
-msgstr "השאר תגובה"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:165
-msgid "Post a Reply to %s"
-msgstr "השב ל%s"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:176
-msgid "Comment"
-msgstr "תגובה"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:187
-msgid "Cancel reply"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr ""
 
-#: library/extensions/comments-extensions.php:198
-msgid "Post Comment"
-msgstr "השאר תגובה"
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: library/extensions/content-extensions.php:340
-#: library/extensions/header-extensions.php:84
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "ארכיון הקטגוריות:"
 
-#: library/extensions/content-extensions.php:349
-#: library/extensions/header-extensions.php:80
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "תוצאות חיפוש עבור:"
 
-#: library/extensions/content-extensions.php:355
-#: library/extensions/header-extensions.php:88
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "ארכיון הטאגים:"
 
-#: library/extensions/content-extensions.php:364
-#: library/extensions/content-extensions.php:373
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
 msgid "Archives:"
 msgstr ""
 
-#: library/extensions/content-extensions.php:379
-msgid "Daily Archives: <span>%s</span>"
-msgstr "ארכיון יומי: <span<%s</span>"
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:383
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "ארכיון חודשי: <span<%s</span>"
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:387
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "ארכיון שנתי: <span<%s</span>"
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:429
-#: library/extensions/content-extensions.php:1728
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> פוסטים ישנים"
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
 
-#: library/extensions/content-extensions.php:431
-#: library/extensions/content-extensions.php:1729
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "פוסטים חדשים <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
 
-#: library/extensions/content-extensions.php:946
-#: library/extensions/content-extensions.php:1460
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "ערוך פוסט"
 
-#: library/extensions/content-extensions.php:975
-#: library/extensions/header-extensions.php:92
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "לערוך"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "לא נמצא"
 
-#: library/extensions/content-extensions.php:980
-#: library/extensions/content-extensions.php:1413
-#: library/extensions/content-extensions.php:1417
-msgid "Permalink to "
-msgstr "קישור ל - "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1041
-msgid "By "
-msgstr "על ידי"
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1051
-msgid "View all posts by "
-msgstr "צפה בכל הפוסטים של"
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1079
-msgid "Published: "
-msgstr "פורסם:"
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1252
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "ארכיון לפי כטקגוריות:"
 
-#: library/extensions/content-extensions.php:1280
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "ארכיון לפי שנה"
 
-#: library/extensions/content-extensions.php:1413
-msgid "Browse the "
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
 msgstr ""
 
-#: library/extensions/content-extensions.php:1413
-msgid " Archive"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "מצא"
+
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1414
-msgid " archive"
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
 msgstr ""
 
-#: library/extensions/content-extensions.php:1417
-msgid "Bookmark the "
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1418
-msgid "permalink"
-msgstr "קישור"
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
 
-#: library/extensions/content-extensions.php:1572
-msgid "This entry was posted in "
-msgstr "פורסם ב - "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1580
-msgid "Also posted in "
-msgstr "פוסטים נוספים ב - "
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1583
-msgid "Posted in "
-msgstr "פורסם ב - "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1609
-msgid " This entry is tagged"
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1612
-msgid " and tagged"
-msgstr "ומתוייג"
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1615
-msgid " Also tagged "
-msgstr "גם מתוייג"
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "מתוייג"
 
-#: library/extensions/content-extensions.php:1644
-#: library/extensions/content-extensions.php:1647
-#: library/extensions/content-extensions.php:1650
-msgid "Comment on "
-msgstr "הגב על "
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1651
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
+
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "השאר תגובה"
 
-#: library/extensions/content-extensions.php:1654
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "תגובות סגורות"
 
-#: library/extensions/content-extensions.php:1678
-#: library/extensions/content-extensions.php:1686
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "השאר תגובה"
 
-#: library/extensions/content-extensions.php:1679
-msgid " or leave a trackback: "
-msgstr "או השאר טראקבאק"
-
-#: library/extensions/content-extensions.php:1680
-#: library/extensions/content-extensions.php:1683
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "קישור טראקבאק לפוסט שלך"
 
-#: library/extensions/content-extensions.php:1680
-#: library/extensions/content-extensions.php:1683
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "קישור טראקבאק"
 
-#: library/extensions/content-extensions.php:1682
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr "תגובות סגורות, ניתן להשאיר טראקבאק ב:"
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1685
-msgid " Trackbacks are closed, but you can "
-msgstr "טראקבאק סגורים, אך ניתן"
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: library/extensions/content-extensions.php:1686
-msgid "post a comment"
-msgstr "השאר תגובה"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1688
-msgid " Both comments and trackbacks are currently closed."
-msgstr "תגובות וטראקבאקים סגורים כרגע."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: library/extensions/discussion-extensions.php:27
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "פורסם %1$st ב - %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">קישור</a>"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: library/extensions/discussion-extensions.php:35
+#: library/extensions/discussion-extensions.php:36
 msgid "Edit comment"
 msgstr ""
 
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
+
 #: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "הגב"
@@ -305,28 +369,29 @@ msgid "Log in to reply."
 msgstr "התחבר כדי להגיב."
 
 #: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "על ידי %1$st על %2$s ב - %3$s"
+msgstr ""
+
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
 
-#: library/extensions/header-extensions.php:302
+#: library/extensions/header-extensions.php:319
 #: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "פוסטים רסס פיד"
 
-#: library/extensions/header-extensions.php:326
+#: library/extensions/header-extensions.php:343
 #: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "תגובות רסס פיד"
 
-#: functions.php:253
-msgid "Primary Menu"
-msgstr ""
-
-#: library/extensions/header-extensions.php:625
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "דלג על סרגל הניווט לתוכן"
 
-#: library/extensions/header-extensions.php:625
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "דלג לתוכן"
 
@@ -334,14 +399,6 @@ msgstr "דלג לתוכן"
 msgid "There is no excerpt because this is a protected post."
 msgstr "אין תמצית כיוון שהפוסט מוגן."
 
-#: library/extensions/shortcodes.php:40
-msgid "Login"
-msgstr "התחבר"
-
-#: library/extensions/shortcodes.php:42
-msgid "Logout"
-msgstr "יציאה"
-
 #: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "אינדקס הוספת מיקום"
@@ -354,6 +411,76 @@ msgstr "מידע על עמוד המחבר"
 msgid "Text in Footer"
 msgstr "טקסט בפוטר"
 
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "על מנת לחפש, הקלידו והקישו אנטר"
@@ -363,54 +490,106 @@ msgstr "על מנת לחפש, הקלידו והקישו אנטר"
 msgid "Search"
 msgstr "חיפוש"
 
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
 msgstr "אזור ווידג'ט ראשוני, לרוב משמש כסייד-בר"
 
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
 msgstr "אזור ווידג'ט שניוני, לרוב משמש כסייד-בר"
 
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
 msgstr "אזור ווידג'ט ראשון בפוטר"
 
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
 msgstr "אזור ווידג'ט שני בפוטר"
 
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
 msgstr "אזור ווידג'ט שלישי בפוטר"
 
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr "אזור ווידג'ט עליון המוצג בעמוד אינדקס"
 
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr "אזור הווידג'ט המוכנס לאחר x פוסטים בעמוד האינדקס."
 
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr "אזור ווידג'ט תחתון מוצג בעמוד אינדקס"
 
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr "אזור ווידג'ט עליון המוצג בפוסט יחיד"
 
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
 msgstr "אזור הווידג'ט המוכנס בין הפוסט לתגובות בפוסט יחיד"
 
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr "אזור ווידג'ט תחתון המוצג בפוסט יחיד"
 
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr "אזור ווידג'ט עליון המוצג בעמוד"
 
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr "אזור ווידג'ט תחתון המוצג בעמוד"
@@ -448,114 +627,56 @@ msgstr "כל הפוסטים"
 msgid "All comments"
 msgstr "כל התגובות"
 
-#: archives.php:20 template-page-blog.php:22
-msgid "The template %s"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
 msgstr ""
 
-#: comments.php:24
-msgid "Please do not load this page directly."
-msgstr ""
-
-#: comments.php:111
-msgid "Trackbacks"
-msgstr ""
-
-#: library/extensions/comments-extensions.php:131
-msgid "Comments"
-msgstr ""
-
-#: library/extensions/content-extensions.php:334
-msgid "Author Archives:"
-msgstr ""
-
-#: library/extensions/content-extensions.php:1340
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
-msgstr ""
-
-#: library/extensions/content-extensions.php:1364
-msgid "Read More %s"
-msgstr ""
-
-#: library/extensions/content-extensions.php:1645
-msgid "Responses"
-msgstr ""
-
-#: library/extensions/content-extensions.php:1648
-msgid "Response"
-msgstr ""
-
-#: library/extensions/discussion.php:37
-msgid "Your comment is awaiting moderation"
-msgstr ""
-
-#: library/extensions/discussion.php:90
-msgid "Your trackback is awaiting moderation"
-msgstr ""
-
-#: library/extensions/theme-options.php:56
-msgid "Remove Legacy Options"
-msgstr ""
-
-#: library/extensions/theme-options.php:204
-msgid "For more information:"
-msgstr ""
-
-#: library/extensions/theme-options.php:206
-msgid "For support:"
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
 msgstr ""
 
-#: library/extensions/theme-options.php:208
-msgid "forums"
-msgstr ""
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "עמודים:"
 
-#: library/extensions/theme-options.php:212
-msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
-msgstr ""
+#: search.php:56
+msgid "Nothing Found"
+msgstr "לא נמצא כלום"
 
-#: library/extensions/theme-options.php:213
-msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
-msgstr ""
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "מתנצלים, לא נמצא שומדבר שתואם את החיפוש שלך. בבקשה נסה שוב עם מלים אחרות."
 
-#: library/extensions/theme-options.php:219
-msgid "Overview"
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
 msgstr ""
 
-#: library/extensions/theme-options.php:247
-msgid "For more information about this theme, <a href=\"http://thematictheme.com\">visit ThemeTheme.com</a>. Please visit the <a href=\"http://thematictheme.com/forums/\">ThematicTheme.com Forums</a> if you have any questions about Thematic."
+msgid "Thematic"
 msgstr ""
 
-#: library/extensions/theme-options.php:262
-msgid "%s Theme Options"
+msgid "http://thematictheme.com"
 msgstr ""
 
-#: library/extensions/theme-options.php:276
-msgid "Save Changes"
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
 msgstr ""
 
-#: library/extensions/theme-options.php:311
-msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
 msgstr ""
 
-#: library/extensions/theme-options.php:324
-msgid "Display a"
+msgid "http://themeshaper.com/"
 msgstr ""
 
-#: library/extensions/theme-options.php:324
-msgid "with the author's avatar, bio and email on the author page."
+msgid "Deprecated Archives Template"
 msgstr ""
 
-#: library/extensions/theme-options.php:337
-msgid "You can use HTML and shortcodes in your footer text. Shortcode examples"
+msgid "Links Page"
 msgstr ""
 
-#: library/extensions/theme-options.php:350
-msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgid "Archives Page"
 msgstr ""
 
-#: library/extensions/theme-options.php:377
-msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgid "Deprecated Blog Template"
 msgstr ""
 
-#: template-page-blog.php:22
-msgid "You can include a %s in a childtheme"
+msgid "Full Width"
 msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/id_ID.mo b/wp-content/themes/thematic/library/languages/id_ID.mo
index 0ed17178760534629c89f810ef66381a6cd7ba91..7e443386b26c202cfc288e73f4668882182f9478 100644
Binary files a/wp-content/themes/thematic/library/languages/id_ID.mo and b/wp-content/themes/thematic/library/languages/id_ID.mo differ
diff --git a/wp-content/themes/thematic/library/languages/id_ID.po b/wp-content/themes/thematic/library/languages/id_ID.po
index 751f1303dbf69b70a80ccf3e10194fb0f1d04ef8..c5462640611fafdfe20c09e9b6fee9c0dcdae1d7 100644
--- a/wp-content/themes/thematic/library/languages/id_ID.po
+++ b/wp-content/themes/thematic/library/languages/id_ID.po
@@ -1,406 +1,682 @@
+# Translation of Thematic 1.0.3.x in Indonesian
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic 0.8\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-18 21:54+0100\n"
-"PO-Revision-Date: 2009-01-19 23:17-0800\n"
-"Last-Translator: Kate Mag <kate@nineteenlabs.com>\n"
-"Language-Team: \n"
+"PO-Revision-Date: 2013-03-05 17:46:55+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Indonesian\n"
-"X-Poedit-Country: Indonesia\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e\n"
-"X-Poedit-Basepath: .\n"
-"X-Poedit-SearchPath-0: .\n"
-
-#: 404.php:10
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Maaf, tidak dapat menemukan yang anda cari. Gunakan kotak pencarian"
-
-#: 404.php:15
-#: search.php:58
-msgid "Find"
-msgstr "Temukan"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
 
-#: archive.php:16
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Arsip Harian: <span>%s</span>"
-
-#: archive.php:18
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Arsip Bulanan: <span>%s</span>"
-
-#: archive.php:20
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Arsip Tahunan: <span>%s</span>"
-
-#: archive.php:22
-msgid "Blog Archives"
-msgstr "Arsip Blog"
-
-#: archive.php:31
-#: archive.php:53
-#: author.php:21
-#: author.php:56
-#: category.php:20
-#: category.php:42
-#: index.php:17
-#: index.php:49
-#: search.php:21
-#: search.php:43
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Artikel sebelumnya"
-
-#: archive.php:32
-#: archive.php:54
-#: author.php:22
-#: author.php:57
-#: category.php:21
-#: category.php:43
-#: index.php:18
-#: index.php:50
-#: search.php:22
-#: search.php:44
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Artikel terbaru <span class=\"meta-nav\">&raquo;</span>"
-
-#: archive.php:41
-#: attachment.php:20
-#: author.php:44
-#: category.php:30
-#: index.php:30
-#: search.php:31
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Baca berikutnya <span class=\"meta-nav\">&raquo;</span>"
-
-#: archives.php:20
-msgid "Archives by Category"
-msgstr "Arsip berdasarkan Kategori"
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: archives.php:26
-msgid "Archives by Month"
-msgstr "Arsip berdasarkan Bulan"
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
 
-#: archives.php:32
-#: comments.php:39
-#: comments.php:65
-#: links.php:20
-#: page.php:16
-msgid "Edit"
-msgstr "Ubah"
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
 
-#: attachment.php:22
-#: index.php:32
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Halaman:"
 
-#: author.php:15
-msgid "Author Archives: "
-msgstr "Arsip Pengarang: "
-
-#: author.php:33
+#: author.php:67
 msgid "Email "
 msgstr "E-Mail "
 
-#: category.php:13
-msgid "Category Archives:"
-msgstr "Kategori Arsip:"
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
 
-#: comments.php:9
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Post ini diproteksi password. Masukkan password untuk meliha semua komentar."
 
-#: comments.php:28
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> Komentar"
-
-#: comments.php:28
-msgid "<span>One</span> Comment"
-msgstr "<span>Satu</span> Komentar"
-
-#: comments.php:35
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Ditulis %1$s pada %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\">Permanent-Link</a>"
-
-#: comments.php:40
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Komentar anda menunggu moderasi</span>\n"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
 
-#: comments.php:54
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> Trackbacks"
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
 
-#: comments.php:54
-msgid "<span>One</span> Trackback"
-msgstr "<span>Ein</span> Trackback"
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: comments.php:61
-#, php-format
-msgid "By %1$s on %2$s at %3$s"
-msgstr "Oleh %1$s waktu %2$s tempat %3$s"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: comments.php:66
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Trackback anda menunggu moderasi.</span>\\n"
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
 
-#: comments.php:79
+#: library/extensions/comments-extensions.php:155
 msgid "Post a Comment"
 msgstr "Tulis sebuah Komentar"
 
-#: comments.php:82
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Anda harus <a href=\"%s\" title=\"Log in\">login</a> untuk berkomentar."
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr ""
 
-#: comments.php:90
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Masuk sebagai <a href=\"%1$s\" title=\"Masuk sebagai %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Keluar dari akun ini\">Keluar?</a></span>"
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
 
-#: comments.php:97
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Email anda <em>tidak pernah</em> dipublikasikan"
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: comments.php:97
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Bagian yang diperlukan bertanda <span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Buat Komentar"
 
-#: comments.php:100
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Nama"
 
-#: comments.php:100
-#: comments.php:105
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: comments.php:105
-#, fuzzy
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
-msgstr "E-Mail"
+msgstr ""
 
-#: comments.php:110
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Website"
 
-#: comments.php:117
-msgid "Comment"
-msgstr "Komentar"
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: comments.php:123
-msgid "Post Comment"
-msgstr "Buat Komentar"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: header.php:22
-msgid "Posts RSS feed"
-msgstr "RSS Feed Artikel"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: header.php:23
-msgid "Comments RSS feed"
-msgstr "RSS Fee Komentar"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: header.php:44
-msgid "Skip navigation to the content"
-msgstr "Tidak menggunakan navigasi ke isi"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: header.php:44
-msgid "Skip to content"
-msgstr "Langsung ke isi"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: page.php:14
-msgid "Pages: "
-msgstr "Halaman: "
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: search.php:15
-msgid "Search Results for:"
-msgstr "Hasil pencarian untuk:"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: search.php:51
-msgid "Nothing Found"
-msgstr "Tidak Menemukan"
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: search.php:53
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Maaf, tidak ada yang sesuai dengan kriteria pencarian. Coba lagi dengan keyword berbeda"
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
+msgid "Category Archives:"
+msgstr "Kategori Arsip:"
 
-#: sidebar.php:5
-#: sidebar.php:9
-#: library/functions/widgets.php:16
-#: library/functions/widgets.php:23
-#: library/functions/widgets.php:200
-msgid "Search"
-msgstr "Cari"
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
+msgid "Search Results for:"
+msgstr "Hasil pencarian untuk:"
 
-#: sidebar.php:15
-msgid "Pages"
-msgstr "Halaman"
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
+msgid "Tag Archives:"
+msgstr "Arsip Tag:"
 
-#: sidebar.php:22
-msgid "Categories"
-msgstr "Ketegori"
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
 
-#: sidebar.php:30
-msgid "Archives"
-msgstr "Arsip"
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
 
-#: sidebar.php:47
-msgid "RSS Feeds"
-msgstr "RSS Feed"
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
 
-#: sidebar.php:49
-#: library/functions/widgets.php:57
-msgid "All posts"
-msgstr "Semua artikel"
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
 
-#: sidebar.php:50
-#: library/functions/widgets.php:58
-msgid "All comments"
-msgstr "Semua komentar"
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
 
-#: sidebar.php:55
-#: library/functions/widgets.php:35
-#: library/functions/widgets.php:202
-msgid "Meta"
-msgstr "Meta"
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
 
-#: tag.php:13
-msgid "Tag Archives:"
-msgstr "Arsip Tag:"
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
+msgid "Edit post"
+msgstr "Ubah Artikel"
 
-#: library/functions/hooks-filters.php:26
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Ubah"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Tidak Ketemu"
 
-#: library/functions/hooks-filters.php:31
-#: library/functions/hooks-filters.php:115
-msgid "Permalink to "
-msgstr "Permalink untuk"
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: library/functions/hooks-filters.php:39
-msgid "By "
-msgstr "Oleh"
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: library/functions/hooks-filters.php:41
-msgid "View all posts by "
-msgstr "Tampilkan semua artikel oleh"
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: library/functions/hooks-filters.php:65
-msgid "Edit post"
-msgstr "Ubah Artikel"
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1203
+msgid "Archives by Category"
+msgstr "Arsip berdasarkan Kategori"
+
+#: library/extensions/content-extensions.php:1234
+msgid "Archives by Month"
+msgstr "Arsip berdasarkan Bulan"
+
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Temukan"
+
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
 
-#: library/functions/hooks-filters.php:72
-msgid "This entry was posted in "
-msgstr "Entri ini dipublikasikan di"
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: library/functions/hooks-filters.php:75
-msgid "Also posted in "
-msgstr "Juga dipublikasikan di "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
 
-#: library/functions/hooks-filters.php:78
-msgid "Posted in "
-msgstr "Dipublikasikan di"
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
 
-#: library/functions/hooks-filters.php:84
-msgid " and tagged"
-msgstr "dan ditag"
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
 
-#: library/functions/hooks-filters.php:87
-msgid " Also tagged "
-msgstr "juga ditag"
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
 
-#: library/functions/hooks-filters.php:89
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Tag"
 
-#: library/functions/hooks-filters.php:97
-#: library/functions/hooks-filters.php:100
-#: library/functions/hooks-filters.php:103
-msgid "Comment on "
-msgstr "Komentar kepada"
-
-#: library/functions/hooks-filters.php:98
-msgid " Comments"
-msgstr "Komentar-komentar"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: library/functions/hooks-filters.php:101
-msgid " Comment"
-msgstr " KoKomentar"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
 
-#: library/functions/hooks-filters.php:104
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Tulis sebuah komentar"
 
-#: library/functions/hooks-filters.php:107
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Komentar ditutup"
 
-#: library/functions/hooks-filters.php:115
-msgid ". Bookmark the "
-msgstr "Bookmark"
-
-#: library/functions/hooks-filters.php:116
-msgid "permalink"
-msgstr "Permanent-Link"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: library/functions/hooks-filters.php:118
-#: library/functions/hooks-filters.php:126
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Tulis sebuah Komentar"
 
-#: library/functions/hooks-filters.php:119
-msgid " or leave a trackback: "
-msgstr "Tinggalkan trackback"
-
-#: library/functions/hooks-filters.php:120
-#: library/functions/hooks-filters.php:123
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Trackback-URL dari artkel anda"
 
-#: library/functions/hooks-filters.php:120
-#: library/functions/hooks-filters.php:123
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Trackback-URL"
 
-#: library/functions/hooks-filters.php:122
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr "Komentar ditutup, tapi anda dapat meninggalkan trackback:"
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
 
-#: library/functions/hooks-filters.php:125
-msgid " Trackbacks are closed, but you can "
-msgstr "Trackbacks ditutup, tapi anda dapat"
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: library/functions/hooks-filters.php:126
-msgid "post a comment"
-msgstr "tulis sebuah komentar"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: library/functions/hooks-filters.php:128
-msgid " Both comments and trackbacks are currently closed."
-msgstr "Komentar dan trackbacks ditutup"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: library/functions/theme-options.php:199
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Informasi lanjut tentang theme, <a href=\"http://themeshaper.com\">kunjungi ThemeShaper</a>. Silahkan kunjungi pulsa <a href=\"http://themeshaper.com/forums/\">Forum ThemeShaper</a>jika ada pertanyaan tentang Thematic"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: library/functions/widgets.php:52
-#: library/functions/widgets.php:204
-#: library/functions/widgets.php:205
-msgid "RSS Links"
-msgstr "Link-Link RSS"
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
 
-#: library/functions/widgets.php:76
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
+
+#: library/extensions/discussion.php:52
+msgid "Reply"
+msgstr ""
+
+#: library/extensions/discussion.php:53
+msgid "Log in to reply."
+msgstr ""
+
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
+msgid "By %1$s on %2$s at %3$s"
+msgstr ""
+
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
+
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
+msgid "Posts RSS feed"
+msgstr "RSS Feed Artikel"
+
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
+msgid "Comments RSS feed"
+msgstr "RSS Fee Komentar"
+
+#: library/extensions/header-extensions.php:667
+msgid "Skip navigation to the content"
+msgstr "Tidak menggunakan navigasi ke isi"
+
+#: library/extensions/header-extensions.php:667
+msgid "Skip to content"
+msgstr "Langsung ke isi"
+
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
+msgid "There is no excerpt because this is a protected post."
+msgstr ""
+
+#: library/extensions/theme-options.php:50
+msgid "Index Insert Position"
+msgstr ""
+
+#: library/extensions/theme-options.php:51
+msgid "Info on Author Page"
+msgstr ""
+
+#: library/extensions/theme-options.php:52
+msgid "Text in Footer"
+msgstr ""
+
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:34
+msgid "To search, type and hit enter"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
+msgid "Search"
+msgstr "Cari"
+
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
+msgid "The primary widget area, most often used as a sidebar."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
+msgid "The secondary widget area, most often used as a sidebar."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:102
+msgid "The 1st widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
+msgid "The 2nd widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
+msgid "The 3rd widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
+msgid "The top widget area displayed on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:162
+msgid "The widget area inserted after x posts on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:177
+msgid "The bottom widget area displayed on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
+msgid "The top widget area displayed on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
+msgid "The widget area inserted between the post and the comments on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
+msgid "The bottom widget area displayed on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
+msgid "The top widget area displayed on a page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
+msgid "The bottom widget area displayed on a page."
+msgstr ""
+
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
 msgid "Title:"
 msgstr "Judul:"
 
-#: library/functions/widgets.php:199
-msgid "Blog Index"
-msgstr "Blog Indeks"
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
+msgid "Meta"
+msgstr "Meta"
+
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
+msgid "RSS Links"
+msgstr "Link-Link RSS"
+
+#: library/extensions/widgets.php:157
+msgid "All posts"
+msgstr "Semua artikel"
+
+#: library/extensions/widgets.php:158
+msgid "All comments"
+msgstr "Semua komentar"
+
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Halaman: "
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Tidak Menemukan"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Maaf, tidak ada yang sesuai dengan kriteria pencarian. Coba lagi dengan keyword berbeda"
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/is_IS.mo b/wp-content/themes/thematic/library/languages/is_IS.mo
index f4cfc2068f8aa44a1f467fd4ddf4f94295ded8b6..4bfa3670eddb4eb530214f4fae83c39760ce8b8c 100644
Binary files a/wp-content/themes/thematic/library/languages/is_IS.mo and b/wp-content/themes/thematic/library/languages/is_IS.mo differ
diff --git a/wp-content/themes/thematic/library/languages/is_IS.po b/wp-content/themes/thematic/library/languages/is_IS.po
index db6ee6f599fa615640ce270b6cdcf4ddc28ef019..b6a5aee4305462392368bcf9add47d25858d05a8 100644
--- a/wp-content/themes/thematic/library/languages/is_IS.po
+++ b/wp-content/themes/thematic/library/languages/is_IS.po
@@ -1,480 +1,682 @@
+# Translation of Thematic 1.0.3.x in Icelandic
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic Icelandic\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-03-15 11:44+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Stefán Vignir Skarphéðinsson <stebbiv@gmail.com>\n"
-"Language-Team: Stefán Vignir Skarphéðinsson <stebbiv+thematic@gmail.com>\n"
+"PO-Revision-Date: 2013-03-05 17:46:52+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Icelandic\n"
-"X-Poedit-Country: ICELAND\n"
-"X-Poedit-KeywordsList: _e;__\n"
+"Plural-Forms: nplurals=2; plural=(n % 100 != 1 && n % 100 != 21 && n % 100 != 31 && n % 100 != 41 && n % 100 != 51 && n % 100 != 61 && n % 100 != 71 && n % 100 != 81 && n % 100 != 91);\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/404.php:10
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Því miður gátum við ekki fundið það sem þú varst að leita. Ef til vill gæti gengið betur að nota leitina."
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/404.php:15
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:58
-msgid "Find"
-msgstr "Finna"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:16
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Dagleg söfn: <span>%s</span>"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:18
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Mánaðarleg söfn: <span>%s</span>"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:20
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Áleg söfn: <span>%s</span>"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:22
-msgid "Blog Archives"
-msgstr "Söfn"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:31
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:53
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:21
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:57
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:20
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:42
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:17
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:49
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:21
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:43
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Eldri færslur"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:32
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:54
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:22
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:58
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:21
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:43
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:18
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:50
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:22
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:44
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Nýrri færslur <span class=\"meta-nav\">&raquo;</span>"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archive.php:41
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/attachment.php:20
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:45
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:30
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:30
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:31
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Lesa meira <span class=\"meta-nav\">&raquo;</span>"
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archives.php:20
-msgid "Archives by Category"
-msgstr "Söfn eftir efnisflokkum"
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archives.php:26
-msgid "Archives by Month"
-msgstr "Söfn eftir mánuðum"
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/archives.php:32
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/links.php:20
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/page.php:16
-msgid "Edit"
-msgstr "Breyta"
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/attachment.php:22
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/index.php:32
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Síður:"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:15
-msgid "Author Archives: "
-msgstr "Söfn eftir höfundi: "
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/author.php:34
+#: author.php:67
 msgid "Email "
 msgstr "Tölvupóstur"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/category.php:13
-msgid "Category Archives:"
-msgstr "Söfn eftir flokkum:"
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:10
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Þessi færsla er læst með lykilorði. Skrifaðu lykilorðið til að sjá athugasemdir."
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:31
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> athugasemdir"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:31
-msgid "<span>One</span> Comment"
-msgstr "<span>Ein</span> athugasemd"
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> bakvísanir"
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>Ein</span> bakvísun"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:67
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:155
 msgid "Post a Comment"
 msgstr "Skrifa athugasemd"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:67
-#, php-format
+#: library/extensions/comments-extensions.php:167
 msgid "Post a Reply to %s"
 msgstr "Skrifa svar við %s"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Þú þarft að <a href=\"%s\" title=\"Skrá inn\">skráð þig inn</a> til að skrifa athugasemdir."
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Skráð inn sem <a href=\"%1$s\" title=\"Skráð inn sem %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Skrá mig út\">Skrá út?</a></span>"
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Tölvupóstfangið þitt er <em>aldrei</em> gefið upp eða deilt með öðrum."
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Nauðsynlegir reitir eru merktir <span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Skrifa athugasemd"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:93
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Nafn"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:93
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:98
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "Tölvupóstfang"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:103
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Vefsíða"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:110
-msgid "Comment"
-msgstr "Athugasemd"
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Þú mátt nota þessi <abbr title=\"HyperText Markup Language\">HTML</abbr>-tögg og eigindi:"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/comments.php:120
-msgid "Post Comment"
-msgstr "Skrifa athugasemd"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/page.php:14
-msgid "Pages: "
-msgstr "Síður:"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:15
-msgid "Search Results for:"
-msgstr "Leitarniðurstöður fyrir:"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:51
-msgid "Nothing Found"
-msgstr "Ekkert fannst"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/search.php:53
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Því miður var ekki hægt að finna það sem þó óskaðir eftir. Reyndu aftur með öðrum leitarorðum."
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:6
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:10
-msgid "Search"
-msgstr "Leita"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:16
-msgid "Pages"
-msgstr "Síður"
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:23
-msgid "Categories"
-msgstr "Efnisflokkar"
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
+msgid "Category Archives:"
+msgstr "Söfn eftir flokkum:"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:31
-msgid "Archives"
-msgstr "Söfn"
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
+msgid "Search Results for:"
+msgstr "Leitarniðurstöður fyrir:"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:50
-msgid "RSS Feeds"
-msgstr "RSS-straumar"
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
+msgid "Tag Archives:"
+msgstr "Söfn fyrir stikkorð:"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:52
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:390
-msgid "Posts RSS feed"
-msgstr "RSS-straumar fyrir færslur"
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:52
-msgid "All posts"
-msgstr "Allar færslur"
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:53
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:408
-msgid "Comments RSS feed"
-msgstr "RSS-straumar fyrir athugasemdir"
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:53
-msgid "All comments"
-msgstr "Allar athugasemdir"
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/sidebar.php:58
-msgid "Meta"
-msgstr "Meta"
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/tag.php:13
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:207
-msgid "Tag Archives:"
-msgstr "Söfn fyrir stikkorð:"
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Sent inn %1$s kl. %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Fastur hlekkur á þessa athugasemd\">Fastur hlekkur</a>"
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
+msgid "Edit post"
+msgstr "Breyta færslu"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Athugasemdin þín bíður eftir að vera yfirfarin.</span>\n"
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Breyta"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:22
-msgid "Reply"
-msgstr "Svara"
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
+msgid "Not Found"
+msgstr "Ekkert fannst"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:23
-msgid "Log in to reply."
-msgstr "Skráðu þig inn til að svara."
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
-msgid "By %1$s on %2$s at %3$s"
-msgstr "Eftir %1$s þann %2$s kl. %3$s"
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Bakvísunin þín bíður eftir að vera yfirfarin.</span>\\n"
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/helpers.php:44
-msgid "There is no excerpt because this is a protected post."
-msgstr "Það er engin tilvitnun því þessi færsla er varin."
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:61
-msgid "Skip navigation to the content"
-msgstr "Sleppa leiðarkerfi að efni"
+#: library/extensions/content-extensions.php:1203
+msgid "Archives by Category"
+msgstr "Söfn eftir efnisflokkum"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:61
-msgid "Skip to content"
-msgstr "Fara beint í efni"
+#: library/extensions/content-extensions.php:1234
+msgid "Archives by Month"
+msgstr "Söfn eftir mánuðum"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:211
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:497
-msgid "Not Found"
-msgstr "Ekkert fannst"
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:489
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:544
-msgid "Edit post"
-msgstr "Breyta færslu"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Finna"
+
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:502
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:597
-msgid "Permalink to "
-msgstr "Fastur hlekkur í "
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:511
-msgid "By "
-msgstr "Eftir "
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:513
-msgid "View all posts by "
-msgstr "Sjá allar færslur eftir "
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:516
-msgid "Published: "
-msgstr "Birt: "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:551
-msgid "This entry was posted in "
-msgstr "Þessi færsla var færð inn undir "
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:554
-msgid "Also posted in "
-msgstr "Einnig fært undir "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:557
-msgid "Posted in "
-msgstr "Fært undir "
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:564
-msgid " and tagged"
-msgstr " og merkt"
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:567
-msgid " Also tagged "
-msgstr " Einnig mekt "
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:569
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Merkt sem"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:578
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:581
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:584
-msgid "Comment on "
-msgstr "Athugasemdir við "
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:579
-msgid " Comments"
-msgstr " athugasemdir"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:582
-msgid " Comment"
-msgstr " athugasemd"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:585
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Skikja eftir svar"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:588
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Lokað er fyrir athugasemdir"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:597
-msgid ". Bookmark the "
-msgstr ". Bókamerkja  "
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:598
-msgid "permalink"
-msgstr "fastur hlekkur"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:600
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:608
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Skrifaðu athugasemd"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:601
-msgid " or leave a trackback: "
-msgstr " eða skildu eftir bakvísun: "
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:602
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:605
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Slóð fyrir bakvísanir við færsluna þína"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:602
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:605
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Slóð fyrir bakvísun"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:604
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " Lokað er fyrir athugasemdir en þú getur skilið eftir bakvísun: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:607
-msgid " Trackbacks are closed, but you can "
-msgstr " Lokað er fyrir bakvísanir en þú getur "
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:608
-msgid "post a comment"
-msgstr "skrifað athugasemd"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/hooks-filters.php:610
-msgid " Both comments and trackbacks are currently closed."
-msgstr " Bæði er lokað fyrir athugasemdir og bakvísanir."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Skrá inn"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
+
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
+
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
+
+#: library/extensions/discussion.php:52
+msgid "Reply"
+msgstr "Svara"
+
+#: library/extensions/discussion.php:53
+msgid "Log in to reply."
+msgstr "Skráðu þig inn til að svara."
+
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
+msgid "By %1$s on %2$s at %3$s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Skrá út"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
+
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
+msgid "Posts RSS feed"
+msgstr "RSS-straumar fyrir færslur"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:13
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
+msgid "Comments RSS feed"
+msgstr "RSS-straumar fyrir athugasemdir"
+
+#: library/extensions/header-extensions.php:667
+msgid "Skip navigation to the content"
+msgstr "Sleppa leiðarkerfi að efni"
+
+#: library/extensions/header-extensions.php:667
+msgid "Skip to content"
+msgstr "Fara beint í efni"
+
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
+msgid "There is no excerpt because this is a protected post."
+msgstr "Það er engin tilvitnun því þessi færsla er varin."
+
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "Staðsetning fyrir innsetningu"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "Íhlutur fyrir efnisyfirlit kemur inn eftir þessa færslu."
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "Síða fyrir upplýsingar um höfund."
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "Sýna vCard-færslu í <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">örsniði</a> með mynd af höfundi, öðrum upplýsingum og tölvupóstfangi á upplýsingasíðu hans."
-
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "Texti í fæti"
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [the-year]"
-msgstr "Þú getur notað eftirfarandi stuttkóða þeim texta sem kemur fram í fætinum: [wp-link] [theme-link] [loginout-link] [blog-title] [the-year]"
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Gengur fyrir [wp-link]. Byggt á [theme-link]."
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings saved."
-msgstr "stillingar vistaðar."
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "settings reset."
-msgstr "núllstilla grunnstillingar."
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:78
-msgid "widgets reset."
-msgstr "núllstilla aukahluti."
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:191
-msgid "Save changes"
-msgstr "Vista breytingar"
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:197
-msgid "Reset"
-msgstr "Núllstilla"
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:203
-msgid "Reset Widgets"
-msgstr "Núllstilla aukahluti"
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/theme-options.php:208
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Fyrir frekari upplýsingar um þessa þemu er hægt að heimsækja <a href=\"http://themeshaper.com\">vefsíðu ThemeShaper</a>. Skoðaðu <a href=\"http://themeshaper.com/forums/\">umræðuborð ThemeShaper</a> ef þú hefur spurningar varðandi Thematic."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/widgets.php:55
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/widgets.php:245
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/widgets.php:246
-msgid "RSS Links"
-msgstr "RSS-hlekkir"
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:34
+msgid "To search, type and hit enter"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
+msgid "Search"
+msgstr "Leita"
+
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
+msgid "The primary widget area, most often used as a sidebar."
+msgstr ""
 
-#: D:\Web\Wordpress\dev\wp-content\themes\thematic/library/extensions/widgets.php:79
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
+msgid "The secondary widget area, most often used as a sidebar."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:102
+msgid "The 1st widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
+msgid "The 2nd widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
+msgid "The 3rd widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
+msgid "The top widget area displayed on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:162
+msgid "The widget area inserted after x posts on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:177
+msgid "The bottom widget area displayed on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
+msgid "The top widget area displayed on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
+msgid "The widget area inserted between the post and the comments on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
+msgid "The bottom widget area displayed on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
+msgid "The top widget area displayed on a page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
+msgid "The bottom widget area displayed on a page."
+msgstr ""
+
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
 msgid "Title:"
 msgstr "Titill:"
 
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
+msgid "Meta"
+msgstr "Meta"
+
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
+msgid "RSS Links"
+msgstr "RSS-hlekkir"
+
+#: library/extensions/widgets.php:157
+msgid "All posts"
+msgstr "Allar færslur"
+
+#: library/extensions/widgets.php:158
+msgid "All comments"
+msgstr "Allar athugasemdir"
+
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Síður:"
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Ekkert fannst"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Því miður var ekki hægt að finna það sem þó óskaðir eftir. Reyndu aftur með öðrum leitarorðum."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
+
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/it_IT.mo b/wp-content/themes/thematic/library/languages/it_IT.mo
index 6af92889749ee749cdd1ac86bad302c22bf4f41b..4a806b325972bb8490f789013610f06c6693e385 100644
Binary files a/wp-content/themes/thematic/library/languages/it_IT.mo and b/wp-content/themes/thematic/library/languages/it_IT.mo differ
diff --git a/wp-content/themes/thematic/library/languages/it_IT.po b/wp-content/themes/thematic/library/languages/it_IT.po
index 4350c5890758510ab3d8206de21fc933a8e86af9..3a4e3e29e33a752c0498d7a89f74ea5373dbf524 100644
--- a/wp-content/themes/thematic/library/languages/it_IT.po
+++ b/wp-content/themes/thematic/library/languages/it_IT.po
@@ -1,529 +1,682 @@
+# Translation of Thematic 1.0.3.x in Italian
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-18 20:58+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Danny <dannydamnboy@gmail.com>\n"
-"Language-Team: \n"
+"PO-Revision-Date: 2013-03-05 17:46:42+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/archives.php:42
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/links.php:53
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:40
-msgid "Edit"
-msgstr "Modifica"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/attachment.php:39
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr "(Senza titolo)"
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr "I trackback sono chiusi, ma puoi %1$sinviare un commento%2$s."
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr "Il template %s"
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Pagine:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/author.php:53
+#: author.php:67
 msgid "Email "
 msgstr "Email"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:10
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr "Non caricare direttamente questa pagina."
+
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Questo articolo è protetto da password. Inserisci la tua password per accedere ai commenti."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> Trackbacks"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>Un</span> Trackback"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Devi esssere <a href=\"%s\" title=\"Autenticazione\">autenticato</a> per commentare."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Autenticato come <a href=\"%1$s\" title=\"Autenticato come %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Esci dal tuo account\">Esci?</a></span>"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr "Trackback"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Il tuo indirizzo Email non verra' <em>mai</em> pubblicato e/o condiviso."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "I campi obbligatori sono contrassegnati con <span class=\"required\">*</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-msgid "Name"
-msgstr "Nome"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "Email"
-msgstr "Email"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:103
-msgid "Website"
-msgstr "Sito Web"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Puoi usare questi <abbr title=\"HyperText Markup Language\">HTML</abbr> tag e attributi:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:38
-msgid "Pages: "
-msgstr "Pagine: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:41
-msgid "Nothing Found"
-msgstr "Nessun Risultato"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:43
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Nessun risultato per i termini ricercati. Prova ancora con termini differenti."
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr "%1$sUn%2$s Trackback"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:48
-msgid "Find"
-msgstr "Trova"
+#: functions.php:194
+msgid "Primary Menu"
+msgstr "Primary Menu"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>Un</span> Commento"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr "%1$sUn%2$s Commento"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> Commenti"
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr "Commenti"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:96
+#: library/extensions/comments-extensions.php:155
 msgid "Post a Comment"
 msgstr "Scrivi un Commento"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:103
-#, php-format
+#: library/extensions/comments-extensions.php:167
 msgid "Post a Reply to %s"
 msgstr "Rispondi a %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:110
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
 msgid "Comment"
-msgstr "Commenta"
+msgstr "Commento"
+
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr "Elimina la risposta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:117
+#: library/extensions/comments-extensions.php:202
 msgid "Post Comment"
 msgstr "Commenta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:147
-msgid "Author Archives: "
-msgstr "Archivio dell' Autore: "
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
+msgid "Name"
+msgstr "Nome"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:153
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr "*"
+
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
+msgid "Email"
+msgstr "Email"
+
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
+msgid "Website"
+msgstr "Sito Web"
+
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr "Il tuo indirizzo email non verrà %1$smai%2$s pubblicato o condiviso."
+
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr "I campi obbligatori sono contrassegnati con %1$s*%2$s"
+
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr "Devi essere %1$sautenticato%2$s per inserire un commento."
+
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr "Log in"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr "Autenticato come %s"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr "Esci da questo account"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr "Esci?"
+
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr "Puoi usare questi tag e attributi %1$sHTML%2$s"
+
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr "Archivio dell'Autore"
+
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Archivo delle Categorie:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:162
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Risultato della ricerca per:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:168
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Archivio delle etichette:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:174
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Archivio Giornaliero: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:178
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Archivio Mensile: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:182
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Archivio Annuale: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:186
-msgid "Blog Archives"
-msgstr "Archivi del Blog"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:209
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:725
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Articoli Precedenti"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:210
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:726
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Articoli successivi <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:394
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:618
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr "Archivio:"
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr "Archivio giornalieri: %s"
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr "Archivio mensile: %s"
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr "Archivio annuale: %s"
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr "Articoli precedenti"
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr "Articoli successivi"
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Modifica articolo"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:406
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Modifica"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Non trovato"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:411
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid "Permalink to "
-msgstr "Link permanente a "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr "Permalink a %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:441
-msgid "By "
-msgstr "Scritto da "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr "Di"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:444
-msgid "View all posts by "
-msgstr "Leggi tutti gli articoli scritti da "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr "Guarda tutti gli articoli di %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:455
-msgid "Published: "
-msgstr "Pubblicato: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr "Pubblicato:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:523
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Archivio per Categorie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:534
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Archivio per Mese"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:562
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Ci dispiace, ma quello che cercavi non è stato trovato. Prova con la ricerca."
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr "Siamo spiacenti, ma non abbiamo trovato ciò che cercavi. Probabilmente ti sarà utile una ricerca."
+
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Trova"
+
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr "Leggi tutto %s"
+
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr "Consulta l'archivio %s."
+
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr "Permalink all'archivio %s"
+
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr "Metti un segnalibro su %1$spermalink%2$s."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:578
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Continua a leggere <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr "Questo inserimento è stato pubblicato in %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:629
-msgid "This entry was posted in "
-msgstr "Questo articolo è stato pubblicato in "
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr "È stato pubblicato anche in %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:632
-msgid "Also posted in "
-msgstr "Pubblicato anche in "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr "Pubblicato in %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:635
-msgid "Posted in "
-msgstr "Pubblicato in "
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr "Questo inserimento ha dei tag"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:646
-msgid " and tagged"
-msgstr " e ha le etichette"
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr "e il tag"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:649
-msgid " Also tagged "
-msgstr " Altre etichette"
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr "Anche il tag"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:651
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Etichette:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:663
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:666
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:669
-msgid "Comment on "
-msgstr "Commenta "
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr "Commento su %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:664
-msgid " Comments"
-msgstr " Commenti"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] "%s Replica"
+msgstr[1] "%s Repliche"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:667
-msgid " Comment"
-msgstr " Commento"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:670
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Scrivi un commento"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:673
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Commenti chiusi"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid ". Bookmark the "
-msgstr ". Aggiungi ai preferiti: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:687
-msgid "permalink"
-msgstr "link permanente"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr "%1$sInserisci un commento%2$s o lascia un trackback:  %3$s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:689
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Scrivi un commento"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:690
-msgid " or leave a trackback: "
-msgstr " o lascia un trackback: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Trackback URL per il tuo articolo"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Trackback URL"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:693
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " I commenti sono chiusi ma puoi lasciare un trackback: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr "I commenti sono chiusi, ma puoi lasciare un trackback: %s"
+
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr "Sia i commenti che i trackback sono chiusi."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:696
-msgid " Trackbacks are closed, but you can "
-msgstr " I trackbacks sono chiusi ma puoi "
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr "Pubblicato il %s alle %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
-msgid "post a comment"
-msgstr "scrivi un commento"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr "Permalink a questo commento"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:699
-msgid " Both comments and trackbacks are currently closed."
-msgstr " I commenti ed i trackbacks sono attualmente chiusi."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr "Permalink"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Pubblicato %1$s alle %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Link Permanente a questo commento\">Link Permanente</a>"
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr "Modifica commento"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Il tuo commento è in attesa di autorizzazione.</span>\n"
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr "Il tuo commento è in attesa di moderazione"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:22
+#: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Rispondi"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:23
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
 msgstr "Per rispondere devi essere autenticato."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "Scritto da %1$s il %2$s alle %3$s"
+msgstr "Di %1$s il %2$s alle %3$s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Il tuo trackback è in attesa di autorizzazione.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr "Il tuo trackback è in attesa di moderazione"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:251
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "Feed RSS Articoli"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:269
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "Feed RSS Commenti"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Salta la navigazione e vai al contenuto"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Vai al contenuto"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
-msgstr "Non esiste un riassunto poiche' questo articolo e' protetto."
+msgstr "Non esiste un riassunto poiché questo articolo è protetto."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Entra"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Esci"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:13
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
-msgstr "Inserisci la posizione della pagina INDEX"
+msgstr "Posizione di inserimento Index"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "La widget INDEX INSERT apparirà dopo il numero di articoli qui indicato."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "Informazioni sull'Autore della Pagina"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "Mostra una <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—con l'avatar dell'auore, la sua biografia e indirizzo email - nella pagina dell'autore."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "Testo del Footer"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "Puoi usare i seguenti shortcodes nel footer: [wp-link] [theme-link] [loginout-link] [blog-title] [the-year]"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Powered by [wp-link]. Realizzato con [theme-link]."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:75
-msgid "settings saved."
-msgstr "impostazioni salvate."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings reset."
-msgstr "impostazioni ripristinate."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "widgets reset."
-msgstr "widget ripristinate."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:190
-msgid "Save changes"
-msgstr "Salva le modifiche"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:196
-msgid "Reset"
-msgstr "Ripristina"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:202
-msgid "Reset Widgets"
-msgstr "Ripristina le Widget"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:207
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Per maggiori informazioni su questo tema, <a href=\"http://themeshaper.com\">visita ThemeShaper</a>. Visita i <a href=\"http://themeshaper.com/forums/\">Forums ThemeShaper</a> se hai domande su Thematic."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:12
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr "Rimuovi le opzioni Legacy"
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr "Opzioni del tema"
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr "Per maggiori informazioni:"
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr "Per assistenza:"
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr "forum"
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr "Le seguenti opzioni sono abilitate dal framework Thematic Theme e/o da un tema figlio."
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr "Creando un tema figlio, posso essere aggiunte nuove opzioni o rimosse quelle di default. Questo aiuto contestuale può essere personalizzato anche in un tema figlio."
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr "Panoramica"
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr "Per maggiori informazioni a proposito di questo tema, %1$svisita ThematicTheme.com%2$s"
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr "Visita il %1$sForum di ThematicTheme.com%2$s se hai qualche domanda da fare su Thematic."
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr "Opzioni del tema %s"
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr "L'area widget Index Insert apparirà dopo l'articolo indicato. Inserendo 0 o lasciando vuoto il campo, questa funzionalità verrà disabilitata."
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr "Mostra una %1$smicroformatted vCard%2$s con l'avatar, la biografia e l'indirizzo email nella pagina dell'autore."
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr "Puoi usare HTML e shortcode nel testo del footer. Esempi di shortcode: %s"
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr "Le opzioni del tema %s sono state aggiornate ad un formato migliore. Rimuovi le vecchie opzioni dal database."
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr "Il valore della posizione di inserimento deve essere maggiore o uguale a zero. È stato ripristinato il valore precedente."
+
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "Per cercare, scrivi e premi invio"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:18
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:281
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:43
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "Cerca"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:43
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr "Primary Aside"
+
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
-msgstr "L' area widget primaria, usata spesso come sidebar."
+msgstr "L'area widget primaria, usata spesso come sidebar."
+
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr "Secondary Aside"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:58
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
-msgstr "L' area widget secondaria, usata spesso come sidebar."
+msgstr "L'area widget secondaria, usata spesso come sidebar."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:73
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr "Prima Subsidiary Aside"
+
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
-msgstr "Prima widget area nel footer."
+msgstr "Prima area widget nel footer."
+
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr "Seconda Subsidiary Aside"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:88
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
-msgstr "Seconda widget area nel footer."
+msgstr "Seconda area widget nel footer."
+
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr "Terza Subsidiary Aside"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:103
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
-msgstr "Terza widget area nel footer."
+msgstr "Terza area widget nel footer."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:118
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr "Index Top"
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr "Area widget superiore usata nella pagina index."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:133
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr "Index Insert"
+
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr "Area widget inserita dopo x articoli nella pagina index."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:148
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr "Index Bottom"
+
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr "Area widget inferiore usata nella pagina index."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:163
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr "Single Top"
+
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr "Area widget superiore usata nella pagina index."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:178
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr "Single Insert"
+
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
 msgstr "Area widget superiore usata nella pagina index."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:193
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr "Single Bottom"
+
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr "Area widget inferiore usata nelle pagine singole."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:208
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr "Intestazione"
+
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr "Area widget superiore usata nelle pagine."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:223
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr "Pié di pagina"
+
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr "Area widget inferiore usata nella pagine pagine."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:283
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:55
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr "Un campo di ricerca per il tuo blog"
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr "Titolo:"
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr "Autenticati/Esci e amministrazione"
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:285
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:286
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:72
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr "Collegamenti al feed dei tuoi articoli e commenti"
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
-msgstr "Links RSS"
+msgstr "Link RSS"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/widgets.php:157
 msgid "All posts"
 msgstr "Tutti gli articoli"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/widgets.php:158
 msgid "All comments"
 msgstr "Tutti i commenti"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:96
-msgid "Title:"
-msgstr "Titolo:"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr "Autenticato come"
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Pagine: "
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Nessun risultato"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Purtroppo, non ci sono contenuti relativi alle parole usate nella ricerca. Prova con parole chiave diverse."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr "Puoi includere un %s in un childtheme"
+
+msgid "Thematic"
+msgstr "Thematic"
+
+msgid "http://thematictheme.com"
+msgstr "http://thematictheme.com"
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr "Fra i più innovativi temi ottimizzati per il SEO, Thematic è un Framework per Temi di WordPress molto estensibile. Comprende 13 aree pronte per widget, menù a discesa, esempi di layout basati su griglie, integrazione con i plugin, shortcode per il footer e molto altro. Perfetto per ogni blog è <strong><em>il</em></strong> punto di partenza per lo sviluppo di temi."
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+
+msgid "http://themeshaper.com/"
+msgstr "http://themeshaper.com/"
+
+msgid "Deprecated Archives Template"
+msgstr "Template Archivio sconsigliato"
+
+msgid "Links Page"
+msgstr "Pagina dei Link"
+
+msgid "Archives Page"
+msgstr "Pagina dell'Archivio"
 
-#~ msgid "definitions created."
-#~ msgstr "definitions create."
-#~ msgid "failed to create directory:"
-#~ msgstr "creazione directory non riuscita:"
-#~ msgid "failed to create the file:"
-#~ msgstr "creazione del file non riuscita:"
-#~ msgid "Create Definitions"
-#~ msgstr "Crea Definitions"
-#~ msgid "Pages"
-#~ msgstr "Pagine"
-#~ msgid "Categories"
-#~ msgstr "Categorie"
-#~ msgid "Archives"
-#~ msgstr "Archivi"
-#~ msgid "RSS Feeds"
-#~ msgstr "Feeds RSS"
-#~ msgid ""
-#~ "Enter the HTML text that will appear in the bottom of your footer. Feel "
-#~ "free to remove or change any links. <strong>Hint:</strong> <a href="
-#~ "\"http://www.w3schools.com/HTML/html_links.asp\" target=\"_blank\">how to "
-#~ "write a link</a>."
-#~ msgstr ""
-#~ "Inserisci il testo HTML che apparira' in fondo al tuo footer. Sei libero "
-#~ "di rimuovere o cambiare qualunque link. <strong>Suggerimento:</strong> <a "
-#~ "href=\"http://www.w3schools.com/HTML/html_links.asp\" target=\"_blank"
-#~ "\">come scrivere un link</a>."
-#~ msgid "Blog Index"
-#~ msgstr "Indice del Blog"
-#~ msgid "Blog Buttons"
-#~ msgstr "Pulsanti del Blog"
-#~ msgid "Page"
-#~ msgstr "Pagine"
-#~ msgid "Site Meta"
-#~ msgstr "Info sul sito"
+msgid "Deprecated Blog Template"
+msgstr "Template Blog sconsigliato"
 
+msgid "Full Width"
+msgstr "Larghezza piena"
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/ja.mo b/wp-content/themes/thematic/library/languages/ja.mo
new file mode 100644
index 0000000000000000000000000000000000000000..d1e00c0b9f86a50a2d0e5d1680d066da445e1a70
Binary files /dev/null and b/wp-content/themes/thematic/library/languages/ja.mo differ
diff --git a/wp-content/themes/thematic/library/languages/ja.po b/wp-content/themes/thematic/library/languages/ja.po
new file mode 100644
index 0000000000000000000000000000000000000000..9c380785f0b714618a631c2fcaffd48c998be616
--- /dev/null
+++ b/wp-content/themes/thematic/library/languages/ja.po
@@ -0,0 +1,681 @@
+# Translation of Thematic 1.0.3.x in Japanese
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2013-03-05 17:46:46+0000\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr "テンプレート %s"
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
+msgid "Pages:"
+msgstr "ページ:"
+
+#: author.php:67
+msgid "Email "
+msgstr "メールアドレス"
+
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr "このページを直接読み込まないでください。"
+
+#: comments.php:33
+msgid "This post is password protected. Enter the password to view any comments."
+msgstr "この投稿はパスワードで保護されています。コメントを閲覧するにはパスワードを入力してください。"
+
+#: comments.php:111
+msgid "Trackbacks"
+msgstr "トラックバック"
+
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr "トラックバック: %1$s1%2$s件"
+
+#: functions.php:194
+msgid "Primary Menu"
+msgstr "プライマリーメニュー"
+
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr "コメント: %1$s1%2$s 件"
+
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr "コメント"
+
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "コメントする"
+
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "%s への返信"
+
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr "コメント"
+
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr "コメントをキャンセル"
+
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "コメント送信"
+
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
+msgid "Name"
+msgstr "名前"
+
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr "*"
+
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
+msgid "Email"
+msgstr "メールアドレス"
+
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
+msgid "Website"
+msgstr "ウェブサイト"
+
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr "あなたのメールは <em>絶対に</em> 公開されたり共有されたりしません。"
+
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr "%1$s*%2$s が付いている欄は必須項目です"
+
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr "コメントを投稿するために%1$sログイン%2$sする必要があります。"
+
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr "ログイン"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr "%sとしてログイン済"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr "このアカウントからログアウトする"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr "ログアウト ?"
+
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr "次の %1$sHTML%2$s タグと属性が使用できます:"
+
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr "投稿者アーカイブ: "
+
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
+msgid "Category Archives:"
+msgstr "カテゴリーアーカイブ:"
+
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
+msgid "Search Results for:"
+msgstr "検索結果:"
+
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
+msgid "Tag Archives:"
+msgstr "タグアーカイブ:"
+
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr "アーカイブ:"
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr "日付別アーカイブ: %s"
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr "月別アーカイブ: %s"
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr "年別アーカイブ: %s"
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr "古い記事へ"
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr "新しい記事へ"
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
+msgid "Edit post"
+msgstr "投稿を編集"
+
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "編集"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
+msgid "Not Found"
+msgstr "見つかりませんでした。"
+
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr "%s へのパーマリンク"
+
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr "投稿者: "
+
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr "%s のすべての投稿を見る"
+
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr "公開日:"
+
+#: library/extensions/content-extensions.php:1203
+msgid "Archives by Category"
+msgstr "カテゴリー別アーカイブ"
+
+#: library/extensions/content-extensions.php:1234
+msgid "Archives by Month"
+msgstr "月別アーカイブ"
+
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr "すみませんが、お探しのもは見つかりませんでした。もしかしたら検索がお役に立つかもしれません。"
+
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "検索"
+
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr " %s をもっと見る "
+
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr "%s アーカイブを閲覧する。"
+
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr "%s アーカイブへのパーマリンク"
+
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr "この%1$sパーマリンク%2$sをブックマークする。"
+
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr "この記事は%sに投稿されました"
+
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr "また、%sのカテゴリーに属しています"
+
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr "カテゴリー: %s"
+
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr "この投稿のタグは"
+
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr "タグ: "
+
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr "タグ:"
+
+#: library/extensions/content-extensions.php:1587
+msgid "Tagged"
+msgstr "タグ: "
+
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr "%s へのコメント"
+
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] "コメント: %s 件"
+
+#: library/extensions/content-extensions.php:1624
+msgid "Leave a comment"
+msgstr "コメント / トラックバック: 0個"
+
+#: library/extensions/content-extensions.php:1627
+msgid "Comments closed"
+msgstr "コメントは受け付けていません。"
+
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr "%1$sコメントを投稿する%2$sか、トラックバックをどうぞ: %3$s"
+
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
+msgid "Post a comment"
+msgstr "コメント"
+
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
+msgid "Trackback URL for your post"
+msgstr "トラックバック用の URL"
+
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
+msgid "Trackback URL"
+msgstr "トラックバック URL"
+
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr "コメントは受け付けていませんが、次の URL へトラックバックを残せます: %s"
+
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr "コメントとトラックバックは現在受け付けていません。"
+
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr "公開日時: %s - %s"
+
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr "このコメントのパーマリンク"
+
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr "パーマリンク"
+
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr "コメント編集"
+
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr "あなたのコメントは管理者の承認待ちです。"
+
+#: library/extensions/discussion.php:52
+msgid "Reply"
+msgstr "返信"
+
+#: library/extensions/discussion.php:53
+msgid "Log in to reply."
+msgstr "返信するにはログインしてください。"
+
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
+msgid "By %1$s on %2$s at %3$s"
+msgstr "投稿者: %1$s 日時: %2$s - %3$s"
+
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr "あなたのトラックバックは管理者の承認待ちです。"
+
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
+msgid "Posts RSS feed"
+msgstr "投稿の RSS フィード"
+
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
+msgid "Comments RSS feed"
+msgstr "コメントの RSS フィード"
+
+#: library/extensions/header-extensions.php:667
+msgid "Skip navigation to the content"
+msgstr "ナビゲーションを飛ばしてコンテンツへ"
+
+#: library/extensions/header-extensions.php:667
+msgid "Skip to content"
+msgstr "コンテンツへ"
+
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
+msgid "There is no excerpt because this is a protected post."
+msgstr "この投稿は保護されているので抜粋文はありません。"
+
+#: library/extensions/theme-options.php:50
+msgid "Index Insert Position"
+msgstr "インデックス挿入位置"
+
+#: library/extensions/theme-options.php:51
+msgid "Info on Author Page"
+msgstr "投稿者ページの情報"
+
+#: library/extensions/theme-options.php:52
+msgid "Text in Footer"
+msgstr "フッターのテキスト"
+
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr "レガシーなオプションを削除"
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr "テーマオプション"
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr "詳細情報:"
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr "サポート:"
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr "フォーラム"
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr "以下のオプションは Thematic テーマフレームワークもしくはその子テーマによって有効化されました。"
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr "子テーマを作成すると新しいオプションの追加やデフォルトのオプションの削除ができます。このヘルプテキストも子テーマでカスタマイズ可能です。"
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr "概要"
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr "このテーマに関する詳細は %1$sThematicTheme.comをご覧ください%2$s。"
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr "Thematic に関してご質問があれば、%1$sThematicTheme.com フォーラム%2$sへお願いします。"
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr "%s テーマオプション"
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr "インデックスに挿入されるウィジェットはこの投稿数の後に表示されます。空欄のままか0を入力するとこの機能は無効になります。"
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr "投稿者のページに %1$smicroformatted vCard%2$sと、投稿者のアバター、略歴、メールアドレスを表示する。"
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr "フッターテキストには HTML やショートコードが利用できます。ショートコード例: %s"
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr "%s 個の テーマオプションが改善されたフォーマットにアップグレードされました。データベースからレガシーなオプションが削除されました。"
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr "このインデックス挿入位置の値は0以上の数字を入力してください。この設定は前の値に戻されました。"
+
+#: library/extensions/widgets-extensions.php:34
+msgid "To search, type and hit enter"
+msgstr "検索語句を入力してください。"
+
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
+msgid "Search"
+msgstr "検索"
+
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr "第1アサイド"
+
+#: library/extensions/widgets-extensions.php:72
+msgid "The primary widget area, most often used as a sidebar."
+msgstr "第一ウィジェットエリア。たいていはサイドバーに使用されます。"
+
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr "第2アサイド"
+
+#: library/extensions/widgets-extensions.php:87
+msgid "The secondary widget area, most often used as a sidebar."
+msgstr "第二ウィジェットエリア。たいていはサイドバーに使用されます。"
+
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr "第1副アサイド"
+
+#: library/extensions/widgets-extensions.php:102
+msgid "The 1st widget area in the footer."
+msgstr "フッターの第一ウィジェットエリア。"
+
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr "第2副アサイド"
+
+#: library/extensions/widgets-extensions.php:117
+msgid "The 2nd widget area in the footer."
+msgstr "フッターの第二ウィジェットエリア。"
+
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr "第3副アサイド"
+
+#: library/extensions/widgets-extensions.php:132
+msgid "The 3rd widget area in the footer."
+msgstr "フッターの第三ウィジェットエリア。"
+
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr "インデックストップ"
+
+#: library/extensions/widgets-extensions.php:147
+msgid "The top widget area displayed on the index page."
+msgstr "インデックスページの一番上にに表示されるウィジェットエリア。"
+
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr "インデック挿入"
+
+#: library/extensions/widgets-extensions.php:162
+msgid "The widget area inserted after x posts on the index page."
+msgstr "インデックスページの n 番目の投稿の下に挿入されるウィジェットエリア。"
+
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr "インデックス下"
+
+#: library/extensions/widgets-extensions.php:177
+msgid "The bottom widget area displayed on the index page."
+msgstr "インデックスページの一番下に表示されるウィジェットエリア。"
+
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr "シングルトップ"
+
+#: library/extensions/widgets-extensions.php:192
+msgid "The top widget area displayed on a single post."
+msgstr "シングル投稿の一番上に表示されるウィジェットエリア。"
+
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr "シングル挿入"
+
+#: library/extensions/widgets-extensions.php:207
+msgid "The widget area inserted between the post and the comments on a single post."
+msgstr "シングル投稿の投稿とコメントの間に挿入されるウィジェットエリア。"
+
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr "シングル下"
+
+#: library/extensions/widgets-extensions.php:222
+msgid "The bottom widget area displayed on a single post."
+msgstr "シングル投稿の一番下に表示されるウィジェットエリア。"
+
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr "固定ページトップ"
+
+#: library/extensions/widgets-extensions.php:237
+msgid "The top widget area displayed on a page."
+msgstr "固定ページの一番上に表示されるウィジェットエリア。"
+
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr "固定ページ下"
+
+#: library/extensions/widgets-extensions.php:252
+msgid "The bottom widget area displayed on a page."
+msgstr "固定ページの一番下に表示されるウィジェットエリア。"
+
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr "サイトの検索フォーム"
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr "タイトル:"
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr "ログイン、ログアウトとサイト管理"
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
+msgid "Meta"
+msgstr "メタ情報"
+
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr "投稿とコメントフィードへのリンク"
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
+msgid "RSS Links"
+msgstr "RSS リンク"
+
+#: library/extensions/widgets.php:157
+msgid "All posts"
+msgstr "すべての投稿"
+
+#: library/extensions/widgets.php:158
+msgid "All comments"
+msgstr "すべてのコメント"
+
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr "ログイン済: "
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "ページ:"
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "リンクが見つかりませんでした。"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "検索語句に該当する投稿/ページは見つかりませんでした。別のキーワードをお試しください。"
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr "子テーマに %s を含めることができます。"
+
+msgid "Thematic"
+msgstr "Thematic"
+
+msgid "http://thematictheme.com"
+msgstr "http://thematictheme.com"
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr "SEO にとても最適化されたテーマ、Thematic は高度な拡張が可能です。13のウィジェットエリア、ドロップダウンメニュー、グリッドベースのレイアウトサンプル、プラグイン統合、フッター用のショートコード、などなどを備えた WordPress のテーマフレームワークです。どんなブログ向けとしても、またテーマ開発の<strong><em>スタート点</em></strong>としても最適です。"
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+
+msgid "http://themeshaper.com/"
+msgstr "http://themeshaper.com/"
+
+msgid "Deprecated Archives Template"
+msgstr "非推奨のアーカイブテンプレート"
+
+msgid "Links Page"
+msgstr "リンクのページ"
+
+msgid "Archives Page"
+msgstr "アーカイブページ"
+
+msgid "Deprecated Blog Template"
+msgstr "非推奨のブログテンプレート"
+
+msgid "Full Width"
+msgstr "全幅テンプレート"
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/lt.mo b/wp-content/themes/thematic/library/languages/lt.mo
index 4deec299e1720781317dac2d5251bf4dc0d82974..e843253a062e06c348250677badfcafd9f810b04 100644
Binary files a/wp-content/themes/thematic/library/languages/lt.mo and b/wp-content/themes/thematic/library/languages/lt.mo differ
diff --git a/wp-content/themes/thematic/library/languages/lt.po b/wp-content/themes/thematic/library/languages/lt.po
index 002eda77e8da22838dc9c033f0406f3b05019535..b251e657ca2327bfd6b12230e9e24ead7f54e7d6 100644
--- a/wp-content/themes/thematic/library/languages/lt.po
+++ b/wp-content/themes/thematic/library/languages/lt.po
@@ -1,25 +1,31 @@
-# Translation of Thematic 1.0.3 in Lithuanian
-# This file is distributed under the same license as the Thematic 1.0.3 package.
+# Translation of Thematic 1.0.3.x in Lithuanian
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2012-06-25 15:46:26+0000\n"
+"PO-Revision-Date: 2013-03-05 17:46:54+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: Thematic 1.0.3\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
 
-#: library/extensions/content-extensions.php:947
-#: library/extensions/content-extensions.php:1461
-#: library/extensions/discussion-extensions.php:36
-#: library/extensions/discussion.php:84 links.php:60 page.php:60
-#: template-page-archives.php:63 template-page-fullwidth.php:61
-msgid "Edit"
-msgstr "Taisyti"
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: attachment.php:62 library/extensions/content-extensions.php:666
-#: library/extensions/content-extensions.php:732
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Puslapiai:"
 
@@ -27,275 +33,334 @@ msgstr "Puslapiai:"
 msgid "Email "
 msgstr "El. paštas"
 
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
+
 #: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Šis įrašas apsaugotas slaptažodžiu. Įveskite slaptažodį, jei norite pamatyti komentarus."
 
 #: comments.php:111
-msgid "<span>One</span> Trackback"
-msgstr "<span>Vienas</span> atsiliepimas"
+msgid "Trackbacks"
+msgstr ""
+
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
+
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: comments.php:142 library/extensions/comments-extensions.php:234
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Jei norite palikti komentarą, turite <a href=\"%s\">prisijungti</a>."
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "Palikti komentarą"
+
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "Atsakyti į „%s“"
 
-#: comments.php:156 library/extensions/comments-extensions.php:235
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Prisijungta kaip <a href=\"%1$s\" title=\"Prisijungta kaip %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Atsijungti\">Norite atsijungti?</a></span>"
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
 
-#: comments.php:164 library/extensions/comments-extensions.php:233
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Jūsų el. pašto adresas <em>niekada</em> nebus viešinamas ar perduotas tretiesiems asmenims."
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: comments.php:164 library/extensions/comments-extensions.php:233
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Būtini laukai pažymėti <span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Skelbti komentarą"
 
-#: comments.php:167 library/extensions/comments-extensions.php:224
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Vardas"
 
-#: comments.php:167 comments.php:172
-#: library/extensions/comments-extensions.php:224
-#: library/extensions/comments-extensions.php:225
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: comments.php:172 library/extensions/comments-extensions.php:225
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "El. paštas"
 
-#: comments.php:177 library/extensions/comments-extensions.php:226
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Svetainė"
 
-#: comments.php:189 library/extensions/comments-extensions.php:236
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Galite naudoti šias <abbr xml:lang=\"en\" title=\"HyperText Markup Language\">HTML</abbr> žymes ir atributus:"
-
-#: page.php:58 template-page-fullwidth.php:59
-msgid "Pages: "
-msgstr "Puslapiai: "
-
-#: search.php:56
-msgid "Nothing Found"
-msgstr "Nieko nerasta"
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: search.php:60
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Deja, nepavyko rasti atitikmenų nurodytiems paieškos kriterijams. Bandykite įvesti kitus reikšminius žodžius."
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1346 search.php:70
-msgid "Find"
-msgstr "Ieškoti"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: library/extensions/comments-extensions.php:120
-msgid "<span>One</span> Comment"
-msgstr "<span>Vienas</span> komentaras"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:154
-msgid "Post a Comment"
-msgstr "Palikti komentarą"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:165
-msgid "Post a Reply to %s"
-msgstr "Atsakyti į „%s“"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:176
-msgid "Comment"
-msgstr "Komentaras"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:187
-msgid "Cancel reply"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr ""
 
-#: library/extensions/comments-extensions.php:198
-msgid "Post Comment"
-msgstr "Skelbti komentarą"
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: library/extensions/content-extensions.php:340
-#: library/extensions/header-extensions.php:84
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Kategorijos archyvas:"
 
-#: library/extensions/content-extensions.php:349
-#: library/extensions/header-extensions.php:80
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Vykdyta paieška:"
 
-#: library/extensions/content-extensions.php:355
-#: library/extensions/header-extensions.php:88
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Žymos archyvas:"
 
-#: library/extensions/content-extensions.php:364
-#: library/extensions/content-extensions.php:373
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
 msgid "Archives:"
 msgstr ""
 
-#: library/extensions/content-extensions.php:379
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Dienos archyvas: <span>%s</span>"
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:383
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Mėnesio archyvas: <span>%s</span>"
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:387
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Metų archyvas: <span>%s</span>"
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:429
-#: library/extensions/content-extensions.php:1728
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Senesni įrašai"
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
 
-#: library/extensions/content-extensions.php:431
-#: library/extensions/content-extensions.php:1729
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Naujesni įrašai <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
 
-#: library/extensions/content-extensions.php:946
-#: library/extensions/content-extensions.php:1460
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Taisyti įrašą"
 
-#: library/extensions/content-extensions.php:975
-#: library/extensions/header-extensions.php:92
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Taisyti"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Nerasta"
 
-#: library/extensions/content-extensions.php:980
-#: library/extensions/content-extensions.php:1413
-#: library/extensions/content-extensions.php:1417
-msgid "Permalink to "
-msgstr "Nuolatinė nuoroda: "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1041
-msgid "By "
-msgstr "Parašė "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1051
-msgid "View all posts by "
-msgstr "Peržiūrėti visus įrašus, kuriuos patalpino "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1079
-msgid "Published: "
-msgstr "Paskelbtas: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1252
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Archyvas pagal kategoriją"
 
-#: library/extensions/content-extensions.php:1280
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Archyvas pagal mėnesį"
 
-#: library/extensions/content-extensions.php:1413
-msgid "Browse the "
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
 msgstr ""
 
-#: library/extensions/content-extensions.php:1413
-msgid " Archive"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Ieškoti"
+
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1414
-msgid " archive"
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
 msgstr ""
 
-#: library/extensions/content-extensions.php:1417
-msgid "Bookmark the "
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1418
-msgid "permalink"
-msgstr "nuolatinė nuoroda"
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
 
-#: library/extensions/content-extensions.php:1572
-msgid "This entry was posted in "
-msgstr "Įrašas paskelbtas kategorijoje "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1580
-msgid "Also posted in "
-msgstr "Taip pat paskelbtas kategorijoje "
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1583
-msgid "Posted in "
-msgstr "Paskelbtas kategorijoje "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1609
-msgid " This entry is tagged"
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1612
-msgid " and tagged"
-msgstr " ir pažymėtas"
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1615
-msgid " Also tagged "
-msgstr " Taip pat pažymėtas "
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Pažymėtas"
 
-#: library/extensions/content-extensions.php:1644
-#: library/extensions/content-extensions.php:1647
-#: library/extensions/content-extensions.php:1650
-msgid "Comment on "
-msgstr "Komentuoti "
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1651
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Palikti komentarą"
 
-#: library/extensions/content-extensions.php:1654
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Komentuoti neleidžiama"
 
-#: library/extensions/content-extensions.php:1678
-#: library/extensions/content-extensions.php:1686
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Palikti komentarą"
 
-#: library/extensions/content-extensions.php:1679
-msgid " or leave a trackback: "
-msgstr " arba atsiliepti: "
-
-#: library/extensions/content-extensions.php:1680
-#: library/extensions/content-extensions.php:1683
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1680
-#: library/extensions/content-extensions.php:1683
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1682
-msgid " Comments are closed, but you can leave a trackback: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1685
-msgid " Trackbacks are closed, but you can "
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
 msgstr ""
 
-#: library/extensions/content-extensions.php:1686
-msgid "post a comment"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1688
-msgid " Both comments and trackbacks are currently closed."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
 msgstr ""
 
-#: library/extensions/discussion-extensions.php:27
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Komentaras paliktas %1$s %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Komentaro nuoroda\">Nuoroda</a>"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: library/extensions/discussion-extensions.php:35
+#: library/extensions/discussion-extensions.php:36
 msgid "Edit comment"
 msgstr ""
 
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
+
 #: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Atsakyti"
@@ -305,28 +370,29 @@ msgid "Log in to reply."
 msgstr "Kad galėtumėte atsakyti, turite prisijungti"
 
 #: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "%2$s %3$s parašė %1$s"
+msgstr ""
 
-#: library/extensions/header-extensions.php:302
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
+
+#: library/extensions/header-extensions.php:319
 #: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "Įrašų RSS"
 
-#: library/extensions/header-extensions.php:326
+#: library/extensions/header-extensions.php:343
 #: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "Komentarų RSS"
 
-#: functions.php:253
-msgid "Primary Menu"
-msgstr ""
-
-#: library/extensions/header-extensions.php:625
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Šokti į turinį, praleidžiant navigaciją"
 
-#: library/extensions/header-extensions.php:625
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Šokti į turinį"
 
@@ -334,14 +400,6 @@ msgstr "Šokti į turinį"
 msgid "There is no excerpt because this is a protected post."
 msgstr "Šis įrašas apsaugotas, todėl jo santrauka nepateikiama."
 
-#: library/extensions/shortcodes.php:40
-msgid "Login"
-msgstr "Prisijungti"
-
-#: library/extensions/shortcodes.php:42
-msgid "Logout"
-msgstr "Atsijungti"
-
 #: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr ""
@@ -354,6 +412,76 @@ msgstr ""
 msgid "Text in Footer"
 msgstr "Tekstas poraštėje"
 
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "Įveskite norimą rasti frazę"
@@ -363,54 +491,106 @@ msgstr "Įveskite norimą rasti frazę"
 msgid "Search"
 msgstr "Ieškoti"
 
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr ""
@@ -448,114 +628,56 @@ msgstr "Visi įrašai"
 msgid "All comments"
 msgstr "Visi komentarai"
 
-#: archives.php:20 template-page-blog.php:22
-msgid "The template %s"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
 msgstr ""
 
-#: comments.php:24
-msgid "Please do not load this page directly."
-msgstr ""
-
-#: comments.php:111
-msgid "Trackbacks"
-msgstr ""
-
-#: library/extensions/comments-extensions.php:131
-msgid "Comments"
-msgstr ""
-
-#: library/extensions/content-extensions.php:334
-msgid "Author Archives:"
-msgstr ""
-
-#: library/extensions/content-extensions.php:1340
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
-msgstr ""
-
-#: library/extensions/content-extensions.php:1364
-msgid "Read More %s"
-msgstr ""
-
-#: library/extensions/content-extensions.php:1645
-msgid "Responses"
-msgstr ""
-
-#: library/extensions/content-extensions.php:1648
-msgid "Response"
-msgstr ""
-
-#: library/extensions/discussion.php:37
-msgid "Your comment is awaiting moderation"
-msgstr ""
-
-#: library/extensions/discussion.php:90
-msgid "Your trackback is awaiting moderation"
-msgstr ""
-
-#: library/extensions/theme-options.php:56
-msgid "Remove Legacy Options"
-msgstr ""
-
-#: library/extensions/theme-options.php:204
-msgid "For more information:"
-msgstr ""
-
-#: library/extensions/theme-options.php:206
-msgid "For support:"
-msgstr ""
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
 
-#: library/extensions/theme-options.php:208
-msgid "forums"
-msgstr ""
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Puslapiai: "
 
-#: library/extensions/theme-options.php:212
-msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
-msgstr ""
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Nieko nerasta"
 
-#: library/extensions/theme-options.php:213
-msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
-msgstr ""
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Deja, nepavyko rasti atitikmenų nurodytiems paieškos kriterijams. Bandykite įvesti kitus reikšminius žodžius."
 
-#: library/extensions/theme-options.php:219
-msgid "Overview"
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
 msgstr ""
 
-#: library/extensions/theme-options.php:247
-msgid "For more information about this theme, <a href=\"http://thematictheme.com\">visit ThemeTheme.com</a>. Please visit the <a href=\"http://thematictheme.com/forums/\">ThematicTheme.com Forums</a> if you have any questions about Thematic."
+msgid "Thematic"
 msgstr ""
 
-#: library/extensions/theme-options.php:262
-msgid "%s Theme Options"
+msgid "http://thematictheme.com"
 msgstr ""
 
-#: library/extensions/theme-options.php:276
-msgid "Save Changes"
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
 msgstr ""
 
-#: library/extensions/theme-options.php:311
-msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
 msgstr ""
 
-#: library/extensions/theme-options.php:324
-msgid "Display a"
+msgid "http://themeshaper.com/"
 msgstr ""
 
-#: library/extensions/theme-options.php:324
-msgid "with the author's avatar, bio and email on the author page."
+msgid "Deprecated Archives Template"
 msgstr ""
 
-#: library/extensions/theme-options.php:337
-msgid "You can use HTML and shortcodes in your footer text. Shortcode examples"
+msgid "Links Page"
 msgstr ""
 
-#: library/extensions/theme-options.php:350
-msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgid "Archives Page"
 msgstr ""
 
-#: library/extensions/theme-options.php:377
-msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgid "Deprecated Blog Template"
 msgstr ""
 
-#: template-page-blog.php:22
-msgid "You can include a %s in a childtheme"
+msgid "Full Width"
 msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/nb_NO.mo b/wp-content/themes/thematic/library/languages/nb_NO.mo
index 1c0afbe05ddfc7a4c179c189ca83190e7ec931b5..3a94547ab70eea2df88899da33a71b90c7d04ed0 100644
Binary files a/wp-content/themes/thematic/library/languages/nb_NO.mo and b/wp-content/themes/thematic/library/languages/nb_NO.mo differ
diff --git a/wp-content/themes/thematic/library/languages/nb_NO.po b/wp-content/themes/thematic/library/languages/nb_NO.po
index d6fe1111b5b2813d8f068f2c8557b7e953e822cb..1dcd9b63ef09a6ebabc7c15608813484d2c4ec54 100644
--- a/wp-content/themes/thematic/library/languages/nb_NO.po
+++ b/wp-content/themes/thematic/library/languages/nb_NO.po
@@ -1,509 +1,682 @@
+# Translation of Thematic 1.0.3.x in Norwegian (Bokmål)
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic Norwegian\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-18 20:58+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Peter Holme <peter@holme.se>\n"
-"Language-Team: http://code.google.com/p/no-wp/\n"
+"PO-Revision-Date: 2013-03-05 17:46:49+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Norwegian Bokmal\n"
-"X-Poedit-Country: NORWAY\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-Basepath: nb_NO.po\n"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/archives.php:42
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/links.php:53
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:40
-msgid "Edit"
-msgstr "Rediger"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/attachment.php:39
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Sider:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/author.php:53
+#: author.php:67
 msgid "Email "
 msgstr "Send e-post til "
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:10
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
+
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Denne artikkelen er passordbeskyttet. Skriv inn passordet for å se kommentarer."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> tilbakesporinger"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
+
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
+
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>&Eacute;n</span> tilbakesporing"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Du m&aring; v&aelig;re <a href=\"%s\" title=\"Logg inn\">innlogget</a> for &aring; skrive en kommentar."
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Innlogget som <a href=\"%1$s\" title=\"Innlogget som %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Logg ut av denne kontoen\">Logge ut?</a></span>"
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "Skriv en kommentar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Din e-postadresse deles eller publiseres <em>aldri</em>."
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "Skriv et svar til %s"
+
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Obligatoriske felt er merket med <span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Legg igjen en kommentar"
+
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Navn"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "E-post"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:103
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Nettsted"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Du kan bruke følgende <abbr title=\"HyperText Markup Language\">HTML</abbr>-tagger og attributter:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:38
-msgid "Pages: "
-msgstr "Sider: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:41
-msgid "Nothing Found"
-msgstr "Ingen treff"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:43
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Beklager, ingenting matchar ditt s&oslash;kekriterie. Fors&oslash;k med en annen s&oslash;kestreng."
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:48
-msgid "Find"
-msgstr "Søk"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>&Eacute;n</span> kommentar"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> kommentarer"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:96
-msgid "Post a Comment"
-msgstr "Skriv en kommentar"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:103
-#, php-format
-msgid "Post a Reply to %s"
-msgstr "Skriv et svar til %s"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:110
-msgid "Comment"
-msgstr "Kommentar"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:117
-msgid "Post Comment"
-msgstr "Legg igjen en kommentar"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:147
-msgid "Author Archives: "
-msgstr "Forfattararkiv: "
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:153
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Kategori-arkiv:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:162
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "S&oslash;keresultater for:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:168
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Stikkord-arkiv:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:174
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Arkiv (etter dag): <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:178
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Arkiv (etter måned): <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:182
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Arkiv (etter &aring;r): <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:186
-msgid "Blog Archives"
-msgstr "Bloggarkiv"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:209
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:725
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Eldre artikler"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:210
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:726
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Nyere artikler <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:394
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:618
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Rediger artikkel"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:406
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Rediger"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Ikke funnet"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:411
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid "Permalink to "
-msgstr "Permanent lenke til "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:441
-msgid "By "
-msgstr "Av "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:444
-msgid "View all posts by "
-msgstr "Se alle artikler av "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:455
-msgid "Published: "
-msgstr "Publisert: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:523
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Arkiv etter kategori"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:534
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Arkiv per m&aring;ned"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:562
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Beklager, men vi kunne ikke finne det du leter etter. Pr&oslash;v &aring; s&oslash;ke."
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:578
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Les mer <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Søk"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:629
-msgid "This entry was posted in "
-msgstr "Denne artikkelen er kategorisert under "
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:632
-msgid "Also posted in "
-msgstr "Også kategorisert under "
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:635
-msgid "Posted in "
-msgstr "Kategorisert under "
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:646
-msgid " and tagged"
-msgstr " og merket"
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:649
-msgid " Also tagged "
-msgstr " Ogs&aring; merket "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:651
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Merket"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:663
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:666
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:669
-msgid "Comment on "
-msgstr "Kommenter "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:664
-msgid " Comments"
-msgstr " Kommentarer"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:667
-msgid " Comment"
-msgstr " Kommentar"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:670
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Legg igjen en kommentar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:673
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Stengt for kommentarer"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid ". Bookmark the "
-msgstr ". Bokmerk "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:687
-msgid "permalink"
-msgstr "permanent lenke"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:689
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Skriv en kommentar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:690
-msgid " or leave a trackback: "
-msgstr " eller legg igjen en tilbakesporing: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Tilbakesporings-URL for din artikkel"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Tilbakesporings-URL"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:693
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr "Stengt for kommentarer, men du kan sende en tilbakesporing: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:696
-msgid " Trackbacks are closed, but you can "
-msgstr " Stengt for tilbakesporinger, men du kan "
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
-msgid "post a comment"
-msgstr "legge igjen en kommentar"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:699
-msgid " Both comments and trackbacks are currently closed."
-msgstr " Stengt for kommentarer og tilbakesporinger."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Skrevet %1$s klokka %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permanent lenke til denne kommentaren\">Permalenke</a>"
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Din kommentar venter på å bli godkjent.</span>\n"
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:22
+#: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Svar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:23
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
 msgstr "Logg inn for &aring; svare."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "Av %1$s, skrevet %2$s kl %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Din tilbakesporing venter på å bli godkjent.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:251
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "RSS-str&oslash;m (artikler)"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:269
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "RSS-str&oslash;m (kommentarer)"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Hopp over navigasjonen og g&aring; direkte til innholdet"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Gå direkte til innholdet"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
 msgstr "Det fins ikke noe utdrag, siden dette er en beskyttet artikkel."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Logg inn"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Logg ut"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:13
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "Index Insert-posisjon"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "Den widgetbaserte Index Insert kommer til &aring; komme etter dette antallet innlegg."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "Informasjon på forfattersiden"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "Vis et <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">mikroformatert vCard</a> — med forfattarens avatar, biografi og e-post — p&aring; forfattersiden."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "Tekst i bunnområde"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "Du kan bruke f&oslash;lgende kortkoder i bunnteksten: [wp-link] [theme-link] [loginout-link] [blog-title] [the-year]"
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Drives av [wp-link]. Bygget p&aring; [theme-link]."
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:75
-msgid "settings saved."
-msgstr "instillinger lagret."
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings reset."
-msgstr "instillinger tilbakestilt."
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "widgets reset."
-msgstr "widgets tilbakestilt."
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:190
-msgid "Save changes"
-msgstr "Lagre endringer"
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:196
-msgid "Reset"
-msgstr "Tilbakestill"
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:202
-msgid "Reset Widgets"
-msgstr "Tilbakestill widgeter"
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:207
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "For mer informasjon om dette temaet, <a href=\"http://themeshaper.com\">bes&oslash;k ThemeShaper</a>. Vennligst bes&oslash;k <a href=\"http://themeshaper.com/forums/\">ThemeShaper-forumet</a> om du har sp&oslash;rsm&aring;l om Thematic."
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:12
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "For å søke, skriv og trykk enter"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:18
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:281
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:43
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "S&oslash;k"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:43
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
 msgstr "Primært widgetområde, oftest brukt som sidekolonne."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:58
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
 msgstr "Sekundært widgetområde, oftest brukt som sidekolonne."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:73
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
 msgstr "Første widgetområdet i bunnområdet."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:88
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
 msgstr "Andre widgetområdet i bunnområdet."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:103
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
 msgstr "Tredje widgetområdet i bunnområdet."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:118
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr "Øvre widgetområde på forsiden."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:133
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr "Widgetområde etter x innlegg på forsiden."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:148
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr "Nedre widgetområde på forsiden."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:163
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr "Øvre widgetområde på innleggssider."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:178
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
 msgstr "Widgetområde mellom innlegg og kommentarer på innleggssider."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:193
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr "Nedre widgetområde på innleggssider."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:208
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr "Øvre widgetområde på sider."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:223
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr "Nedre widgetområde på sider."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:283
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:55
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr "Tittel:"
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:285
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:286
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:72
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
 msgstr "RSS-lenker"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/widgets.php:157
 msgid "All posts"
 msgstr "Alle artikler"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/widgets.php:158
 msgid "All comments"
 msgstr "Alle kommentarer"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:96
-msgid "Title:"
-msgstr "Tittel:"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
 
-#~ msgid "Pages"
-#~ msgstr "Sider"
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
 
-#~ msgid "Categories"
-#~ msgstr "Kategorier"
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Sider: "
 
-#~ msgid "Archives"
-#~ msgstr "Arkiv"
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Ingen treff"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Beklager, ingenting matchar ditt s&oslash;kekriterie. Fors&oslash;k med en annen s&oslash;kestreng."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
-#~ msgid "RSS Feeds"
-#~ msgstr "RSS-str&oslash;mmer"
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/nl_NL.mo b/wp-content/themes/thematic/library/languages/nl_NL.mo
index 9e932aada2b7fde5e4541b3fcdc49e666f8240fc..2531a63446508968fbe455362d65c6346565ba2f 100644
Binary files a/wp-content/themes/thematic/library/languages/nl_NL.mo and b/wp-content/themes/thematic/library/languages/nl_NL.mo differ
diff --git a/wp-content/themes/thematic/library/languages/nl_NL.po b/wp-content/themes/thematic/library/languages/nl_NL.po
index dce3f7c4f3cbc755ab8cc1a5204ad3f9f2153686..7ffe9214a5ce1f3cfadca155d40169b66154b65c 100644
--- a/wp-content/themes/thematic/library/languages/nl_NL.po
+++ b/wp-content/themes/thematic/library/languages/nl_NL.po
@@ -1,503 +1,682 @@
+# Translation of Thematic 1.0.3.x in Dutch
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-18 20:58+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Fili Wiese <fili@fili.nl>\n"
-"Language-Team: \n"
+"PO-Revision-Date: 2013-03-05 17:46:43+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/archives.php:42
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/links.php:53
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:40
-msgid "Edit"
-msgstr "Bewerk"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/attachment.php:39
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr "(Geen Titel)"
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr "Trackbacks zijn gesloten, maar u kunt een %1$sreactie achterlaten%2$s."
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr "Het %s sjabloon"
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Pagina's:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/author.php:53
+#: author.php:67
 msgid "Email "
 msgstr "E-mail"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:10
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr "Gelieve deze pagina niet direct te laden."
+
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Dit bericht is beveiligd met een wachtwoord. Voer het wachtwoord in om het bericht te bekijken."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> Trackbacks"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>Één</span> Trackback"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "U dient <a href=\"%s\" title=\"ingelogd\">ingelogd</a> te zijn om een reactie te plaatsen."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Ingelogd als <a href=\"%1$s\" title=\"Ingelogd als %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Uitloggen\">Uitloggen?</a></span>"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr "Trackbacks"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Uw e-mailadres zal <em>nooit</em> gepubliceerd of gedeeld worden."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Verplichte velden zijn gemarkeerd met <span class=\"required\">*</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-msgid "Name"
-msgstr "Naam"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "Email"
-msgstr "E-mail"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:103
-msgid "Website"
-msgstr "Website"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "U kunt de volgende <abbr title=\"HyperText Markup Language\">HTML</abbr> tags en attributen gebruiken:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:38
-msgid "Pages: "
-msgstr "Pagina's:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:41
-msgid "Nothing Found"
-msgstr "Niks gevonden"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:43
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Sorry, we hebben niets gevonden wat aan uw zoekcriteria voldoet. Probeer het opnieuw met andere zoekwoorden."
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr "%1$sÉén%2$s Trackback"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:48
-msgid "Find"
-msgstr "Zoeken"
+#: functions.php:194
+msgid "Primary Menu"
+msgstr "Hoofdmenu "
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>Één</span> Reactie"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr "%1$sÉén%2$s Reactie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> Reacties"
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr "Reacties"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:96
+#: library/extensions/comments-extensions.php:155
 msgid "Post a Comment"
 msgstr "Plaats een reactie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:103
-#, php-format
+#: library/extensions/comments-extensions.php:167
 msgid "Post a Reply to %s"
-msgstr "Plaats een reactie aan %s"
+msgstr "Plaats een reactie op %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:110
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
 msgid "Comment"
-msgstr "Reactie"
+msgstr "Reageer"
+
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr "Annuleer reactie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:117
+#: library/extensions/comments-extensions.php:202
 msgid "Post Comment"
 msgstr "Plaats Reactie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:147
-msgid "Author Archives: "
-msgstr "Auteur Archief:"
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
+msgid "Name"
+msgstr "Naam"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:153
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr "*"
+
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
+msgid "Email"
+msgstr "E-mail"
+
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
+msgid "Website"
+msgstr "Website"
+
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr "Uw e-mail wordt %1$snooit%2$s gepubliceerd noch gedeeld."
+
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr "Verplichte velden zijn gemarkeerd met een  %1$s*%2$s"
+
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr "U moet %1$singelogged%2$s zijn om een reactie achter te laten."
+
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr "Inloggen"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr "Ingelogd als %s"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr "Uitloggen van dit account."
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr "Uitloggen?"
+
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr "U mag deze %1$sHTML%2$s-elementen en attributen gebruiken"
+
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr "Auteur Archieven:"
+
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Categorie Archief:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:162
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Zoekresultaten voor:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:168
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Tag Archief:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:174
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Dagelijks Archief: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:178
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Maandelijks Archief: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:182
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Jaarlijks Archief: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:186
-msgid "Blog Archives"
-msgstr "Blog Archief"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:209
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:725
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Oudere artikelen"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:210
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:726
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Nieuwere artikelen <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:394
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:618
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr "Archieven:"
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr "Archief per dag: %s"
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr "Archief per maand: %s"
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr "Archief per jaar: %s"
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr "Oudere artikelen"
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr "Nieuwere artikelen"
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Bewerk artikel"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:406
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Bewerk"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Niet gevonden"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:411
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid "Permalink to "
-msgstr "Permalink naar"
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr "Permalink naar %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:441
-msgid "By "
+#: library/extensions/content-extensions.php:987
+msgid "By"
 msgstr "Door"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:444
-msgid "View all posts by "
-msgstr "Bekijk alle artikelen van"
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr "Bekijk alle artikelen van %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:455
-msgid "Published: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
 msgstr "Gepubliceerd:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:523
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Archief per Categorie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:534
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Archief per Maand"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:562
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Helaas we konden niet vinden wat je zocht. Wellicht dat de zoekfunctie kan helpen."
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr "Helaas, we konden niet vinden wat je zocht. Wellicht dat de zoekfunctie kan helpen."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:578
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Lees verder <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Zoeken"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:629
-msgid "This entry was posted in "
-msgstr "Dit bericht was geplaatst in"
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr "Lees verder %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:632
-msgid "Also posted in "
-msgstr "Ook geplaatst in"
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr "Bekijk het %s archief."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:635
-msgid "Posted in "
-msgstr "Geplaatst in"
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr "Permalink naar het %s Archief"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:646
-#, fuzzy
-msgid " and tagged"
-msgstr " en getagged"
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr "Bookmark de  %1$spermalink%2$s."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:649
-#, fuzzy
-msgid " Also tagged "
-msgstr "Ook getagged"
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr "Dit bericht is geplaatst in %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:651
-#, fuzzy
-msgid "Tagged"
-msgstr "Getagged"
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr "Ook geplaatst in %s"
+
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr "Geplaatst in %s"
+
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr "Dit bericht is getagd met"
+
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr "en getagd"
+
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr "Ook getagd met"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:663
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:666
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:669
-msgid "Comment on "
-msgstr "Reageer op"
+#: library/extensions/content-extensions.php:1587
+msgid "Tagged"
+msgstr "Getagd met"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:664
-msgid " Comments"
-msgstr " Reacties"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr "Reageer op %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:667
-msgid " Comment"
-msgstr " Reactie"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] "%s Reactie"
+msgstr[1] "%s Reacties"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:670
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Plaats een reactie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:673
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Reacties gesloten"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-#, fuzzy
-msgid ". Bookmark the "
-msgstr ". Bookmark de"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:687
-msgid "permalink"
-msgstr "permalink"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr "%1$sPlaats een reactie%2$s of laat een trackback achter: %3$s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:689
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Plaats een reactie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:690
-msgid " or leave a trackback: "
-msgstr " of laat een trackback achter:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
-#, fuzzy
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
-msgstr "Trackback URL voor het artikel"
+msgstr "Trackback URL voor uw post:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Trackback URL"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:693
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " Reacties zijn gesloten, u kunt wel een trackback achterlaten:"
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr "Reacties zijn gesloten, maar u kunt een trackback achterlaten: %s"
+
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr "Reacties en trackbacks zijn beide momenteel gesloten."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:696
-#, fuzzy
-msgid " Trackbacks are closed, but you can "
-msgstr " Trackbacks zijn gesloten, u kunt wel"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr "Geplaatst op %s om %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
-msgid "post a comment"
-msgstr "plaats een reactie"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr "Permalink naar deze reactie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:699
-msgid " Both comments and trackbacks are currently closed."
-msgstr " Zowel reacties als trackbacks zijn gesloten."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr "Permalink"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Geplaatst op %1$s om %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink naar deze reactie\">Permalink</a>"
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr "Bewerk reactie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Uw reactie wacht op moderatie.</span>\n"
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr "Uw reactie is in afwachting van moderatie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:22
+#: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Reageer"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:23
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
 msgstr "Log in om te reageren."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
 msgstr "Door %1$s op %2$s om %3$s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Uw trackback wacht op moderatie.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr "Uw trackback is in afwachting van moderatie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:251
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
-msgstr "Plaats een RSS feed"
+msgstr "RSS feed van artikelen"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:269
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
-msgstr "Reacties RSS Feed"
+msgstr "RSS Feed van reacties"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
-#, fuzzy
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
-msgstr "Sla de navigatie over en ga naar de inhoud"
+msgstr "Sla navigatie over en ga meteen naar de inhoud"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Ga naar de inhoud"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
 msgstr "Bij een beschermd artikel kan er geen fragment getoond worden."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Log in"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Uitloggen"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:13
-#, fuzzy
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
-msgstr "Index invoeg positie"
+msgstr "Index Invoeg Positie"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:14
-#, fuzzy
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "De widget index-zone zal worden invoegd na dit aantal berichten"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "Info op de Auteur's Pagina"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "Toon een <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformaat vCard</a>—met de avatar, bio en e-mail van de auteur—op de auteur's pagina."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "Tekst in de footer"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "U kunt de volgende variabelen in de footer tekst gebruiken: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Powered by [wp-link]. Built on the [theme-link]."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:75
-msgid "settings saved."
-msgstr "instellingen opgeslagen."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings reset."
-msgstr "instellingen reset."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "widgets reset."
-msgstr "widget reset."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:190
-msgid "Save changes"
-msgstr "Opslaan"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:196
-msgid "Reset"
-msgstr "Instellingen Resetten"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:202
-msgid "Reset Widgets"
-msgstr "Widgets Resetten"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:207
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Bezoek <a href=\"http://themeshaper.com\">ThemeShaper</a> voor meer informatie over dit thema. Voor vragen over Thematic kunt u terecht op het <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forum</a>."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:12
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr "Verwijder Verouderde Opties"
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr "Thema Opties"
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr "Voor meer informatie:"
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr "Voor ondersteuning:"
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr "forums"
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr "De onderstaande opties zijn geactiveerd door het Thematic Theme Framework en/of een 'child theme'  "
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr "Nieuwe opties kunnen worden toegevoegd en de standaard opties verwijderd door het maken van een 'child theme'. Ook deze contextuele helptekst kan worden gepersonaliseerd door een 'child theme', "
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr "Overzicht"
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr "Voor meer informatie over dit thema, %1$sbezoek ThematicTheme.com%2$s"
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr "Bezoek de %1$sThematicTheme.com Forums%2$s als je een vraag hebt over Thematic."
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr "%s Thema Opties"
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr "Het Index Insert widget verschijnt na x berichten. Dit veld leeglaten of een nul invullen schakelt deze functie uit."
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr "Laat een %1$smicrogeformatteerde  vCard%2$s  met de auteurs zijn avatar, biografie en E-mail op de auteur pagina zien."
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr "Je kunt HTML en ' shortcodes' in je footer tekst gebruiken. Shortcode voorbeelden: %s"
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr "%s Thema Opties zijn geüpgraded naar een verbeterd formaat. Verwijder de verouderde opties uit de database."
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr "In dit veld moet een getal worden ingevuld van 0 of groter. De instelling is automatisch teruggezet naar zijn vorige waarde."
+
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
-msgstr "Voer zoektermen in en druk op enter"
+msgstr "Voer zoekterm in en druk op enter"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:18
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:281
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:43
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "Zoeken"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:43
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr "Eerste Aside"
+
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
-msgstr "Primaire widget zone, meest gebruikt als zijbalk."
+msgstr "Primaire widget, meestal gebruikt als zijbalk."
+
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr "Secundaire Aside"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:58
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
-msgstr "Secundaire widget zone, meest gebruikt als zijbalk."
+msgstr "Secundaire widget, meestal gebruikt als zijbalk."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:73
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr "1e Subsidiaire Aside"
+
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
-msgstr "Eerste widget zone in de footer"
+msgstr "Eerste widget in de footer"
+
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr "2e Subsidiaire Aside"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:88
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
-msgstr "Tweede widget zone in de footer"
+msgstr "Tweede widget in de footer"
+
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr "3e Subsidiaire Aside"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:103
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
-msgstr "Derde widget zone in de footer"
+msgstr "Derde widget in de footer"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:118
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr "Index Bovenkant"
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
-msgstr "Widget zone zichtbaar bovenin de index pagina."
+msgstr "Bovenste widget zichtbaar op de index pagina."
+
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr "Index Invoeging"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:133
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
-msgstr "Widget zone zichtbaar na x artikelen op de index pagina."
+msgstr "Widget zichtbaar na x artikelen op de index pagina."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:148
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr "Index Onderkant"
+
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
-msgstr "Widget zone zichtbaar onderaan de index pagina."
+msgstr "Onderste widget zichtbaar op de index pagina."
+
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr "Enkel Bovenkant"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:163
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
-msgstr "Widget zone zichtbaar boven een artikel."
+msgstr "Bovenste widget zichtbaar boven een volledig artikel."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:178
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr "Enkel Invoeging"
+
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
-msgstr "Widget zone tussen een artikel en de reacties."
+msgstr "Widget tussen een artikel en de reacties bij een volledig artikel"
+
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr "Enkel Onder"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:193
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
-msgstr "Widget zone zichtbaar onder een artikel."
+msgstr "Widget zichtbaar onder een volledig artikel."
+
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr "Pagina Bovenkant"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:208
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
-msgstr "Widget zone zichtbaar boven een pagina."
+msgstr "Bovenste widget zichtbaar op een pagina."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:223
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr "Pagina Onderkant"
+
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
-msgstr "Widget zone zichtbaar onder een pagina."
+msgstr "Onderste widget zichtbaar op een pagina."
+
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr "Een zoekformulier voor uw blog."
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr "Titel:"
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr "Inloggen/uitloggen en dashboard"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:283
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:55
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:285
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:286
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:72
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr "Verwijzingen naar uw berichten en reacties feed"
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
 msgstr "RSS Links"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/widgets.php:157
 msgid "All posts"
 msgstr "Alle artikelen"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/widgets.php:158
 msgid "All comments"
 msgstr "Alle reacties"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:96
-msgid "Title:"
-msgstr "Titel:"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr "Ingelogd als"
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Pagina's:"
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Niets gevonden"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Helaas, we hebben niets gevonden wat aan uw zoekcriteria voldoet. Probeer het opnieuw met andere zoekwoorden."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr "U kan een %s aan een 'childtheme' toevoegen"
+
+msgid "Thematic"
+msgstr "Thematic"
+
+msgid "http://thematictheme.com"
+msgstr "http://thematictheme.com"
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr "Het meest ultieme SEO-voorbereide template, Thematic is een hoogst flexibel Wordpress Theme Framework voorzien van ondermeer 13 widget gebieden, drop-down menus, grid gebaseerde layout voorbeelden, plugin integratie, 'shortcodes' voor uw footer, &amp; en nog veel meer! Perfect voor uw blog en <strong><em>het</em></strong> startpunt voor het ontwikkelen van een template."
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+
+msgid "http://themeshaper.com/"
+msgstr "http://themeshaper.com/"
+
+msgid "Deprecated Archives Template"
+msgstr "Verouderd Archief Sjabloon "
+
+msgid "Links Page"
+msgstr "Links Pagina"
+
+msgid "Archives Page"
+msgstr "Archieven Pagina"
+
+msgid "Deprecated Blog Template"
+msgstr "Verouderd Blog Template"
 
+msgid "Full Width"
+msgstr "Volledige Breedte "
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/pl_PL.mo b/wp-content/themes/thematic/library/languages/pl_PL.mo
index b1c666c6c1738f08430306bfd0e7950c8f955e05..680741a263abcaf687495d416b55d6e64f8dd66d 100644
Binary files a/wp-content/themes/thematic/library/languages/pl_PL.mo and b/wp-content/themes/thematic/library/languages/pl_PL.mo differ
diff --git a/wp-content/themes/thematic/library/languages/pl_PL.po b/wp-content/themes/thematic/library/languages/pl_PL.po
index c0954a083376a405ab7fcb22029ac21aca846a68..605018ec868926a43d3b1aba882cdb6ae4524a75 100644
--- a/wp-content/themes/thematic/library/languages/pl_PL.po
+++ b/wp-content/themes/thematic/library/languages/pl_PL.po
@@ -1,568 +1,683 @@
+# Translation of Thematic 1.0.3.x in Polish
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: pol\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-27 15:18+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Mariusz Jamro <mariusz.jamro@gmail.com>\n"
-"Language-Team:  <mariusz.jamro@gmail.com>\n"
+"PO-Revision-Date: 2013-03-05 17:46:43+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-
-#: c:\users\Chris\Desktop\thematic/archives.php:52
-#: c:\users\Chris\Desktop\thematic/links.php:64
-#: c:\users\Chris\Desktop\thematic/page.php:50
-msgid "Edit"
-msgstr "Edytuj"
-
-#: c:\users\Chris\Desktop\thematic/attachment.php:49
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr "(Bez tytułu)"
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr "Trackbacki są wyłączone, ale możesz %1$snapisać komentarz%2$s."
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr "Motyw %s"
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Strony:"
 
-#: c:\users\Chris\Desktop\thematic/author.php:61
+#: author.php:67
 msgid "Email "
 msgstr "Email "
 
-#: c:\users\Chris\Desktop\thematic/comments.php:10
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr "Nie ładuj tej strony bezpośrednio."
+
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Ten wpis jest chroniony hasłem. Proszę podaj hasło aby przeglądać komentarze."
 
-#: c:\users\Chris\Desktop\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> Trackback'i"
-
-#: c:\users\Chris\Desktop\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>Jeden</span> Trackback"
-
-#: c:\users\Chris\Desktop\thematic/comments.php:74
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Musisz być <a href=\"%s\" title=\"Log in\">zalogowany</a> aby dodać komentarz."
-
-#: c:\users\Chris\Desktop\thematic/comments.php:85
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Zalogowany jako <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Wyloguj się.\">Wylogować?</a></span>"
-
-#: c:\users\Chris\Desktop\thematic/comments.php:92
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Twój adres email <em>nie zostanie</em> opublikowany i nie będzie rozpowszechniany."
-
-#: c:\users\Chris\Desktop\thematic/comments.php:92
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Wymagane pola są oznaczone <span class=\"required\">*</span>"
-
-#: c:\users\Chris\Desktop\thematic/comments.php:95
-msgid "Name"
-msgstr "Imię"
-
-#: c:\users\Chris\Desktop\thematic/comments.php:95
-#: c:\users\Chris\Desktop\thematic/comments.php:100
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
-
-#: c:\users\Chris\Desktop\thematic/comments.php:100
-msgid "Email"
-msgstr "Email"
-
-#: c:\users\Chris\Desktop\thematic/comments.php:105
-msgid "Website"
-msgstr "Strona"
-
-#: c:\users\Chris\Desktop\thematic/comments.php:117
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Możesz używać następujących tagów i znaczników <abbr title=\"HyperText Markup Language\">HTML</abbr>:"
-
-#: c:\users\Chris\Desktop\thematic/page.php:48
-msgid "Pages: "
-msgstr "Strony: "
-
-#: c:\users\Chris\Desktop\thematic/search.php:44
-msgid "Nothing Found"
-msgstr "Nic nie znaleziono"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr "Trackback URL"
 
-#: c:\users\Chris\Desktop\thematic/search.php:46
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Przykro nam, ale nie znaleziono nic pasującego do Twoich kryteriów wyszukiwania. Proszę spróbuj z innymi słowami kluczowymi."
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr "%1$sJedna%2$s Odpowiedź (trackback)"
 
-#: c:\users\Chris\Desktop\thematic/search.php:51
-msgid "Find"
-msgstr "Szukaj"
+#: functions.php:194
+msgid "Primary Menu"
+msgstr "Menu główne"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>Jeden</span> Komentarz"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr "%1$sJeden%2$s Komentarz"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> Komentarze"
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr "Komentarze"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/comments-extensions.php:96
+#: library/extensions/comments-extensions.php:155
 msgid "Post a Comment"
 msgstr "Skomentuj"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/comments-extensions.php:103
-#, php-format
+#: library/extensions/comments-extensions.php:167
 msgid "Post a Reply to %s"
 msgstr "Napisz odpowiedź na %s."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/comments-extensions.php:110
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
 msgid "Comment"
 msgstr "Komentarz"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/comments-extensions.php:118
+#: library/extensions/comments-extensions.php:190
 msgid "Cancel reply"
 msgstr "Anuluj odpowiedź"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/comments-extensions.php:125
+#: library/extensions/comments-extensions.php:202
 msgid "Post Comment"
 msgstr "Skomentuj"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:212
-msgid "Author Archives: "
-msgstr "Archiwum Autora: "
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
+msgid "Name"
+msgstr "Imię"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:218
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr "*"
+
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
+msgid "Email"
+msgstr "Email"
+
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
+msgid "Website"
+msgstr "Strona"
+
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr "Twój adres email %1$snie zostanie%2$s opublikowany i nie będzie rozpowszechniany."
+
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr "Wymagane pola są oznaczone %1$s*%2$s"
+
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr "Musisz być %1$szalogowany%2$s aby dodać komentarz."
+
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr "Zaloguj się"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr "Jesteś zalogowany jako %s"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr "Wyloguj się z tego konta"
+
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr "Wylogować ?"
+
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr "Możesz używać następujących tagów i znaczników %1$sHTML%2$s "
+
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr "Artykuły Użytkownika:"
+
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Archiwum Kategorii:"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:227
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Wyniki wyszukiwania:"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:233
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Archiwum Tagów:"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:242
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:250
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
 msgid "Archives:"
 msgstr "Archiwa:"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:256
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Archiwum dzienne: <span>%s</span>"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:260
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Archiwum miesięczne: <span>%s</span>"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:264
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Archiwum roczne: <span>%s</span>"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:268
-msgid "Blog Archives"
-msgstr "Archiwum blogu"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:298
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1243
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Starsze wpisy"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:299
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1244
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Nowsze wpisy <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:672
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1041
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr "Artykuły z dnia: %s"
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr "Artykuły opublikowane w %s"
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr "Artykuły opublikowane w %s"
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr "Starsze artykuły"
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr "Nowsze artykuły"
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Edytuj wpis"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:692
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Edytuj"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Nie Znaleziono"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:697
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1001
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1006
-msgid "Permalink to "
-msgstr "Permalink do "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr "Link do %s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:742
-msgid "By "
-msgstr "Przez "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr "Przez"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:745
-msgid "View all posts by "
-msgstr "Zobacz wszystkie wpisy "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr "Zobacz wszystkie posty od %s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:763
-msgid "Published: "
-msgstr "Opublikowano: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr "Opublikowane:"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Archiwum wg. Kategorii"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:907
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Archiwum wg. Miesiąca"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:950
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Przykro nam, ale nie znaleziono strony której szukałeś. Spróbuj skorzystać z wyszukiwarki."
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:967
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Czytaj dalej <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr "Przepraszamy, ale szukana przez Ciebie fraza nie została znaleziona. Proszę użyj wyszukiwarki myślę, że to pomoże."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1001
-msgid "Browse the "
-msgstr "Przeglądaj "
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Szukaj"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1001
-msgid " Archive"
-msgstr " Archiwum"
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr "Kontynuuj czytanie %s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1002
-msgid " archive"
-msgstr " archiwizuj"
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr "Przeglądaj archiwum %s."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1006
-msgid "Bookmark the "
-msgstr "Dodaj do zakładek "
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr "Link do archiwum %s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1007
-msgid "permalink"
-msgstr "permalink"
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr "Dodaj %1$slink%2$s do ulubionych."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1123
-msgid "This entry was posted in "
-msgstr "Ten wpis umieszczono w kategorii "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr "Ten wpis umieszczono w kategorii %s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1131
-msgid "Also posted in "
-msgstr "Opublikowano również w "
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr "Opublikowano również w %s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1134
-msgid "Posted in "
-msgstr "Opublikowano w "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr "Opublikowano w %s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1152
-msgid " This entry is tagged"
-msgstr " Ten wpis umieszczono w kategorii"
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr "Ten wpis otagowano"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1155
-msgid " and tagged"
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
 msgstr "i otagowano jako"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1158
-msgid " Also tagged "
-msgstr "Również otagowano "
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr "Otagowano również jako"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1160
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Otagowano jako"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1179
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1182
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1185
-msgid "Comment on "
-msgstr "Komentarze do "
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr "Komentarz do %s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1180
-msgid " Comments"
-msgstr " Komentarze"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] "%s Odpowiedź"
+msgstr[1] "%s Odpowiedzi"
+msgstr[2] "%s Odpowiedzi"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1183
-msgid " Comment"
-msgstr " Komentarz"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1186
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Skomentuj"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1189
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Komentowanie zostało zablokowane"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1205
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1213
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr "%1$sDodaj komentarz%2$s lub zostaw trackback: %3$s"
+
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Dodaj komentarz"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1206
-msgid " or leave a trackback: "
-msgstr " lub dodaj odpowiedź (trackback): "
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1207
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1210
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Adres URL Trackback'u do tego wpisu"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1207
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1210
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Trackback URL"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1209
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr "Komentowanie zostało zablokowane, ale możesz dodać odpowiedź (trackback): "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr "Komentowanie zostało zablokowane, ale możesz dodać trackback: %s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1212
-msgid " Trackbacks are closed, but you can "
-msgstr " Dodawanie odpowiedzi Trackback do tego wpisu zostało zablokowane, ale możesz "
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr "Zarówno komentarze jak i trackbacki są aktualnie wyłączone"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1213
-msgid "post a comment"
-msgstr "dodać komentarz"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr "Opublikowano %s o %s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/content-extensions.php:1215
-msgid " Both comments and trackbacks are currently closed."
-msgstr "Komentarze i odpowiedzi (trackback) zostały zablokowane."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr "Link do komentarza"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/discussion-extensions.php:13
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Opublikowano %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink do tego komentarza\">Permalink</a>"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr "Link"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/discussion-extensions.php:21
+#: library/extensions/discussion-extensions.php:36
 msgid "Edit comment"
 msgstr "Edytuj komentarz"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/discussion.php:12
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Twój komentarz oczekuje na moderacje.</span>\n"
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr "Twój komentarz oczekuje na moderację"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/discussion.php:19
+#: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Odpowiedź"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/discussion.php:20
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
 msgstr "Zaloguj się aby odpowiedzieć."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/discussion.php:35
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "Autor %1$s  %2$s o %3$s"
+msgstr "Dodany przez %1$s %2$s o %3$s"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/discussion.php:40
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Twój trackback oczekuje na moderacje.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr "Twój trackback oczekuje na moderację."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/header-extensions.php:262
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:138
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "Kanał RSS wpisów"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/header-extensions.php:280
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:139
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "Kanał RSS komentarzy"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/header-extensions.php:357
-msgid "Primary Menu"
-msgstr "Menu główne"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/header-extensions.php:467
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Skocz do treści strony"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/header-extensions.php:467
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Skocz do treści"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/helpers.php:31
-#: c:\users\Chris\Desktop\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
 msgstr "Skrót postu nie jest dostępny, ponieważ post został oznaczony jako chroniony."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Zaloguj się"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Wyloguj się"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:13
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "Pozycja wstawienia indeksu"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "Pozycja wstawienia indeksu pojawi się po tym numerze postu."
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "Informacja na stronie autora."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a> - with the author's avatar, bio and email - on the author page."
-msgstr "Pokaż na stronie autora <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microsformatowany vCard</a> z awatarem, krótką notką i emailem."
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "Tekst stopki."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "Możesz używać następujących tagów w tekście stopki: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Oparte na [wp-link] i szablonie [theme-link]."
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:115
-msgid "settings saved."
-msgstr "ustawienia zapisane."
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:116
-msgid "settings reset."
-msgstr "reset ustawień."
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:117
-msgid "widgets reset."
-msgstr "reset widgetów."
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:286
-msgid "Save changes"
-msgstr "Zapisz zmiany"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:293
-msgid "Reset"
-msgstr "Reset"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:300
-msgid "Reset Widgets"
-msgstr "Reset Widgetów"
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/theme-options.php:305
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Więcej informacji na temat tego szablonu na stronie, <a href=\"http://themeshaper.com\">ThemeShaper</a>. Odwiedź <a href=\"http://themeshaper.com/forums/\">Forum ThemeShaper</a> jeśli masz jakiekolwiek pytania do Thematic."
-
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:13
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr "Usuń Przedawnione Opcje"
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr "Opcje motywu"
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr "Więcej informacji:"
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr "Support:"
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr "fora"
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr "Poniższe opcje są udostępniane przez framework Thematic Theme i motywy podrzędne"
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr "Nowe opcje mogą zostać dodane, a standardowe usunięte poprzez utworzenie motywu podrzędnego. Ta pomoc kontekstowa może być również zmodyfikowana."
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr "Podgląd"
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr "Więcej informacji pod adresem: %1$sThematicTheme.com%2$s"
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr "W przypadku pytań o Thematic, odwiedź fora %1$sThematicTheme.com%2$s."
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr "Opcje Motywu %s"
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr "Widget pojawi się po określonej liczbie postów. Wstawienie 0 lub pozostawienie pustego pola wyłączy ten widget."
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr "Wyświetl %1$smicroformatowaną vCard%2$s z awatarem, bio i mailem na stronie autora."
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr "Możesz używać następujących tagów w tekście stopki: %s"
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr "Opcje Motywu %s zostały zaktualizowane do nowego formatu. Usuń przestarzałe opcje z bazy danych."
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr "Indeks pozycji musi być liczbą większą od zera. Ustawienie indeksu zostało przywrócone do poprzedniej wartości."
+
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "Wpisz poszukiwaną frazę i wciśnij enter"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:19
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:37
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:42
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "Szukaj"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:42
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr "Główny Obszar"
+
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
 msgstr "Główny obszar widgetów, najczęsciej wyświetlany w kolumnie bocznej."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:57
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr "Pomocniczy Obszar"
+
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
 msgstr "Pomocniczy obszar widgetów, najczęsciej wyświetlany w kolumnie bocznej."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:72
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr "Pierwszy Obszar Podrzędny"
+
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
 msgstr "Pierwszy obszar widgetów w stopce."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:87
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr "Drugi Obszar Podrzędny"
+
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
 msgstr "Drugi obszar widgetów w stopce."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:102
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr "Trzeci Obszar Podrzędny"
+
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
 msgstr "Trzeci obszar widgetów w stopce."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:117
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr "Obszar Górny"
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr "Obszar widgetów wyświetlany na górze strony głównej."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:132
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr "Obszar Indeksowany"
+
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr "Obszar widgetów wyświetlany po x postach na stronie głównej"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:147
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr "Obszar Dolny"
+
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr "Obszar widgetów wyświetlany na dole strony głównej."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:162
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr "Obszar Górny Wpisu"
+
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr "Obszar widgetów wyświetlany na górze strony z postem."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:177
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr "Obszar Nad Komentarzami Wpisu"
+
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
-msgstr "Obszar widgetów wyświetlany na stronie postu pomiędzy treścą a komentarzami."
+msgstr "Obszar widgetów wyświetlany na stronie postu pomiędzy treścią a komentarzami."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:192
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr "Obszar Dolny Wpisu"
+
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr "Obszar widgetów wyświetlany na dole strony z postem."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:207
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr "Obszar Górny Strony"
+
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr "Obszar widgetów wyświetlany na górze strony"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets-extensions.php:222
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr "Obszar Dolny Strony"
+
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr "Obszar widgetów wyświetlany na dole strony."
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:36
+#: library/extensions/widgets.php:55
 msgid "A search form for your blog"
 msgstr "Formularz wyszukiwania dla twojego blogu"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:58
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:113
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:156
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:174
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
 msgid "Title:"
 msgstr "Tytuł:"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:81
+#: library/extensions/widgets.php:100
 msgid "Log in/out and admin"
 msgstr "Zaloguj/wyloguj się z panel administracyjnego"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:82
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:87
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:126
+#: library/extensions/widgets.php:145
 msgid "Links to your posts and comments feed"
 msgstr "Linki do twoich postów i komentarzy"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:127
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:132
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
 msgstr "Linki RSS"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:138
+#: library/extensions/widgets.php:157
 msgid "All posts"
 msgstr "Wszystkie wpisy"
 
-#: c:\users\Chris\Desktop\thematic/library/extensions/widgets.php:139
+#: library/extensions/widgets.php:158
 msgid "All comments"
 msgstr "Wszystkie komentarze"
 
-#~ msgid "Pages"
-#~ msgstr "Strony"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr "Zalogowano jako"
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Strony: "
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Nic nie znaleziono"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Przykro nam, ale nie znaleziono nic pasującego do Twoich kryteriów wyszukiwania. Proszę spróbuj z innymi słowami kluczowymi."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr "Możesz użyć %s w motywie podrzędnym"
+
+msgid "Thematic"
+msgstr "Thematic"
+
+msgid "http://thematictheme.com"
+msgstr "http://thematictheme.com"
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr "Ostatnie słowo w motywach SEO. Thematic jest rozszerzalnym frameworkiem posiadającym: 13 miejsc na widgety, rozwijalne menu, nowoczesne przykładowe layouty, integrację z pluginami, tagi dla stopki i dużo więcej możliwości. Idealny motyw dla każdego bloga jak również jako <strong><em>punkt startowy</em></strong> do budowania własnych motywów."
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
 
-#~ msgid "Categories"
-#~ msgstr "Kategorie"
+msgid "http://themeshaper.com/"
+msgstr "http://themeshaper.com/"
 
-#~ msgid "RSS Feeds"
-#~ msgstr "Kanał RSS"
+msgid "Deprecated Archives Template"
+msgstr "Przestarzałe Archiwum Motywów"
 
-#~ msgid ""
-#~ "Enter the HTML text that will appear in the bottom of your footer. Feel "
-#~ "free to remove or change any links. <strong>Hint:</strong> <a href="
-#~ "\"http://www.w3schools.com/HTML/html_links.asp\" target=\"_blank\">how to "
-#~ "write a link</a>."
-#~ msgstr ""
-#~ "Wpisz kod HTML tekstu, któy pojawi się na dole twojej stopki. Możesz "
-#~ "dowolnie modyfikować i zmieniać dowolne linki."
+msgid "Links Page"
+msgstr "Strona z Linkami"
 
-#~ msgid "Blog Index"
-#~ msgstr "Blog Index"
+msgid "Archives Page"
+msgstr "Archiwum"
 
-#~ msgid "Blog Buttons"
-#~ msgstr "Przyciski Bloga"
+msgid "Deprecated Blog Template"
+msgstr "Przestarzały Motyw"
 
-#~ msgid "Site Meta"
-#~ msgstr "Meta Strony"
+msgid "Full Width"
+msgstr "Pełna Szerokość"
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/pt_BR.mo b/wp-content/themes/thematic/library/languages/pt_BR.mo
index 5d8a8cd264a99a47339721fb4ed7e25ae7bd74c7..05d67f75a3dbcf32dbbf3e6aa932257cda016c9b 100644
Binary files a/wp-content/themes/thematic/library/languages/pt_BR.mo and b/wp-content/themes/thematic/library/languages/pt_BR.mo differ
diff --git a/wp-content/themes/thematic/library/languages/pt_BR.po b/wp-content/themes/thematic/library/languages/pt_BR.po
index c6d4876b4728a954ed8d0efe5140e6a4b70b065e..be9a46b88ad7d14ec9aa9b53801402e3437b6c5b 100644
--- a/wp-content/themes/thematic/library/languages/pt_BR.po
+++ b/wp-content/themes/thematic/library/languages/pt_BR.po
@@ -1,500 +1,682 @@
+# Translation of Thematic 1.0.3.x in Portuguese (Brazil)
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic em portugu�s\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-18 20:58+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Eduardo Zulian <eduardozulian@gmail.com>\n"
-"Language-Team: WordPress Brasil <felipecoelhokussik@gmail.com, eduardozulian@gmail.com>\n"
+"PO-Revision-Date: 2013-03-05 17:46:55+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e\n"
-"X-Poedit-Basepath: .\n"
-"X-Poedit-Language: Portuguese\n"
-"X-Poedit-Country: BRAZIL\n"
-"X-Poedit-SearchPath-0: c:\\xampp\\htdocs\\development\\wp-content\\themes\\thematic\n"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/archives.php:42
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/links.php:53
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:40
-msgid "Edit"
-msgstr "Editar"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/attachment.php:39
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
-msgstr "P�ginas:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/author.php:53
+#: author.php:67
 msgid "Email "
 msgstr "Email"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:10
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
+
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
-msgstr "Este post � protegido por senha. Digite a senha pra ver os coment�rios."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> trackbacks"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>Um</span> trackback"
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Voc� deve estar <a href=\"%s\" title=\"Fazer login\">logado</a> pra postar coment�rios."
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Logado como <a href=\"%1$s\" title=\"Logado como %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Fazer logout desta conta\">Logout?</a></span>"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "Postar uma resposta a %s"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Seu email <em>nunca</em> vai ser compartilhado."
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Campos obrigat�rios s�o marcados com <span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Nome"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "Email"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:103
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Site"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Voc� pode usar estas tags <abbr title=\"HyperText Markup Language\">HTML</abbr>:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:38
-msgid "Pages: "
-msgstr "P�ginas:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:41
-msgid "Nothing Found"
-msgstr "Nada encontrado"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:43
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Perd�o, mas n�o achamos nada. Tente outra vez com palavras diferentes."
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:48
-msgid "Find"
-msgstr "Procurar"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>Um</span> coment�rio"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> coment�rios"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:96
-msgid "Post a Comment"
-msgstr "Postar um coment�rio"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:103
-#, php-format
-msgid "Post a Reply to %s"
-msgstr "Postar uma resposta a %s"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:110
-msgid "Comment"
-msgstr "Coment�rio"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:117
-msgid "Post Comment"
-msgstr "Postar coment�rio"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:147
-msgid "Author Archives: "
-msgstr "Arquivos do autor: "
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:153
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Arquivos da categoria:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:162
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Resultados da busca por:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:168
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Arquivos da tag:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:174
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Arquivos do dia: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:178
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Arquivos do m�s: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:182
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Arquivos do ano: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:186
-msgid "Blog Archives"
-msgstr "Arquivos"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:209
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:725
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Mais antigos"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:210
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:726
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Mais recentes <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:394
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:618
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Editar post"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:406
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Editar"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
-msgstr "N�o encontrado"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:411
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid "Permalink to "
-msgstr "Permalink para "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:441
-msgid "By "
-msgstr "Por "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:444
-msgid "View all posts by "
-msgstr "Ver todos os posts de"
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:455
-msgid "Published: "
-msgstr "Publicado: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:523
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Arquivos por categoria"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:534
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
-msgstr "Arquivos por m�s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:562
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Mil perd�es, mas n�o conseguimos encontrar o que voc� procurava. Talvez a busca ajude."
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:578
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Ler mais <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Procurar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:629
-msgid "This entry was posted in "
-msgstr "Isto foi postado em "
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:632
-msgid "Also posted in "
-msgstr "Tamb�m postado em "
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:635
-msgid "Posted in "
-msgstr "Postado em "
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:646
-msgid " and tagged"
-msgstr " e com as tags"
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:649
-msgid " Also tagged "
-msgstr " Tamb�m com as tags "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:651
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Com as tags"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:663
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:666
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:669
-msgid "Comment on "
-msgstr "Coment�rios em"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:664
-msgid " Comments"
-msgstr " Coment�rios"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:667
-msgid " Comment"
-msgstr " Coment�rio"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:670
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Comentar"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:673
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
-msgstr "Coment�rios fechados"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid ". Bookmark the "
-msgstr ". Salvar o "
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:687
-msgid "permalink"
-msgstr "permalink"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:689
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
-msgstr "Deixar um coment�rio"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:690
-msgid " or leave a trackback: "
-msgstr " ou enviar um trackback: "
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "URL pra trackback do seu post"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "URL pra trackback"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:693
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " Coment�rios est�o fechados, mas voc� pode enviar um trackback:"
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:696
-msgid " Trackbacks are closed, but you can "
-msgstr " Trackbacks est�o fechados, mas voc� pode"
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
-msgid "post a comment"
-msgstr "deixar um coment�rio"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
+
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:699
-msgid " Both comments and trackbacks are currently closed."
-msgstr " Coment�rios e trackbacks est�o fechados no momento."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Postado %1$s �s %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink pra este coment�rio\">Permalink</a>"
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Seu coment�rio est� aguardando modera��o.</span>\n"
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:22
+#: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Responder."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:23
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
-msgstr "Fa�a login pra responder."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "Por %1$s em %2$s �s %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Seu trackback est� aguardando modera��o.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:251
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "Feed RSS dos posts"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:269
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
-msgstr "Feed RSS dos coment�rios"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
-msgstr "Pular a navega��o pro conte�do"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
-msgstr "Pular pro conte�do"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
-msgstr "N�o h� um resumo pois este � um post protegido."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Login"
+#: library/extensions/theme-options.php:50
+msgid "Index Insert Position"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Logout"
+#: library/extensions/theme-options.php:51
+msgid "Info on Author Page"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:13
-msgid "Index Insert Position"
-msgstr "Posi��o pra inserir no index"
+#: library/extensions/theme-options.php:52
+msgid "Text in Footer"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "A �rea Index vai aparece depois desse n�mero de posts."
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:19
-msgid "Info on Author Page"
-msgstr "Info na p�gina de autor"
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>�with the author's avatar, bio and email�on the author page."
-msgstr "Mostrar um <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">vCard microformatado</a>�com o avatar, bio e email do autor�na p�gina de autor."
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:25
-msgid "Text in Footer"
-msgstr "Texto do rodap�"
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "Voc� pode usar os seguintes shortcodes no texto do rodap�: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Movido a [wp-link]. Feito com [theme-link]."
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:75
-msgid "settings saved."
-msgstr "configura��es salvas."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings reset."
-msgstr "configura��es redefinidas."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "widgets reset."
-msgstr "widgets redefinidos."
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:190
-msgid "Save changes"
-msgstr "Salvar mudan�as"
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:196
-msgid "Reset"
-msgstr "Redefinir"
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:202
-msgid "Reset Widgets"
-msgstr "Redefinir widgets"
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:207
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Pra mais informa��es sobre este tema, <a href=\"http://themeshaper.com\">visite ThemeShaper</a>. Visite os <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> se voc� tiver perguntas sobre a Thematic."
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:12
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "Pra buscar, digite e aperte enter"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:18
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:281
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:43
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "Pesquisa"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:43
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
-msgstr "A �rea prim�ria, geralmente usada como lateral."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:58
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
-msgstr "A �rea secund�ria, geralmente usada como lateral."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:73
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
-msgstr "A primeira �rea de widgets no rodap�."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:88
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
-msgstr "A segunda �rea de widgets no rodap�."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:103
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
-msgstr "A terceira �rea de widgets no rodap�."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:118
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
-msgstr "A �rea que aparece no topo do index."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:133
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
-msgstr "A �rea que aparece depois de x posts no index."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:148
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
-msgstr "A �rea que aparece na base do index."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:163
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
-msgstr "A �rea que aparece no topo das p�ginas de post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:178
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
-msgstr "A �rea que fica entre o post e os coment�rios na p�gina do post."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:193
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
-msgstr "A �rea que aparece na base das p�ginas de post."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:208
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
-msgstr "A �rea que aparece no topo das p�ginas."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:223
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
-msgstr "A �rea que aparece na base das p�ginas."
+msgstr ""
+
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:283
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:55
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr ""
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:285
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:286
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:72
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
 msgstr "Links RSS"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/widgets.php:157
 msgid "All posts"
 msgstr "Todos os posts"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/widgets.php:158
 msgid "All comments"
-msgstr "Todos os coment�rios"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:96
-msgid "Title:"
-msgstr "T�tulo:"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr ""
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Nada encontrado"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr ""
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/pt_PT.mo b/wp-content/themes/thematic/library/languages/pt_PT.mo
index 748c293b56852d59ada95136e73434ea1ec6ab65..43f271d204665026af78aa246f8eb3db83ffa76b 100644
Binary files a/wp-content/themes/thematic/library/languages/pt_PT.mo and b/wp-content/themes/thematic/library/languages/pt_PT.mo differ
diff --git a/wp-content/themes/thematic/library/languages/pt_PT.po b/wp-content/themes/thematic/library/languages/pt_PT.po
index 37e98295d3e69caad26828e7d4743fdc7683f282..988811f11d2de4c363df8a22928a08a94c67dbf9 100644
--- a/wp-content/themes/thematic/library/languages/pt_PT.po
+++ b/wp-content/themes/thematic/library/languages/pt_PT.po
@@ -1,518 +1,682 @@
+# Translation of Thematic 1.0.3.x in Portuguese (Portugal)
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: thematic-pt\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-18 20:58+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Bernardo Maciel <bernardo.maciel@gmail.com>\n"
-"Language-Team: Hugo Baeta <info@hugobaeta.com>\n"
+"PO-Revision-Date: 2013-03-05 17:46:47+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n>1\n"
-"X-Poedit-Language: Portuguese\n"
-"X-Poedit-Country: PORTUGAL\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e;_c\n"
-"X-Poedit-Basepath: .\n"
-"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\themes\\thematic-0-6\n"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/archives.php:42
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/links.php:53
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:40
-msgid "Edit"
-msgstr "Editar"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/attachment.php:39
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
-msgstr "Páginas:"
+msgstr "Strony:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/author.php:53
+#: author.php:67
 msgid "Email "
-msgstr "Email"
+msgstr "Email "
+
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:10
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
-msgstr "Este post encontra-se protegido por password. Insira a password para visualizar os comentários."
+msgstr "Ten wpis jest chroniony hasłem. Proszę podaj hasło aby przeglądać komentarze."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> Trackbacks"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>Um</span> Trackback"
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Tem de estar com <a href=\"%s\" title=\"Log in\">sessão activa</a> para publicar um comentário."
+#: functions.php:194
+msgid "Primary Menu"
+msgstr "Menu główne"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Sessão iniciada como <a href=\"%1$s\" title=\"Sessão iniciada como %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Terminar esta sessão\">Terminar a sessão?</a></span>"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "O seu endereço de e-mail <em>nunca</em> será publicado ou partilhado."
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "Skomentuj"
+
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "Napisz odpowiedź na %s."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Campos obrigatórios marcados com <span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr "Anuluj odpowiedź"
+
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Skomentuj"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
-msgstr "Nome"
+msgstr "Imię"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "Email"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:103
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
-msgstr "Website"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Pode usar as seguintes tags e atributos de <abbr title=\"HyperText Markup Language\">HTML</abbr>:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:38
-msgid "Pages: "
-msgstr "Páginas:"
+msgstr "Strona"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:41
-msgid "Nothing Found"
-msgstr "Nada foi encontrado"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:43
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Lamentamos, mas nada foi encontrado com os critérios de pesquisa. Por favor tente novamente com outros termos de pesquisa."
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:48
-msgid "Find"
-msgstr "Pesquisar"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>Um</span> Comentário"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> Comentários"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:96
-msgid "Post a Comment"
-msgstr "Publicar Comentário"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:103
-#, php-format
-msgid "Post a Reply to %s"
-msgstr "Escrever uma resposta a %s"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:110
-msgid "Comment"
-msgstr "Comentário"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:117
-msgid "Post Comment"
-msgstr "Publicar Comentário"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:147
-msgid "Author Archives: "
-msgstr "Arquivos de Autor:"
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:153
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
-msgstr "Arquivos de Categoria:"
+msgstr "Archiwum Kategorii:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:162
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
-msgstr "Resultados da pesquisa por:"
+msgstr "Wyniki wyszukiwania:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:168
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
-msgstr "Arquivos de Tags:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:174
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Arquivos Diários: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:178
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Arquivos Mensais: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:182
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Arquivos Anuais: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:186
-msgid "Blog Archives"
-msgstr "Arquivos do Blog"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:209
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:725
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Posts anteriores"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:210
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:726
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Posts mais recentes <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:394
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:618
+msgstr "Archiwum Tagów:"
+
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr "Archiwa:"
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
-msgstr "Editar Post"
+msgstr "Edytuj wpis"
+
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Edytuj"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:406
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
-msgstr "Não Encontrado"
+msgstr "Nie Znaleziono"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:411
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid "Permalink to "
-msgstr "Link para "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:441
-msgid "By "
-msgstr "Por "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:444
-msgid "View all posts by "
-msgstr "Ver todos os posts por "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:455
-msgid "Published: "
-msgstr "Publicado:"
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:523
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
-msgstr "Arquivos por Categoria"
+msgstr "Archiwum wg. Kategorii"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:534
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
-msgstr "Arquivos por Mês"
+msgstr "Archiwum wg. Miesiąca"
+
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Szukaj"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:562
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Lamentamos, mas não foi possível encontrar o que procura. Tente usar a pesquisa."
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:578
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Ler mais<span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:629
-msgid "This entry was posted in "
-msgstr "Esta entrada foi publicada em "
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:632
-msgid "Also posted in "
-msgstr "Também publicado em "
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:635
-msgid "Posted in "
-msgstr "Publicado em "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:646
-msgid " and tagged"
-msgstr " e com as tags"
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:649
-msgid " Also tagged "
-msgstr "Também com as tags "
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:651
-msgid "Tagged"
-msgstr "Tags"
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:663
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:666
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:669
-msgid "Comment on "
-msgstr "Comentário ligado"
+#: library/extensions/content-extensions.php:1587
+msgid "Tagged"
+msgstr "Otagowano jako"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:664
-msgid " Comments"
-msgstr " Comentários"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:667
-msgid " Comment"
-msgstr " Comentário"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:670
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
-msgstr "Deixar comentário"
+msgstr "Skomentuj"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:673
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
-msgstr "Comentários encerrados"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid ". Bookmark the "
-msgstr ". Guardar nos favoritos o "
+msgstr "Komentowanie zostało zablokowane"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:687
-msgid "permalink"
-msgstr "link permanente"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:689
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
-msgstr "Publicar comentário"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:690
-msgid " or leave a trackback: "
-msgstr " ou deixar um trackback: "
+msgstr "Dodaj komentarz"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
-msgstr "URL de Trackback do seu post"
+msgstr "Adres URL Trackback'u do tego wpisu"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
-msgstr "URL de Trackback"
+msgstr "Trackback URL"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:693
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " Comentários encerrados, mas poderá deixar um trackback: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:696
-msgid " Trackbacks are closed, but you can "
-msgstr " Trackbacks encerrados, mas pode "
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
-msgid "post a comment"
-msgstr "publicar comentário"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:699
-msgid " Both comments and trackbacks are currently closed."
-msgstr " Tanto os comentários como os trackbacks estão encerrados."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
+
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Publicado %1$s às %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Link para este comentário\">Link</a>"
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr "Edytuj komentarz"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>O seu comentário aguarda moderação.</span>\n"
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:22
+#: library/extensions/discussion.php:52
 msgid "Reply"
-msgstr "Responder"
+msgstr "Odpowiedź"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:23
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
-msgstr "Inicie a Sessão para Responder."
+msgstr "Zaloguj się aby odpowiedzieć."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "Por %1$s a %2$s às %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">O trackback aguarda moderação.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:251
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
-msgstr "RSS feed de Posts"
+msgstr "Kanał RSS wpisów"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:269
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
-msgstr "RSS feed de Comentários"
+msgstr "Kanał RSS komentarzy"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
-msgstr "Saltar navegação para o conteúdo"
+msgstr "Skocz do treści strony"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
-msgstr "Saltar para o conteúdo"
+msgstr "Skocz do treści"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
-msgstr "Não existe excerto porque este post está protegido."
+msgstr "Skrót postu nie jest dostępny, ponieważ post został oznaczony jako chroniony."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Iniciar Sessão"
+#: library/extensions/theme-options.php:50
+msgid "Index Insert Position"
+msgstr "Pozycja wstawienia indeksu"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Terminar Sessão"
+#: library/extensions/theme-options.php:51
+msgid "Info on Author Page"
+msgstr "Informacja na stronie autora."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:13
-msgid "Index Insert Position"
-msgstr "Posição de Inserção do Índice"
+#: library/extensions/theme-options.php:52
+msgid "Text in Footer"
+msgstr "Tekst stopki."
+
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "A Inserção do índice por Widget virá após o post com este número."
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:19
-msgid "Info on Author Page"
-msgstr "Informação na Página de Autor"
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "Mostrar um <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">vCard microformatado</a>—com o avatar, bio e email do autor—na página de autor."
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:25
-msgid "Text in Footer"
-msgstr "Texto no rodapé"
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "Poderá usar os seguintes shortcodes no texto do seu rodapé: [wp-link] [theme-link] [loginout-link] [blog-title] [the-year]"
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Powered by [wp-link]. Construido com o tema [theme-link]."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:75
-msgid "settings saved."
-msgstr "preferências guardadas."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings reset."
-msgstr "preferências restabelecidas."
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "widgets reset."
-msgstr "widgets restabelecidos."
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:190
-msgid "Save changes"
-msgstr "Guardar alterações"
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:196
-msgid "Reset"
-msgstr "Restabelecer"
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:202
-msgid "Reset Widgets"
-msgstr "Restabelecer Widgets"
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:207
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Para mais informações sobre este tema, <a href=\"http://themeshaper.com\">visite o ThemeShaper</a>. Por favor visite o <a href=\"http://themeshaper.com/forums/\">Fórum ThemeShaper</a> se tem alguma questão relativa ao Thematic."
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:12
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
-msgstr "Para pesquisar, escreva e pressione enter"
+msgstr "Wpisz poszukiwaną frazę i wciśnij enter"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:18
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:281
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:43
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
-msgstr "Pesquisa"
+msgstr "Szukaj"
+
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:43
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
-msgstr "A área primária de widgets, usada a maior parte das vezes como barra lateral."
+msgstr "Główny obszar widgetów, najczęsciej wyświetlany w kolumnie bocznej."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:58
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
-msgstr "A área secundária de widgets, usada a maior parte das vezes como barra lateral."
+msgstr "Pomocniczy obszar widgetów, najczęsciej wyświetlany w kolumnie bocznej."
+
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:73
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
-msgstr "A 1a área de widgets no rodapé."
+msgstr "Pierwszy obszar widgetów w stopce."
+
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:88
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
-msgstr "A 2a área de widgets no rodapé."
+msgstr "Drugi obszar widgetów w stopce."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:103
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
-msgstr "A 3a área de widgets no rodapé."
+msgstr "Trzeci obszar widgetów w stopce."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:118
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
-msgstr "A área de widgets do topo mostrada na página de índice."
+msgstr "Obszar widgetów wyświetlany na górze strony głównej."
+
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:133
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
-msgstr "A área de widgets inserida após x posts na página de índice."
+msgstr "Obszar widgetów wyświetlany po x postach na stronie głównej"
+
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:148
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
-msgstr "A área de widgets do fundo mostrada na página de índice."
+msgstr "Obszar widgetów wyświetlany na dole strony głównej."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:163
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
-msgstr "A área de widgets do topo mostrada num post único."
+msgstr "Obszar widgetów wyświetlany na górze strony z postem."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:178
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
-msgstr "A área de widgets inserida entre o post e os comentários, num post único."
+msgstr "Obszar widgetów wyświetlany na stronie postu pomiędzy treścą a komentarzami."
+
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:193
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
-msgstr "A área de widgets do fundo mostrada num post único."
+msgstr "Obszar widgetów wyświetlany na dole strony z postem."
+
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:208
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
-msgstr "A área de widgets do topo mostrada numa página."
+msgstr "Obszar widgetów wyświetlany na górze strony"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:223
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
-msgstr "A área de widgets do fundo mostrada numa página."
+msgstr "Obszar widgetów wyświetlany na dole strony."
+
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr "Formularz wyszukiwania dla twojego blogu"
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr "Tytuł:"
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr "Zaloguj/wyloguj się z panel administracyjnego"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:283
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:55
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:285
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:286
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:72
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr "Linki do twoich postów i komentarzy"
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
-msgstr "Links RSS"
+msgstr "Linki RSS"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/widgets.php:157
 msgid "All posts"
-msgstr "Todos os posts"
+msgstr "Wszystkie wpisy"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/widgets.php:158
 msgid "All comments"
-msgstr "Todos os comentários"
+msgstr "Wszystkie komentarze"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:96
-msgid "Title:"
-msgstr "Título:"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Strony: "
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Nic nie znaleziono"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Przykro nam, ale nie znaleziono nic pasującego do Twoich kryteriów wyszukiwania. Proszę spróbuj z innymi słowami kluczowymi."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
 
-#~ msgid "Pages"
-#~ msgstr "Páginas"
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
 
-#~ msgid "Categories"
-#~ msgstr "Categorias"
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
 
-#~ msgid "Archives"
-#~ msgstr "Arquivos"
+msgid "http://themeshaper.com/"
+msgstr ""
 
-#~ msgid "RSS Feeds"
-#~ msgstr "RSS Feeds"
+msgid "Deprecated Archives Template"
+msgstr ""
 
-#~ msgid "Site Meta"
-#~ msgstr "Meta do Site"
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
-#~ msgid "Blog Index"
-#~ msgstr "Index do Blog"
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/readme.txt b/wp-content/themes/thematic/library/languages/readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..02de0f4801d0b6279367ed522195a30217096d4b
--- /dev/null
+++ b/wp-content/themes/thematic/library/languages/readme.txt
@@ -0,0 +1,7 @@
+If you find that your locale for Thematic is not completely translated,
+please come to http://translate.thematictheme.com find the latest "active" subproject 
+of the thematic-framework and help us internationalize the theme.
+
+If you would like to add a new locale to Thematic or become a validator for your locale 
+please come and open an issue describing your request here: https://github.com/ThematicTheme/Thematic/issues
+and we will make it happen.
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/ro_RO.mo b/wp-content/themes/thematic/library/languages/ro_RO.mo
index f7d664084f80ff9bdf67aca1fa3ddb39c7e701d2..ed4102f77c1b2290f00147c4de1db82561466a98 100644
Binary files a/wp-content/themes/thematic/library/languages/ro_RO.mo and b/wp-content/themes/thematic/library/languages/ro_RO.mo differ
diff --git a/wp-content/themes/thematic/library/languages/ro_RO.po b/wp-content/themes/thematic/library/languages/ro_RO.po
index 91349fce1891153f5d6e0f393d334f2a0570a9b5..337f3378cef3eb2b9519e70af1fe3d42738b2f38 100644
--- a/wp-content/themes/thematic/library/languages/ro_RO.po
+++ b/wp-content/themes/thematic/library/languages/ro_RO.po
@@ -1,796 +1,683 @@
-# kubrick theme pot file.
-# Copyright (C) 2007 WordPress
-# This file is distributed under the same license as the kubrick theme package.
-#
+# Translation of Thematic 1.0.3.x in Romanian
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-02-18 20:58+0100\n"
-"PO-Revision-Date: 2010-02-22 20:11+0100\n"
-"Last-Translator: Chris Gossmann <chris.gossmann@googlemail.com>\n"
-"Language-Team: \n"
+"PO-Revision-Date: 2013-03-05 17:46:48+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Romana\n"
-"X-Poedit-Country: GERMANIA\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e\n"
-"X-Poedit-Basepath: .\n"
-"X-Poedit-SearchPath-0: .\n"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/archives.php:42
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/links.php:53
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:40
-msgid "Edit"
-msgstr "Editare"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
+"X-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/attachment.php:39
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
+
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Pagini:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/author.php:53
+#: author.php:67
 msgid "Email "
 msgstr "E-mail"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:10
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
+
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Acest articol este protejat cu parolă. Introduceţi parola pentru a vedea comentariile."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> Ping-uri"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
+
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
+
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:52
-msgid "<span>One</span> Trackback"
-msgstr "<span>Un</span> Ping"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:72
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Trebuie să vă <a href=\"%s\" title=\"Autentificare\">autentificaţi</a> pentru a publica un comentariu."
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:83
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Sunteţi autentificat ca şi <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Deautentificare?</a></span>"
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "Publicaţi un comentariu"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Adresa dumneavoastră de e-mail nu va fi <em>niciodată</em> publicată sau redistribuită."
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "Publicaţi un raspuns la %s"
+
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:90
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Câmpurile necesare sunt marcate cu <span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Publicaţi comentariul"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Nume"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:93
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:98
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "Adresă de e-mail"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:103
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Site web"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/comments.php:115
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
-msgstr "Puteţi folosi următoarele etichete şi atribute <abbr title=\"HyperText Markup Language\">HTML</abbr>:"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/page.php:38
-msgid "Pages: "
-msgstr "Pagini: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:41
-msgid "Nothing Found"
-msgstr "Nu s-a găsit nimic"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:43
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Ne pare rau, dar nimic nu se potriveşte cu căutarea dumneavoastră. Va rugăm să reîncercati cu alte cuvinte."
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/search.php:48
-msgid "Find"
-msgstr "Caută"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:76
-msgid "<span>One</span> Comment"
-msgstr "<span>Un</span> Comentariu"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:83
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> Comentarii"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:96
-msgid "Post a Comment"
-msgstr "Publicaţi un comentariu"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:103
-#, php-format
-msgid "Post a Reply to %s"
-msgstr "Publicaţi un raspuns la %s"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:110
-msgid "Comment"
-msgstr "Comentariu"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/comments-extensions.php:117
-msgid "Post Comment"
-msgstr "Publicaţi comentariul"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:147
-msgid "Author Archives: "
-msgstr "Arhivele autorului: "
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:153
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Arhivele categoriei:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:162
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Rezultatele căutării pentru:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:168
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Arhivele etichetei:"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:174
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Arhivele zilnice: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:178
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Arhivele lunare: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:182
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Arhivele anuale: <span>%s</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:186
-msgid "Blog Archives"
-msgstr "Arhivele blogului"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:209
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:725
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Articole  mai vechi"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:210
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:726
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Articole  mai noi <span class=\"meta-nav\">&raquo;</span>"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:394
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:618
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
+
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
+
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Editează articol"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:406
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Editare"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Nu s-a găsit"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:411
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid "Permalink to "
-msgstr "Legătură permanentă către "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:441
-msgid "By "
-msgstr "De către "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:444
-msgid "View all posts by "
-msgstr "Vizualizaţi toate articolele scrise de "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:455
-msgid "Published: "
-msgstr "Publicat: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:523
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Arhive dupa categorii"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:534
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Arhive dupa lună"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:562
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Ne cerem scuze, dar nu am reuşit sa găsim ceea ce căutaţi. Poate formularul de căutare vă va ajuta."
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:578
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Citeşte mai departe <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Caută"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:629
-msgid "This entry was posted in "
-msgstr "Acest articol a post publicat în "
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:632
-msgid "Also posted in "
-msgstr "De asemenea publicat în "
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:635
-msgid "Posted in "
-msgstr "Publicat în "
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:646
-msgid " and tagged"
-msgstr " şi etichetat"
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:649
-msgid " Also tagged "
-msgstr " De asemenea etichetat "
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:651
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Etichetat"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:663
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:666
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:669
-msgid "Comment on "
-msgstr "Comentariu la "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:664
-msgid " Comments"
-msgstr " Comentarii"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:667
-msgid " Comment"
-msgstr " Comentariu"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:670
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Lăsaţi un comentariu"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:673
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Comentariile nu sunt acceptate."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:686
-msgid ". Bookmark the "
-msgstr ". Salvaţi ca şi semn de carte "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:687
-msgid "permalink"
-msgstr "legătură permanentă"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:689
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Publicaţi un comentariu"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:690
-msgid " or leave a trackback: "
-msgstr " sau lăsaţi un ping: "
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Adresa Ping-ului pentru articolul dumneavoastră"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:691
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:694
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Adresa Ping-ului"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:693
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " Comentariile nu sunt acceptate, dar puteţi lăsa un ping: "
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:696
-msgid " Trackbacks are closed, but you can "
-msgstr " Ping-urile nu sunt acceptate, dar puteţi să "
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:697
-msgid "post a comment"
-msgstr "publicaţi un comentariu"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/content-extensions.php:699
-msgid " Both comments and trackbacks are currently closed."
-msgstr " Nu sunt acceptate nici comentarile şi nici ping-urile."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:10
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Publicat %1$s la %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Link permanent catre comentariu\">Legătură permanentă</a>"
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:15
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Comentariul dumneavoastră aşteaptă să fie moderat.</span>\n"
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:22
+#: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Răspunde"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:23
+#: library/extensions/discussion.php:53
 msgid "Log in to reply."
 msgstr "Autentificaţi-vă pentru a răspunde."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:37
-#, php-format
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "De către %1$s in %2$s la %3$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/discussion.php:42
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Ping-ul dumneavoastră aşteaptă să fie moderat.</span>\\n"
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:251
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "Fluxul RSS al articolelor"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:269
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "Fluxul RSS al comentariilor"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Săriţi peste navigaţie către conţinut"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/header-extensions.php:401
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Săriţi către conţinut"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:31
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/helpers.php:44
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
 msgid "There is no excerpt because this is a protected post."
 msgstr "Rezumatul nu este disponibil pentru că e vorba de un articol protejat."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:16
-msgid "Login"
-msgstr "Autentificare"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/shortcodes.php:18
-msgid "Logout"
-msgstr "Deautentificare"
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:13
+#: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "Poziţia de inserare în pagina de index"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:14
-msgid "The widgetized Index Insert will follow after this post number."
-msgstr "Zona de widget de pe pagina de index va apărea după articolul cu acest număr."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:19
+#: library/extensions/theme-options.php:51
 msgid "Info on Author Page"
 msgstr "Informaţii pe pagina de autor."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:20
-msgid "Display a <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">microformatted vCard</a>—with the author's avatar, bio and email—on the author page."
-msgstr "Afişare <a href=\"http://microformats.org/wiki/hcard\" target=\"_blank\">vCard microformatat</a>—cu avatarul, informaţiile biografice şi adresa de e-mail a autorului—pe pagina de autor."
-
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:25
+#: library/extensions/theme-options.php:52
 msgid "Text in Footer"
 msgstr "Text din footer"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:26
-msgid "You can use the following shortcodes in your footer text: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
-msgstr "Puteţi folosi următoarele coduri scurte în textul din footer: [wp-link] [theme-link] [loginout-link] [blog-title] [blog-link] [the-year]"
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:28
-msgid "Powered by [wp-link]. Built on the [theme-link]."
-msgstr "Propulsat de [wp-link]. Construit pe [theme-link]."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:75
-msgid "settings saved."
-msgstr "opţiuni salvate."
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:76
-msgid "settings reset."
-msgstr "setări resetate."
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:77
-msgid "widgets reset."
-msgstr "widget-uri resetate."
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:190
-msgid "Save changes"
-msgstr "Salvare modificări"
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:196
-msgid "Reset"
-msgstr "Resetare"
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:202
-msgid "Reset Widgets"
-msgstr "Resetare Widget-uri"
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/theme-options.php:207
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "Pentru mai multe informaţii despre această temă, <a href=\"http://themeshaper.com\">vizitaţi ThemeShaper</a>. Vă rugăm vizitaţi <a href=\"http://themeshaper.com/forums/\">Forumurile ThemeShaper</a> dacă aveţi întrebări despre Thematic."
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:12
+#: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr "Pentru căutare, scrieţi şi apăsaţi enter"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:18
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:281
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:43
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
 msgid "Search"
 msgstr "Caută"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:43
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
 msgstr "Zona principală de widget-uri, cel mai adesea folosită ca şi bară laterală."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:58
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
 msgstr "Zona secundară de widget-uri, cel mai adesea folosită ca şi bară laterală."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:73
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
 msgstr "Prima zonă de widget-uri din subsol."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:88
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
 msgstr "A doua zonă de widget-uri din subsol."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:103
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
 msgstr "A treia zonă de widget-uri din subsol."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:118
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr "Zona de widget-uri afişată în partea de sus a paginii de index."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:133
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr "Zona de widget-uri inserată după x articole pe pagina de index."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:148
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr "Zona de widget-uri afişată în partea de jos a paginii de index."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:163
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr "Zona de widget-uri afişată în partea de sus pe paginile de articol."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:178
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
 msgstr "Zona de widget-uri afişată între articol şi comentarii pe paginile de articol."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:193
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr "Zona de widget-uri afişată în partea de jos pe paginile de articol."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:208
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr "Zona de widget-uri afişată în partea de sus a paginilor propriu-zise."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:223
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr "Zona de widget-uri afişată în partea de jos a paginilor propriu-zise."
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:283
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:55
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
+msgid "Title:"
+msgstr "Titlu:"
+
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
 msgid "Meta"
 msgstr "Meta"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:285
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets-extensions.php:286
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:72
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
 msgid "RSS Links"
 msgstr "Legături RSS"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:77
+#: library/extensions/widgets.php:157
 msgid "All posts"
 msgstr "Toate articolele"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:78
+#: library/extensions/widgets.php:158
 msgid "All comments"
 msgstr "Toate comentarile"
 
-#: c:\xampp\htdocs\development\wp-content\themes\thematic/library/extensions/widgets.php:96
-msgid "Title:"
-msgstr "Titlu:"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Pagini: "
 
-#~ msgid "definitions created."
-#~ msgstr "definiţii au fost create."
-#~ msgid "failed to create directory:"
-#~ msgstr "s-a eşuat în crearea directorului:"
-#~ msgid "failed to create the file:"
-#~ msgstr "s-a eşuat în crearea fişierului:"
-#~ msgid "Create Definitions"
-#~ msgstr "Creare Definiţii"
-#~ msgid "Pages"
-#~ msgstr "Pagini"
-#~ msgid "Categories"
-#~ msgstr "Categorii"
-#~ msgid "Archives"
-#~ msgstr "Arhive"
-#~ msgid "RSS Feeds"
-#~ msgstr "Feed-uri RSS"
-#~ msgid "Blog Index"
-#~ msgstr "Index blog"
-#~ msgid "Error 404 - Not Found"
-#~ msgstr "Fehler 404 - Nicht gefunden"
-#~ msgid "Archive for the &#8216;%s&#8217; Category"
-#~ msgstr "Archiv f&uuml;r die Kategorie &#8222;%s&#8220;"
-#~ msgid "Posts Tagged &#8216;%s&#8217;"
-#~ msgstr "Artikel-Schlagworte: &#8222;%s&#8220;"
-#~ msgid "Archive for %s|Daily archive page"
-#~ msgstr "Archiv f&uuml;r %s"
-#~ msgid "F jS, Y"
-#~ msgstr "j. F Y"
-#~ msgid "Archive for %s|Monthly archive page"
-#~ msgstr "Archiv f&uuml;r %s"
-#~ msgid "F, Y"
-#~ msgstr "F Y"
-#~ msgid "Archive for %s|Yearly archive page"
-#~ msgstr "Archiv f&uuml;r %s"
-#~ msgid "Y"
-#~ msgstr "Y"
-#~ msgid "&laquo; Older Entries"
-#~ msgstr "&laquo; &Auml;ltere Eintr&auml;ge"
-#~ msgid "Newer Entries &raquo;"
-#~ msgstr "Neuere Eintr&auml;ge &raquo;"
-#~ msgid "l, F jS, Y"
-#~ msgstr "l, j. F Y"
-#~ msgid "Tags:"
-#~ msgstr "Schlagworte:"
-#~ msgid "No Comments &#187;"
-#~ msgstr "Keine Kommentare &#187;"
-#~ msgid "1 Comment &#187;"
-#~ msgstr "1 Kommentar &#187;"
-#~ msgid "% Comments &#187;"
-#~ msgstr "% Kommentare &#187;"
-#~ msgid "Archives by Subject:"
-#~ msgstr "Archive nach Thema:"
-#~ msgid "Permanent Link: %s"
-#~ msgstr "Permanent-Link: %s"
-#~ msgid "Read the rest of this entry &raquo;"
-#~ msgstr "Diesen Beitrag weiterlesen &raquo;"
-#~ msgid "This entry was posted %1$s on %2$s at %3$s and is filed under %4$s."
-#~ msgstr ""
-#~ "Dieser Beitrag wurde vor %1$s am %2$s um %3$s Uhr ver&ouml;ffentlicht und "
-#~ "unter %4$s gespeichert."
-#~ msgid ""
-#~ "You can follow any responses to this entry through the <a href='%s'>RSS "
-#~ "2.0</a> feed."
-#~ msgstr ""
-#~ "Sie k&ouml;nnen Kommentare zu diesem Eintrag &uuml;ber den <a href='%"
-#~ "s'>RSS-2.0</a>-Feed verfolgen."
-#~ msgid ""
-#~ "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel="
-#~ "\"trackback\">trackback</a> from your own site."
-#~ msgstr ""
-#~ "Sie k&ouml;nnen einen <a href=\"#respond\">Kommentar hinterlassen</a> "
-#~ "oder einen <a href=\"%s\" rel=\"trackback\">Trackback</a> von Ihrer "
-#~ "Website hierher setzen."
-#~ msgid ""
-#~ "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback"
-#~ "\">trackback</a> from your own site."
-#~ msgstr ""
-#~ "Kommentare sind momentan deaktiviert, aber Sie k&ouml;nnen einen <a href="
-#~ "\"%s\" rel=\"trackback\">Trackback</a> von Ihrer Website hierher setzen."
-#~ msgid ""
-#~ "You can skip to the end and leave a response. Pinging is currently not "
-#~ "allowed."
-#~ msgstr ""
-#~ "Sie k&ouml;nnen einen <a href=\"#respond\">Kommentar hinterlassen</a>, "
-#~ "Pingbacks/Trackbacks sind momentan deaktiviert."
-#~ msgid "Edit this entry."
-#~ msgstr "Diesen Eintrag bearbeiten"
-#~ msgid "Sorry, no attachments matched your criteria."
-#~ msgstr ""
-#~ "Leider wurden keine Anh&auml;nge gefunden, die Ihren Kriterien "
-#~ "entsprechen."
-#~ msgid "No Responses"
-#~ msgstr "Keine Kommentare"
-#~ msgid "One Response"
-#~ msgstr "1 Kommentar"
-#~ msgid "% Responses"
-#~ msgstr "% Kommentare"
-#~ msgid "to &#8220;%s&#8221;"
-#~ msgstr "zu &#8222;%s&#8220;"
-#~ msgid "<cite>%s</cite> Says:"
-#~ msgstr "<cite>%s</cite> sagt:"
-#~ msgid "edit"
-#~ msgstr "bearbeiten"
-#~ msgid "Comments are closed."
-#~ msgstr "Kommentieren ist momentan nicht m&ouml;glich."
-#~ msgid "Leave a Reply"
-#~ msgstr "Kommentieren"
-#~ msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
-#~ msgstr "Angemeldet als <a href=\"%1$s\">%2$s</a>."
-#~ msgid "Log out of this account"
-#~ msgstr "Jetzt abmelden"
-#~ msgid "Log out &raquo;"
-#~ msgstr "Abmelden &raquo;"
-#~ msgid "(required)"
-#~ msgstr "(ben&ouml;tigt)"
-#~ msgid "Mail (will not be published)"
-#~ msgstr "E-Mail (wird nicht ver&ouml;ffentlicht)"
-#~ msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
-#~ msgstr ""
-#~ "<strong>XHTML:</strong> Sie k&ouml;nnen folgende Elemente nutzen: <code>%"
-#~ "s</code>"
-#~ msgid "Submit Comment"
-#~ msgstr "Kommentar senden"
-#~ msgid "%1$s - Comments on %2$s"
-#~ msgstr "%1$s - Kommentare zu %2$s"
-#~ msgid ""
-#~ "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on "
-#~ "this post."
-#~ msgstr ""
-#~ "<abbr title=\"Really Simple Syndication\">RSS</abbr>-Feed f&uuml;r "
-#~ "Kommentare zu diesem Artikel."
-#~ msgid ""
-#~ "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack "
-#~ "this entry is: <em>%s</em>"
-#~ msgstr ""
-#~ "Die Trackback-<abbr title=\"Universal Resource Locator\">URL</abbr> zu "
-#~ "diesem Artikel ist: <em>%s</em>"
-#~ msgid "Pingback"
-#~ msgstr "Pingback"
-#~ msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
-#~ msgstr "von %1$s &#8212; %2$s um <a href=\"#comment-%3$s\">%4$s Uhr</a>"
-#~ msgid "No comments yet."
-#~ msgstr "Noch keine Kommentare."
-#~ msgid ""
-#~ "Line and paragraph breaks automatic, e-mail address never displayed, "
-#~ "<acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: "
-#~ "<code>%s</code>"
-#~ msgstr ""
-#~ "Zeilen- und Absatzumbr&uuml;che werden automatisch eingef&uuml;gt, Ihre E-"
-#~ "Mail wird nicht angezeigt.Erlaubtes <acronym title=\"Hypertext Markup "
-#~ "Language\">HTML</acronym>:"
-#~ msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
-#~ msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
-#~ msgid "Say It!"
-#~ msgstr "Senden"
-#~ msgid "Sorry, the comment form is closed at this time."
-#~ msgstr "Kommentieren ist momentan leider nicht m&ouml;glich."
-#~ msgid "Close this window."
-#~ msgstr "Fenster schlie&szlig;en."
-#~ msgid ""
-#~ "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art "
-#~ "semantic personal publishing platform\"><strong>WordPress</strong></a>"
-#~ msgstr ""
-#~ "<a href=\"%s\" title=\"WordPress, die f&uuml;hrende Weblog-Anwendung"
-#~ "\"><strong>WordPress</strong></a>"
-#~ msgid "%1$s is proudly powered by %2$s"
-#~ msgstr "%1$s l&auml;uft mit %2$s"
-#~ msgid "%1$s and %2$s."
-#~ msgstr "%1$s und %2$s."
-#~ msgid "Entries (RSS)"
-#~ msgstr "Beitr&auml;ge (RSS)"
-#~ msgid "%d queries. %s seconds."
-#~ msgstr "%d Abfragen. %s Sekunden."
-#~ msgid "Customize Header"
-#~ msgstr "Kopfbereich anpassen"
-#~ msgid "Header Image and Color"
-#~ msgstr "Hintergrundbild und -farbe"
-#~ msgid "Close Color Picker"
-#~ msgstr "Farbw&auml;hler schlie&szlig;en"
-#~ msgid "Save"
-#~ msgstr "Speichern"
-#~ msgid "Font Color:"
-#~ msgstr "Schriftfarbe:"
-#~ msgid "Any CSS color (%s or %s or %s)"
-#~ msgstr "Eine beliebige CSS-Farbe (%s oder %s oder %s)"
-#~ msgid "Upper Color:"
-#~ msgstr "Farbe f&uuml;r oben:"
-#~ msgid "HEX only (%s or %s)"
-#~ msgstr "Nur HEX (%s oder %s)"
-#~ msgid "Lower Color:"
-#~ msgstr "Farbe f&uuml;r unten:"
-#~ msgid "Toggle Text"
-#~ msgstr "Text umschalten"
-#~ msgid "Use Defaults"
-#~ msgstr "Standard verwenden"
-#~ msgid "Font Color"
-#~ msgstr "Schriftfarbe"
-#~ msgid "Upper Color"
-#~ msgstr "Farbe f&uuml;r oben"
-#~ msgid "Lower Color"
-#~ msgstr "Farbe f&uuml;r unten"
-#~ msgid "Advanced"
-#~ msgstr "Erweitert"
-#~ msgid "Update Header &raquo;"
-#~ msgstr "Kopfbereich aktualisieren &raquo;"
-#~ msgid "Font Color (CSS):"
-#~ msgstr "Schriftfarbe (CSS):"
-#~ msgid "Upper Color (HEX):"
-#~ msgstr "Farbe f&uuml;r oben (HEX):"
-#~ msgid "Lower Color (HEX):"
-#~ msgstr "Farbe f&uuml;r unten (HEX):"
-#~ msgid "Select Default Colors"
-#~ msgstr "Standardfarben ausw&auml;hlen"
-#~ msgid "Toggle Text Display"
-#~ msgstr "Textanzeige aktivieren/deaktivieren"
-#~ msgid "&raquo; Blog Archive"
-#~ msgstr "&raquo; Blogarchiv"
-#~ msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
-#~ msgstr ""
-#~ "Dieser Beitrag wurde am %1$s um %2$s Uhr veröffentlicht und unter %3$s "
-#~ "gespeichert."
-#~ msgid "Sorry, no posts matched your criteria."
-#~ msgstr ""
-#~ "Leider wurden keine Artikel gefunden, die Ihren Kriterien entsprechen."
-#~ msgid "Sorry, but you are looking for something that isn&#8217;t here."
-#~ msgstr "Es konnten leider keine passenden Inhalte gefunden werden."
-#~ msgid "Read the rest of this page &raquo;"
-#~ msgstr "Diesen Seite weiterlesen &raquo;"
-#~ msgid "Search for:"
-#~ msgstr "Suchen nach:"
-#~ msgid "No posts found. Try a different search?"
-#~ msgstr ""
-#~ "Ihre Suche ergab keine Treffer. M&ouml;chten Sie eine neue Suche starten?"
-#~ msgid "Author"
-#~ msgstr "Autor"
-#~ msgid "You are currently browsing the archives for the %s category."
-#~ msgstr "Sie sind momentan im Archiv der Kategorie %s."
-#~ msgid ""
-#~ "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives "
-#~ "for the day %3$s."
-#~ msgstr ""
-#~ "Sie sind momentan im Blogarchiv f&uuml;r den %3$s von <a href=\"%1$s/\">%2"
-#~ "$s</a>."
-#~ msgid ""
-#~ "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives "
-#~ "for %3$s."
-#~ msgstr ""
-#~ "Sie sind momentan im Blogarchiv f&uuml;r %3$s von <a href=\"%1$s/\">%2$s</"
-#~ "a>."
-#~ msgid ""
-#~ "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives "
-#~ "for the year %3$s."
-#~ msgstr ""
-#~ "Sie sind momentan im Blogarchiv f&uuml;r das Jahr %3$s von <a href=\"%1$s/"
-#~ "\">%2$s</a>."
-#~ msgid ""
-#~ "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for "
-#~ "<strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything "
-#~ "in these search results, you can try one of these links."
-#~ msgstr ""
-#~ "Sie haben im Blogarchiv von <a href=\"%1$s/\">%2$s</a> nach "
-#~ "<strong>&#8222;%3$s&#8220;</strong> gesucht. Falls Sie in den "
-#~ "Suchergebnissen nicht f&uuml;ndig werden, helfen Ihnen m&ouml;"
-#~ "glicherweise die folgenden Links."
-#~ msgid ""
-#~ "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
-#~ msgstr "Sie sind momentan im Blogarchiv von <a href=\"%1$s/\">%2$s</a>."
-#~ msgid "This page validates as XHTML 1.0 Transitional"
-#~ msgstr "Diese Seite ist valides XHTML 1.0 Transitional"
-#~ msgid "XHTML Friends Network"
-#~ msgstr "XHTML Friends Network"
-#~ msgid "XFN"
-#~ msgstr "XFN"
-#~ msgid ""
-#~ "Powered by WordPress, state-of-the-art semantic personal publishing "
-#~ "platform."
-#~ msgstr "L&auml;uft mit WordPress, der f&uuml;hrenden Weblog-Anwendung."
-#~ msgid "Edit this entry"
-#~ msgstr "Diesen Eintrag bearbeiten"
-#~ msgid ""
-#~ "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art "
-#~ "semantic personal publishing platform\"><strong>Wordpress</strong></a>"
-#~ msgstr ""
-#~ "<a href=\"%s\" title=\"WordPress, die f&uuml;hrende Weblog-Anwendung"
-#~ "\"><strong>WordPress</strong></a>"
-#~ msgid ""
-#~ "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out "
-#~ "of this account\">Logout &raquo;</a>"
-#~ msgstr ""
-#~ "Angemeldet als <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\">Abmelden "
-#~ "&raquo;</a>"
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Nu s-a găsit nimic"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Ne pare rau, dar nimic nu se potriveşte cu căutarea dumneavoastră. Va rugăm să reîncercati cu alte cuvinte."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/ru_RU.mo b/wp-content/themes/thematic/library/languages/ru_RU.mo
index a5a1532de3e131ef2a96cd386081d6cdcfafa7ad..8caa258b1f82beaa32e682e48f21dbfad3372131 100644
Binary files a/wp-content/themes/thematic/library/languages/ru_RU.mo and b/wp-content/themes/thematic/library/languages/ru_RU.mo differ
diff --git a/wp-content/themes/thematic/library/languages/ru_RU.po b/wp-content/themes/thematic/library/languages/ru_RU.po
index f785eb0be2330bdd2ece641f1cd9bf86494120f8..f13fe96bb2b3691b7a030fe2216e85cad9d160fb 100644
--- a/wp-content/themes/thematic/library/languages/ru_RU.po
+++ b/wp-content/themes/thematic/library/languages/ru_RU.po
@@ -1,403 +1,683 @@
+# Translation of Thematic 1.0.3.x in Russian
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"Project-Id-Version: rivage\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-08-09 15:37+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: curt <curtdp@gmail.com>\n"
-"Language-Team: Frédéric Bourgeon <frenetikfred@gmail.com>\n"
+"PO-Revision-Date: 2013-03-05 17:46:54+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n>1\n"
-"X-Poedit-Language: French\n"
-"X-Poedit-Country: FRANCE\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"X-Poedit-KeywordsList: __;_e;_c\n"
-"X-Poedit-Basepath: .\n"
-"X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wp-content\\themes\\thematic-0-6\n"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/404.php:12
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps  searching will help."
-msgstr "Извините, но мы не смогли найти то, что вы ищете. Возможно, поиск поможет."
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/404.php:17
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/search.php:58
-msgid "Find"
-msgstr "Поиск"
+"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-Generator: GlotPress/0.1\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archive.php:16
-#, php-format
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Дневные архивы: <span>%s</span>"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archive.php:18
-#, php-format
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Месячные архивы: <span>%s</span>"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archive.php:20
-#, php-format
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Годовой архив: <span>%s</span>"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archive.php:22
-msgid "Blog Archives"
-msgstr "Архивы блога"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archive.php:31
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archive.php:53
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/author.php:21
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/author.php:57
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/category.php:20
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/category.php:42
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/index.php:17
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/index.php:49
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/search.php:21
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/search.php:43
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Старые записи"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archive.php:32
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archive.php:54
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/author.php:22
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/author.php:58
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/category.php:21
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/category.php:43
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/index.php:18
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/index.php:50
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/search.php:22
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/search.php:44
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Новые записи <span class=\"meta-nav\">&raquo;</span>"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archive.php:41
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/attachment.php:20
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/author.php:45
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/category.php:30
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/index.php:30
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/search.php:31
-msgid "Read More <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Читать дальше <span class=\"meta-nav\">&raquo;</span>"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archives.php:20
-msgid "Archives by Category"
-msgstr "Архивы категории"
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archives.php:26
-msgid "Archives by Month"
-msgstr "Архивы по месяцам"
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/archives.php:32
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:39
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:65
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/links.php:20
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/page.php:16
-msgid "Edit"
-msgstr "Редактировать"
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/attachment.php:22
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/index.php:32
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Страницы:"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/author.php:15
-msgid "Author Archives: "
-msgstr "Архивы автора"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/author.php:34
+#: author.php:67
 msgid "Email "
 msgstr "E-mail "
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/category.php:13
-msgid "Category Archives:"
-msgstr "Архив категории"
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:9
+#: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Эта публикация защищена паролем. Введите пароль чтобы увидеть комментарии."
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:28
-#, php-format
-msgid "<span>%d</span> Comments"
-msgstr "<span>%d</span> комментариев"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:28
-msgid "<span>One</span> Comment"
-msgstr "<span>Один</span> комментарий"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:35
-#, php-format
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "Опубликован %1$s  в %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Прямая ссылка на этот комментарий\">Прямая ссылка</a>"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:40
-msgid "\t\t\t\t\t<span class='unapproved'>Your comment is awaiting moderation.</span>\n"
-msgstr "\t\t\t\t\t<span class='unapproved'>Ваш комментарий ожидает модерации.</span>\n"
+#: comments.php:111
+msgid "Trackbacks"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:54
-#, php-format
-msgid "<span>%d</span> Trackbacks"
-msgstr "<span>%d</span> trackback'ов"
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:54
-msgid "<span>One</span> Trackback"
-msgstr "<span>один</span> trackback"
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:61
-#, php-format
-msgid "By %1$s on %2$s at %3$s"
-msgstr "%1$s %2$s %3$"
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:66
-msgid "\\t\\t\\t\\t\\t<span class=\"unapproved\">Your trackback is awaiting moderation.</span>\\n"
-msgstr "\\t\\t\\t\\t\\t<span class=\"unapproved\">Ваш trackback ожидает модерации.</span>\\n"
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:79
+#: library/extensions/comments-extensions.php:155
 msgid "Post a Comment"
 msgstr "Оставить комментарий"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:82
-#, php-format
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Вы должны <a href=\"%s\" title=\"Log in\">войти</a> чтобы оставить комментарий."
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:90
-#, php-format
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\">Вы вошли как <a href=\"%1$s\" title=\"Вы вошли как %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Выйти из аккаунта\">Выйти?</a></span>"
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:97
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "Ваш e-mail <em>никогда</em> не будет опубликован или передан третьим лицам."
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:97
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Обязательные поля отмечены <span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Оставить комментарий"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:100
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Имя"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:100
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:105
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"required\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:105
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "E-mail"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:110
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Сайт"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:117
-msgid "Comment"
-msgstr "Комментарий"
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/comments.php:123
-msgid "Post Comment"
-msgstr "Оставить комментарий"
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/header.php:23
-msgid "Posts RSS feed"
-msgstr "RSS лента записей"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/header.php:24
-msgid "Comments RSS feed"
-msgstr "RSS лента комментариев"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/header.php:62
-msgid "Skip navigation to the content"
-msgstr "Пропустить навигацию"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/header.php:62
-msgid "Skip to content"
-msgstr "Перейти к содержимому"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/page.php:14
-msgid "Pages: "
-msgstr "Страницы:"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/search.php:15
-msgid "Search Results for:"
-msgstr "Результаты поиска для:"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/search.php:51
-msgid "Nothing Found"
-msgstr "Ничего не найдено"
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/search.php:53
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Извините, но мы не нашли ни чего отвечающего вашим запросам. Пожалуйста попробуйте снова с другими ключевыми словами."
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
+msgid "Category Archives:"
+msgstr "Архив категории"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/sidebar.php:16
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/sidebar.php:20
-msgid "Search"
-msgstr "Поиск"
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
+msgid "Search Results for:"
+msgstr "Результаты поиска для:"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/sidebar.php:26
-msgid "Pages"
-msgstr "Страницы"
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
+msgid "Tag Archives:"
+msgstr "Архивы тэгов:"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/sidebar.php:33
-msgid "Categories"
-msgstr "Категории"
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
+msgid "Archives:"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/sidebar.php:41
-msgid "Archives"
-msgstr "Архивы"
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/sidebar.php:58
-msgid "RSS Feeds"
-msgstr "RSS ленты"
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/sidebar.php:60
-msgid "All posts"
-msgstr "Все записи"
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/sidebar.php:61
-msgid "All comments"
-msgstr "Все комментарии"
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/sidebar.php:66
-msgid "Meta"
-msgstr "Мета"
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/sitemeta.php:8
-msgid "Site Meta"
-msgstr "Мета сайта"
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
+msgid "Edit post"
+msgstr "Редактировать запись"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/tag.php:13
-msgid "Tag Archives:"
-msgstr "Архивы тэгов:"
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Редактировать"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:26
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Не найдено"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:31
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:115
-msgid "Permalink to "
-msgstr "Прямая ссылка на"
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:39
-msgid "By "
-msgstr "Опубликовал "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:41
-msgid "View all posts by "
-msgstr "Посмотреть все записи "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:65
-msgid "Edit post"
-msgstr "Редактировать запись"
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1203
+msgid "Archives by Category"
+msgstr "Архивы категории"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:72
-msgid "This entry was posted in "
-msgstr "Запись опубликована в рубрике "
+#: library/extensions/content-extensions.php:1234
+msgid "Archives by Month"
+msgstr "Архивы по месяцам"
+
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:75
-msgid "Also posted in "
-msgstr "Также опубликована в "
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Поиск"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:78
-msgid "Posted in "
-msgstr "Опубликовано в рубрике "
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:84
-msgid " and tagged"
-msgstr " с тэгами"
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:87
-msgid " Also tagged "
-msgstr " отмечена тегами"
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:89
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
+
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Теги"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:97
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:100
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:103
-msgid "Comment on "
-msgstr "Комментарий на "
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:98
-msgid " Comments"
-msgstr " Комментарии"
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:101
-msgid " Comment"
-msgstr " Комментарий"
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:104
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Оставить комментарий"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:107
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Комментирование закрыто"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:115
-msgid ". Bookmark the "
-msgstr ". Создать закладку на"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:116
-msgid "permalink"
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
 msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:118
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:126
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Оставить комментарий"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:119
-msgid " or leave a trackback: "
-msgstr "или trackback:"
-
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:120
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:123
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Trackback URL для вашей записи"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:120
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:123
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Trackback URL"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:122
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr " Комментирование закрыто, но вы можете оставить trackback:"
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:125
-msgid " Trackbacks are closed, but you can "
-msgstr " Trackback'и закрыты, но вы можете"
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:126
-msgid "post a comment"
-msgstr "оставить комментарий"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/hooks-filters.php:128
-msgid " Both comments and trackbacks are currently closed."
-msgstr " И комментирование и trackback'и в настоящий момент закрыты."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/theme-options.php:199
-msgid "For more information about this theme, <a href=\"http://themeshaper.com\">visit ThemeShaper</a>. Please visit the <a href=\"http://themeshaper.com/forums/\">ThemeShaper Forums</a> if you have any questions about Thematic."
-msgstr "За большей информацией об этой теме, <a href=\"http://themeshaper.com\">обращайтесь на ThemeShaper</a>. Так же можете посетить <a href=\"http://themeshaper.com/forums/\">Форумы ThemeShaper</a> если у вас есть вопросы о теме Thematic."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/widgets.php:43
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/widgets.php:195
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/widgets.php:196
-msgid "RSS Links"
-msgstr "RSS ссылки"
+#: library/extensions/discussion-extensions.php:36
+msgid "Edit comment"
+msgstr ""
+
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
+
+#: library/extensions/discussion.php:52
+msgid "Reply"
+msgstr ""
+
+#: library/extensions/discussion.php:53
+msgid "Log in to reply."
+msgstr ""
+
+#: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
+msgid "By %1$s on %2$s at %3$s"
+msgstr ""
+
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
+
+#: library/extensions/header-extensions.php:319
+#: library/extensions/widgets.php:157
+msgid "Posts RSS feed"
+msgstr "RSS лента записей"
+
+#: library/extensions/header-extensions.php:343
+#: library/extensions/widgets.php:158
+msgid "Comments RSS feed"
+msgstr "RSS лента комментариев"
+
+#: library/extensions/header-extensions.php:667
+msgid "Skip navigation to the content"
+msgstr "Пропустить навигацию"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/widgets.php:67
+#: library/extensions/header-extensions.php:667
+msgid "Skip to content"
+msgstr "Перейти к содержимому"
+
+#: library/extensions/helpers.php:50 library/extensions/helpers.php:69
+msgid "There is no excerpt because this is a protected post."
+msgstr ""
+
+#: library/extensions/theme-options.php:50
+msgid "Index Insert Position"
+msgstr ""
+
+#: library/extensions/theme-options.php:51
+msgid "Info on Author Page"
+msgstr ""
+
+#: library/extensions/theme-options.php:52
+msgid "Text in Footer"
+msgstr ""
+
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:34
+msgid "To search, type and hit enter"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:40
+#: library/extensions/widgets.php:56 library/extensions/widgets.php:61
+msgid "Search"
+msgstr "Поиск"
+
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:72
+msgid "The primary widget area, most often used as a sidebar."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:87
+msgid "The secondary widget area, most often used as a sidebar."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:102
+msgid "The 1st widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:117
+msgid "The 2nd widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:132
+msgid "The 3rd widget area in the footer."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:147
+msgid "The top widget area displayed on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:162
+msgid "The widget area inserted after x posts on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:177
+msgid "The bottom widget area displayed on the index page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:192
+msgid "The top widget area displayed on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:207
+msgid "The widget area inserted between the post and the comments on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:222
+msgid "The bottom widget area displayed on a single post."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:237
+msgid "The top widget area displayed on a page."
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
+#: library/extensions/widgets-extensions.php:252
+msgid "The bottom widget area displayed on a page."
+msgstr ""
+
+#: library/extensions/widgets.php:55
+msgid "A search form for your blog"
+msgstr ""
+
+#: library/extensions/widgets.php:77 library/extensions/widgets.php:132
+#: library/extensions/widgets.php:175
 msgid "Title:"
 msgstr "Заголовок:"
 
-#: C:\wamp\www\wordpress\wp-content\themes\thematic-0-6/library/functions/widgets.php:190
-msgid "Blog Index"
-msgstr "Главная"
+#: library/extensions/widgets.php:100
+msgid "Log in/out and admin"
+msgstr ""
+
+#: library/extensions/widgets.php:101 library/extensions/widgets.php:106
+msgid "Meta"
+msgstr "Мета"
+
+#: library/extensions/widgets.php:145
+msgid "Links to your posts and comments feed"
+msgstr ""
+
+#: library/extensions/widgets.php:146 library/extensions/widgets.php:151
+msgid "RSS Links"
+msgstr "RSS ссылки"
+
+#: library/extensions/widgets.php:157
+msgid "All posts"
+msgstr "Все записи"
+
+#: library/extensions/widgets.php:158
+msgid "All comments"
+msgstr "Все комментарии"
+
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
+msgstr ""
+
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"required\">*</span>"
+
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Страницы:"
+
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Ничего не найдено"
+
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Извините, но мы не нашли ни чего отвечающего вашим запросам. Пожалуйста попробуйте снова с другими ключевыми словами."
+
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
+msgstr ""
+
+msgid "Thematic"
+msgstr ""
+
+msgid "http://thematictheme.com"
+msgstr ""
+
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
+msgstr ""
+
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
+msgstr ""
+
+msgid "http://themeshaper.com/"
+msgstr ""
+
+msgid "Deprecated Archives Template"
+msgstr ""
+
+msgid "Links Page"
+msgstr ""
+
+msgid "Archives Page"
+msgstr ""
+
+msgid "Deprecated Blog Template"
+msgstr ""
 
+msgid "Full Width"
+msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/sr_RS.mo b/wp-content/themes/thematic/library/languages/sr_RS.mo
index c9a7c0e84e6dee5d73c8fe61366fb09afebb4e82..35d0390757a4ffc335e0c980da5bbf3b0dcb2396 100644
Binary files a/wp-content/themes/thematic/library/languages/sr_RS.mo and b/wp-content/themes/thematic/library/languages/sr_RS.mo differ
diff --git a/wp-content/themes/thematic/library/languages/sr_RS.po b/wp-content/themes/thematic/library/languages/sr_RS.po
index 50dba1bad25ab904ab9c41512a738f83276ed943..ddbce535fabaf2f1b29a83af2258c3f49439fb5b 100644
--- a/wp-content/themes/thematic/library/languages/sr_RS.po
+++ b/wp-content/themes/thematic/library/languages/sr_RS.po
@@ -1,14 +1,24 @@
-# Translation of Thematic 1.0.3 in Serbian
-# This file is distributed under the same license as the Thematic 1.0.3 package.
+# Translation of Thematic 1.0.3.x in Serbian
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2012-10-22 10:00:05+0000\n"
+"PO-Revision-Date: 2013-03-05 17:46:45+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: Thematic 1.0.3\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
 
 #: archives.php:20 template-page-blog.php:22
 msgid "The template %s"
@@ -75,7 +85,7 @@ msgid "Post Comment"
 msgstr "Објавите коментар"
 
 #: library/extensions/comments-extensions.php:228
-#: library/legacy/deprecated.php:357
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Име"
 
@@ -86,17 +96,17 @@ msgid "*"
 msgstr "*"
 
 #: library/extensions/comments-extensions.php:229
-#: library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "Е-пошта"
 
 #: library/extensions/comments-extensions.php:230
-#: library/legacy/deprecated.php:367
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Вебсајт"
 
 #: library/extensions/comments-extensions.php:238
-#: library/legacy/deprecated.php:354
+#: library/legacy/deprecated.php:362
 msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
 msgid "Your email is %1$snever%2$s published nor shared."
 msgstr "Ваша е-пошта неће %1$sникад%2$s бити објављена или прослеђена наком."
@@ -107,32 +117,32 @@ msgid "Required fields are marked %1$s*%2$s"
 msgstr "Захтевана поља су обележена %1$s*%2$s"
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "You must be %1$slogged in%2$s to post a comment."
 msgstr "Морате се %1$пријавити %2$s да бисте оставили коментар"
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "Log in"
 msgstr "Пријави се"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as %s"
 msgstr "Пријављен као %s"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out of this account"
 msgstr "Изађите из овог налога"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out?"
 msgstr "Желите да се одјавите?"
 
 #: library/extensions/comments-extensions.php:244
-#: library/legacy/deprecated.php:379
+#: library/legacy/deprecated.php:387
 msgctxt "%$1s and %$2s are <abbr> tags"
 msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr "Можете користити ове %1$sHTML%2$s ознаке и атрибуте"
@@ -174,163 +184,159 @@ msgid "Yearly Archives: %s"
 msgstr "Годишнји архиви: %s"
 
 #: library/extensions/content-extensions.php:424
-#: library/extensions/content-extensions.php:1706
+#: library/extensions/content-extensions.php:1710
 msgid "Older posts"
 msgstr "Старији чланци"
 
 #: library/extensions/content-extensions.php:426
-#: library/extensions/content-extensions.php:1708
+#: library/extensions/content-extensions.php:1712
 msgid "Newer posts"
 msgstr "Новији чланци"
 
 #: library/extensions/content-extensions.php:888
-#: library/extensions/content-extensions.php:1418
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Измена чланка"
 
 #: library/extensions/content-extensions.php:890
-#: library/extensions/content-extensions.php:1420
+#: library/extensions/content-extensions.php:1424
 #: library/extensions/discussion-extensions.php:37
-#: library/extensions/discussion.php:84 links.php:54 page.php:52
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
 #: template-page-archives.php:55 template-page-fullwidth.php:53
 msgid "Edit"
 msgstr "Измена"
 
-#: library/extensions/content-extensions.php:918
+#: library/extensions/content-extensions.php:921
 #: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Ништа није пронађено"
 
-#: library/extensions/content-extensions.php:923
-#: library/extensions/content-extensions.php:1141
+#: library/extensions/content-extensions.php:926
 #: library/extensions/content-extensions.php:1145
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
 msgid "Permalink to %s"
 msgstr "Пермалинк на %s"
 
-#: library/extensions/content-extensions.php:983
+#: library/extensions/content-extensions.php:987
 msgid "By"
 msgstr "Од "
 
-#: library/extensions/content-extensions.php:994
+#: library/extensions/content-extensions.php:998
 msgid "View all posts by %s"
 msgstr "Погледај све чланке од %s"
 
-#: library/extensions/content-extensions.php:1023
+#: library/extensions/content-extensions.php:1027
 msgid "Published:"
 msgstr "Објављено: "
 
-#: library/extensions/content-extensions.php:1199
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Архиве по категоријама"
 
-#: library/extensions/content-extensions.php:1230
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Архиве по месецу"
 
-#: library/extensions/content-extensions.php:1291
+#: library/extensions/content-extensions.php:1295
 msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
 msgstr "Извините, али ми нисмо у могућности да пронађемо оно сте тражили. Можда Вам претрага може помоћи. "
 
-#: library/extensions/content-extensions.php:1297 search.php:70
+#: library/extensions/content-extensions.php:1301 search.php:70
 msgid "Find"
 msgstr "Пронађи"
 
-#: library/extensions/content-extensions.php:1316
+#: library/extensions/content-extensions.php:1320
 msgid "Read More %s"
 msgstr "Прочитај више %s"
 
-#: library/extensions/content-extensions.php:1368
+#: library/extensions/content-extensions.php:1372
 msgid "Browse the %s archive."
 msgstr "Претражи %s архиву."
 
-#: library/extensions/content-extensions.php:1370
+#: library/extensions/content-extensions.php:1374
 msgid "Permalink to %s Archive"
 msgstr "Пермалинк до  %s Архиве"
 
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1380
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
 msgid "Bookmark the %1$spermalink%2$s."
 msgstr "Забележи (bookmark)  %1$sпермалинк%2$s."
 
-#: library/extensions/content-extensions.php:1534
+#: library/extensions/content-extensions.php:1538
 msgid "This entry was posted in %s"
 msgstr "Унос је објављен у %s"
 
-#: library/extensions/content-extensions.php:1545
+#: library/extensions/content-extensions.php:1549
 msgid "Also posted in %s"
 msgstr "Такође објављено у %s"
 
-#: library/extensions/content-extensions.php:1549
+#: library/extensions/content-extensions.php:1553
 msgid "Posted in %s"
 msgstr "Објављено у %s"
 
-#: library/extensions/content-extensions.php:1575
+#: library/extensions/content-extensions.php:1579
 msgid "This entry is tagged"
 msgstr "Унос је означен (tagged)"
 
-#: library/extensions/content-extensions.php:1578
+#: library/extensions/content-extensions.php:1582
 msgid "and tagged"
 msgstr "и означен (tagged)"
 
-#: library/extensions/content-extensions.php:1581
+#: library/extensions/content-extensions.php:1585
 msgid "Also tagged"
 msgstr "Такође означен (tagged)"
 
-#: library/extensions/content-extensions.php:1583
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Oзначен (tagged)"
 
-#: library/extensions/content-extensions.php:1613
-#: library/extensions/content-extensions.php:1619
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
 msgid "Comment on %s"
 msgstr "Коментар на %s"
 
-#: library/extensions/content-extensions.php:1615
+#: library/extensions/content-extensions.php:1619
 msgid "%s Response"
 msgid_plural "%s Responses"
 msgstr[0] "%s Одговор"
 msgstr[1] "%s Одговора"
 msgstr[2] "%s Одговора"
 
-#: library/extensions/content-extensions.php:1620
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "Остави коментар"
 
-#: library/extensions/content-extensions.php:1623
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Коментари су затворени"
 
-#: library/extensions/content-extensions.php:1647
+#: library/extensions/content-extensions.php:1651
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
 msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
 msgstr "%1$sОбјави коментар%2$s или остави трекбек: %3$s"
 
-#: library/extensions/content-extensions.php:1648
-#: library/extensions/content-extensions.php:1663
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Објави коментар"
 
-#: library/extensions/content-extensions.php:1652
-#: library/extensions/content-extensions.php:1659
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Трекбек URL за Ваш чланак"
 
-#: library/extensions/content-extensions.php:1653
-#: library/extensions/content-extensions.php:1660
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Трекбек URL"
 
-#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1660
 msgctxt "%s is trackback url, wrapped in link tags"
 msgid "Comments are closed, but you can leave a trackback: %s"
 msgstr "Коментари су затворени, али ви можете оставити трекбек: %s"
 
-#: library/extensions/content-extensions.php:1663
-msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
-msgstr "Трекбекови су затворени, али можете %1$sобјавити коментар%2$s."
-
-#: library/extensions/content-extensions.php:1665
+#: library/extensions/content-extensions.php:1669
 msgid "Both comments and trackbacks are currently closed."
 msgstr "И коментари и трекбекови су тренутно затворени"
 
@@ -382,11 +388,11 @@ msgstr "RSS feed о чланцима"
 msgid "Comments RSS feed"
 msgstr "RSS feed о коментарима"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Прескочи навигацију  до садржаја"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Иди на садржај"
 
@@ -448,31 +454,31 @@ msgctxt "%1$s and %2$s are <a> tags"
 msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
 msgstr "Молимо Вас посетете %1$sThematicTheme.com форуме%2$s уколико имате нека питања о Thematic"
 
-#: library/extensions/theme-options.php:256
+#: library/extensions/theme-options.php:267
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options"
 msgstr "%s Опције теме"
 
-#: library/extensions/theme-options.php:294
+#: library/extensions/theme-options.php:305
 msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
 msgstr "Индекс за унос widget области ће се појавити после овог броја чланка. Не уношењем ничега или 0 ће онемогућити ово својство. "
 
-#: library/extensions/theme-options.php:307
+#: library/extensions/theme-options.php:318
 msgctxt "%1$s and %2$s are <a> tags"
 msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
 msgstr "Прикажи %1$smicroformatted vCard%2$s на аватару аутора, био и е-пошту на ауторвој страни"
 
-#: library/extensions/theme-options.php:320
+#: library/extensions/theme-options.php:331
 msgctxt "%s are shortcode tags"
 msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
 msgstr "Можете користити и кодовне скраћенице у подножју Вашег текста. Примери кодовних скраћеница: %s"
 
-#: library/extensions/theme-options.php:333
+#: library/extensions/theme-options.php:355
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
 msgstr "%s Опције теме ће бити надограђене у једну унапређену опцију. Уклоните опције о правима из базе података. "
 
-#: library/extensions/theme-options.php:360
+#: library/extensions/theme-options.php:382
 msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
 msgstr "Вредност индекса позиције уноса мора бити број који је једнак или већи од нуле. Ово подешавање ће бити враћено на претходну вредност."
 
@@ -622,11 +628,11 @@ msgstr "Сви чланци"
 msgid "All comments"
 msgstr "Сви коментари"
 
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as"
 msgstr "Пријављен као"
 
-#: library/legacy/deprecated.php:357 library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
 msgid "<span class=\"required\">*</span>"
 msgstr "<span class=\"required\">*</span>"
 
@@ -661,11 +667,6 @@ msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http
 msgid "http://themeshaper.com/"
 msgstr "http://themeshaper.com/ "
 
-msgid "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-msgstr ""
-"Бела, са три колоне, две колоне, фиксираним дужинама, опцјама теме, левим sidebar-ом, деним sidebar-ом, threaded коментарима, лепљивим коментарима, microformat-има\n"
-" "
-
 msgid "Deprecated Archives Template"
 msgstr "Темплејт са старим архивама"
 
diff --git a/wp-content/themes/thematic/library/languages/sv_SE.mo b/wp-content/themes/thematic/library/languages/sv_SE.mo
index c77f63fac507679748ba60841b8acd0a47af7e53..be4224ddbfbd14565ea2190382ed1e16761328c7 100644
Binary files a/wp-content/themes/thematic/library/languages/sv_SE.mo and b/wp-content/themes/thematic/library/languages/sv_SE.mo differ
diff --git a/wp-content/themes/thematic/library/languages/sv_SE.po b/wp-content/themes/thematic/library/languages/sv_SE.po
index b4dc90304c7c61e2bf90f945314bf2f3113bc6ae..9caf1fc2894f6a6be7d06a0a7a516b421d7fddc4 100644
--- a/wp-content/themes/thematic/library/languages/sv_SE.po
+++ b/wp-content/themes/thematic/library/languages/sv_SE.po
@@ -1,14 +1,24 @@
-# Translation of Thematic 1.0.3 in Swedish
-# This file is distributed under the same license as the Thematic 1.0.3 package.
+# Translation of Thematic 1.0.3.x in Swedish
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2012-09-02 09:54:27+0000\n"
+"PO-Revision-Date: 2013-03-05 17:46:41+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: Thematic 1.0.3\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr "(Namnlös)"
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr "Trackbackar &auml;r avst&auml;ngda men du kan %1$sl&auml;mna en kommentar%2$s."
 
 #: archives.php:20 template-page-blog.php:22
 msgid "The template %s"
@@ -75,7 +85,7 @@ msgid "Post Comment"
 msgstr "L&auml;mna kommentar"
 
 #: library/extensions/comments-extensions.php:228
-#: library/legacy/deprecated.php:357
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "Namn"
 
@@ -86,17 +96,17 @@ msgid "*"
 msgstr "*"
 
 #: library/extensions/comments-extensions.php:229
-#: library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "Epost"
 
 #: library/extensions/comments-extensions.php:230
-#: library/legacy/deprecated.php:367
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Website"
 
 #: library/extensions/comments-extensions.php:238
-#: library/legacy/deprecated.php:354
+#: library/legacy/deprecated.php:362
 msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
 msgid "Your email is %1$snever%2$s published nor shared."
 msgstr "Din epostadress publiceras eller delas %1$saldrig%2$s."
@@ -107,32 +117,32 @@ msgid "Required fields are marked %1$s*%2$s"
 msgstr "Obligatoriska fält är markerade med %1$s*%2$s"
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "You must be %1$slogged in%2$s to post a comment."
 msgstr "Du måste vara %1$sinloggad%2$s för att kommentera."
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "Log in"
 msgstr "Logga in"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as %s"
 msgstr "Inloggad som %s"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out of this account"
 msgstr "Logga ut från det här användarkontot"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out?"
 msgstr "Logga ut?"
 
 #: library/extensions/comments-extensions.php:244
-#: library/legacy/deprecated.php:379
+#: library/legacy/deprecated.php:387
 msgctxt "%$1s and %$2s are <abbr> tags"
 msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr "Du kan använda dessa %1$sHTML%2$s taggar och attribut"
@@ -174,162 +184,158 @@ msgid "Yearly Archives: %s"
 msgstr "Arkiv (&aring;rligen): %s"
 
 #: library/extensions/content-extensions.php:424
-#: library/extensions/content-extensions.php:1706
+#: library/extensions/content-extensions.php:1710
 msgid "Older posts"
 msgstr "Äldre inlägg"
 
 #: library/extensions/content-extensions.php:426
-#: library/extensions/content-extensions.php:1708
+#: library/extensions/content-extensions.php:1712
 msgid "Newer posts"
 msgstr "Nyare inlägg"
 
 #: library/extensions/content-extensions.php:888
-#: library/extensions/content-extensions.php:1418
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Redigera inl&auml;gg"
 
 #: library/extensions/content-extensions.php:890
-#: library/extensions/content-extensions.php:1420
+#: library/extensions/content-extensions.php:1424
 #: library/extensions/discussion-extensions.php:37
-#: library/extensions/discussion.php:84 links.php:54 page.php:52
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
 #: template-page-archives.php:55 template-page-fullwidth.php:53
 msgid "Edit"
 msgstr "Redigera"
 
-#: library/extensions/content-extensions.php:918
+#: library/extensions/content-extensions.php:921
 #: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Inte hittat"
 
-#: library/extensions/content-extensions.php:923
-#: library/extensions/content-extensions.php:1141
+#: library/extensions/content-extensions.php:926
 #: library/extensions/content-extensions.php:1145
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
 msgid "Permalink to %s"
 msgstr "Permalänk till %s"
 
-#: library/extensions/content-extensions.php:983
+#: library/extensions/content-extensions.php:987
 msgid "By"
 msgstr "Av"
 
-#: library/extensions/content-extensions.php:994
+#: library/extensions/content-extensions.php:998
 msgid "View all posts by %s"
 msgstr "Se alla inl&auml;gg av %s"
 
-#: library/extensions/content-extensions.php:1023
+#: library/extensions/content-extensions.php:1027
 msgid "Published:"
 msgstr "Publicerad:"
 
-#: library/extensions/content-extensions.php:1199
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Arkiv per kategori"
 
-#: library/extensions/content-extensions.php:1230
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Arkiv per m&aring;nad"
 
-#: library/extensions/content-extensions.php:1291
+#: library/extensions/content-extensions.php:1295
 msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
 msgstr "Beklagar, men vi kunde inte hitta det du letar efter. Det kanske hjälper att söka."
 
-#: library/extensions/content-extensions.php:1297 search.php:70
+#: library/extensions/content-extensions.php:1301 search.php:70
 msgid "Find"
 msgstr "S&ouml;k"
 
-#: library/extensions/content-extensions.php:1316
+#: library/extensions/content-extensions.php:1320
 msgid "Read More %s"
 msgstr "L&auml;s mer %s"
 
-#: library/extensions/content-extensions.php:1368
+#: library/extensions/content-extensions.php:1372
 msgid "Browse the %s archive."
 msgstr "Bl&auml;ddra i %s-arkivet."
 
-#: library/extensions/content-extensions.php:1370
+#: library/extensions/content-extensions.php:1374
 msgid "Permalink to %s Archive"
 msgstr "Permal&auml;nk till %s-arkivet."
 
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1380
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
 msgid "Bookmark the %1$spermalink%2$s."
 msgstr "Bokm&auml;rk  %1$spermal&auml;nken%2$s."
 
-#: library/extensions/content-extensions.php:1534
+#: library/extensions/content-extensions.php:1538
 msgid "This entry was posted in %s"
 msgstr "Detta inl&auml;gg &auml;r publicerat i %s"
 
-#: library/extensions/content-extensions.php:1545
+#: library/extensions/content-extensions.php:1549
 msgid "Also posted in %s"
 msgstr "Ocks&aring; publicerat i %s"
 
-#: library/extensions/content-extensions.php:1549
+#: library/extensions/content-extensions.php:1553
 msgid "Posted in %s"
 msgstr "Publicerat i %s"
 
-#: library/extensions/content-extensions.php:1575
+#: library/extensions/content-extensions.php:1579
 msgid "This entry is tagged"
 msgstr "Det här inlägget är taggat"
 
-#: library/extensions/content-extensions.php:1578
+#: library/extensions/content-extensions.php:1582
 msgid "and tagged"
 msgstr "och taggat"
 
-#: library/extensions/content-extensions.php:1581
+#: library/extensions/content-extensions.php:1585
 msgid "Also tagged"
 msgstr "Ocks&aring; taggat"
 
-#: library/extensions/content-extensions.php:1583
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Taggat"
 
-#: library/extensions/content-extensions.php:1613
-#: library/extensions/content-extensions.php:1619
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
 msgid "Comment on %s"
 msgstr "Kommentera %s"
 
-#: library/extensions/content-extensions.php:1615
+#: library/extensions/content-extensions.php:1619
 msgid "%s Response"
 msgid_plural "%s Responses"
 msgstr[0] "%s Respons"
 msgstr[1] "%s Responser"
 
-#: library/extensions/content-extensions.php:1620
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "L&auml;mna en kommentar"
 
-#: library/extensions/content-extensions.php:1623
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "St&auml;ngt f&ouml;r kommentarer"
 
-#: library/extensions/content-extensions.php:1647
+#: library/extensions/content-extensions.php:1651
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
 msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
 msgstr "%1$sL&auml;mna en kommentar%2$s eller en trackback: %3$s"
 
-#: library/extensions/content-extensions.php:1648
-#: library/extensions/content-extensions.php:1663
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Skriv en kommentar"
 
-#: library/extensions/content-extensions.php:1652
-#: library/extensions/content-extensions.php:1659
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Trackback URL f&ouml;r ditt inl&auml;gg"
 
-#: library/extensions/content-extensions.php:1653
-#: library/extensions/content-extensions.php:1660
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Trackback URL"
 
-#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1660
 msgctxt "%s is trackback url, wrapped in link tags"
 msgid "Comments are closed, but you can leave a trackback: %s"
 msgstr "Kommentarer är avst&auml;ngda, men du kan l&auml;mna en trackback: %s"
 
-#: library/extensions/content-extensions.php:1663
-msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
-msgstr "Trackbackar är avst&auml;ngda, men du kan %1$sl&auml;mna en kommentar%2$s."
-
-#: library/extensions/content-extensions.php:1665
+#: library/extensions/content-extensions.php:1669
 msgid "Both comments and trackbacks are currently closed."
 msgstr "B&aring;de kommentarer och trackbackar &auml;r avst&auml;ngda."
 
@@ -381,11 +387,11 @@ msgstr "RSS-fl&ouml;de (inl&auml;gg)"
 msgid "Comments RSS feed"
 msgstr "RSS-fl&ouml;de (kommentarer)"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "Skippa navigation, vidare till inneh&aring;ll"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "Vidare till inneh&aring;ll"
 
@@ -447,31 +453,31 @@ msgctxt "%1$s and %2$s are <a> tags"
 msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
 msgstr "Om du har n&aring;gra fr&aring;gor om Thematic, bes&ouml;k %1$sforumen på ThematicTheme.com%2$s."
 
-#: library/extensions/theme-options.php:256
+#: library/extensions/theme-options.php:267
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options"
 msgstr "%s temainställningar"
 
-#: library/extensions/theme-options.php:294
+#: library/extensions/theme-options.php:305
 msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
 msgstr "Widgetf&auml;ltet f&ouml;r Index Insert kommer att s&auml;ttas in efter s&aring; h&auml;r m&aring;nga inl&auml;gg. Om du l&auml;mnar f&auml;ltet tomt eller skriver 0 avaktiveras widgetf&auml;ltet."
 
-#: library/extensions/theme-options.php:307
+#: library/extensions/theme-options.php:318
 msgctxt "%1$s and %2$s are <a> tags"
 msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
 msgstr "Visa ett %1$smicroformatterat vCard%2$s med författarens avatar, biografi och epost på författararkivet."
 
-#: library/extensions/theme-options.php:320
+#: library/extensions/theme-options.php:331
 msgctxt "%s are shortcode tags"
 msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
 msgstr "Du kan använda HTML och kortkoder i din sidfotstext. Exempel på kortkoder: %s"
 
-#: library/extensions/theme-options.php:333
+#: library/extensions/theme-options.php:355
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
 msgstr "%s temainst&auml;llningar har uppgraderats till ett f&ouml;rb&auml;ttrat format. Ta bort de f&ouml;r&aring;ldrade inst&auml;llningarna från databasen."
 
-#: library/extensions/theme-options.php:360
+#: library/extensions/theme-options.php:382
 msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
 msgstr "V&auml;rdet p&aring; index insert-inst&auml;llningen m&aring;ste vara en siffra som &auml;r st&ouml;rre &auml;n eller lika med noll. Denna inst&auml;llning har &aring;terst&auml;llts till det f&ouml;reg&aring;ende v&auml;rdet."
 
@@ -621,11 +627,11 @@ msgstr "Alla inl&auml;gg"
 msgid "All comments"
 msgstr "Alla kommentarer"
 
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as"
 msgstr "Inloggad som"
 
-#: library/legacy/deprecated.php:357 library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
 msgid "<span class=\"required\">*</span>"
 msgstr "<span class=\"required\">*</span>"
 
@@ -660,9 +666,6 @@ msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http
 msgid "http://themeshaper.com/"
 msgstr "http://themeshaper.com/"
 
-msgid "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-msgstr "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-
 msgid "Deprecated Archives Template"
 msgstr "Avrådd sidmall för Arkiv (Deprecated)"
 
diff --git a/wp-content/themes/thematic/library/languages/thematic.pot b/wp-content/themes/thematic/library/languages/thematic.pot
index 94bfb258ffa9cd7ea9d15f9161413e93ed17ebce..bd7215888413272222da22bbd3273a68f7c1dd65 100644
--- a/wp-content/themes/thematic/library/languages/thematic.pot
+++ b/wp-content/themes/thematic/library/languages/thematic.pot
@@ -1,14 +1,14 @@
-# Copyright (C) 2012 <a href="http://themeshaper.com/">Ian Stewart</a> &amp; <a href="http://thematic4you.com/">Chris Go&szlig;mann</a>
+# Copyright (C) 2013 <a href="http://themeshaper.com/">Ian Stewart</a> &amp; <a href="http://thematic4you.com/">Chris Go&szlig;mann</a>
 # This file is distributed under the GNU General Public License v2.0.
 msgid ""
 msgstr ""
-"Project-Id-Version: Thematic 1.0.3\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tags/thematic\n"
-"POT-Creation-Date: 2012-07-29 15:27:33+00:00\n"
+"Project-Id-Version: Thematic 1.0.4\n"
+"Report-Msgid-Bugs-To: https://github.com/ThematicTheme/Thematic/issues?state=open\n"
+"POT-Creation-Date: 2013-04-02 21:19:26+00:00\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 
@@ -82,7 +82,7 @@ msgid "Post Comment"
 msgstr ""
 
 #: library/extensions/comments-extensions.php:228
-#: library/legacy/deprecated.php:357
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr ""
 
@@ -93,17 +93,17 @@ msgid "*"
 msgstr ""
 
 #: library/extensions/comments-extensions.php:229
-#: library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr ""
 
 #: library/extensions/comments-extensions.php:230
-#: library/legacy/deprecated.php:367
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr ""
 
 #: library/extensions/comments-extensions.php:238
-#: library/legacy/deprecated.php:354
+#: library/legacy/deprecated.php:362
 msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
 msgid "Your email is %1$snever%2$s published nor shared."
 msgstr ""
@@ -114,32 +114,32 @@ msgid "Required fields are marked %1$s*%2$s"
 msgstr ""
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "You must be %1$slogged in%2$s to post a comment."
 msgstr ""
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "Log in"
 msgstr ""
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as %s"
 msgstr ""
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out of this account"
 msgstr ""
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out?"
 msgstr ""
 
 #: library/extensions/comments-extensions.php:244
-#: library/legacy/deprecated.php:379
+#: library/legacy/deprecated.php:387
 msgctxt "%$1s and %$2s are <abbr> tags"
 msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr ""
@@ -181,175 +181,181 @@ msgid "Yearly Archives: %s"
 msgstr ""
 
 #: library/extensions/content-extensions.php:424
-#: library/extensions/content-extensions.php:1706
+#: library/extensions/content-extensions.php:1711
 msgid "Older posts"
 msgstr ""
 
 #: library/extensions/content-extensions.php:426
-#: library/extensions/content-extensions.php:1708
+#: library/extensions/content-extensions.php:1713
 msgid "Newer posts"
 msgstr ""
 
 #: library/extensions/content-extensions.php:888
-#: library/extensions/content-extensions.php:1418
+#: library/extensions/content-extensions.php:1423
 msgid "Edit post"
 msgstr ""
 
 #. translators: post edit link
 #: library/extensions/content-extensions.php:890
-#: library/extensions/content-extensions.php:1420
+#: library/extensions/content-extensions.php:1425
 #: library/extensions/discussion-extensions.php:37
-#: library/extensions/discussion.php:84 links.php:54 page.php:52
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
 #: template-page-archives.php:55 template-page-fullwidth.php:53
 msgid "Edit"
 msgstr ""
 
-#: library/extensions/content-extensions.php:918
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
+
+#: library/extensions/content-extensions.php:921
 #: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr ""
 
-#: library/extensions/content-extensions.php:923
-#: library/extensions/content-extensions.php:1141
+#: library/extensions/content-extensions.php:926
 #: library/extensions/content-extensions.php:1145
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1381
 msgid "Permalink to %s"
 msgstr ""
 
-#: library/extensions/content-extensions.php:983
+#: library/extensions/content-extensions.php:987
 msgid "By"
 msgstr ""
 
 #. translators: author name
-#: library/extensions/content-extensions.php:994
+#: library/extensions/content-extensions.php:998
 msgid "View all posts by %s"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1023
+#: library/extensions/content-extensions.php:1027
 msgid "Published:"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1199
+#: library/extensions/content-extensions.php:1204
 msgid "Archives by Category"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1230
+#: library/extensions/content-extensions.php:1235
 msgid "Archives by Month"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1291
+#: library/extensions/content-extensions.php:1296
 msgid ""
 "Apologies, but we were unable to find what you were looking for. Perhaps "
 "searching will help."
 msgstr ""
 
-#: library/extensions/content-extensions.php:1297 search.php:70
+#: library/extensions/content-extensions.php:1302 search.php:70
 msgid "Find"
 msgstr ""
 
 #. translators: %s is right angle brackets
-#: library/extensions/content-extensions.php:1316
+#: library/extensions/content-extensions.php:1321
 msgid "Read More %s"
 msgstr ""
 
 #. translators: %s is custom post type singular name, wrapped in link tags
-#: library/extensions/content-extensions.php:1368
+#: library/extensions/content-extensions.php:1373
 msgid "Browse the %s archive."
 msgstr ""
 
 #. translators: %s is custom post type singular name
-#: library/extensions/content-extensions.php:1370
+#: library/extensions/content-extensions.php:1375
 msgid "Permalink to %s Archive"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1381
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
 msgid "Bookmark the %1$spermalink%2$s."
 msgstr ""
 
 #. translators: %s is postfooter categories
-#: library/extensions/content-extensions.php:1534
+#: library/extensions/content-extensions.php:1539
 msgid "This entry was posted in %s"
 msgstr ""
 
 #. translators: %s is postfooter categories
-#: library/extensions/content-extensions.php:1545
+#: library/extensions/content-extensions.php:1550
 msgid "Also posted in %s"
 msgstr ""
 
 #. translators: %s is postfooter categories
-#: library/extensions/content-extensions.php:1549
+#: library/extensions/content-extensions.php:1554
 msgid "Posted in %s"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1575
+#: library/extensions/content-extensions.php:1580
 msgid "This entry is tagged"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1578
+#: library/extensions/content-extensions.php:1583
 msgid "and tagged"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1581
+#: library/extensions/content-extensions.php:1586
 msgid "Also tagged"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1583
+#: library/extensions/content-extensions.php:1588
 msgid "Tagged"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1613
-#: library/extensions/content-extensions.php:1619
+#: library/extensions/content-extensions.php:1618
+#: library/extensions/content-extensions.php:1624
 msgid "Comment on %s"
 msgstr ""
 
 #. translators: number of comments and trackbacks
-#: library/extensions/content-extensions.php:1615
+#: library/extensions/content-extensions.php:1620
 msgid "%s Response"
 msgid_plural "%s Responses"
 msgstr[0] ""
 msgstr[1] ""
 
-#: library/extensions/content-extensions.php:1620
+#: library/extensions/content-extensions.php:1625
 msgid "Leave a comment"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1623
+#: library/extensions/content-extensions.php:1628
 msgid "Comments closed"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1647
+#: library/extensions/content-extensions.php:1652
 msgctxt ""
 "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback "
 "url."
 msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1648
-#: library/extensions/content-extensions.php:1663
+#: library/extensions/content-extensions.php:1653
+#: library/extensions/content-extensions.php:1668
 msgid "Post a comment"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1652
-#: library/extensions/content-extensions.php:1659
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL for your post"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1653
-#: library/extensions/content-extensions.php:1660
+#: library/extensions/content-extensions.php:1658
+#: library/extensions/content-extensions.php:1665
 msgid "Trackback URL"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1661
 msgctxt "%s is trackback url, wrapped in link tags"
 msgid "Comments are closed, but you can leave a trackback: %s"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1663
+#: library/extensions/content-extensions.php:1668
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
 msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
 msgstr ""
 
-#: library/extensions/content-extensions.php:1665
+#: library/extensions/content-extensions.php:1670
 msgid "Both comments and trackbacks are currently closed."
 msgstr ""
 
@@ -401,11 +407,11 @@ msgstr ""
 msgid "Comments RSS feed"
 msgstr ""
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr ""
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr ""
 
@@ -433,78 +439,66 @@ msgstr ""
 msgid "Theme Options"
 msgstr ""
 
-#: library/extensions/theme-options.php:202
+#: library/extensions/theme-options.php:201
 msgid "For more information:"
 msgstr ""
 
-#: library/extensions/theme-options.php:204
+#: library/extensions/theme-options.php:203
 msgid "For support:"
 msgstr ""
 
-#: library/extensions/theme-options.php:206
+#: library/extensions/theme-options.php:205
 msgid "forums"
 msgstr ""
 
-#: library/extensions/theme-options.php:210
+#: library/extensions/theme-options.php:209
 msgid ""
 "The options below are enabled by the Thematic Theme framework and/or a child "
 "theme."
 msgstr ""
 
-#: library/extensions/theme-options.php:211
+#: library/extensions/theme-options.php:210
 msgid ""
 "New options can be added and the default ones removed by creating a child "
 "theme. This contextual help can be customized in a child theme also."
 msgstr ""
 
-#: library/extensions/theme-options.php:217
+#: library/extensions/theme-options.php:214
 msgid "Overview"
 msgstr ""
 
-#: library/extensions/theme-options.php:244
-msgctxt "%1$s and %2$s are <a> tags"
-msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
-msgstr ""
-
-#: library/extensions/theme-options.php:244
-msgctxt "%1$s and %2$s are <a> tags"
-msgid ""
-"Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions "
-"about Thematic."
-msgstr ""
-
-#: library/extensions/theme-options.php:256
+#: library/extensions/theme-options.php:235
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options"
 msgstr ""
 
-#: library/extensions/theme-options.php:294
+#: library/extensions/theme-options.php:273
 msgid ""
 "The Index Insert widget area will appear after this post number. Entering "
 "nothing or 0 will disable this feature."
 msgstr ""
 
-#: library/extensions/theme-options.php:307
+#: library/extensions/theme-options.php:286
 msgctxt "%1$s and %2$s are <a> tags"
 msgid ""
 "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and "
 "email on the author page."
 msgstr ""
 
-#: library/extensions/theme-options.php:320
+#: library/extensions/theme-options.php:299
 msgctxt "%s are shortcode tags"
 msgid ""
 "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
 msgstr ""
 
-#: library/extensions/theme-options.php:333
+#: library/extensions/theme-options.php:318
 msgctxt "{$current theme} Theme Options"
 msgid ""
 "%s Theme Options have been upgraded to an improved format. Remove the legacy "
 "options from the database."
 msgstr ""
 
-#: library/extensions/theme-options.php:360
+#: library/extensions/theme-options.php:345
 msgid ""
 "The index insert position value must be a number equal to or greater than "
 "zero. This setting has been reverted to the previous value."
@@ -657,11 +651,11 @@ msgstr ""
 msgid "All comments"
 msgstr ""
 
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as"
 msgstr ""
 
-#: library/legacy/deprecated.php:357 library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
 msgid "<span class=\"required\">*</span>"
 msgstr ""
 
@@ -710,12 +704,6 @@ msgstr ""
 msgid "http://themeshaper.com/"
 msgstr ""
 
-#. Tags of the plugin/theme
-msgid ""
-"white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, "
-"right-sidebar, threaded-comments, sticky-post, microformats"
-msgstr ""
-
 #. Template Name of the plugin/theme
 msgid "Deprecated Archives Template"
 msgstr ""
diff --git a/wp-content/themes/thematic/library/languages/tr_TR.mo b/wp-content/themes/thematic/library/languages/tr_TR.mo
index b927ab5dbaf3120a5da773e16f015546981a44a2..7552705ca13de4bfc82483aa5c894060afbb4ac3 100644
Binary files a/wp-content/themes/thematic/library/languages/tr_TR.mo and b/wp-content/themes/thematic/library/languages/tr_TR.mo differ
diff --git a/wp-content/themes/thematic/library/languages/tr_TR.po b/wp-content/themes/thematic/library/languages/tr_TR.po
index 817bce80d12becfd81267a22547297cb1596727a..7c5241e30d6eddd5528646db3e0049be46c8713e 100644
--- a/wp-content/themes/thematic/library/languages/tr_TR.po
+++ b/wp-content/themes/thematic/library/languages/tr_TR.po
@@ -1,25 +1,31 @@
-# Translation of Thematic 1.0.3 in Turkish
-# This file is distributed under the same license as the Thematic 1.0.3 package.
+# Translation of Thematic 1.0.3.x in Turkish
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2012-06-25 15:46:44+0000\n"
+"PO-Revision-Date: 2013-03-05 17:46:52+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: Thematic 1.0.3\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
 
-#: library/extensions/content-extensions.php:947
-#: library/extensions/content-extensions.php:1461
-#: library/extensions/discussion-extensions.php:36
-#: library/extensions/discussion.php:84 links.php:60 page.php:60
-#: template-page-archives.php:63 template-page-fullwidth.php:61
-msgid "Edit"
-msgstr "Düzenle"
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
+
+#: archives.php:20 template-page-blog.php:22
+msgid "The template %s"
+msgstr ""
 
-#: attachment.php:62 library/extensions/content-extensions.php:666
-#: library/extensions/content-extensions.php:732
+#: attachment.php:54 library/extensions/content-extensions.php:630
+#: library/extensions/content-extensions.php:689
 msgid "Pages:"
 msgstr "Sayfalar:"
 
@@ -27,275 +33,333 @@ msgstr "Sayfalar:"
 msgid "Email "
 msgstr "E-posta"
 
+#: comments.php:24
+msgid "Please do not load this page directly."
+msgstr ""
+
 #: comments.php:33
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr "Bu yazı parola korumalıdır. Yorumları görmek için parolanızı giriniz. "
 
 #: comments.php:111
-msgid "<span>One</span> Trackback"
-msgstr "<span>1</span> Gerilink"
+msgid "Trackbacks"
+msgstr ""
 
-#: comments.php:142 library/extensions/comments-extensions.php:234
-msgid "You must be <a href=\"%s\" title=\"Log in\">logged in</a> to post a comment."
-msgstr "Yorum yapabilmek için <a href=\"%s\" title=\"giriş\">giriş</a> yapmalısınız."
+#: comments.php:111
+msgctxt "%1$ and %2$s are <span> tags"
+msgid "%1$sOne%2$s Trackback"
+msgstr ""
 
-#: comments.php:156 library/extensions/comments-extensions.php:235
-msgid "<span class=\"loggedin\">Logged in as <a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a>.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Log out of this account\">Log out?</a></span>"
-msgstr "<span class=\"loggedin\"><a href=\"%1$s\" title=\"Logged in as %2$s\">%2$s</a> olarak giriş yapıldı.</span> <span class=\"logout\"><a href=\"%3$s\" title=\"Sortir d'aquest compte\" >buradan çıkabilirsiniz.</a></span>"
+#: functions.php:194
+msgid "Primary Menu"
+msgstr ""
 
-#: comments.php:164 library/extensions/comments-extensions.php:233
-msgid "Your email is <em>never</em> published nor shared."
-msgstr "E-posta adresiniz <em>hiçbir şekilde</em> yayınlanmayacak ya da paylaşılmayacaktır. "
+#: library/extensions/comments-extensions.php:120
+msgctxt "One Comment, where %$1s and %$2s are <span> tags"
+msgid "%1$sOne%2$s Comment"
+msgstr ""
 
-#: comments.php:164 library/extensions/comments-extensions.php:233
-msgid "Required fields are marked <span class=\"required\">*</span>"
-msgstr "Doldurulması gerekli alanlar <span class=\"gerekli\">*</span> olarak işaretlenmiştir."
+#: library/extensions/comments-extensions.php:131
+msgid "Comments"
+msgstr ""
 
-#: comments.php:167 library/extensions/comments-extensions.php:224
+#: library/extensions/comments-extensions.php:155
+msgid "Post a Comment"
+msgstr "Yorumlarınızı Alalım"
+
+#: library/extensions/comments-extensions.php:167
+msgid "Post a Reply to %s"
+msgstr "%s için yorum yapın"
+
+#: library/extensions/comments-extensions.php:179
+msgctxt "noun"
+msgid "Comment"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:190
+msgid "Cancel reply"
+msgstr ""
+
+#: library/extensions/comments-extensions.php:202
+msgid "Post Comment"
+msgstr "Yorumu Gönder"
+
+#: library/extensions/comments-extensions.php:228
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "İsim"
 
-#: comments.php:167 comments.php:172
-#: library/extensions/comments-extensions.php:224
-#: library/extensions/comments-extensions.php:225
-msgid "<span class=\"required\">*</span>"
-msgstr "<span class=\"gerekli\">*</span>"
+#: library/extensions/comments-extensions.php:228
+#: library/extensions/comments-extensions.php:229
+msgctxt "denotes required field"
+msgid "*"
+msgstr ""
 
-#: comments.php:172 library/extensions/comments-extensions.php:225
+#: library/extensions/comments-extensions.php:229
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "E-posta"
 
-#: comments.php:177 library/extensions/comments-extensions.php:226
+#: library/extensions/comments-extensions.php:230
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "Websitesi"
 
-#: comments.php:189 library/extensions/comments-extensions.php:236
-msgid "You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags and attributes:"
+#: library/extensions/comments-extensions.php:238
+#: library/legacy/deprecated.php:362
+msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
+msgid "Your email is %1$snever%2$s published nor shared."
 msgstr ""
 
-#: page.php:58 template-page-fullwidth.php:59
-msgid "Pages: "
-msgstr "Sayfalar: "
-
-#: search.php:56
-msgid "Nothing Found"
-msgstr "Sonuç Bulunamadı"
-
-#: search.php:60
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr "Üzgünüm fakat yaptığınız aramaya ilişkin bir sonuç bulunamadı. Farklı bir kelime ile arama yapınız. "
+#: library/extensions/comments-extensions.php:238
+msgctxt "%$1s and %$2s are <span> tags"
+msgid "Required fields are marked %1$s*%2$s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1346 search.php:70
-msgid "Find"
-msgstr "Bul"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "You must be %1$slogged in%2$s to post a comment."
+msgstr ""
 
-#: library/extensions/comments-extensions.php:120
-msgid "<span>One</span> Comment"
-msgstr "<span>1</span> Yorum"
+#: library/extensions/comments-extensions.php:240
+#: library/legacy/deprecated.php:344
+msgid "Log in"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:154
-msgid "Post a Comment"
-msgstr "Yorumlarınızı Alalım"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Logged in as %s"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:165
-msgid "Post a Reply to %s"
-msgstr "%s için yorum yapın"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out of this account"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:176
-msgid "Comment"
-msgstr "Yorum Alanı"
+#: library/extensions/comments-extensions.php:242
+#: library/legacy/deprecated.php:357
+msgid "Log out?"
+msgstr ""
 
-#: library/extensions/comments-extensions.php:187
-msgid "Cancel reply"
+#: library/extensions/comments-extensions.php:244
+#: library/legacy/deprecated.php:387
+msgctxt "%$1s and %$2s are <abbr> tags"
+msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr ""
 
-#: library/extensions/comments-extensions.php:198
-msgid "Post Comment"
-msgstr "Yorumu Gönder"
+#: library/extensions/content-extensions.php:334
+msgid "Author Archives:"
+msgstr ""
 
-#: library/extensions/content-extensions.php:340
-#: library/extensions/header-extensions.php:84
+#: library/extensions/content-extensions.php:339
+#: library/extensions/header-extensions.php:103
 msgid "Category Archives:"
 msgstr "Konu Arşivleri:"
 
-#: library/extensions/content-extensions.php:349
-#: library/extensions/header-extensions.php:80
+#: library/extensions/content-extensions.php:347
+#: library/extensions/header-extensions.php:99
 msgid "Search Results for:"
 msgstr "Arama Sonuçları:"
 
-#: library/extensions/content-extensions.php:355
-#: library/extensions/header-extensions.php:88
+#: library/extensions/content-extensions.php:352
+#: library/extensions/header-extensions.php:107
 msgid "Tag Archives:"
 msgstr "Etiket Arşivleri:"
 
-#: library/extensions/content-extensions.php:364
-#: library/extensions/content-extensions.php:373
+#: library/extensions/content-extensions.php:361
+#: library/extensions/content-extensions.php:368
 msgid "Archives:"
 msgstr ""
 
-#: library/extensions/content-extensions.php:379
-msgid "Daily Archives: <span>%s</span>"
-msgstr "Günlük Arşivler: <span>%s</span>"
+#: library/extensions/content-extensions.php:373
+msgid "Daily Archives: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:383
-msgid "Monthly Archives: <span>%s</span>"
-msgstr "Aylık Arşivler: <span>%s</span>"
+#: library/extensions/content-extensions.php:377
+msgid "Monthly Archives: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:387
-msgid "Yearly Archives: <span>%s</span>"
-msgstr "Yılıkl Arşivi: <span>%s</span>"
+#: library/extensions/content-extensions.php:381
+msgid "Yearly Archives: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:429
-#: library/extensions/content-extensions.php:1728
-msgid "<span class=\"meta-nav\">&laquo;</span> Older posts"
-msgstr "<span class=\"meta-nav\">&laquo;</span> Eski Yazılar"
+#: library/extensions/content-extensions.php:424
+#: library/extensions/content-extensions.php:1710
+msgid "Older posts"
+msgstr ""
 
-#: library/extensions/content-extensions.php:431
-#: library/extensions/content-extensions.php:1729
-msgid "Newer posts <span class=\"meta-nav\">&raquo;</span>"
-msgstr "Yeni yazılar <span class=\"meta-nav\">&raquo;</span>"
+#: library/extensions/content-extensions.php:426
+#: library/extensions/content-extensions.php:1712
+msgid "Newer posts"
+msgstr ""
 
-#: library/extensions/content-extensions.php:946
-#: library/extensions/content-extensions.php:1460
+#: library/extensions/content-extensions.php:888
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "Düzenle"
 
-#: library/extensions/content-extensions.php:975
-#: library/extensions/header-extensions.php:92
+#: library/extensions/content-extensions.php:890
+#: library/extensions/content-extensions.php:1424
+#: library/extensions/discussion-extensions.php:37
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
+#: template-page-archives.php:55 template-page-fullwidth.php:53
+msgid "Edit"
+msgstr "Düzenle"
+
+#: library/extensions/content-extensions.php:921
+#: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "Bulunamadı"
 
-#: library/extensions/content-extensions.php:980
-#: library/extensions/content-extensions.php:1413
-#: library/extensions/content-extensions.php:1417
-msgid "Permalink to "
-msgstr "Yazının linki "
+#: library/extensions/content-extensions.php:926
+#: library/extensions/content-extensions.php:1145
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
+msgid "Permalink to %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1041
-msgid "By "
-msgstr "Yazan: "
+#: library/extensions/content-extensions.php:987
+msgid "By"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1051
-msgid "View all posts by "
-msgstr "Tüm yazılarını görün "
+#: library/extensions/content-extensions.php:998
+msgid "View all posts by %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1079
-msgid "Published: "
-msgstr "Yayınlandı: "
+#: library/extensions/content-extensions.php:1027
+msgid "Published:"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1252
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "Konuya göre arşivler"
 
-#: library/extensions/content-extensions.php:1280
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "Aya göre arşivler"
 
-#: library/extensions/content-extensions.php:1413
-msgid "Browse the "
+#: library/extensions/content-extensions.php:1295
+msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
 msgstr ""
 
-#: library/extensions/content-extensions.php:1413
-msgid " Archive"
+#: library/extensions/content-extensions.php:1301 search.php:70
+msgid "Find"
+msgstr "Bul"
+
+#: library/extensions/content-extensions.php:1320
+msgid "Read More %s"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1414
-msgid " archive"
+#: library/extensions/content-extensions.php:1372
+msgid "Browse the %s archive."
 msgstr ""
 
-#: library/extensions/content-extensions.php:1417
-msgid "Bookmark the "
+#: library/extensions/content-extensions.php:1374
+msgid "Permalink to %s Archive"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1418
-msgid "permalink"
-msgstr "kalıcı bağlantı"
+#: library/extensions/content-extensions.php:1380
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Bookmark the %1$spermalink%2$s."
+msgstr ""
 
-#: library/extensions/content-extensions.php:1572
-msgid "This entry was posted in "
-msgstr "Bu yazı gönderildi"
+#: library/extensions/content-extensions.php:1538
+msgid "This entry was posted in %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1580
-msgid "Also posted in "
-msgstr "aynı zamanda"
+#: library/extensions/content-extensions.php:1549
+msgid "Also posted in %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1583
-msgid "Posted in "
-msgstr "Gönderildi"
+#: library/extensions/content-extensions.php:1553
+msgid "Posted in %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1609
-msgid " This entry is tagged"
+#: library/extensions/content-extensions.php:1579
+msgid "This entry is tagged"
 msgstr ""
 
-#: library/extensions/content-extensions.php:1612
-msgid " and tagged"
-msgstr "etiketlendi"
+#: library/extensions/content-extensions.php:1582
+msgid "and tagged"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1615
-msgid " Also tagged "
-msgstr "etiketlendi"
+#: library/extensions/content-extensions.php:1585
+msgid "Also tagged"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "Etiketler"
 
-#: library/extensions/content-extensions.php:1644
-#: library/extensions/content-extensions.php:1647
-#: library/extensions/content-extensions.php:1650
-msgid "Comment on "
-msgstr "Yorum yap "
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
+msgid "Comment on %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1651
+#: library/extensions/content-extensions.php:1619
+msgid "%s Response"
+msgid_plural "%s Responses"
+msgstr[0] ""
+msgstr[1] ""
+
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "bir yorum bırakın"
 
-#: library/extensions/content-extensions.php:1654
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "Yorumlar kapalıdır"
 
-#: library/extensions/content-extensions.php:1678
-#: library/extensions/content-extensions.php:1686
+#: library/extensions/content-extensions.php:1651
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
+msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "Yorum gönderin."
 
-#: library/extensions/content-extensions.php:1679
-msgid " or leave a trackback: "
-msgstr "veya geri link bırakın: "
-
-#: library/extensions/content-extensions.php:1680
-#: library/extensions/content-extensions.php:1683
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "Yazının geri bildirim linki"
 
-#: library/extensions/content-extensions.php:1680
-#: library/extensions/content-extensions.php:1683
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "Geri bildirim linki "
 
-#: library/extensions/content-extensions.php:1682
-msgid " Comments are closed, but you can leave a trackback: "
-msgstr "Yorumlar kapalıdır ama isterseniz geri bildirimde bulunabilirsiniz:"
+#: library/extensions/content-extensions.php:1660
+msgctxt "%s is trackback url, wrapped in link tags"
+msgid "Comments are closed, but you can leave a trackback: %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1685
-msgid " Trackbacks are closed, but you can "
-msgstr "Geri bildirimler şu an kapalı ama arzu ederseniz"
+#: library/extensions/content-extensions.php:1669
+msgid "Both comments and trackbacks are currently closed."
+msgstr ""
 
-#: library/extensions/content-extensions.php:1686
-msgid "post a comment"
-msgstr "yorum gönderebilir"
+#: library/extensions/discussion-extensions.php:27
+msgctxt "Posted {$date} at {$time}"
+msgid "Posted %s at %s"
+msgstr ""
 
-#: library/extensions/content-extensions.php:1688
-msgid " Both comments and trackbacks are currently closed."
-msgstr "Hem yorumlar hem de geri bildirimler şu an kapalıdır."
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink to this comment"
+msgstr ""
 
-#: library/extensions/discussion-extensions.php:27
-msgid "Posted %1$s at %2$s <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Permalink to this comment\">Permalink</a>"
-msgstr "%1$s %2$s'de gönderildi <span class=\"meta-sep\">|</span> <a href=\"%3$s\" title=\"Bu yorumun linki\">Yorum linki</a>"
+#: library/extensions/discussion-extensions.php:31
+msgid "Permalink"
+msgstr ""
 
-#: library/extensions/discussion-extensions.php:35
+#: library/extensions/discussion-extensions.php:36
 msgid "Edit comment"
 msgstr ""
 
+#: library/extensions/discussion.php:37
+msgid "Your comment is awaiting moderation"
+msgstr ""
+
 #: library/extensions/discussion.php:52
 msgid "Reply"
 msgstr "Cevapla"
@@ -305,28 +369,29 @@ msgid "Log in to reply."
 msgstr "Cevaplamak için giriş yapın"
 
 #: library/extensions/discussion.php:80
+msgctxt "By {$authorlink} on {$date} at {$time}"
 msgid "By %1$s on %2$s at %3$s"
-msgstr "%1$s tarafından %2$s tarihinde %3$s'de"
+msgstr ""
 
-#: library/extensions/header-extensions.php:302
+#: library/extensions/discussion.php:90
+msgid "Your trackback is awaiting moderation"
+msgstr ""
+
+#: library/extensions/header-extensions.php:319
 #: library/extensions/widgets.php:157
 msgid "Posts RSS feed"
 msgstr "Yazılar RSS"
 
-#: library/extensions/header-extensions.php:326
+#: library/extensions/header-extensions.php:343
 #: library/extensions/widgets.php:158
 msgid "Comments RSS feed"
 msgstr "Yorumlar RSS"
 
-#: functions.php:253
-msgid "Primary Menu"
-msgstr ""
-
-#: library/extensions/header-extensions.php:625
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "İçeriğe geçiş yapın"
 
-#: library/extensions/header-extensions.php:625
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "İçeriğe geçin"
 
@@ -334,14 +399,6 @@ msgstr "İçeriğe geçin"
 msgid "There is no excerpt because this is a protected post."
 msgstr "Herhangi bir özet bulunmuyor çünkü bu korumalı bir yazı."
 
-#: library/extensions/shortcodes.php:40
-msgid "Login"
-msgstr "Giriş"
-
-#: library/extensions/shortcodes.php:42
-msgid "Logout"
-msgstr "Çıkış"
-
 #: library/extensions/theme-options.php:50
 msgid "Index Insert Position"
 msgstr "Index Insert Konumu"
@@ -354,6 +411,76 @@ msgstr "Yazar sayfası bilgileri"
 msgid "Text in Footer"
 msgstr "Footer alanı metni"
 
+#: library/extensions/theme-options.php:56
+msgid "Remove Legacy Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:170
+msgid "Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:202
+msgid "For more information:"
+msgstr ""
+
+#: library/extensions/theme-options.php:204
+msgid "For support:"
+msgstr ""
+
+#: library/extensions/theme-options.php:206
+msgid "forums"
+msgstr ""
+
+#: library/extensions/theme-options.php:210
+msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
+msgstr ""
+
+#: library/extensions/theme-options.php:211
+msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
+msgstr ""
+
+#: library/extensions/theme-options.php:217
+msgid "Overview"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "For more information about this theme, %1$svisit ThematicTheme.com%2$s"
+msgstr ""
+
+#: library/extensions/theme-options.php:244
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
+msgstr ""
+
+#: library/extensions/theme-options.php:267
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options"
+msgstr ""
+
+#: library/extensions/theme-options.php:305
+msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgstr ""
+
+#: library/extensions/theme-options.php:318
+msgctxt "%1$s and %2$s are <a> tags"
+msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
+msgstr ""
+
+#: library/extensions/theme-options.php:331
+msgctxt "%s are shortcode tags"
+msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
+msgstr ""
+
+#: library/extensions/theme-options.php:355
+msgctxt "{$current theme} Theme Options"
+msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgstr ""
+
+#: library/extensions/theme-options.php:382
+msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:34
 msgid "To search, type and hit enter"
 msgstr ""
@@ -363,54 +490,106 @@ msgstr ""
 msgid "Search"
 msgstr "Arama"
 
+#: library/extensions/widgets-extensions.php:70
+msgid "Primary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:72
 msgid "The primary widget area, most often used as a sidebar."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:85
+msgid "Secondary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:87
 msgid "The secondary widget area, most often used as a sidebar."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:100
+msgid "1st Subsidiary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:102
 msgid "The 1st widget area in the footer."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:115
+msgid "2nd Subsidiary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:117
 msgid "The 2nd widget area in the footer."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:130
+msgid "3rd Subsidiary Aside"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:132
 msgid "The 3rd widget area in the footer."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:145
+msgid "Index Top"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:147
 msgid "The top widget area displayed on the index page."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:160
+msgid "Index Insert"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:162
 msgid "The widget area inserted after x posts on the index page."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:175
+msgid "Index Bottom"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:177
 msgid "The bottom widget area displayed on the index page."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:190
+msgid "Single Top"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:192
 msgid "The top widget area displayed on a single post."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:205
+msgid "Single Insert"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:207
 msgid "The widget area inserted between the post and the comments on a single post."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:220
+msgid "Single Bottom"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:222
 msgid "The bottom widget area displayed on a single post."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:235
+msgid "Page Top"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:237
 msgid "The top widget area displayed on a page."
 msgstr ""
 
+#: library/extensions/widgets-extensions.php:250
+msgid "Page Bottom"
+msgstr ""
+
 #: library/extensions/widgets-extensions.php:252
 msgid "The bottom widget area displayed on a page."
 msgstr ""
@@ -448,114 +627,56 @@ msgstr "Tüm Yazılar"
 msgid "All comments"
 msgstr "Tüm Yorumlar"
 
-#: archives.php:20 template-page-blog.php:22
-msgid "The template %s"
-msgstr ""
-
-#: comments.php:24
-msgid "Please do not load this page directly."
-msgstr ""
-
-#: comments.php:111
-msgid "Trackbacks"
-msgstr ""
-
-#: library/extensions/comments-extensions.php:131
-msgid "Comments"
-msgstr ""
-
-#: library/extensions/content-extensions.php:334
-msgid "Author Archives:"
-msgstr ""
-
-#: library/extensions/content-extensions.php:1340
-msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
-msgstr ""
-
-#: library/extensions/content-extensions.php:1364
-msgid "Read More %s"
-msgstr ""
-
-#: library/extensions/content-extensions.php:1645
-msgid "Responses"
-msgstr ""
-
-#: library/extensions/content-extensions.php:1648
-msgid "Response"
-msgstr ""
-
-#: library/extensions/discussion.php:37
-msgid "Your comment is awaiting moderation"
-msgstr ""
-
-#: library/extensions/discussion.php:90
-msgid "Your trackback is awaiting moderation"
-msgstr ""
-
-#: library/extensions/theme-options.php:56
-msgid "Remove Legacy Options"
+#: library/legacy/deprecated.php:357
+msgid "Logged in as"
 msgstr ""
 
-#: library/extensions/theme-options.php:204
-msgid "For more information:"
-msgstr ""
-
-#: library/extensions/theme-options.php:206
-msgid "For support:"
-msgstr ""
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
+msgid "<span class=\"required\">*</span>"
+msgstr "<span class=\"gerekli\">*</span>"
 
-#: library/extensions/theme-options.php:208
-msgid "forums"
-msgstr ""
+#: page.php:50 template-page-fullwidth.php:51
+msgid "Pages: "
+msgstr "Sayfalar: "
 
-#: library/extensions/theme-options.php:212
-msgid "The options below are enabled by the Thematic Theme framework and/or a child theme."
-msgstr ""
+#: search.php:56
+msgid "Nothing Found"
+msgstr "Sonuç Bulunamadı"
 
-#: library/extensions/theme-options.php:213
-msgid "New options can be added and the default ones removed by creating a child theme. This contextual help can be customized in a child theme also."
-msgstr ""
+#: search.php:60
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr "Üzgünüm fakat yaptığınız aramaya ilişkin bir sonuç bulunamadı. Farklı bir kelime ile arama yapınız. "
 
-#: library/extensions/theme-options.php:219
-msgid "Overview"
+#: template-page-blog.php:22
+msgid "You can include a %s in a childtheme"
 msgstr ""
 
-#: library/extensions/theme-options.php:247
-msgid "For more information about this theme, <a href=\"http://thematictheme.com\">visit ThemeTheme.com</a>. Please visit the <a href=\"http://thematictheme.com/forums/\">ThematicTheme.com Forums</a> if you have any questions about Thematic."
+msgid "Thematic"
 msgstr ""
 
-#: library/extensions/theme-options.php:262
-msgid "%s Theme Options"
+msgid "http://thematictheme.com"
 msgstr ""
 
-#: library/extensions/theme-options.php:276
-msgid "Save Changes"
+msgid "The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development."
 msgstr ""
 
-#: library/extensions/theme-options.php:311
-msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
+msgid "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http://thematic4you.com/\">Chris Go&szlig;mann</a>"
 msgstr ""
 
-#: library/extensions/theme-options.php:324
-msgid "Display a"
+msgid "http://themeshaper.com/"
 msgstr ""
 
-#: library/extensions/theme-options.php:324
-msgid "with the author's avatar, bio and email on the author page."
+msgid "Deprecated Archives Template"
 msgstr ""
 
-#: library/extensions/theme-options.php:337
-msgid "You can use HTML and shortcodes in your footer text. Shortcode examples"
+msgid "Links Page"
 msgstr ""
 
-#: library/extensions/theme-options.php:350
-msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
+msgid "Archives Page"
 msgstr ""
 
-#: library/extensions/theme-options.php:377
-msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
+msgid "Deprecated Blog Template"
 msgstr ""
 
-#: template-page-blog.php:22
-msgid "You can include a %s in a childtheme"
+msgid "Full Width"
 msgstr ""
\ No newline at end of file
diff --git a/wp-content/themes/thematic/library/languages/zh_CN.mo b/wp-content/themes/thematic/library/languages/zh_CN.mo
index 20f47862d42a87612a525ab7031c1068203976df..e07c316bf20e9a383aae05dba2ae9ccc0178bfe9 100644
Binary files a/wp-content/themes/thematic/library/languages/zh_CN.mo and b/wp-content/themes/thematic/library/languages/zh_CN.mo differ
diff --git a/wp-content/themes/thematic/library/languages/zh_CN.po b/wp-content/themes/thematic/library/languages/zh_CN.po
index 805b7ce00b4766e80952da11803c6ea740aadd2a..ce3b32ab9605058914da359a13e64f20c35386e3 100644
--- a/wp-content/themes/thematic/library/languages/zh_CN.po
+++ b/wp-content/themes/thematic/library/languages/zh_CN.po
@@ -1,14 +1,24 @@
-# Translation of Thematic 1.0.3 in Chinese (China)
-# This file is distributed under the same license as the Thematic 1.0.3 package.
+# Translation of Thematic 1.0.3.x in Chinese (China)
+# This file is distributed under the same license as the Thematic 1.0.3.x package.
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2012-10-22 09:59:38+0000\n"
+"PO-Revision-Date: 2013-03-05 17:46:44+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: Thematic 1.0.3\n"
+"Project-Id-Version: Thematic 1.0.3.x\n"
+
+#: library/extensions/content-extensions.php:916
+msgctxt "Default title for untitled posts"
+msgid "(Untitled)"
+msgstr ""
+
+#: library/extensions/content-extensions.php:1667
+msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
+msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
+msgstr ""
 
 #: archives.php:20 template-page-blog.php:22
 msgid "The template %s"
@@ -75,7 +85,7 @@ msgid "Post Comment"
 msgstr "添加评论"
 
 #: library/extensions/comments-extensions.php:228
-#: library/legacy/deprecated.php:357
+#: library/legacy/deprecated.php:365
 msgid "Name"
 msgstr "姓名"
 
@@ -86,17 +96,17 @@ msgid "*"
 msgstr "*"
 
 #: library/extensions/comments-extensions.php:229
-#: library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:370
 msgid "Email"
 msgstr "电子邮件"
 
 #: library/extensions/comments-extensions.php:230
-#: library/legacy/deprecated.php:367
+#: library/legacy/deprecated.php:375
 msgid "Website"
 msgstr "网站"
 
 #: library/extensions/comments-extensions.php:238
-#: library/legacy/deprecated.php:354
+#: library/legacy/deprecated.php:362
 msgctxt "%$1s and %$2s are <em> tags for emphasis on never"
 msgid "Your email is %1$snever%2$s published nor shared."
 msgstr "你的电子邮件%1$s不会%2$s被公开或用作其他用途。"
@@ -107,32 +117,32 @@ msgid "Required fields are marked %1$s*%2$s"
 msgstr "标记%1$s*%2$s的项为必填项。"
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "You must be %1$slogged in%2$s to post a comment."
 msgstr "%1$s登录%2$s以添加评论。"
 
 #: library/extensions/comments-extensions.php:240
-#: library/legacy/deprecated.php:336
+#: library/legacy/deprecated.php:344
 msgid "Log in"
 msgstr "登录"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as %s"
 msgstr "以%s身份登录"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out of this account"
 msgstr "注销"
 
 #: library/extensions/comments-extensions.php:242
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Log out?"
 msgstr "确认注销?"
 
 #: library/extensions/comments-extensions.php:244
-#: library/legacy/deprecated.php:379
+#: library/legacy/deprecated.php:387
 msgctxt "%$1s and %$2s are <abbr> tags"
 msgid "You may use these %1$sHTML%2$s tags and attributes"
 msgstr "你可以使用以下%1$sHTML%2$s标签和属性。"
@@ -174,161 +184,157 @@ msgid "Yearly Archives: %s"
 msgstr "按年分类:%s"
 
 #: library/extensions/content-extensions.php:424
-#: library/extensions/content-extensions.php:1706
+#: library/extensions/content-extensions.php:1710
 msgid "Older posts"
 msgstr "较老博文"
 
 #: library/extensions/content-extensions.php:426
-#: library/extensions/content-extensions.php:1708
+#: library/extensions/content-extensions.php:1712
 msgid "Newer posts"
 msgstr "较新博文"
 
 #: library/extensions/content-extensions.php:888
-#: library/extensions/content-extensions.php:1418
+#: library/extensions/content-extensions.php:1422
 msgid "Edit post"
 msgstr "编辑本文"
 
 #: library/extensions/content-extensions.php:890
-#: library/extensions/content-extensions.php:1420
+#: library/extensions/content-extensions.php:1424
 #: library/extensions/discussion-extensions.php:37
-#: library/extensions/discussion.php:84 links.php:54 page.php:52
+#: library/extensions/discussion.php:84 links.php:52 page.php:52
 #: template-page-archives.php:55 template-page-fullwidth.php:53
 msgid "Edit"
 msgstr "编辑"
 
-#: library/extensions/content-extensions.php:918
+#: library/extensions/content-extensions.php:921
 #: library/extensions/header-extensions.php:111
 msgid "Not Found"
 msgstr "无结果"
 
-#: library/extensions/content-extensions.php:923
-#: library/extensions/content-extensions.php:1141
+#: library/extensions/content-extensions.php:926
 #: library/extensions/content-extensions.php:1145
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1149
+#: library/extensions/content-extensions.php:1380
 msgid "Permalink to %s"
 msgstr "%s的永久链接"
 
-#: library/extensions/content-extensions.php:983
+#: library/extensions/content-extensions.php:987
 msgid "By"
 msgstr "作者:"
 
-#: library/extensions/content-extensions.php:994
+#: library/extensions/content-extensions.php:998
 msgid "View all posts by %s"
 msgstr "查看%s发表的文章"
 
-#: library/extensions/content-extensions.php:1023
+#: library/extensions/content-extensions.php:1027
 msgid "Published:"
 msgstr "发布:"
 
-#: library/extensions/content-extensions.php:1199
+#: library/extensions/content-extensions.php:1203
 msgid "Archives by Category"
 msgstr "类别目录"
 
-#: library/extensions/content-extensions.php:1230
+#: library/extensions/content-extensions.php:1234
 msgid "Archives by Month"
 msgstr "月份目录"
 
-#: library/extensions/content-extensions.php:1291
+#: library/extensions/content-extensions.php:1295
 msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help."
 msgstr "抱歉,没有找到你所需的结果。建议使用搜索功能。"
 
-#: library/extensions/content-extensions.php:1297 search.php:70
+#: library/extensions/content-extensions.php:1301 search.php:70
 msgid "Find"
 msgstr "查找"
 
-#: library/extensions/content-extensions.php:1316
+#: library/extensions/content-extensions.php:1320
 msgid "Read More %s"
 msgstr "继续阅读 %s"
 
-#: library/extensions/content-extensions.php:1368
+#: library/extensions/content-extensions.php:1372
 msgid "Browse the %s archive."
 msgstr "浏览%s类别"
 
-#: library/extensions/content-extensions.php:1370
+#: library/extensions/content-extensions.php:1374
 msgid "Permalink to %s Archive"
 msgstr "%s类别目录的永久链接"
 
-#: library/extensions/content-extensions.php:1376
+#: library/extensions/content-extensions.php:1380
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them"
 msgid "Bookmark the %1$spermalink%2$s."
 msgstr "将该链接%1$s存入书签%2$s。"
 
-#: library/extensions/content-extensions.php:1534
+#: library/extensions/content-extensions.php:1538
 msgid "This entry was posted in %s"
 msgstr "发布在%s"
 
-#: library/extensions/content-extensions.php:1545
+#: library/extensions/content-extensions.php:1549
 msgid "Also posted in %s"
 msgstr "同时发布在%s"
 
-#: library/extensions/content-extensions.php:1549
+#: library/extensions/content-extensions.php:1553
 msgid "Posted in %s"
 msgstr "发布在%s"
 
-#: library/extensions/content-extensions.php:1575
+#: library/extensions/content-extensions.php:1579
 msgid "This entry is tagged"
 msgstr "条目已有标签"
 
-#: library/extensions/content-extensions.php:1578
+#: library/extensions/content-extensions.php:1582
 msgid "and tagged"
 msgstr "已有标签"
 
-#: library/extensions/content-extensions.php:1581
+#: library/extensions/content-extensions.php:1585
 msgid "Also tagged"
 msgstr "已有标签"
 
-#: library/extensions/content-extensions.php:1583
+#: library/extensions/content-extensions.php:1587
 msgid "Tagged"
 msgstr "已有标签"
 
-#: library/extensions/content-extensions.php:1613
-#: library/extensions/content-extensions.php:1619
+#: library/extensions/content-extensions.php:1617
+#: library/extensions/content-extensions.php:1623
 msgid "Comment on %s"
 msgstr "%s的评论"
 
-#: library/extensions/content-extensions.php:1615
+#: library/extensions/content-extensions.php:1619
 msgid "%s Response"
 msgid_plural "%s Responses"
 msgstr[0] "%s 个回复或互链"
 
-#: library/extensions/content-extensions.php:1620
+#: library/extensions/content-extensions.php:1624
 msgid "Leave a comment"
 msgstr "发表评论"
 
-#: library/extensions/content-extensions.php:1623
+#: library/extensions/content-extensions.php:1627
 msgid "Comments closed"
 msgstr "评论已关闭"
 
-#: library/extensions/content-extensions.php:1647
+#: library/extensions/content-extensions.php:1651
 msgctxt "1s and 2s are the a href link wrappers, do not reverse them. 3s is trackback url."
 msgid "%1$sPost a comment%2$s or leave a trackback: %3$s"
 msgstr "%1$s发表评论%2$s或留个互链:%3$s"
 
-#: library/extensions/content-extensions.php:1648
-#: library/extensions/content-extensions.php:1663
+#: library/extensions/content-extensions.php:1652
+#: library/extensions/content-extensions.php:1667
 msgid "Post a comment"
 msgstr "发表评论"
 
-#: library/extensions/content-extensions.php:1652
-#: library/extensions/content-extensions.php:1659
+#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1663
 msgid "Trackback URL for your post"
 msgstr "本文互链地址"
 
-#: library/extensions/content-extensions.php:1653
-#: library/extensions/content-extensions.php:1660
+#: library/extensions/content-extensions.php:1657
+#: library/extensions/content-extensions.php:1664
 msgid "Trackback URL"
 msgstr "互链地址"
 
-#: library/extensions/content-extensions.php:1656
+#: library/extensions/content-extensions.php:1660
 msgctxt "%s is trackback url, wrapped in link tags"
 msgid "Comments are closed, but you can leave a trackback: %s"
 msgstr "评论已关闭,你可以留个互链:%s"
 
-#: library/extensions/content-extensions.php:1663
-msgid "Trackbacks are closed, but you can %1$spost a comment%2$s."
-msgstr "互链已关闭,你可以%1$s发表评论%2$s。"
-
-#: library/extensions/content-extensions.php:1665
+#: library/extensions/content-extensions.php:1669
 msgid "Both comments and trackbacks are currently closed."
 msgstr "评论和互链已关闭。"
 
@@ -380,11 +386,11 @@ msgstr "RSS订阅本文"
 msgid "Comments RSS feed"
 msgstr "RSS订阅评论"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip navigation to the content"
 msgstr "跳过导航"
 
-#: library/extensions/header-extensions.php:642
+#: library/extensions/header-extensions.php:667
 msgid "Skip to content"
 msgstr "直接查看正文"
 
@@ -446,31 +452,31 @@ msgctxt "%1$s and %2$s are <a> tags"
 msgid "Please visit the %1$sThematicTheme.com Forums%2$s if you have any questions about Thematic."
 msgstr "咨询及疑问请访问%1$sThematicTheme.com%2$s"
 
-#: library/extensions/theme-options.php:256
+#: library/extensions/theme-options.php:267
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options"
 msgstr "%s主题选项"
 
-#: library/extensions/theme-options.php:294
+#: library/extensions/theme-options.php:305
 msgid "The Index Insert widget area will appear after this post number. Entering nothing or 0 will disable this feature."
 msgstr "目录小工具会在以下楼层后出现。如果不想使用请填0。"
 
-#: library/extensions/theme-options.php:307
+#: library/extensions/theme-options.php:318
 msgctxt "%1$s and %2$s are <a> tags"
 msgid "Display a %1$smicroformatted vCard%2$s with the author's avatar, bio and email on the author page."
 msgstr "显示一张带有头像和电子邮件地址的%1$svCard名片%2$s。"
 
-#: library/extensions/theme-options.php:320
+#: library/extensions/theme-options.php:331
 msgctxt "%s are shortcode tags"
 msgid "You can use HTML and shortcodes in your footer text. Shortcode examples: %s"
 msgstr "你可以在页脚中使用HTML标签和微型标签,如:%s"
 
-#: library/extensions/theme-options.php:333
+#: library/extensions/theme-options.php:355
 msgctxt "{$current theme} Theme Options"
 msgid "%s Theme Options have been upgraded to an improved format. Remove the legacy options from the database."
 msgstr "%s主题选项已更新并采用新的格式。请从数据库中移除旧版选项。"
 
-#: library/extensions/theme-options.php:360
+#: library/extensions/theme-options.php:382
 msgid "The index insert position value must be a number equal to or greater than zero. This setting has been reverted to the previous value."
 msgstr "首页小工具插入楼层应当大于或等于零。已恢复到之前的设置。"
 
@@ -620,11 +626,11 @@ msgstr "所有博文"
 msgid "All comments"
 msgstr "所有评论"
 
-#: library/legacy/deprecated.php:349
+#: library/legacy/deprecated.php:357
 msgid "Logged in as"
 msgstr "登录身份:"
 
-#: library/legacy/deprecated.php:357 library/legacy/deprecated.php:362
+#: library/legacy/deprecated.php:365 library/legacy/deprecated.php:370
 msgid "<span class=\"required\">*</span>"
 msgstr "<span class=\"required\">*</span>"
 
@@ -659,9 +665,6 @@ msgstr "<a href=\"http://themeshaper.com/\">Ian Stewart</a> &amp; <a href=\"http
 msgid "http://themeshaper.com/"
 msgstr "http://themeshaper.com/"
 
-msgid "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-msgstr "white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats"
-
 msgid "Deprecated Archives Template"
 msgstr "不兼容的分类目录模版"
 
diff --git a/wp-content/themes/thematic/library/legacy/deprecated.php b/wp-content/themes/thematic/library/legacy/deprecated.php
index 92c5e2397305725bcec4dc76cd8241d7dd4e5ffe..c1bdd3ec718c3fdb6fcd7fd236c0687bb84a1f66 100644
--- a/wp-content/themes/thematic/library/legacy/deprecated.php
+++ b/wp-content/themes/thematic/library/legacy/deprecated.php
@@ -408,4 +408,37 @@ function thematic_legacy_comment_form(){
 <?php
 }
 
+
+/**
+ * Redundant function for opening body tag
+ *
+ * the contents of this function were moved to thematic_body()
+ *
+ * @deprecated 1.0.3.3
+ */
+
+function thematic_bodyopen() {
+	_deprecated_function( __FUNCTION__, '1.0.3.3', 'thematic_body()' ); 
+}
+
+/**
+ * Added a settings section to display legacy help text and theme links WP 3.2 compatible
+ *
+ * @removed in favor of adding contextual help via get_current_screen()
+ */
+function thematic_legacy_help() {
+		_deprecated_function( __FUNCTION__, '1.0.4', 'thematic_opt_page_help' );
+}
+
+
+/**
+ * Rendered the legacy help text and theme links WP 3.2 compatible
+ * 
+ * @removed in favor of adding contextual help via get_current_screen()
+ */
+function thematic_do_legacy_help_section() { 
+	_deprecated_function( __FUNCTION__, '1.0.4', 'thematic_opt_page_help' );
+}
+
+
 ?>
\ No newline at end of file
diff --git a/wp-content/themes/thematic/readme.txt b/wp-content/themes/thematic/readme.txt
index e2095cda037d9b5965b54585401e7cb81b0e85b9..e0d3f7665dcd4303d39df7f0b61f57a71be12f1e 100644
--- a/wp-content/themes/thematic/readme.txt
+++ b/wp-content/themes/thematic/readme.txt
@@ -1,9 +1,9 @@
 === Thematic ===
-Contributors: iandstewart, chrisgossmann, emhr
+Contributors: iandstewart, chrisgossmann, emhr, helgatheviking, middlesister
 Tags: white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats
-Requires at least: 3.2
-Tested up to: 3.4.2
-Stable tag: 1.0.3.2
+Requires at least: 3.4
+Tested up to: 3.6
+Stable tag: 1.0.4
 
 The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, &amp; a whole lot more.
 
@@ -28,6 +28,27 @@ Features:
 * Options for multi-author blogs
 
 == Changelog ==
+= 1.0.4 =
+* Removed: Backward compatibility for WP versions earlier than 3.4 specifically all calls to wp_get_theme() and get_theme_data()
+* Deprecated: thematic_legacy_help() & thematic_do_legacy_help_section()
+* Changed: SampleChildTheme's legacy add_theme_support() moved off of thematic_child_init hook
+* Fixed: legacy post classes for excerpt & full post classes
+* Removed: has-* excerpt classes & pagination classes from legacy post class
+* Updated: All current translations from translate.thematictheme.com
+* Added: readme.txt to /languages directory 
+* Added: Japanese locale
+* Updated: comments-extensions.php form element attributes to be HTML5 compatible props coliff
+* Fixed: thematic_content() undefined variable notice props scottnix
+* Removed: deprecated arg from wp_list_categories() props scottnix
+* Fixed: thematic_validate_opt() Typo in namespacing of function props josephting
+* Fixed: thematic_validate_opt() Passing validation variable to child theme override
+= 1.0.3.3-beta =
+* Fixed thematic_body_class() and thematic_post_class() to correctly filter body_class() and post_class()
+* Fixed nextpaged and excerpt classes in thematic_body_class() and thematic_post_class()
+* Removed _deprecated_function() from: thematic_body_class() thematic_post_class() childtheme_override_body_class() childtheme_override_post_class() due to issues with WP_DEBUG breaking the post div and body tag class attributes
+* Moved the thematic_bodyopen() functionality to thematic_body()
+* Deprecated thematic_bodyopen() because it was redundant
+* Moved thematic_body() and childtheme_override_thematic_body() from dynamic-classes.php to header-extensions.php
 = 1.0.3.2 =
 * Changed: Samplechildtheme custom header styling
 * Fixed: Syntax error in links.php
diff --git a/wp-content/themes/thematic/style.css b/wp-content/themes/thematic/style.css
index 5140f2ed468d66072eb4527d044dcdbb12d285fb..25da108f762fea6477681d67f2ae204d0ffcc4f6 100644
--- a/wp-content/themes/thematic/style.css
+++ b/wp-content/themes/thematic/style.css
@@ -2,7 +2,7 @@
 THEME NAME: Thematic
 THEME URI: http://thematictheme.com
 DESCRIPTION: The ultimate in SEO-ready themes, Thematic is a highly extensible, WordPress Theme Framework featuring 13 widget-ready areas, drop-down menus, grid-based layout samples, plugin integration, shortcodes for your footer, &amp; a whole lot more. Perfect for any blog and <strong><em>the</em></strong> starting point for theme development.
-VERSION: 1.0.3.2
+VERSION: 1.0.4
 AUTHOR: <a href="http://themeshaper.com/">Ian Stewart</a> &amp; <a href="http://thematic4you.com/">Chris Go&szlig;mann</a>
 AUTHOR URI: http://themeshaper.com/
 TAGS: white, three-columns, two-columns, fixed-width, theme-options, left-sidebar, right-sidebar, threaded-comments, sticky-post, microformats
diff --git a/wp-content/themes/thematic/thematicsamplechildtheme/functions.php b/wp-content/themes/thematic/thematicsamplechildtheme/functions.php
index b8eaf09598f59a295dfb112236f8f5a80c67e17b..a626322fe64d843c29b8f9c0a8f7b5bbcd95a33d 100644
--- a/wp-content/themes/thematic/thematicsamplechildtheme/functions.php
+++ b/wp-content/themes/thematic/thematicsamplechildtheme/functions.php
@@ -17,23 +17,22 @@
  */
 
 
+/* The Following add_theme_support functions 
+ * will enable legacy Thematic Features
+ * if uncommented.
+ */
+ 
+// add_theme_support( 'thematic_legacy_feedlinks' );
+// add_theme_support( 'thematic_legacy_body_class' );
+// add_theme_support( 'thematic_legacy_post_class' );
+// add_theme_support( 'thematic_legacy_comment_form' );
+// add_theme_support( 'thematic_legacy_comment_handling' );
+
 /**
  * Define theme setup
  */
 function childtheme_setup() {
 	
-	/* The Following add_theme_support functions 
-	 * will enable legacy Thematic Features
-	 * if uncommented.
-	 */
-	 
-	// add_theme_support( 'thematic_legacy_feedlinks' );
-	// add_theme_support( 'thematic_legacy_body_class' );
-	// add_theme_support( 'thematic_legacy_post_class' );
-	// add_theme_support( 'thematic_legacy_comment_form' );
-	// add_theme_support( 'thematic_legacy_comment_handling' );
-	
-	
 	/*
 	 * Add support for custom background
 	 *