From f30fe166aafd0abc871a2b1b68e751c2157739c7 Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Sat, 3 Jan 2015 15:32:11 -0600 Subject: [PATCH 01/31] Avoid repeatedly checking specific post format. --- inc/template-tags.php | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/inc/template-tags.php b/inc/template-tags.php index 20c8535..a348645 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -225,24 +225,26 @@ function the_archive_title( $before = '', $after = '' ) { $title = sprintf( __( 'Month: %s', '_s' ), get_the_date( _x( 'F Y', 'monthly archives date format', '_s' ) ) ); } elseif ( is_day() ) { $title = sprintf( __( 'Day: %s', '_s' ), get_the_date( _x( 'F j, Y', 'daily archives date format', '_s' ) ) ); - } elseif ( is_tax( 'post_format', 'post-format-aside' ) ) { - $title = _x( 'Asides', 'post format archive title', '_s' ); - } elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) { - $title = _x( 'Galleries', 'post format archive title', '_s' ); - } elseif ( is_tax( 'post_format', 'post-format-image' ) ) { - $title = _x( 'Images', 'post format archive title', '_s' ); - } elseif ( is_tax( 'post_format', 'post-format-video' ) ) { - $title = _x( 'Videos', 'post format archive title', '_s' ); - } elseif ( is_tax( 'post_format', 'post-format-quote' ) ) { - $title = _x( 'Quotes', 'post format archive title', '_s' ); - } elseif ( is_tax( 'post_format', 'post-format-link' ) ) { - $title = _x( 'Links', 'post format archive title', '_s' ); - } elseif ( is_tax( 'post_format', 'post-format-status' ) ) { - $title = _x( 'Statuses', 'post format archive title', '_s' ); - } elseif ( is_tax( 'post_format', 'post-format-audio' ) ) { - $title = _x( 'Audio', 'post format archive title', '_s' ); - } elseif ( is_tax( 'post_format', 'post-format-chat' ) ) { - $title = _x( 'Chats', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format' ) ) { + if ( is_tax( 'post_format', 'post-format-aside' ) ) { + $title = _x( 'Asides', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) { + $title = _x( 'Galleries', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-image' ) ) { + $title = _x( 'Images', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-video' ) ) { + $title = _x( 'Videos', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-quote' ) ) { + $title = _x( 'Quotes', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-link' ) ) { + $title = _x( 'Links', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-status' ) ) { + $title = _x( 'Statuses', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-audio' ) ) { + $title = _x( 'Audio', 'post format archive title', '_s' ); + } elseif ( is_tax( 'post_format', 'post-format-chat' ) ) { + $title = _x( 'Chats', 'post format archive title', '_s' ); + } } elseif ( is_post_type_archive() ) { $title = sprintf( __( 'Archives: %s', '_s' ), post_type_archive_title( '', false ) ); } elseif ( is_tax() ) { From 1ad975e6462132507789c4d5ccf66e0cfc613e2f Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Sat, 3 Jan 2015 15:32:20 -0600 Subject: [PATCH 02/31] Update copyright year --- styles/src/style.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/src/style.scss b/styles/src/style.scss index e836c74..db2747e 100644 --- a/styles/src/style.scss +++ b/styles/src/style.scss @@ -14,7 +14,7 @@ License URI: http://www.gnu.org/licenses/gpl-3.0-standalone.html Domain Path: /languages/ Text Domain: decode -Decode is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc. +Decode is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc. */ /*-------------------------------------------------------------- From b0b6befa638cb115811480381d0fa6e11195a9c8 Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Sat, 3 Jan 2015 15:40:29 -0600 Subject: [PATCH 03/31] Removed legacy code --- inc/extras.php | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/inc/extras.php b/inc/extras.php index 4c6d6bb..039ef4d 100644 --- a/inc/extras.php +++ b/inc/extras.php @@ -222,27 +222,3 @@ function decode_render_title() { add_action( 'wp_head', 'decode_render_title' ); endif; -/** - * Sets the authordata global when viewing an author archive. - * - * This provides backwards compatibility for WP versions below 3.7 - * that don't have this change: - * http://core.trac.wordpress.org/changeset/25574. - * - * It removes the need to call the_post() and rewind_posts() in an author - * template to print information about the author. - * - * @global WP_Query $wp_query WordPress Query object. - * @return void - */ -if ( ! function_exists( 'decode_setup_author' ) ) { - -function decode_setup_author() { - global $wp_query; - - if ( $wp_query->is_author() && isset( $wp_query->post ) ) { - $GLOBALS['authordata'] = get_userdata( $wp_query->post->post_author ); - } -} -} -add_action( 'wp', 'decode_setup_author' ); \ No newline at end of file From 0fc215085622709c3b88cd13669f3da1e0910c07 Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Sat, 3 Jan 2015 15:41:09 -0600 Subject: [PATCH 04/31] Stop adding a home link on the page menu. --- inc/extras.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/inc/extras.php b/inc/extras.php index 039ef4d..48b9479 100644 --- a/inc/extras.php +++ b/inc/extras.php @@ -7,20 +7,6 @@ * @package Decode */ -/** - * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link. - */ - -if ( ! function_exists( 'decode_page_menu_args' ) ) { - -function decode_page_menu_args( $args ) { - $args['show_home'] = true; - return $args; -} -add_filter( 'wp_page_menu_args', 'decode_page_menu_args' ); - -} - /** * Adds custom classes to the array of body classes. */ From d4084b2b05c078307ce803f730e914faa1dc73fb Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Sat, 3 Jan 2015 15:41:26 -0600 Subject: [PATCH 05/31] Refactor title tag code --- inc/extras.php | 161 ++++++++++--------------------------------------- 1 file changed, 32 insertions(+), 129 deletions(-) diff --git a/inc/extras.php b/inc/extras.php index 48b9479..efd19cd 100644 --- a/inc/extras.php +++ b/inc/extras.php @@ -70,141 +70,44 @@ function link_ellipses( $more ) { } add_filter( 'excerpt_more', 'link_ellipses' ); -/* A custom fallback callback function that displays a meaningful title - * depending on the page being rendered - */ -if ( ! function_exists( '_wp_render_title_tag' ) ) { - -if ( ! function_exists( 'decode_wp_title' ) ) { -function decode_wp_title( $title, $sep, $sep_location ) { - - // add white space around $sep - $sep = ' ' . $sep . ' '; - - $site_description = get_bloginfo( 'description' ); - - if ( is_feed() ) - return $title; - - elseif ( $site_description && is_front_page() ) - $custom = $sep . $site_description; - - elseif ( is_category() ) - $custom = $sep . __( 'Category', 'decode' ); - - elseif ( is_tag() ) - $custom = $sep . __( 'Tag', 'decode' ); - - elseif ( is_author() ) - $custom = $sep . __( 'Author', 'decode' ); - - elseif ( is_year() || is_month() || is_day() ) - $custom = $sep . __( 'Archives', 'decode' ); - - else - $custom = ''; - - // get the page number (main page or an archive) - if ( get_query_var( 'paged' ) ) - $page_number = $sep . __( 'Page ', 'decode' ) . get_query_var( 'paged' ); - - // get the page number (post with multipages) - elseif ( get_query_var( 'page' ) ) - $page_number = $sep . __( 'Page ', 'decode' ) . get_query_var( 'page' ); - - else - $page_number = ''; - - // Comment the 4 lines of code below and see how odd the title format becomes - if ( $sep_location == 'right' && ! ( is_front_page() ) ) { - $custom = $custom . $sep; - $title = substr( $title, 0, -2 ); - } - - // return full title - return get_bloginfo( 'name' ) . $custom . $title . $page_number; - -} // end of decode_wp_title -} -/* add function 'decode_wp_title()' to the - * wp_title filter, with priority 10 and 3 args - */ -add_filter( 'wp_title', 'decode_wp_title', 10, 3 ); - -} - -/** - * Filters wp_title to print a neat tag based on what is being viewed. - * - * @param string $title Default title text for current view. - * @param string $sep Optional separator. - * @return string The filtered title. - */ -if ( ! function_exists( '_wp_render_title_tag' ) ) : - function decode_wp_title( $title, $sep, $sep_location ) { - - // add white space around $sep - $sep = ' ' . $sep . ' '; - - $site_description = get_bloginfo( 'description' ); - - if ( is_feed() ) +if ( version_compare( $GLOBALS['wp_version'], '4.1', '<' ) ) : + /** + * Filters wp_title to print a neat <title> tag based on what is being viewed. + * + * @param string $title Default title text for current view. + * @param string $sep Optional separator. + * @return string The filtered title. + */ + function decode_wp_title( $title, $sep ) { + if ( is_feed() ) { return $title; - - elseif ( $site_description && is_front_page() ) - $custom = $sep . $site_description; - - elseif ( is_category() ) - $custom = $sep . __( 'Category', 'decode' ); - - elseif ( is_tag() ) - $custom = $sep . __( 'Tag', 'decode' ); - - elseif ( is_author() ) - $custom = $sep . __( 'Author', 'decode' ); - - elseif ( is_year() || is_month() || is_day() ) - $custom = $sep . __( 'Archives', 'decode' ); - - else - $custom = ''; - - // get the page number (main page or an archive) - if ( get_query_var( 'paged' ) ) - $page_number = $sep . __( 'Page ', 'decode' ) . get_query_var( 'paged' ); - - // get the page number (post with multipages) - elseif ( get_query_var( 'page' ) ) - $page_number = $sep . __( 'Page ', 'decode' ) . get_query_var( 'page' ); - - else - $page_number = ''; - - // Comment the 4 lines of code below and see how odd the title format becomes - if ( $sep_location == 'right' && ! ( is_front_page() ) ) { - $custom = $custom . $sep; - $title = substr( $title, 0, -2 ); } - - // return full title - return get_bloginfo( 'name' ) . $custom . $title . $page_number; - + global $page, $paged; + // Add the blog name + $title .= get_bloginfo( 'name', 'display' ); + // Add the blog description for the home/front page. + $site_description = get_bloginfo( 'description', 'display' ); + if ( $site_description && ( is_home() || is_front_page() ) ) { + $title .= " $sep $site_description"; + } + // Add a page number if necessary: + if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { + $title .= " $sep " . sprintf( __( 'Page %s', '_s' ), max( $paged, $page ) ); + } + return $title; } add_filter( 'wp_title', 'decode_wp_title', 10, 2 ); -endif; - -/** - * Title shim for sites older than WordPress 4.1. - * - * @link https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/ - * @todo Remove this function when WordPress 4.3 is released. - */ -if ( ! function_exists( '_wp_render_title_tag' ) ) : + + /** + * Title shim for sites older than WordPress 4.1. + * + * @link https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/ + * @todo Remove this function when WordPress 4.3 is released. + */ function decode_render_title() { ?> - <title><?php wp_title( '|', false, 'right' ); ?> + <?php wp_title( '|', true, 'right' ); ?> Date: Tue, 27 Jan 2015 22:31:23 -0800 Subject: [PATCH 06/31] Add documentation for changing font family --- docs/src/CustomCSS.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/src/CustomCSS.md b/docs/src/CustomCSS.md index bbf9b93..814ae74 100644 --- a/docs/src/CustomCSS.md +++ b/docs/src/CustomCSS.md @@ -18,6 +18,9 @@ I suggest that you do not change this without using media queries because the so ### Change the color of the menu and menu close icons: `.menu-icon, .close-icon { fill: #00B0CC; }` +### Change font family: +`body, button, input, select, textarea { font-family: 'name-of-font-family'; }` + ### Change the font size of posts and pages: `.entry-content { font-size: 1em; }`
1em is the default. From c92cdd58830c4061d13f8893f1b29f2f21646354 Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Wed, 28 Jan 2015 01:20:06 -0800 Subject: [PATCH 07/31] Move to Normalize.css for style resets/Rewrite font sizing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a big one. I’m going to be regretting this for months. --- .gitignore | 1 + gruntfile.js | 76 +++--- package.json | 3 + styles/src/media/_alignment.scss | 18 ++ styles/src/media/_captions.scss | 19 ++ styles/src/media/_galleries.scss | 100 ++++++++ styles/src/media/_media.scss | 54 ++++ styles/src/reset/_elements.scss | 99 ++------ styles/src/reset/_forms.scss | 45 +--- styles/src/reset/_general.scss | 74 ------ styles/src/reset/_reset.scss | 12 +- styles/src/reset/_typography.scss | 73 +++++- styles/src/style.scss | 284 +++++----------------- styles/src/utilities/_accessibility.scss | 22 ++ styles/src/utilities/_screen-readers.scss | 21 -- styles/src/utilities/_utilities.scss | 4 +- 16 files changed, 424 insertions(+), 481 deletions(-) create mode 100644 styles/src/media/_alignment.scss create mode 100644 styles/src/media/_captions.scss create mode 100644 styles/src/media/_galleries.scss create mode 100644 styles/src/media/_media.scss delete mode 100644 styles/src/reset/_general.scss create mode 100644 styles/src/utilities/_accessibility.scss delete mode 100644 styles/src/utilities/_screen-readers.scss diff --git a/.gitignore b/.gitignore index 707a856..2e01cb1 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ editor-style.css styles/*.css styles/*.map styles/src/.sass-cache/ +styles/src/reset/_normalize.scss scripts/*.js scripts/srcmaps/ scripts/src/modernizr.js diff --git a/gruntfile.js b/gruntfile.js index c865784..84a2c52 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -57,6 +57,40 @@ module.exports = function(grunt) { } } }, + + markdown: { + readme: { + options: { + template: 'docs/src/READMETemplate.html' + }, + files: { + 'docs/README.html': 'docs/src/README.md' + } + }, + customcss: { + options: { + template: 'docs/src/CustomCSSTemplate.html' + }, + files: { + 'docs/CustomCSS.html': 'docs/src/CustomCSS.md' + } + } + }, + + copy: { + /* Move and rename Normalize so grunt-sass can import and concatenate it. */ + normalize: { + files: { + 'styles/src/reset/_normalize.scss': 'node_modules/normalize.css/normalize.css' + } + }, + /* Copy Readme.md to project root. */ + readme: { + files: { + 'README.md': 'docs/src/README.md' + } + } + }, sass: { options: { @@ -116,34 +150,6 @@ module.exports = function(grunt) { ext: '.css' } }, - - markdown: { - readme: { - options: { - template: 'docs/src/READMETemplate.html' - }, - files: { - 'docs/README.html': ['docs/src/README.md'] - } - }, - customcss: { - options: { - template: 'docs/src/CustomCSSTemplate.html' - }, - files: { - 'docs/CustomCSS.html': ['docs/src/CustomCSS.md'] - } - } - }, - - /* Copy Readme.md to project root */ - copy: { - copy_readme: { - files: { - 'README.md': ['docs/src/README.md'] - } - } - }, watch: { scripts: { @@ -169,12 +175,12 @@ module.exports = function(grunt) { grunt.loadNpmTasks("grunt-modernizr"); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadNpmTasks('grunt-contrib-uglify'); + grunt.loadNpmTasks('grunt-markdown'); + grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-sass'); grunt.loadNpmTasks('grunt-csscomb'); grunt.loadNpmTasks('grunt-autoprefixer'); grunt.loadNpmTasks('grunt-contrib-cssmin'); - grunt.loadNpmTasks('grunt-contrib-copy'); - grunt.loadNpmTasks('grunt-markdown'); grunt.loadNpmTasks('grunt-contrib-watch'); @@ -184,12 +190,12 @@ module.exports = function(grunt) { 'modernizr', 'jshint', 'uglify', + 'markdown', + 'copy', 'sass', 'csscomb', 'autoprefixer', 'cssmin', - 'markdown', - 'copy', 'watch' ]); @@ -198,12 +204,12 @@ module.exports = function(grunt) { 'modernizr', 'jshint', 'uglify', + 'markdown', + 'copy', 'sass', 'csscomb', 'autoprefixer', - 'cssmin', - 'markdown', - 'copy' + 'cssmin' ]); // $ grunt dev: Watches for changes while developing. diff --git a/package.json b/package.json index 2c4f86a..261dcae 100644 --- a/package.json +++ b/package.json @@ -19,5 +19,8 @@ "grunt-markdown": "^0.6.1", "grunt-modernizr": "^0.6.0", "grunt-sass": "^0.17.0" + }, + "dependencies": { + "normalize.css": "^3.0.2" } } diff --git a/styles/src/media/_alignment.scss b/styles/src/media/_alignment.scss new file mode 100644 index 0000000..56a7936 --- /dev/null +++ b/styles/src/media/_alignment.scss @@ -0,0 +1,18 @@ +.entry-content { + .alignleft { + display: inline; + float: left; + margin-right: 2.5%; + } + .alignright { + display: inline; + float: right; + margin-left: 2.5%; + } + .aligncenter { + display: block; + clear: both; + margin-right: auto; + margin-left: auto; + } +} \ No newline at end of file diff --git a/styles/src/media/_captions.scss b/styles/src/media/_captions.scss new file mode 100644 index 0000000..f1a3c37 --- /dev/null +++ b/styles/src/media/_captions.scss @@ -0,0 +1,19 @@ +.wp-caption { + max-width: 100%; + margin-bottom: 1.5em; +} + +.wp-caption img[class*='wp-image-'] { + display: block; + max-width: 100%; + margin: 0 auto; +} + +.wp-caption-text { + font-size: 0.85em; + text-align: center; +} + +.wp-caption .wp-caption-text { + margin: 0.8075em 0; +} \ No newline at end of file diff --git a/styles/src/media/_galleries.scss b/styles/src/media/_galleries.scss new file mode 100644 index 0000000..a1684b4 --- /dev/null +++ b/styles/src/media/_galleries.scss @@ -0,0 +1,100 @@ +.gallery { + margin: auto auto 1.5em; +} + +.gallery-item { + display: inline-block; + text-align: center; + vertical-align: top; + width: 100%; + margin: 0 4px 4px 0; +} + +.gallery-columns-2 .gallery-item { + max-width: 48%; + max-width: calc(50% - 4px); +} + +.gallery-columns-3 .gallery-item { + max-width: 32%; + max-width: calc(33.3% - 4px); +} + +.gallery-columns-4 .gallery-item { + max-width: 23%; + max-width: calc(25% - 4px); +} + +.gallery-columns-5 .gallery-item { + max-width: 19%; + max-width: calc(20% - 4px); +} + +.gallery-columns-6 .gallery-item { + max-width: 15%; + max-width: calc(16.7% - 4px); +} + +.gallery-columns-7 .gallery-item { + max-width: 13%; + max-width: calc(14.28% - 4px); +} + +.gallery-columns-8 .gallery-item { + max-width: 11%; + max-width: calc(12.5% - 4px); +} + +.gallery-columns-9 .gallery-item { + max-width: 9%; + max-width: calc(11.1% - 4px); +} + +.gallery-columns-1 .gallery-item:nth-of-type(1n), +.gallery-columns-2 .gallery-item:nth-of-type(2n), +.gallery-columns-3 .gallery-item:nth-of-type(3n), +.gallery-columns-4 .gallery-item:nth-of-type(4n), +.gallery-columns-5 .gallery-item:nth-of-type(5n), +.gallery-columns-6 .gallery-item:nth-of-type(6n), +.gallery-columns-7 .gallery-item:nth-of-type(7n), +.gallery-columns-8 .gallery-item:nth-of-type(8n), +.gallery-columns-9 .gallery-item:nth-of-type(9n) { + margin-right: 0; +} + +/* Overwrites Core's default styles (≥ WP 3.8) */ +#content .gallery dd.gallery-caption { + margin: auto; +} + +.gallery-caption { + font-size: 0.85em; + text-align: center; + margin: auto; +} + +.gallery-columns-1 .gallery-caption { + max-width: 20em; +} + +.gallery-columns-3 .gallery-caption, +.gallery-columns-4 .gallery-caption, +.gallery-columns-5 .gallery-caption, +.gallery-columns-6 .gallery-caption, +.gallery-columns-7 .gallery-caption, +.gallery-columns-8 .gallery-caption, +.gallery-columns-9 .gallery-caption { + display: none; +} + +.gallery-columns-6 .gallery-item img, +.gallery-columns-7 .gallery-item img, +.gallery-columns-8 .gallery-item img, +.gallery-columns-9 .gallery-item img { + margin: 0 auto; +} + +.gallery a img { + display: block; + border: none; +} \ No newline at end of file diff --git a/styles/src/media/_media.scss b/styles/src/media/_media.scss new file mode 100644 index 0000000..c88e23a --- /dev/null +++ b/styles/src/media/_media.scss @@ -0,0 +1,54 @@ +/* Fluid images for posts, comments, and widgets */ +.site-branding img, +.site-content img, +.site-footer img, +.sidebar img, +img.size-full, +.comment-content img, +.widget img, +.size-auto, +.size-full, +.size-large, +.size-medium, +.size-thumbnail { + max-width: 100%; + height: auto; +} + +/* Make sure images with WordPress-added height and width attributes are scaled correctly */ +.entry-content img, +img[class*='align'], +img[class*='wp-image-'] { + height: auto; +} + +/* Make sure embeds and iframes fit their containers. */ +embed, +iframe, +object { + max-width: 100%; +} + +.page-content .wp-smiley, +.entry-content .wp-smiley, +.comment-content .wp-smiley { + padding: 0; + border: none; + margin-top: 0; + margin-bottom: 0; +} + +/*-------------------------------------------------------------- +3.1 - Captions +--------------------------------------------------------------*/ +@import 'captions'; + +/*-------------------------------------------------------------- +3.2 - Galleries +--------------------------------------------------------------*/ +@import 'galleries'; + +/*-------------------------------------------------------------- +3.3 - Alignment +--------------------------------------------------------------*/ +@import 'alignment'; diff --git a/styles/src/reset/_elements.scss b/styles/src/reset/_elements.scss index 773c1e4..946e0f0 100644 --- a/styles/src/reset/_elements.scss +++ b/styles/src/reset/_elements.scss @@ -1,3 +1,17 @@ +html { + box-sizing: border-box; /* http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */ +} + +*, +*:before, +*:after { + box-sizing: inherit; +} + +body { + background: $background-color; /* Fallback for when there is no custom background color defined. */ +} + hr { height: 1px; border: 0; @@ -5,12 +19,9 @@ hr { background-color: #CCC; } -/* Text elements */ -p { - margin-bottom: 1.5em; -} - -ul, ol { +/* Lists */ +ul, +ol { margin: 0 0 1.5em 3em; } @@ -22,7 +33,8 @@ ol { list-style: decimal; } -li > ul, li > ol { +li > ul, +li > ol { margin-bottom: 0; margin-left: 1.5em; } @@ -35,79 +47,8 @@ dd { margin: 0 1.5em 1.5em; } -b, strong { - font-weight: bold; -} - -dfn, cite, em, i { - font-style: italic; -} - -blockquote { - margin: 0 1.5em; -} - -address { - margin: 0 0 1.5em; -} - -pre { - overflow: auto; - font-family: 'Courier 10 Pitch', Courier, monospace; - line-height: 1.6; - max-width: 100%; - padding: 1.6em; - margin-bottom: 1.6em; - background: #EEE; -} - -code, kbd, tt, var { - font: 15px Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace; -} - -abbr, acronym { - border-bottom: 1px dotted #666; - cursor: help; -} - -mark, ins { - text-decoration: none; - background: #FFF9C0; -} - -sup, sub { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; - height: 0; -} - -sup { - bottom: 1ex; -} - -sub { - top: 0.5ex; -} - -small { - font-size: 75%; -} - -big { - font-size: 125%; -} - -figure { - margin: 0; -} - +/* Tables */ table { width: 100%; margin: 0 0 1.5em; -} - -th { - font-weight: bold; } \ No newline at end of file diff --git a/styles/src/reset/_forms.scss b/styles/src/reset/_forms.scss index 62d69ac..ecfdacd 100644 --- a/styles/src/reset/_forms.scss +++ b/styles/src/reset/_forms.scss @@ -1,28 +1,16 @@ -button, -input, -select, -textarea { - font-size: 100%; /* Corrects font size not being inherited in all browsers */ - vertical-align: baseline; /* Improves appearance and consistency in all browsers */ - vertical-align: middle; /* Improves appearance and consistency in all browsers */ - margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */ -} - button, input[type='button'], input[type='reset'], input[type='submit'] { transition: border 0.25s ease-out, color 0.25s ease-out; color: $accent-color; - height: 2.15em; + height: 22px; + height: 2rem; padding: 0 0.7em; border: 1px solid #C0C0C0; border-radius: 3px; background: transparent; - cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */ - -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */ - .no-touch &:hover { border: 1px solid $accent-color; } @@ -38,9 +26,7 @@ input[type='submit'] { textarea { transition: border 0.25s ease-out, color 0.25s ease-out, background 0.25s ease-out; - overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */ color: #C0C0C0; - vertical-align: top; /* Improves readability and alignment in all browsers */ width: 100%; padding: 0.3em; border: 1px solid #C0C0C0; @@ -48,26 +34,6 @@ textarea { background: rgba(255,255,255,0); } -input[type='checkbox'], -input[type='radio'] { - padding: 0; /* Addresses excess padding in IE8/9 */ -} - -input[type='search'] { - -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */ - - &::-webkit-search-decoration { - -webkit-appearance: none;/* Corrects inner padding displayed oddly in S5, Chrome on OSX */ - } -} - -button::-moz-focus-inner, -input::-moz-focus-inner { - padding: 0; - /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */ - border: 0; -} - input[type='text'], input[type='email'], input[type='password'], @@ -77,7 +43,8 @@ input[type='url'] { transition: border 0.25s ease-out, color 0.25s ease-out, background 0.25s ease-out; color: #C0C0C0; width: 100%; - height: 2.15em; + height: 22px; + height: 2rem; padding: 0.3em; border: 1px solid #C0C0C0; border-radius: 3px; @@ -104,4 +71,8 @@ textarea { outline: none; background: rgba(255,255,255,1); } +} + +input[type='search'] { + box-sizing: border-box; /* Override Normalize.css. */ } \ No newline at end of file diff --git a/styles/src/reset/_general.scss b/styles/src/reset/_general.scss deleted file mode 100644 index 28c9294..0000000 --- a/styles/src/reset/_general.scss +++ /dev/null @@ -1,74 +0,0 @@ -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, font, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td { - font-family: inherit; - font-size: 100%; - font-weight: inherit; - font-style: inherit; - vertical-align: baseline; - padding: 0; - border: 0; - margin: 0; - outline: 0; -} -html { - font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */ - box-sizing: border-box; /* http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */ - - -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */ - -ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */ -} -*, -*:before, -*:after { - box-sizing: inherit; -} -body { - background: $background-color; /* Fallback for when there is no custom background color defined. */ -} -article, -aside, -details, -figcaption, -figure, -footer, -header, -main, -nav, -section { - display: block; -} -ol, ul { - list-style: none; -} -table { - border-spacing: 0; - /* tables still need 'cellspacing="0"' in the markup */ - border-collapse: separate; -} -caption, th, td { - font-weight: normal; - text-align: left; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; -} -blockquote, q { - quotes: '' ''; -} -a:focus { - outline: thin dotted; -} -a:hover, -a:active { - outline: 0; -} -a img { - border: 0; -} \ No newline at end of file diff --git a/styles/src/reset/_reset.scss b/styles/src/reset/_reset.scss index dea8718..33df9c9 100644 --- a/styles/src/reset/_reset.scss +++ b/styles/src/reset/_reset.scss @@ -1,17 +1,17 @@ /*-------------------------------------------------------------- -1.1 - General +1.1 - Normalize --------------------------------------------------------------*/ -@import 'general'; +@import 'normalize'; /*-------------------------------------------------------------- -1.2 - Typography +1.2 - Elements --------------------------------------------------------------*/ -@import 'typography'; +@import 'elements'; /*-------------------------------------------------------------- -1.3 - Elements +1.3 - Typography --------------------------------------------------------------*/ -@import 'elements'; +@import 'typography'; /*-------------------------------------------------------------- 1.4 - Forms diff --git a/styles/src/reset/_typography.scss b/styles/src/reset/_typography.scss index c64d0e2..43baa18 100644 --- a/styles/src/reset/_typography.scss +++ b/styles/src/reset/_typography.scss @@ -5,8 +5,6 @@ select, textarea { color: $text-color; font-family: 'Oxygen', 'Helvetica Neue', 'Arial', sans-serif; - font-size: 18px; - font-size: 1.8rem; font-weight: 300; line-height: 1.5; } @@ -20,9 +18,12 @@ body { /* Headings */ h1, h2, h3, h4, h5, h6 { + font-weight: inherit; clear: both; + margin: 0; } +/* Links */ a { transition: color 0.4s ease; color: $accent-color; @@ -54,4 +55,72 @@ a { &:active { border-bottom: 1px solid $accent-color-secondary; } +} + +/* Copy */ +b, +strong { + font-weight: bold; +} + +dfn, +cite, +em, i { + font-style: italic; +} + +blockquote { + margin: 0 1.5em; +} + +blockquote:before, +blockquote:after, +q:before, +q:after { +content: ""; +} + +blockquote, q { +quotes: "" ""; +} + +address { + margin: 0 0 1.5em; +} + +pre { + overflow: auto; + font-family: 'Courier 10 Pitch', Courier, monospace; + line-height: 1.6; + max-width: 100%; + padding: 1.6em; + margin-bottom: 1.6em; + background: #EEE; +} + +code, +kbd, +tt, +var { + font: 1.15em Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace; +} + +abbr, +acronym { + border-bottom: 1px dotted #666; + cursor: help; +} + +mark, +ins { + text-decoration: none; + background: #FFF9C0; +} + +small { + font-size: 75%; +} + +big { + font-size: 125%; } \ No newline at end of file diff --git a/styles/src/style.scss b/styles/src/style.scss index db2747e..68e4fd2 100644 --- a/styles/src/style.scss +++ b/styles/src/style.scss @@ -1,6 +1,3 @@ -@import 'variables'; -@import 'mixins'; - /*! Theme Name: Decode Theme URI: http://ScottHSmith.com/projects/decode/ @@ -21,12 +18,12 @@ Decode is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, >>> TABLE OF CONTENTS: ---------------------------------------------------------------- 1.0 - Reset - 1.1 - General - 1.2 - Typography - 1.3 - Elements + 1.1 - Normalize + 1.2 - Elements + 1.3 - Typography 1.4 - Forms 2.0 - Utilities - 2.1 - Screen Readers + 2.1 - Accessibility 2.2 - Clearing 3.0 - Media 3.1 - Captions @@ -60,6 +57,8 @@ Decode is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, 15.4 - Print --------------------------------------------------------------*/ +@import 'variables'; +@import 'mixins'; /*-------------------------------------------------------------- 1.0 - Reset @@ -75,191 +74,7 @@ Decode is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, /*-------------------------------------------------------------- 3.0 - Media --------------------------------------------------------------*/ -/* Fluid images for posts, comments, and widgets */ -.site-branding img, -.site-content img, -.site-footer img, -.sidebar img, -img.size-full, -.comment-content img, -.widget img, -.size-auto, -.size-full, -.size-large, -.size-medium, -.size-thumbnail { - max-width: 100%; - height: auto; -} - -/* Make sure embeds and iframes fit their containers */ -embed, iframe, object { - max-width: 100%; -} - -/* Make sure images with WordPress-added height and width attributes are scaled correctly */ -.entry-content img, img[class*='align'], img[class*='wp-image-'] { - height: auto; -} - -.page-content img.wp-smiley, -.entry-content img.wp-smiley, -.comment-content img.wp-smiley { - padding: 0; - border: none; - margin-top: 0; - margin-bottom: 0; -} - -/*-------------------------------------------------------------- -3.1 - Captions ---------------------------------------------------------------*/ -.wp-caption { - max-width: 100%; - margin-bottom: 1.5em; -} - -.wp-caption img[class*='wp-image-'] { - display: block; - max-width: 100%; - margin: 0 auto; -} - -.wp-caption-text { - font-size: 0.85em; - text-align: center; -} - -.wp-caption .wp-caption-text { - margin: 0.8075em 0; -} - -/*-------------------------------------------------------------- -3.2 - Galleries ---------------------------------------------------------------*/ -.gallery { - margin: auto auto 1.5em; -} - -.gallery-item { - display: inline-block; - text-align: center; - vertical-align: top; - width: 100%; - margin: 0 4px 4px 0; -} - -.gallery-columns-2 .gallery-item { - max-width: 48%; - max-width: calc(50% - 4px); -} - -.gallery-columns-3 .gallery-item { - max-width: 32%; - max-width: calc(33.3% - 4px); -} - -.gallery-columns-4 .gallery-item { - max-width: 23%; - max-width: calc(25% - 4px); -} - -.gallery-columns-5 .gallery-item { - max-width: 19%; - max-width: calc(20% - 4px); -} - -.gallery-columns-6 .gallery-item { - max-width: 15%; - max-width: calc(16.7% - 4px); -} - -.gallery-columns-7 .gallery-item { - max-width: 13%; - max-width: calc(14.28% - 4px); -} - -.gallery-columns-8 .gallery-item { - max-width: 11%; - max-width: calc(12.5% - 4px); -} - -.gallery-columns-9 .gallery-item { - max-width: 9%; - max-width: calc(11.1% - 4px); -} - -.gallery-columns-1 .gallery-item:nth-of-type(1n), -.gallery-columns-2 .gallery-item:nth-of-type(2n), -.gallery-columns-3 .gallery-item:nth-of-type(3n), -.gallery-columns-4 .gallery-item:nth-of-type(4n), -.gallery-columns-5 .gallery-item:nth-of-type(5n), -.gallery-columns-6 .gallery-item:nth-of-type(6n), -.gallery-columns-7 .gallery-item:nth-of-type(7n), -.gallery-columns-8 .gallery-item:nth-of-type(8n), -.gallery-columns-9 .gallery-item:nth-of-type(9n) { - margin-right: 0; -} - -/* Overwrites Core's default styles (≥ WP 3.8) */ -#content .gallery dd.gallery-caption { - margin: auto; -} - -.gallery-caption { - font-size: 0.85em; - text-align: center; - margin: auto; -} - -.gallery-columns-1 .gallery-caption { - max-width: 20em; -} - -.gallery-columns-3 .gallery-caption, -.gallery-columns-4 .gallery-caption, -.gallery-columns-5 .gallery-caption, -.gallery-columns-6 .gallery-caption, -.gallery-columns-7 .gallery-caption, -.gallery-columns-8 .gallery-caption, -.gallery-columns-9 .gallery-caption { - display: none; -} - -.gallery-columns-6 .gallery-item img, -.gallery-columns-7 .gallery-item img, -.gallery-columns-8 .gallery-item img, -.gallery-columns-9 .gallery-item img { - margin: 0 auto; -} - -.gallery a img { - display: block; - border: none; -} - -/*-------------------------------------------------------------- -3.3 - Alignment ---------------------------------------------------------------*/ -.entry-content { - .alignleft { - display: inline; - float: left; - margin-right: 2.5%; - } - .alignright { - display: inline; - float: right; - margin-left: 2.5%; - } - .aligncenter { - display: block; - clear: both; - margin-right: auto; - margin-left: auto; - } -} - +@import 'media/media'; /*-------------------------------------------------------------- 4.0 - Header @@ -285,8 +100,8 @@ embed, iframe, object { .site-logo { transition: opacity 0.5s ease-out; width: auto; - max-height: 8.5em; // Fallback for rems - max-height: 15rem; + max-height: 9.5em; // Fallback for rems + max-height: 9.5rem; margin: 0 auto 2%; opacity: 1; @@ -302,6 +117,7 @@ embed, iframe, object { .site-title { + font-size: 2.15em; line-height: 1; text-align: center; word-wrap: break-word; @@ -310,7 +126,6 @@ embed, iframe, object { a { transition: color 0.5s; color: $text-color; - font-size: 1.95em; -webkit-font-smoothing: subpixel-antialiased; } @@ -336,6 +151,7 @@ embed, iframe, object { } .site-description { + font-size: 1.1em; text-align: center; margin-bottom: 0.75%; } @@ -372,8 +188,8 @@ embed, iframe, object { svg, img { overflow: visible; - width: 2em; - height: 2em; + width: 2.25em; + height: 2.25em; } .no-inlinesvg & svg { display: none; @@ -568,6 +384,7 @@ embed, iframe, object { .horizontal-menu { position: relative; /* Sets context for absolutely positoned submenus */ + font-size: 1.1em; text-align: center; } @@ -841,6 +658,10 @@ embed, iframe, object { /*-------------------------------------------------------------- 5.0 - Content --------------------------------------------------------------*/ +.site-content { + font-size: 1.1em; +} + .site-main, .site-footer { width: 92.5%; margin: 0 auto; @@ -864,6 +685,7 @@ embed, iframe, object { .single .byline, .group-blog .byline { display: inline; } + .page-content, .entry-content, .entry-summary { @@ -925,6 +747,9 @@ a .attachment-post-thumbnail { .entry-content { font-size: 1em; + p { + margin-bottom: 1.5em; + } h1 { font-size: 2.35em; } @@ -1240,6 +1065,7 @@ li.comment { margin-top: 7.5%; } +/* Comments Form */ .comment-form:not(.jetpack-comments-active) { display: flex; justify-content: space-between; @@ -1252,7 +1078,7 @@ li.comment { } .comment-form-comment { - margin-bottom: 0; + margin-bottom: -1%; } .comment-form-comment textarea { @@ -1269,7 +1095,7 @@ li.comment { border-bottom: 1px solid transparent; border-left: 1px solid #C0C0C0; border-radius: 0 0 0 3px; - margin-bottom: 0; + margin: 0; opacity: 0; &.visible { max-height: 12em; @@ -1279,12 +1105,16 @@ li.comment { } } -.form-submit input[type=submit] { - float: right; - position: relative; - top: -1px; - border-top-color: transparent; - border-radius: 0 0 3px 3px; +.form-submit { + margin: 0; + + input[type=submit] { + float: right; + position: relative; + top: -1px; + border-top-color: transparent; + border-radius: 0 0 3px 3px; + } } @@ -1411,7 +1241,7 @@ li.comment { display: inline-block; position: absolute; top: 0.5em; - height: 1.5em; + height: 1.75em; padding: 0; border: none; margin-bottom: 2.5%; @@ -1444,8 +1274,8 @@ li.comment { } svg, img { - width: 1.5em; - height: 1.5em; + width: 1.75em; + height: 1.75em; } } @@ -1513,7 +1343,6 @@ li.comment { position: fixed; z-index: 5; top: 0; - font-size: 0.95em; width: 95%; height: 100%; background-color: $background-color; @@ -1528,6 +1357,10 @@ li.comment { right: 0; box-shadow: -1px 0 15px rgba(0,0,0,0.5); } + + h2 { + font-size: 1em; + } } .sidebar-content { @@ -1688,8 +1521,8 @@ li.comment { position: fixed; z-index: 1; top: 2.5%; - width: 1.75em; - height: 1.75em; + width: 2em; + height: 2em; &.left { left: 2.5%; } @@ -1704,8 +1537,8 @@ li.comment { } svg, img { - width: 1.75em; - height: 1.75em; + width: 2em; + height: 2em; } } @@ -1717,9 +1550,10 @@ li.comment { margin: 1.5% auto; } - .social-link svg, .social-link img { - width: 2.25em; - height: 2.25em; + .social-link svg, + .social-link img { + width: 2.5em; + height: 2.5em; } /* The CSS below causes the absolutely positioned dropdowns @@ -1855,8 +1689,8 @@ li.comment { margin: 0 auto 5%; } - .site-title a { - font-size: 2.8em; + .site-title { + font-size: 3.15em; } .author .author-section { @@ -1868,8 +1702,8 @@ li.comment { .social-link svg, .social-link img { - width: 2.5em; - height: 2.5em; + width: 2.75em; + height: 2.75em; } .no-inlinesvg .social-link { @@ -1948,14 +1782,14 @@ li.comment { max-width: 60em; } - .site-title a { - font-size: 3.5em; + .site-title { + font-size: 4em; } .social-link svg, .social-link img { - width: 2.75em; - height: 2.75em; + width: 3em; + height: 3em; } .page-header { @@ -1963,7 +1797,7 @@ li.comment { } .entry-title { - font-size: 2em; + font-size: 2.1em; } .sidebar-style-constant .site { diff --git a/styles/src/utilities/_accessibility.scss b/styles/src/utilities/_accessibility.scss new file mode 100644 index 0000000..046fa98 --- /dev/null +++ b/styles/src/utilities/_accessibility.scss @@ -0,0 +1,22 @@ +body .screen-reader-text { + overflow: hidden; + clip: rect(0 0 0 0); + position: absolute; + width: 1px; + height: 1px; + padding: 0; + border: 0; + margin: -1px; + + &:hover, + &:active, + &:focus { + overflow: visible; + clip: auto; + position: static; + z-index: 100000; /* Above WP toolbar */ + width: auto; + height: auto; + margin: 0; + } +} \ No newline at end of file diff --git a/styles/src/utilities/_screen-readers.scss b/styles/src/utilities/_screen-readers.scss deleted file mode 100644 index e22cd12..0000000 --- a/styles/src/utilities/_screen-readers.scss +++ /dev/null @@ -1,21 +0,0 @@ -body .screen-reader-text { - overflow: hidden; - clip: rect(0 0 0 0); - position: absolute; - width: 1px; - height: 1px; - padding: 0; - border: 0; - margin: -1px; -} - -body .screen-reader-text:active, -body .screen-reader-text:focus { - overflow: visible; - clip: auto; - position: static; - z-index: 100000; /* Above WP toolbar */ - width: auto; - height: auto; - margin: 0; -} \ No newline at end of file diff --git a/styles/src/utilities/_utilities.scss b/styles/src/utilities/_utilities.scss index 92900e4..7e05648 100644 --- a/styles/src/utilities/_utilities.scss +++ b/styles/src/utilities/_utilities.scss @@ -1,7 +1,7 @@ /*-------------------------------------------------------------- -2.1 - Screen Readers +2.1 - Accessibility --------------------------------------------------------------*/ -@import 'screen-readers'; +@import 'accessibility'; /*-------------------------------------------------------------- 2.2 - Clearing From d9c4d84aec3a250ed2278f1c44caa9bdc235c652 Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Wed, 28 Jan 2015 01:26:32 -0800 Subject: [PATCH 08/31] Fix author image hover --- styles/src/style.scss | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/styles/src/style.scss b/styles/src/style.scss index 68e4fd2..a3d48c5 100644 --- a/styles/src/style.scss +++ b/styles/src/style.scss @@ -956,14 +956,15 @@ article { border-radius: 50%; opacity: 1; box-shadow: 0 0 5px rgba(0,0,0,0); - } - .no-touch &:hover { - opacity: 1; - box-shadow: 0 2px 5px rgba(0,0,0,0.5); - } - .no-touch &:active { - opacity: 0.85; - box-shadow: 0 1px 4px rgba(0,0,0,0.4); + + .no-touch &:hover { + opacity: 1; + box-shadow: 0 2px 5px rgba(0,0,0,0.5); + } + .no-touch &:active { + opacity: 0.85; + box-shadow: 0 1px 4px rgba(0,0,0,0.4); + } } } From b7872ebf28a1635237da43437d82a952b0138f90 Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Wed, 28 Jan 2015 13:22:41 -0800 Subject: [PATCH 09/31] Use core navigation template tags. --- archive.php | 2 +- author.php | 2 +- image.php | 4 +- inc/template-tags.php | 117 ++++++++++++++++++++---------------------- index.php | 2 +- search.php | 2 +- single.php | 2 +- styles/src/style.scss | 20 ++++++-- 8 files changed, 80 insertions(+), 71 deletions(-) diff --git a/archive.php b/archive.php index 883f999..7f2b168 100644 --- a/archive.php +++ b/archive.php @@ -46,7 +46,7 @@ - + diff --git a/author.php b/author.php index 15fa520..bab409c 100644 --- a/author.php +++ b/author.php @@ -55,7 +55,7 @@ - + diff --git a/image.php b/image.php index 703291b..f07dd5c 100644 --- a/image.php +++ b/image.php @@ -31,8 +31,8 @@ diff --git a/inc/template-tags.php b/inc/template-tags.php index a348645..3474497 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -9,7 +9,7 @@ if ( ! function_exists( 'decode_srcset_post_thumbnail' ) ) : /** - * Display navigation to next/previous set of posts when applicable. + * Filters post thumbnails/featured images to use src-set responive images spec. */ function decode_srcset_post_thumbnail( $html, $post_id, $post_thumbnail_id, $size, $attr ) { $full_image_url = wp_get_attachment_image_src( get_post_thumbnail_id( $post_id ), 'full' ); @@ -24,65 +24,6 @@ function decode_srcset_post_thumbnail( $html, $post_id, $post_thumbnail_id, $siz endif; add_filter( 'post_thumbnail_html', 'decode_srcset_post_thumbnail', 10, 5 ); -if ( ! function_exists( 'decode_paging_nav' ) ) : -/** - * Display navigation to next/previous set of posts when applicable. - * - * @return void - */ -function decode_paging_nav() { - // Don't print empty markup if there's only one page. - if ( $GLOBALS['wp_query']->max_num_pages < 2 ) { - return; - } - ?> - - post_parent ) : get_adjacent_post( false, '', true ); - $next = get_adjacent_post( false, '', false ); - - if ( ! $next && ! $previous ) { - return; - } - ?> - - max_num_pages < 2 ) { + return; + } + ?> + + post_parent ) : get_adjacent_post( false, '', true ); + $next = get_adjacent_post( false, '', false ); + if ( ! $next && ! $previous ) { + return; + } + ?> + + - + diff --git a/search.php b/search.php index a63bea0..4838c0d 100644 --- a/search.php +++ b/search.php @@ -31,7 +31,7 @@ - + diff --git a/single.php b/single.php index add37ac..bf1d7df 100644 --- a/single.php +++ b/single.php @@ -25,7 +25,7 @@ - + diff --git a/styles/src/style.scss b/styles/src/style.scss index a3d48c5..1277b0b 100644 --- a/styles/src/style.scss +++ b/styles/src/style.scss @@ -956,7 +956,7 @@ article { border-radius: 50%; opacity: 1; box-shadow: 0 0 5px rgba(0,0,0,0); - + .no-touch &:hover { opacity: 1; box-shadow: 0 2px 5px rgba(0,0,0,0.5); @@ -1123,7 +1123,7 @@ li.comment { 9.0 - Navigation --------------------------------------------------------------*/ .post-navigation, -.paging-navigation, +.posts-navigation, .image-navigation { overflow: hidden; margin: 2.5%; @@ -1139,12 +1139,24 @@ li.comment { float: left; text-align: left; width: 50%; + + a::before { + /* Left arrow */ + padding-right: 0.5%; + content: '\2190'; + } } .nav-next { float: right; text-align: right; width: 50%; + + a::after { + /* Right arrow */ + padding-left: 0.5%; + content: '\2192'; + } } .nav-links a { @@ -1492,7 +1504,7 @@ li.comment { 14.0 - Infinite Scroll --------------------------------------------------------------*/ /* Globally hidden elements when Infinite Scroll is supported and in use. */ -.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */ +.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */ .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */ display: none; @@ -1837,7 +1849,7 @@ li.comment { .sidebar-link, .social-links, .menu, - .paging-navigation, + .posts-navigation, .comments-link, .edit-link, .post-navigation, From 7d6e124054ed039740ac0e483b56a6c83d4845aa Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Wed, 28 Jan 2015 17:24:09 -0800 Subject: [PATCH 10/31] Bump up colophon and theme info font size --- styles/src/style.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/styles/src/style.scss b/styles/src/style.scss index 1277b0b..60617a1 100644 --- a/styles/src/style.scss +++ b/styles/src/style.scss @@ -849,7 +849,7 @@ article { .theme-info, .site-colophon { - font-size: 0.8em; + font-size: 0.9em; text-align: center; margin-top: 1em; p { @@ -1141,9 +1141,9 @@ li.comment { width: 50%; a::before { + content: '\2190'; /* Left arrow */ padding-right: 0.5%; - content: '\2190'; } } @@ -1153,9 +1153,9 @@ li.comment { width: 50%; a::after { + content: '\2192'; /* Right arrow */ padding-left: 0.5%; - content: '\2192'; } } From e157759f9e419dfd44a6b0cf87bbb66a1ea3a294 Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Wed, 28 Jan 2015 17:24:29 -0800 Subject: [PATCH 11/31] Fix submenus overlapping top of sidebar --- styles/src/style.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/src/style.scss b/styles/src/style.scss index 60617a1..354abfc 100644 --- a/styles/src/style.scss +++ b/styles/src/style.scss @@ -1293,7 +1293,7 @@ li.comment { } .sidebar-top { - z-index: 1; + z-index: 3; /* Submenus have z-index of 2. */ width: 100%; border-bottom: 1px solid $accent-color; margin-bottom: 7.5%; From 43b2a5abfbd80d1cf94dd68ec5670a5618ad0f02 Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Sun, 1 Feb 2015 02:31:41 -0800 Subject: [PATCH 12/31] Added VSCO and Twitch social links --- images/Twitch.png | Bin 0 -> 800 bytes images/VSCO.png | Bin 0 -> 904 bytes inc/customizer.php | 100 ++++++++++++++++++++++++++---------------- social-links.php | 22 +++++++++- styles/src/style.scss | 8 +++- 5 files changed, 91 insertions(+), 39 deletions(-) create mode 100644 images/Twitch.png create mode 100644 images/VSCO.png diff --git a/images/Twitch.png b/images/Twitch.png new file mode 100644 index 0000000000000000000000000000000000000000..d8eb70cae57bb708d202060261b7ed63453cf88d GIT binary patch literal 800 zcmeAS@N?(olHy`uVBq!ia0vp^Mj*_=3?wxlRx|^t+W|fyu0Wb$`e}xlrx|9QWte?} zVfGn@8K)R#onh$T&oJ{0h}*EAVKz_-r~t@43nD=(fh3pvZh2;EW(pR_l3``+oVOaJ}XkJ48&GEhsn`Km74Ope?n7}k<%|C_@t%r!`{ zt}tQ2ra)H%(L+2emU0eEn^p9>^4J7Q8q?cE8x>VdEF%~59c&U_ru6vYi%m7JFQw%dtgUkUj&Oq59lYtt~FiZow2WG<5Qw$9aU@IV|or2olunMdZ zY}Zt@aZ;g%Tl~!DMCc$)|=ed1jIUB3Zd!9Su zB4yQ|85kJ$ZR&59c4DL<7&^24+?o#k{&jd1Z8+EYj&NPBFR~k8vIC9C#yz3NrBfIEPM!ZYHe~-X98clJ#?*==mZ*n_Z7}N4-<1F`8&KepF zB3D){pEo6}QhdScuL*az_uRW{rpy-FcMMvEj;+L419+;qHcHnH+UIrDFPR4D2 zu30y@Yo3mobR<_t@!>!AKYK#6CMH}IFw)DH%b(hJG9#fwH!+|}`LEOSJIP!9eOJFR zblw{s@pD(pOSZF01=|8c9z1sYEUNJ>Ch5_RgNzQPx|vM#&V?}E(kr~D$XO8)S$89# zD#GFC(=_7+f9!9YS1zkPb@B8G@6V6-D9v2ewv%CB?u*Q(BP)|6j!x_53W!`&tkU2T zw{dCA8D<84Z7a5fH8bYVGJg=meEs7D9n-h&d1vd-M=NesNfvzU^giO3tg~jy7hC)J zKYRCeFjl`aPG~+}!M#xt9Uh!q+hQE%R vF5g_-t@f(Wv{R7tc9z6D&UBMMemm;V{QEvbP0l+XkKPbH>J literal 0 HcmV?d00001 diff --git a/inc/customizer.php b/inc/customizer.php index 1baec7b..a3fba44 100644 --- a/inc/customizer.php +++ b/inc/customizer.php @@ -450,6 +450,11 @@ public static function decode_customize_register( $wp_customize ) { 'sanitize_callback' => 'decode_sanitize_string', ) ); + $wp_customize->add_setting( 'vsco_username', array( + 'default' => '', + 'sanitize_callback' => 'decode_sanitize_string', + ) ); + $wp_customize->add_setting( '500px_username', array( 'default' => '', 'sanitize_callback' => 'decode_sanitize_string', @@ -615,6 +620,11 @@ public static function decode_customize_register( $wp_customize ) { 'sanitize_callback' => 'decode_sanitize_string', ) ); + $wp_customize->add_setting( 'twitch_url', array( + 'default' => '', + 'sanitize_callback' => 'decode_sanitize_string', + ) ); + $wp_customize->add_setting( 'skype_username', array( 'default' => '', 'sanitize_callback' => 'decode_sanitize_string', @@ -804,13 +814,21 @@ public static function decode_customize_register( $wp_customize ) { 'type' => 'text', 'priority' => 21, ) ); + + $wp_customize->add_control( 'vsco_username', array( + 'label' => sprintf( __( '%s Username', 'decode' ), 'VSCO Grid' ), + 'section' => 'decode_social_options', + 'active_callback' => 'decode_social_icons_are_enabled', + 'type' => 'text', + 'priority' => 22, + ) ); $wp_customize->add_control( '500px_username', array( 'label' => sprintf( __( '%s Username', 'decode' ), '500px' ), 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 22, + 'priority' => 23, ) ); $wp_customize->add_control( 'flickr_username', array( @@ -818,7 +836,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 23, + 'priority' => 24, ) ); $wp_customize->add_control( 'deviantart_username', array( @@ -826,7 +844,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 24, + 'priority' => 25, ) ); $wp_customize->add_control( 'bandcamp_username', array( @@ -835,7 +853,7 @@ public static function decode_customize_register( $wp_customize ) { 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', //'type' => 'url', /* Uncomment for WP >= 4.4 */ - 'priority' => 25, + 'priority' => 26, ) ); $wp_customize->add_control( 'soundcloud_username', array( @@ -843,7 +861,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 26, + 'priority' => 27, ) ); $wp_customize->add_control( 'itunes_link', array( @@ -852,7 +870,7 @@ public static function decode_customize_register( $wp_customize ) { 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', //'type' => 'url', /* Uncomment for WP >= 4.4 */ - 'priority' => 27, + 'priority' => 28, ) ); $wp_customize->add_control( 'rdio_username', array( @@ -860,7 +878,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 28, + 'priority' => 29, ) ); $wp_customize->add_control( 'spotify_username', array( @@ -868,7 +886,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 29, + 'priority' => 30, ) ); $wp_customize->add_control( 'lastfm_username', array( @@ -876,7 +894,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 30, + 'priority' => 31, ) ); $wp_customize->add_control( 'vine_username', array( @@ -884,7 +902,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 31, + 'priority' => 32, ) ); $wp_customize->add_control( 'vimeo_username', array( @@ -892,7 +910,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 32, + 'priority' => 33, ) ); $wp_customize->add_control( 'youtube_username', array( @@ -900,7 +918,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 33, + 'priority' => 34, ) ); $wp_customize->add_control( 'kickstarter_url', array( @@ -909,7 +927,7 @@ public static function decode_customize_register( $wp_customize ) { 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', //'type' => 'url', /* Uncomment for WP >= 4.4 */ - 'priority' => 34, + 'priority' => 35, ) ); $wp_customize->add_control( 'gittip_username', array( @@ -917,7 +935,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 35, + 'priority' => 36, ) ); $wp_customize->add_control( 'goodreads_username', array( @@ -925,7 +943,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 36, + 'priority' => 37, ) ); $wp_customize->add_control( 'tumblr_username', array( @@ -934,7 +952,7 @@ public static function decode_customize_register( $wp_customize ) { 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', //'type' => 'url', /* Uncomment for WP >= 4.4 */ - 'priority' => 37, + 'priority' => 38, ) ); $wp_customize->add_control( 'medium_username', array( @@ -942,7 +960,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 38, + 'priority' => 39, ) ); $wp_customize->add_control( 'svbtle_url', array( @@ -951,7 +969,7 @@ public static function decode_customize_register( $wp_customize ) { 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', //'type' => 'url', /* Uncomment for WP >= 4.4 */ - 'priority' => 39, + 'priority' => 40, ) ); $wp_customize->add_control( 'wordpress_url', array( @@ -960,7 +978,7 @@ public static function decode_customize_register( $wp_customize ) { 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', //'type' => 'url', /* Uncomment for WP >= 4.4 */ - 'priority' => 40, + 'priority' => 41, ) ); $wp_customize->add_control( 'stackoverflow_userid', array( @@ -968,7 +986,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 41, + 'priority' => 42, ) ); $wp_customize->add_control( 'reddit_username', array( @@ -976,7 +994,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 42, + 'priority' => 43, ) ); $wp_customize->add_control( 'github_username', array( @@ -984,7 +1002,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 43, + 'priority' => 44, ) ); $wp_customize->add_control( 'bitbucket_username', array( @@ -992,7 +1010,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 44, + 'priority' => 45, ) ); $wp_customize->add_control( 'runkeeper_username', array( @@ -1000,7 +1018,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 45, + 'priority' => 46, ) ); $wp_customize->add_control( 'strava_userid', array( @@ -1008,7 +1026,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 46, + 'priority' => 47, ) ); $wp_customize->add_control( 'foursquare_username', array( @@ -1016,7 +1034,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 47, + 'priority' => 48, ) ); $wp_customize->add_control( 'yelp_url', array( @@ -1025,7 +1043,7 @@ public static function decode_customize_register( $wp_customize ) { 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', //'type' => 'url', /* Uncomment for WP >= 4.4 */ - 'priority' => 48, + 'priority' => 49, ) ); $wp_customize->add_control( 'slideshare_username', array( @@ -1033,7 +1051,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 49, + 'priority' => 50, ) ); $wp_customize->add_control( 'researchgate_username', array( @@ -1041,7 +1059,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 50, + 'priority' => 51, ) ); $wp_customize->add_control( 'youversion_username', array( @@ -1049,7 +1067,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 51, + 'priority' => 52, ) ); $wp_customize->add_control( 'psn_username', array( @@ -1057,7 +1075,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 52, + 'priority' => 53, ) ); $wp_customize->add_control( 'xbox_live_username', array( @@ -1065,7 +1083,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 53, + 'priority' => 54, ) ); $wp_customize->add_control( 'steam_url', array( @@ -1073,7 +1091,15 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 54, + 'priority' => 55, + ) ); + + $wp_customize->add_control( 'twitch_url', array( + 'label' => sprintf( __( '%s Profile URL', 'decode' ), 'Twitch' ), + 'section' => 'decode_social_options', + 'active_callback' => 'decode_social_icons_are_enabled', + 'type' => 'text', + 'priority' => 56, ) ); $wp_customize->add_control( 'skype_username', array( @@ -1081,7 +1107,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', - 'priority' => 55, + 'priority' => 57, ) ); $wp_customize->add_control( 'email_address', array( @@ -1090,7 +1116,7 @@ public static function decode_customize_register( $wp_customize ) { 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', //'type' => 'email', /* Uncomment for WP >= 4.4 */ - 'priority' => 56, + 'priority' => 58, ) ); $wp_customize->add_control( 'website_link', array( @@ -1099,7 +1125,7 @@ public static function decode_customize_register( $wp_customize ) { 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'text', //'type' => 'url', /* Uncomment for WP >= 4.4 */ - 'priority' => 57, + 'priority' => 59, ) ); $wp_customize->add_control( 'show_rss_icon', array( @@ -1107,7 +1133,7 @@ public static function decode_customize_register( $wp_customize ) { 'section' => 'decode_social_options', 'active_callback' => 'decode_social_icons_are_enabled', 'type' => 'checkbox', - 'priority' => 58, + 'priority' => 60, ) ); diff --git a/social-links.php b/social-links.php index d037038..8b0801d 100644 --- a/social-links.php +++ b/social-links.php @@ -193,6 +193,16 @@ + + + + More info here +Description: A minimal, modern theme, designed to be mobile first and fully responsive, Decode features the ability to change all the colors in the theme and an elegant sidebar conveniently accessed by tapping on the menu icon. The sidebar can fit all of your widgets and its position can be customized. You can also choose to keep the sidebar always visible on larger screens for an elegent two-column experience. You can even disable the sidebar and comment links if you choose. Decode supports link posts, where the title can be hyperlinked. Decode includes custom social icons in the header that you can easily link to your choice of 55 different social profiles from Twitter, and App.net, to Pinterest and LinkedIn, you will be sure to find support for the network you want alongside a bevy of customizations to make your site unique. Decode has been translated into Chinese, Dutch, French, German, Polish, Russian, and Spanish. More info here Tags: responsive-layout, one-column, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, black, blue, brown, gray, green, orange, pink, purple, red, silver, tan, white, yellow, dark, light License: GNU General Public License v3.0 License URI: http://www.gnu.org/licenses/gpl-3.0-standalone.html From 85a9ecc6b526ebe733a1de918934c2512a5257c9 Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Wed, 4 Feb 2015 21:47:45 -0800 Subject: [PATCH 28/31] Updated translation template --- languages/decode.pot | 241 +++++++++++++++++++++---------------------- 1 file changed, 115 insertions(+), 126 deletions(-) diff --git a/languages/decode.pot b/languages/decode.pot index 2532f8d..616964c 100644 --- a/languages/decode.pot +++ b/languages/decode.pot @@ -6,20 +6,22 @@ msgid "" msgstr "" "Project-Id-Version: Decode\n" "Report-Msgid-Bugs-To: http://wordpress.org/support/theme/decode\n" -"POT-Creation-Date: 2014-11-17 22:58-0800\n" -"PO-Revision-Date: 2014-11-17 22:59-0800\n" +"POT-Creation-Date: 2015-02-04 21:44-0800\n" +"PO-Revision-Date: 2015-02-04 21:45-0800\n" "Last-Translator: Scott Smith \n" "Language-Team: Scott Smith \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.10\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;" "_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: node_modules\n" #: 404.php:15 msgid "Oops! That page can’t be found." @@ -39,7 +41,7 @@ msgstr "" msgid "Most Used Categories" msgstr "" -#: author.php:26 inc/template-tags.php:221 +#: author.php:26 inc/template-tags.php:218 #, php-format msgid "Author: %s" msgstr "" @@ -224,11 +226,11 @@ msgid "" msgstr "" #: image.php:34 -msgid " Previous" +msgid "Previous" msgstr "" #: image.php:35 -msgid "Next " +msgid "Next" msgstr "" #: inc/customizer.php:153 @@ -311,362 +313,349 @@ msgstr "" msgid "Social Options" msgstr "" -#: inc/customizer.php:640 inc/customizer.php:647 +#: inc/customizer.php:650 inc/customizer.php:657 msgid "Show Social Icons" msgstr "" -#: inc/customizer.php:640 +#: inc/customizer.php:650 msgid "in Header" msgstr "" -#: inc/customizer.php:647 +#: inc/customizer.php:657 msgid "in Footer" msgstr "" -#: inc/customizer.php:654 +#: inc/customizer.php:664 msgid "Open Links in New Tab/Window" msgstr "" -#: inc/customizer.php:662 inc/customizer.php:670 inc/customizer.php:678 -#: inc/customizer.php:687 inc/customizer.php:695 inc/customizer.php:703 -#: inc/customizer.php:712 inc/customizer.php:720 inc/customizer.php:728 -#: inc/customizer.php:736 inc/customizer.php:744 inc/customizer.php:761 -#: inc/customizer.php:769 inc/customizer.php:777 inc/customizer.php:785 -#: inc/customizer.php:793 inc/customizer.php:801 inc/customizer.php:809 -#: inc/customizer.php:817 inc/customizer.php:825 inc/customizer.php:842 -#: inc/customizer.php:859 inc/customizer.php:867 inc/customizer.php:875 -#: inc/customizer.php:883 inc/customizer.php:891 inc/customizer.php:899 -#: inc/customizer.php:916 inc/customizer.php:924 inc/customizer.php:941 -#: inc/customizer.php:975 inc/customizer.php:983 inc/customizer.php:991 -#: inc/customizer.php:999 inc/customizer.php:1015 inc/customizer.php:1032 -#: inc/customizer.php:1040 inc/customizer.php:1048 inc/customizer.php:1056 -#: inc/customizer.php:1064 inc/customizer.php:1080 +#: inc/customizer.php:672 inc/customizer.php:680 inc/customizer.php:688 +#: inc/customizer.php:697 inc/customizer.php:705 inc/customizer.php:713 +#: inc/customizer.php:722 inc/customizer.php:730 inc/customizer.php:738 +#: inc/customizer.php:746 inc/customizer.php:754 inc/customizer.php:771 +#: inc/customizer.php:779 inc/customizer.php:787 inc/customizer.php:795 +#: inc/customizer.php:803 inc/customizer.php:811 inc/customizer.php:819 +#: inc/customizer.php:827 inc/customizer.php:835 inc/customizer.php:843 +#: inc/customizer.php:860 inc/customizer.php:877 inc/customizer.php:885 +#: inc/customizer.php:893 inc/customizer.php:901 inc/customizer.php:909 +#: inc/customizer.php:917 inc/customizer.php:934 inc/customizer.php:942 +#: inc/customizer.php:959 inc/customizer.php:993 inc/customizer.php:1001 +#: inc/customizer.php:1009 inc/customizer.php:1017 inc/customizer.php:1033 +#: inc/customizer.php:1050 inc/customizer.php:1058 inc/customizer.php:1066 +#: inc/customizer.php:1074 inc/customizer.php:1082 inc/customizer.php:1106 #, php-format msgid "%s Username" msgstr "" -#: inc/customizer.php:679 inc/customizer.php:704 +#: inc/customizer.php:689 inc/customizer.php:714 msgid " (or the long number in your profile URL)" msgstr "" -#: inc/customizer.php:752 inc/customizer.php:1023 inc/customizer.php:1072 +#: inc/customizer.php:762 inc/customizer.php:1041 inc/customizer.php:1090 +#: inc/customizer.php:1098 #, php-format msgid "%s Profile URL" msgstr "" -#: inc/customizer.php:833 inc/customizer.php:907 inc/customizer.php:932 -#: inc/customizer.php:949 inc/customizer.php:958 +#: inc/customizer.php:851 inc/customizer.php:925 inc/customizer.php:950 +#: inc/customizer.php:967 inc/customizer.php:976 #, php-format msgid "%s Site URL" msgstr "" -#: inc/customizer.php:850 inc/customizer.php:1097 +#: inc/customizer.php:868 inc/customizer.php:1123 #, php-format msgid "%s Link" msgstr "" -#: inc/customizer.php:967 inc/customizer.php:1007 +#: inc/customizer.php:985 inc/customizer.php:1025 #, php-format msgid "%s User ID" msgstr "" -#: inc/customizer.php:1088 +#: inc/customizer.php:1114 msgid "Email Address" msgstr "" -#: inc/customizer.php:1106 +#: inc/customizer.php:1132 msgid "RSS Feed" msgstr "" -#: inc/customizer.php:1120 +#: inc/customizer.php:1146 msgid "Content Options" msgstr "" -#: inc/customizer.php:1122 +#: inc/customizer.php:1148 #, php-format msgctxt "(blog name)'s content." msgid "These options change the display of %s's content" msgstr "" -#: inc/customizer.php:1199 +#: inc/customizer.php:1225 msgid "Load Latin Extended character set. This will increase page load times." msgstr "" -#: inc/customizer.php:1206 +#: inc/customizer.php:1232 msgid "" "Use entry excerpts instead of full text on site home. Excludes sticky posts." msgstr "" -#: inc/customizer.php:1213 +#: inc/customizer.php:1239 msgid "Use entry excerpts on archive, category, and author pages." msgstr "" -#: inc/customizer.php:1220 +#: inc/customizer.php:1246 msgid "Display posts' featured images when excerpts are shown." msgstr "" -#: inc/customizer.php:1227 +#: inc/customizer.php:1253 msgid "Display a post's featured image on its individual page." msgstr "" -#: inc/customizer.php:1234 +#: inc/customizer.php:1260 msgid "Show tags on front page (tags will be shown on post's individual page)" msgstr "" -#: inc/customizer.php:1241 +#: inc/customizer.php:1267 msgid "" "Show categories on front page (categories will be shown on post's individual " "page)" msgstr "" -#: inc/customizer.php:1248 +#: inc/customizer.php:1274 msgid "Show author's name, profile image, and bio after posts" msgstr "" -#: inc/customizer.php:1255 +#: inc/customizer.php:1281 msgid "Entry Date Position" msgstr "" -#: inc/customizer.php:1259 +#: inc/customizer.php:1285 msgid "Above Header" msgstr "" -#: inc/customizer.php:1260 +#: inc/customizer.php:1286 msgid "Below Header" msgstr "" -#: inc/customizer.php:1266 +#: inc/customizer.php:1292 msgid "Show Page Headers" msgstr "" -#: inc/customizer.php:1273 +#: inc/customizer.php:1299 msgid "Show entry date for post excepts on the main page" msgstr "" -#: inc/customizer.php:1280 +#: inc/customizer.php:1306 msgid "Add an arrow before the title of a link post" msgstr "" -#: inc/customizer.php:1287 +#: inc/customizer.php:1313 msgid "" "Show Theme Info (display a line of text about the theme and its creator at " "the bottom of pages)" msgstr "" -#: inc/customizer.php:1296 +#: inc/customizer.php:1322 msgid "Text (colophon, copyright, credits, etc.) for the footer of the site" msgstr "" -#: inc/customizer.php:1310 +#: inc/customizer.php:1336 msgid "Other Options" msgstr "" -#: inc/customizer.php:1329 +#: inc/customizer.php:1337 +msgid "" +"Custom CSS is longer recommended. This feature is no longer allowed in " +"Decode. To continue using these tweaks, copy and paste your CSS into a " +"custom CSS plugin such as Jetpack. Get help here." +msgstr "" + +#: inc/customizer.php:1357 msgid "Custom CSS" msgstr "" -#: inc/customizer.php:1340 +#: inc/customizer.php:1368 msgid "Show the following post types on home blog page. (Separate with commas)" msgstr "" -#: inc/customizer.php:1379 +#: inc/customizer.php:1407 msgid "Accent Color" msgstr "" -#: inc/customizer.php:1380 +#: inc/customizer.php:1408 msgid "The main color used for links, borders, buttons, and more." msgstr "" -#: inc/customizer.php:1387 +#: inc/customizer.php:1415 msgid "Active Link Color" msgstr "" -#: inc/customizer.php:1388 +#: inc/customizer.php:1416 msgid "" "The color for currently clicked links.
(Try using a darker color than the " "Accent Color.)" msgstr "" -#: inc/customizer.php:1395 +#: inc/customizer.php:1423 msgid "Text Color" msgstr "" -#: inc/customizer.php:1396 +#: inc/customizer.php:1424 msgid "The main text color." msgstr "" -#: inc/customizer.php:1403 +#: inc/customizer.php:1431 msgid "Secondary Text Color" msgstr "" -#: inc/customizer.php:1404 +#: inc/customizer.php:1432 msgid "" "Text color used for text of secondary importance.
(Try using a lighter " "color than the main Text Color.)" msgstr "" -#: inc/customizer.php:1411 +#: inc/customizer.php:1439 msgid "Use accent color instead of text color for icons" msgstr "" -#: inc/extras.php:107 inc/extras.php:172 -msgid "Category" -msgstr "" - -#: inc/extras.php:110 inc/extras.php:175 -msgid "Tag" +#: inc/extras.php:95 +#, php-format +msgid "Page %s" msgstr "" -#: inc/extras.php:113 inc/extras.php:178 -msgid "Author" +#: inc/template-tags.php:42 +msgid "Website" msgstr "" -#: inc/extras.php:116 inc/extras.php:181 inc/template-tags.php:253 -#: page-explore.php:37 sidebar.php:41 -msgid "Archives" +#: inc/template-tags.php:131 +#, php-format +msgctxt "post date" +msgid "Posted on %s" msgstr "" -#: inc/extras.php:123 inc/extras.php:127 inc/extras.php:188 inc/extras.php:192 -msgid "Page " +#: inc/template-tags.php:136 +#, php-format +msgctxt "post author" +msgid "by %s" msgstr "" -#: inc/template-tags.php:40 +#: inc/template-tags.php:158 msgid "Posts navigation" msgstr "" -#: inc/template-tags.php:44 -msgid " Older posts" +#: inc/template-tags.php:162 +msgid "Older posts" msgstr "" -#: inc/template-tags.php:48 -msgid "Newer posts " +#: inc/template-tags.php:166 +msgid "Newer posts" msgstr "" -#: inc/template-tags.php:73 +#: inc/template-tags.php:189 msgid "Post navigation" msgstr "" -#: inc/template-tags.php:76 -msgctxt "Previous post link" -msgid " %title" -msgstr "" - -#: inc/template-tags.php:77 -msgctxt "Next post link" -msgid "%title " -msgstr "" - -#: inc/template-tags.php:101 -msgid "Website" -msgstr "" - -#: inc/template-tags.php:190 -#, php-format -msgctxt "post date" -msgid "Posted on %s" -msgstr "" - -#: inc/template-tags.php:195 -#, php-format -msgctxt "post author" -msgid "by %s" -msgstr "" - -#: inc/template-tags.php:217 +#: inc/template-tags.php:214 #, php-format msgid "Category: %s" msgstr "" -#: inc/template-tags.php:219 +#: inc/template-tags.php:216 #, php-format msgid "Tag: %s" msgstr "" -#: inc/template-tags.php:223 +#: inc/template-tags.php:220 #, php-format msgid "Year: %s" msgstr "" -#: inc/template-tags.php:223 +#: inc/template-tags.php:220 msgctxt "yearly archives date format" msgid "Y" msgstr "" -#: inc/template-tags.php:225 +#: inc/template-tags.php:222 #, php-format msgid "Month: %s" msgstr "" -#: inc/template-tags.php:225 +#: inc/template-tags.php:222 msgctxt "monthly archives date format" msgid "F Y" msgstr "" -#: inc/template-tags.php:227 +#: inc/template-tags.php:224 #, php-format msgid "Day: %s" msgstr "" -#: inc/template-tags.php:227 +#: inc/template-tags.php:224 msgctxt "daily archives date format" msgid "F j, Y" msgstr "" -#: inc/template-tags.php:229 +#: inc/template-tags.php:227 msgctxt "post format archive title" msgid "Asides" msgstr "" -#: inc/template-tags.php:231 +#: inc/template-tags.php:229 msgctxt "post format archive title" msgid "Galleries" msgstr "" -#: inc/template-tags.php:233 +#: inc/template-tags.php:231 msgctxt "post format archive title" msgid "Images" msgstr "" -#: inc/template-tags.php:235 +#: inc/template-tags.php:233 msgctxt "post format archive title" msgid "Videos" msgstr "" -#: inc/template-tags.php:237 +#: inc/template-tags.php:235 msgctxt "post format archive title" msgid "Quotes" msgstr "" -#: inc/template-tags.php:239 +#: inc/template-tags.php:237 msgctxt "post format archive title" msgid "Links" msgstr "" -#: inc/template-tags.php:241 +#: inc/template-tags.php:239 msgctxt "post format archive title" msgid "Statuses" msgstr "" -#: inc/template-tags.php:243 +#: inc/template-tags.php:241 msgctxt "post format archive title" msgid "Audio" msgstr "" -#: inc/template-tags.php:245 +#: inc/template-tags.php:243 msgctxt "post format archive title" msgid "Chats" msgstr "" -#: inc/template-tags.php:247 +#: inc/template-tags.php:246 #, php-format msgid "Archives: %s" msgstr "" -#: inc/template-tags.php:251 +#: inc/template-tags.php:250 #, php-format msgid "%1$s: %2$s" msgstr "" +#: inc/template-tags.php:252 page-explore.php:37 sidebar.php:41 +msgid "Archives" +msgstr "" + #: page-explore.php:11 msgid "Explore Page" msgstr "" From b98480ec35d37dd3a769f58f9ed26903d9401cbb Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Wed, 4 Feb 2015 21:51:07 -0800 Subject: [PATCH 29/31] Updated translations for 3.0.6 --- languages/de_DE.mo | Bin 9378 -> 8176 bytes languages/de_DE.po | 463 +++++++++++++++++++--------------- languages/en_GB.mo | Bin 1992 -> 1992 bytes languages/en_GB.po | 390 +++++++++++++++-------------- languages/es_ES.mo | Bin 10754 -> 9431 bytes languages/es_ES.po | 453 ++++++++++++++++++--------------- languages/fa_IR.mo | Bin 10468 -> 8907 bytes languages/fa_IR.po | 609 ++++++++++++++++++++++++++------------------- languages/fr_FR.mo | Bin 8824 -> 7731 bytes languages/fr_FR.po | 502 +++++++++++++++++++++---------------- languages/nl_NL.mo | Bin 11011 -> 9748 bytes languages/nl_NL.po | 454 ++++++++++++++++++--------------- languages/pl_PL.mo | Bin 12754 -> 11493 bytes languages/pl_PL.po | 558 ++++++++++++++++++++++------------------- languages/ru_RU.mo | Bin 11104 -> 9976 bytes languages/ru_RU.po | 490 ++++++++++++++++++++---------------- languages/zh_CN.mo | Bin 11551 -> 10282 bytes languages/zh_CN.po | 455 ++++++++++++++++++--------------- 18 files changed, 2456 insertions(+), 1918 deletions(-) diff --git a/languages/de_DE.mo b/languages/de_DE.mo index ec7ade902f974da730a77372b07cc27fb62fba70..c75bba4b139200597e87020008a172240b25e5cf 100644 GIT binary patch delta 2129 zcmYk+TWnNC9LMoF+gj|>8}0UHOIg}-Y3b6lb(fY>ghGo{%dHfO3D}g2an+!vjSni> zfIi?Q5C$7Ri+x8ZVJjKf%mx3CujOpiI3KCHY66TYkXGdMGe^ks550y+h= zxw+Va3T*<_;9gV%Z=o6(L4|e{X~KMidjC4=y*sFOGkCZI%TV>#aR`$KDQu^Z#oPKI z!L17S+4?7_&2t(z;W^ZdO3J5}DvUfbov4UCjdO7~R^uVmz`jOB`YP%eeuuoDG5oi>G=#l8pO0FzJ*ZRgHtPL@sL+p~LOzC?*>zNhzv6Rv51+(mc}d6c6fVUQ zj@Txh|6U5};B(|MUvX1|H<2-!3Dgn=*$5hWB_^;DwTX`4dOVJb%wISg1BCH0ti>+e zfr`MWbqxD;{?Ag-2xrYQCWg;rCw`1-@E3GYAE%R+B%K;4EGKIpXisR6Ia-95N(#A@sI$LN%0%GRd`aEp4Wi6vNVLG)?(7BJ2wJFz; zmDZBG$(fpeGX<6`mGoy+W6SN<1=f0WZMn}XwvfXrkhCE;kQbA+=1pY&e^UDZQYTBU zA!~C#s(-tsWbIrfZK%!UWn>+n0C|p=o89H@%lzirR_e!^V7t7x9o+iJ-^%Yd!Fz2 z`Qh)?hgT0@Pm4WhXgi1*L|=?CI&m(JA6iO+F$I{4iCBqFT#3opj1$p~lhA`nI23g^ zrgJ=k{4+=SDZ-Pu$e3YsosI^a%II7@1 zdj334<@_bo^FQK4coWljzxgeC!vv5welgHjC)Wke;udb zC~6{Suo=IIUeDsBCSHIYSc)5YzZs#U0dJrNxQ7}zk&}917HY=1=*B!$D)*vR_9`mH zM^OtnhXr^Gt8oUiqifnQ4|kwSJ%Yo!aDt9r@Cj;$7mzuai>QfQ#T5J*SKvL=eM`Bh zl-8h1wgy*X8|wKZsBurCCVC2W-zC(9f0#`E>6_cp3o*P!sY%Cj3}O==$1?mI^@1`+ zQE7%S6JJD)a|pS`9E%>GLFQ_{!Z!R4HQ`0nlYMTMrICNiV`@23hYhIOhj0$QgQfTx zuEjg3mDf-wO<)yjz(#Dx%~*k_Q6=~TTQHmDDc06+=t4<=h5p|k-3B~*sqM6zi{QTLrjJ$C_FocR*<*P2miU8o24qh36U8u(M}#&4s?i&=(BvK9l_j9qvU^;{ua{b8&_9e1N9`g}y{ z|1zB?Ik6A5lIy72-#|T(OrEtF^RW!uQ7bxtD#dxs$16As|3obyi?`}UrKnPtBiqMR zqn>NR6y9&T=x9JcY9;TX9{3PdvyZU_FQWEJPOg35TvW-*Q1{g$i#DyOO!-g~*^4{y zZF~abUH0FR794(z6Q}4X19wm_SToc91F;b`U;rtf89~+j1Jp{+p$9LcCSJkv^;s=P zZRR>`#3oc`k07_26Sxd7&!YaT=}ek!53mWf@{Xvz*unABsF{C*3o(cKJdRDMfe)br z7ZC-77Nw?Dt5L~FhPxt1#%x9Hxjg;-*MM4$W~#dAyNo5&^l52=YAS(RHK9+fl2BIE z<`JGq&(35WeT!gTkv*VGZbJK{ozSF}iAeo>>FAHiSc{?4Ja&LRW|M@(`USv=q5S|HErxN<)R^SX#cDOeF61^cCZN@oVYr%-ZvQZ zx*FX5R_ObQjiH$d(=z(pK3`>3iQnrUSmtW!%J3gVx0`aRn$zo`iZdIx=>!}0aW?ts-Z=zG?z=yeDD;a}pb9I^fG9xLQZycO#i z*y#_YB)ySh?HU`z9+j8n#Wq+&fsiX9KUj2H=x6pV?w%thlO1ubtYy$2E>8K#k-V^| zthA_Xfop!*(gjOGH&e66pIJCRoSK&Dh$%0w2p3Ly-{GwH1-)KtpeT~pD^oi)iOlhn zaJ3HldM%%)$BHC&_V{b|%JOT1{e6{v0n2Aa(_51MN=Ad#Wes#${g!WMaG=K;P^L-r z+4SZ~cA`C2G}B2LdmM4K9+f9Nl3D5qot-wCY6Uf1qpEd3f6j({x8Bv=>km+ugnZ`% q8QwZQ82Wnpvj5NJ77q!u!iiZ2ViN6KDwE+uIqCnV^7zAbj(-4OZ-?3d diff --git a/languages/de_DE.po b/languages/de_DE.po index 9dae067..50ee5c0 100644 --- a/languages/de_DE.po +++ b/languages/de_DE.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Decode v2.9.1\n" "Report-Msgid-Bugs-To: http://wordpress.org/support/theme/decode\n" -"POT-Creation-Date: 2014-10-13 21:38-0800\n" -"PO-Revision-Date: 2014-10-13 21:42-0800\n" +"POT-Creation-Date: 2015-02-04 21:44-0800\n" +"PO-Revision-Date: 2015-02-04 21:50-0800\n" "Last-Translator: Scott Smith \n" "Language-Team: Scott Smith \n" "Language: de_DE\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.6.9\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" @@ -46,76 +46,7 @@ msgstr "Versuch es in den Monatsarchiven." msgid "Most Used Categories" msgstr "Am häufigsten verwendete Kategorien" -#: archive.php:27 -#, php-format -msgid "Day: %s" -msgstr "Tag: %s" - -#: archive.php:30 -#, php-format -msgid "Month: %s" -msgstr "Monat: %s" - -#: archive.php:30 -#, fuzzy -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "F Y" - -#: archive.php:33 -#, php-format -msgid "Year: %s" -msgstr "Jahr: %s" - -#: archive.php:33 -#, fuzzy -msgctxt "yearly archives date format" -msgid "Y" -msgstr "Y" - -#: archive.php:36 -msgid "Asides" -msgstr "Nebenbemerkungen" - -#: archive.php:39 -#, fuzzy -msgid "Galleries" -msgstr "Kategorien" - -#: archive.php:42 -msgid "Images" -msgstr "Bilder" - -#: archive.php:45 -msgid "Videos" -msgstr "Videos" - -#: archive.php:48 -msgid "Quotes" -msgstr "Zitate" - -#: archive.php:51 -msgid "Links" -msgstr "Links" - -#: archive.php:54 -msgid "Statuses" -msgstr "Status" - -#: archive.php:57 -#, fuzzy -msgid "Audios" -msgstr "Audio-Posts" - -#: archive.php:60 -msgid "Chats" -msgstr "Chats" - -#: archive.php:63 inc/extras.php:113 page-explore.php:37 sidebar.php:41 -msgid "Archives" -msgstr "Archive" - -#: author.php:26 +#: author.php:26 inc/template-tags.php:218 #, php-format msgid "Author: %s" msgstr "Autor: %s" @@ -277,27 +208,32 @@ msgstr "Navigations Menü" #: functions.php:34 #, fuzzy msgid "Sidebar Menu" -msgstr "Seitenleiste" +msgstr "Navigations Menü" #: functions.php:35 #, fuzzy msgid "Footer Menu" msgstr "Navigations Menü" -#: functions.php:140 +#: functions.php:148 msgid "Sidebar" msgstr "Seitenleiste" -#: functions.php:142 +#: functions.php:150 msgctxt "sidebar description" msgid "Only displayed if sidebar remains enabled in the Customize menu." msgstr "" -#: header.php:34 +#: functions.php:239 +#, fuzzy +msgid "Google Profile URL" +msgstr "%s Profil-URL" + +#: header.php:33 msgid "Skip to content" msgstr "Springe zu Inhalt" -#: header.php:38 +#: header.php:37 #, fuzzy msgid "Show sidebar" msgstr "Seitenleiste" @@ -315,36 +251,36 @@ msgstr "" "zu %7$s\" rel=\"gallery\">%8$s" #: image.php:34 -msgid " Previous" -msgstr " Vorherige" +msgid "Previous" +msgstr "" #: image.php:35 -msgid "Next " -msgstr "Nächste " +msgid "Next" +msgstr "" -#: inc/customizer.php:145 +#: inc/customizer.php:153 msgid "Header Options" msgstr "Header-Einstellungen" -#: inc/customizer.php:180 +#: inc/customizer.php:188 #, fuzzy msgid "Favicon Image (must be a PNG)" msgstr "Favicon Bild (PNG empfohlen)" -#: inc/customizer.php:187 +#: inc/customizer.php:195 msgid "Show Site Title" msgstr "Seitentitel anzeigen" -#: inc/customizer.php:194 +#: inc/customizer.php:202 msgid "Show Site Description" msgstr "Seitenbeschreibung anzeigen" -#: inc/customizer.php:201 +#: inc/customizer.php:209 #, fuzzy msgid "Show Header Menu" msgstr "Navigations Menü" -#: inc/customizer.php:208 +#: inc/customizer.php:216 msgid "" "HTML for description, if you wish to replace your blog description with HTML " "markup" @@ -352,181 +288,177 @@ msgstr "" "HTML für die Beschreibung, falls du deine Blog-Beschreibung durch HTML-" "Code ersetzen möchtest" -#: inc/customizer.php:222 +#: inc/customizer.php:230 msgid "Sidebar Options" msgstr "Seitenleisten-Einstellungen" -#: inc/customizer.php:250 +#: inc/customizer.php:258 msgid "Enable Sidebar" msgstr "Seitenleiste aktivieren" -#: inc/customizer.php:257 +#: inc/customizer.php:265 msgid "Sidebar Position" msgstr "Position der Seitenleiste" -#: inc/customizer.php:262 inc/customizer.php:274 +#: inc/customizer.php:270 inc/customizer.php:282 msgid "Left" msgstr "Links" -#: inc/customizer.php:263 inc/customizer.php:275 +#: inc/customizer.php:271 inc/customizer.php:283 msgid "Right" msgstr "Rechts" -#: inc/customizer.php:269 +#: inc/customizer.php:277 msgid "Sidebar Button Position" msgstr "Seitenleiste Button Position" -#: inc/customizer.php:281 +#: inc/customizer.php:289 msgid "Always Visible Sidebar" msgstr "Seitenleiste immer sichtbar" -#: inc/customizer.php:286 +#: inc/customizer.php:294 #, fuzzy msgctxt "Sidebar option" msgid "Always open" msgstr "Sidebar immer sichtbar" -#: inc/customizer.php:287 +#: inc/customizer.php:295 #, fuzzy msgctxt "Sidebar option" msgid "Closed by default" msgstr "Kommentare geschlossen." -#: inc/customizer.php:299 +#: inc/customizer.php:307 msgid "Discussion Options" msgstr "Diskussionseinstellungen" -#: inc/customizer.php:316 +#: inc/customizer.php:324 msgid "Enable Comments" msgstr "Kommentare aktivieren" -#: inc/customizer.php:323 +#: inc/customizer.php:331 msgid "Show allowed HTML tags on comment form" msgstr "" -#: inc/customizer.php:336 +#: inc/customizer.php:344 msgid "Social Options" msgstr "Social-Einstellung" -#: inc/customizer.php:637 inc/customizer.php:644 +#: inc/customizer.php:650 inc/customizer.php:657 msgid "Show Social Icons" msgstr "Social Icons anzeigen" -#: inc/customizer.php:637 +#: inc/customizer.php:650 #, fuzzy msgid "in Header" -msgstr "Header Einstellungen" +msgstr "Header Bild" -#: inc/customizer.php:644 +#: inc/customizer.php:657 #, fuzzy msgid "in Footer" msgstr "" "Text (Schlussschrift, Copyright, Abspann, etc.) fรผr die Fusszeile der Seite" -#: inc/customizer.php:651 +#: inc/customizer.php:664 msgid "Open Links in New Tab/Window" msgstr "Links in neuem Tab/Fenster öffnen" -#: inc/customizer.php:659 inc/customizer.php:667 inc/customizer.php:675 -#: inc/customizer.php:684 inc/customizer.php:692 inc/customizer.php:700 -#: inc/customizer.php:709 inc/customizer.php:717 inc/customizer.php:725 -#: inc/customizer.php:733 inc/customizer.php:741 inc/customizer.php:758 -#: inc/customizer.php:766 inc/customizer.php:774 inc/customizer.php:782 -#: inc/customizer.php:790 inc/customizer.php:798 inc/customizer.php:806 -#: inc/customizer.php:814 inc/customizer.php:822 inc/customizer.php:839 -#: inc/customizer.php:856 inc/customizer.php:864 inc/customizer.php:872 -#: inc/customizer.php:880 inc/customizer.php:888 inc/customizer.php:896 -#: inc/customizer.php:913 inc/customizer.php:921 inc/customizer.php:938 -#: inc/customizer.php:972 inc/customizer.php:980 inc/customizer.php:988 -#: inc/customizer.php:996 inc/customizer.php:1012 inc/customizer.php:1029 -#: inc/customizer.php:1037 inc/customizer.php:1045 inc/customizer.php:1053 -#: inc/customizer.php:1061 inc/customizer.php:1069 inc/customizer.php:1085 +#: inc/customizer.php:672 inc/customizer.php:680 inc/customizer.php:688 +#: inc/customizer.php:697 inc/customizer.php:705 inc/customizer.php:713 +#: inc/customizer.php:722 inc/customizer.php:730 inc/customizer.php:738 +#: inc/customizer.php:746 inc/customizer.php:754 inc/customizer.php:771 +#: inc/customizer.php:779 inc/customizer.php:787 inc/customizer.php:795 +#: inc/customizer.php:803 inc/customizer.php:811 inc/customizer.php:819 +#: inc/customizer.php:827 inc/customizer.php:835 inc/customizer.php:843 +#: inc/customizer.php:860 inc/customizer.php:877 inc/customizer.php:885 +#: inc/customizer.php:893 inc/customizer.php:901 inc/customizer.php:909 +#: inc/customizer.php:917 inc/customizer.php:934 inc/customizer.php:942 +#: inc/customizer.php:959 inc/customizer.php:993 inc/customizer.php:1001 +#: inc/customizer.php:1009 inc/customizer.php:1017 inc/customizer.php:1033 +#: inc/customizer.php:1050 inc/customizer.php:1058 inc/customizer.php:1066 +#: inc/customizer.php:1074 inc/customizer.php:1082 inc/customizer.php:1106 #, php-format msgid "%s Username" msgstr "%s Benutzername" -#: inc/customizer.php:676 inc/customizer.php:701 +#: inc/customizer.php:689 inc/customizer.php:714 msgid " (or the long number in your profile URL)" msgstr " (oder die lange Nummer in deiner Profil-URL)" -#: inc/customizer.php:749 inc/customizer.php:1020 +#: inc/customizer.php:762 inc/customizer.php:1041 inc/customizer.php:1090 +#: inc/customizer.php:1098 #, php-format msgid "%s Profile URL" msgstr "%s Profil-URL" -#: inc/customizer.php:830 inc/customizer.php:904 inc/customizer.php:929 -#: inc/customizer.php:946 inc/customizer.php:955 +#: inc/customizer.php:851 inc/customizer.php:925 inc/customizer.php:950 +#: inc/customizer.php:967 inc/customizer.php:976 #, php-format msgid "%s Site URL" msgstr "%s Seiten-URL" -#: inc/customizer.php:847 inc/customizer.php:1102 +#: inc/customizer.php:868 inc/customizer.php:1123 #, php-format msgid "%s Link" msgstr "%s Links" -#: inc/customizer.php:964 inc/customizer.php:1004 +#: inc/customizer.php:985 inc/customizer.php:1025 #, fuzzy, php-format msgid "%s User ID" -msgstr "%1$s um %2$s" - -#: inc/customizer.php:1077 -#, php-format -msgid "%s Group Name" -msgstr "%s Gruppen-Name" +msgstr "Tag: %s" -#: inc/customizer.php:1093 +#: inc/customizer.php:1114 msgid "Email Address" msgstr "E-Mail-Adresse" -#: inc/customizer.php:1111 +#: inc/customizer.php:1132 msgid "RSS Feed" msgstr "RSS-Feed" -#: inc/customizer.php:1125 +#: inc/customizer.php:1146 #, fuzzy msgid "Content Options" msgstr "Springe zu Inhalt" -#: inc/customizer.php:1127 +#: inc/customizer.php:1148 #, php-format msgctxt "(blog name)'s content." msgid "These options change the display of %s's content" msgstr "" -#: inc/customizer.php:1204 +#: inc/customizer.php:1225 msgid "Load Latin Extended character set. This will increase page load times." msgstr "" -#: inc/customizer.php:1211 +#: inc/customizer.php:1232 msgid "" "Use entry excerpts instead of full text on site home. Excludes sticky posts." msgstr "" "Zeige Ausschnitte anstelle des vollen Textes an. Haftnotizen ausgenommen." -#: inc/customizer.php:1218 +#: inc/customizer.php:1239 msgid "Use entry excerpts on archive, category, and author pages." msgstr "" -#: inc/customizer.php:1225 +#: inc/customizer.php:1246 #, fuzzy msgid "Display posts' featured images when excerpts are shown." msgstr "" "Post-Bilder anzeigen, wenn Ausschnitte auf der Hauptseite angezeigt werden" -#: inc/customizer.php:1232 +#: inc/customizer.php:1253 #, fuzzy msgid "Display a post's featured image on its individual page." msgstr "" "Post-Bilder anzeigen, wenn Ausschnitte auf der Hauptseite angezeigt werden" -#: inc/customizer.php:1239 +#: inc/customizer.php:1260 msgid "Show tags on front page (tags will be shown on post's individual page)" msgstr "" "Zeige Tags auf der Startseite (Tags werden auf der Detailseite eines Posts " "angezeigt)" -#: inc/customizer.php:1246 +#: inc/customizer.php:1267 msgid "" "Show categories on front page (categories will be shown on post's individual " "page)" @@ -534,36 +466,36 @@ msgstr "" "Zeige Kategorien auf der Startseite (Kategorien werden auf der Detailseite " "eines Posts angezeigt)" -#: inc/customizer.php:1253 +#: inc/customizer.php:1274 msgid "Show author's name, profile image, and bio after posts" msgstr "" "Zeige den Namen des Autors, dessen Profilbild und Biographie nach den Posts" -#: inc/customizer.php:1260 +#: inc/customizer.php:1281 msgid "Entry Date Position" msgstr "Datums-Position eingeben" -#: inc/customizer.php:1264 +#: inc/customizer.php:1285 msgid "Above Header" msgstr "Über dem Header" -#: inc/customizer.php:1265 +#: inc/customizer.php:1286 msgid "Below Header" msgstr "Unter dem Header" -#: inc/customizer.php:1271 +#: inc/customizer.php:1292 msgid "Show Page Headers" msgstr "Zeige Seiten-Header" -#: inc/customizer.php:1278 +#: inc/customizer.php:1299 msgid "Show entry date for post excepts on the main page" msgstr "Zeige Eintrags-Datum für Post-Ausschnitte auf der Hauptseite" -#: inc/customizer.php:1285 +#: inc/customizer.php:1306 msgid "Add an arrow before the title of a link post" msgstr "Füge einen Pfeil vor Titeln eines Link-Posts ein" -#: inc/customizer.php:1292 +#: inc/customizer.php:1313 msgid "" "Show Theme Info (display a line of text about the theme and its creator at " "the bottom of pages)" @@ -571,122 +503,220 @@ msgstr "" "Zeige Theme-Info (zeige ein Zeile Text über das Theme und dessen " "Entwickler am unteren Seitenrand an)" -#: inc/customizer.php:1301 +#: inc/customizer.php:1322 msgid "Text (colophon, copyright, credits, etc.) for the footer of the site" msgstr "" "Text (Schlussschrift, Copyright, Abspann, etc.) für die Fusszeile der " "Seite" -#: inc/customizer.php:1315 +#: inc/customizer.php:1336 msgid "Other Options" msgstr "Weitere Einstellungen" -#: inc/customizer.php:1334 +#: inc/customizer.php:1337 +msgid "" +"Custom CSS is longer recommended. This feature is no longer allowed in " +"Decode. To continue using these tweaks, copy and paste your CSS into a " +"custom CSS plugin such as Jetpack. Get help here." +msgstr "" + +#: inc/customizer.php:1357 msgid "Custom CSS" msgstr "Benutzerdefiniertes CSS" -#: inc/customizer.php:1345 +#: inc/customizer.php:1368 msgid "Show the following post types on home blog page. (Separate with commas)" msgstr "" -#: inc/customizer.php:1384 +#: inc/customizer.php:1407 msgid "Accent Color" msgstr "Akzentfarbe" -#: inc/customizer.php:1385 +#: inc/customizer.php:1408 msgid "The main color used for links, borders, buttons, and more." msgstr "" -#: inc/customizer.php:1392 +#: inc/customizer.php:1415 msgid "Active Link Color" msgstr "Farbe aktiver Links" -#: inc/customizer.php:1393 +#: inc/customizer.php:1416 msgid "" "The color for currently clicked links.
(Try using a darker color than the " "Accent Color.)" msgstr "" -#: inc/customizer.php:1400 +#: inc/customizer.php:1423 msgid "Text Color" msgstr "Textfarbe" -#: inc/customizer.php:1401 +#: inc/customizer.php:1424 #, fuzzy msgid "The main text color." msgstr "Textfarbe" -#: inc/customizer.php:1408 +#: inc/customizer.php:1431 msgid "Secondary Text Color" msgstr "Zweite Textfarbe" -#: inc/customizer.php:1409 +#: inc/customizer.php:1432 msgid "" "Text color used for text of secondary importance.
(Try using a lighter " "color than the main Text Color.)" msgstr "" -#: inc/customizer.php:1416 +#: inc/customizer.php:1439 msgid "Use accent color instead of text color for icons" msgstr "Verwende Akzentfarbe anstelle der Textfarbe für die Icons" -#: inc/extras.php:104 -msgid "Category" -msgstr "Kategorie" +#: inc/extras.php:95 +#, fuzzy, php-format +msgid "Page %s" +msgstr "Seite" -#: inc/extras.php:107 -msgid "Tag" -msgstr "Tag" +#: inc/template-tags.php:42 +msgid "Website" +msgstr "Webseite" -#: inc/extras.php:110 -msgid "Author" -msgstr "Autor" +#: inc/template-tags.php:131 +#, php-format +msgctxt "post date" +msgid "Posted on %s" +msgstr "" -#: inc/extras.php:120 inc/extras.php:124 -msgid "Page " -msgstr "Seite" +#: inc/template-tags.php:136 +#, fuzzy, php-format +msgctxt "post author" +msgid "by %s" +msgstr "Tag: %s" -#: inc/template-tags.php:40 +#: inc/template-tags.php:158 msgid "Posts navigation" msgstr "Posts-Navigation" -#: inc/template-tags.php:44 -msgid " Older posts" -msgstr " Ältere posts" +#: inc/template-tags.php:162 +msgid "Older posts" +msgstr "" -#: inc/template-tags.php:48 -msgid "Newer posts " -msgstr "Neuere Posts " +#: inc/template-tags.php:166 +#, fuzzy +msgid "Newer posts" +msgstr "Letzte Posts" -#: inc/template-tags.php:73 +#: inc/template-tags.php:189 msgid "Post navigation" msgstr "Post-Navigation" -#: inc/template-tags.php:76 -msgctxt "Previous post link" -msgid " %title" -msgstr " %title" +#: inc/template-tags.php:214 +#, fuzzy, php-format +msgid "Category: %s" +msgstr "Kategorie" + +#: inc/template-tags.php:216 +#, fuzzy, php-format +msgid "Tag: %s" +msgstr "Tag: %s" -#: inc/template-tags.php:77 -msgctxt "Next post link" -msgid "%title " -msgstr "%title " +#: inc/template-tags.php:220 +#, php-format +msgid "Year: %s" +msgstr "Jahr: %s" -#: inc/template-tags.php:101 -msgid "Website" -msgstr "Webseite" +#: inc/template-tags.php:220 +#, fuzzy +msgctxt "yearly archives date format" +msgid "Y" +msgstr "Y" -#: inc/template-tags.php:190 +#: inc/template-tags.php:222 #, php-format -msgctxt "post date" -msgid "Posted on %s" +msgid "Month: %s" +msgstr "Monat: %s" + +#: inc/template-tags.php:222 +#, fuzzy +msgctxt "monthly archives date format" +msgid "F Y" +msgstr "F Y" + +#: inc/template-tags.php:224 +#, php-format +msgid "Day: %s" +msgstr "Tag: %s" + +#: inc/template-tags.php:224 +msgctxt "daily archives date format" +msgid "F j, Y" msgstr "" -#: inc/template-tags.php:195 +#: inc/template-tags.php:227 +#, fuzzy +msgctxt "post format archive title" +msgid "Asides" +msgstr "Nebenbemerkungen" + +#: inc/template-tags.php:229 +#, fuzzy +msgctxt "post format archive title" +msgid "Galleries" +msgstr "Kategorien" + +#: inc/template-tags.php:231 +#, fuzzy +msgctxt "post format archive title" +msgid "Images" +msgstr "Bilder" + +#: inc/template-tags.php:233 +#, fuzzy +msgctxt "post format archive title" +msgid "Videos" +msgstr "Videos" + +#: inc/template-tags.php:235 +#, fuzzy +msgctxt "post format archive title" +msgid "Quotes" +msgstr "Zitate" + +#: inc/template-tags.php:237 +#, fuzzy +msgctxt "post format archive title" +msgid "Links" +msgstr "Links" + +#: inc/template-tags.php:239 +#, fuzzy +msgctxt "post format archive title" +msgid "Statuses" +msgstr "Status" + +#: inc/template-tags.php:241 +#, fuzzy +msgctxt "post format archive title" +msgid "Audio" +msgstr "Audio-Posts" + +#: inc/template-tags.php:243 +#, fuzzy +msgctxt "post format archive title" +msgid "Chats" +msgstr "Chats" + +#: inc/template-tags.php:246 #, fuzzy, php-format -msgctxt "post author" -msgid "by %s" -msgstr "%1$s um %2$s" +msgid "Archives: %s" +msgstr "Archive" + +#: inc/template-tags.php:250 +#, fuzzy, php-format +msgid "%1$s: %2$s" +msgstr "%1$s von %2$s" + +#: inc/template-tags.php:252 page-explore.php:37 sidebar.php:41 +msgid "Archives" +msgstr "Archive" #: page-explore.php:11 msgid "Explore Page" @@ -710,6 +740,35 @@ msgstr "Seitenleiste" msgid "Navigation" msgstr "Navigation anzeigen" +#~ msgid " Previous" +#~ msgstr " Vorherige" + +#~ msgid "Next " +#~ msgstr "Nächste " + +#~ msgid "%s Group Name" +#~ msgstr "%s Gruppen-Name" + +#~ msgid "Tag" +#~ msgstr "Tag" + +#~ msgid "Author" +#~ msgstr "Autor" + +#~ msgid " Older posts" +#~ msgstr " Ältere posts" + +#~ msgid "Newer posts " +#~ msgstr "Neuere Posts " + +#~ msgctxt "Previous post link" +#~ msgid " %title" +#~ msgstr " %title" + +#~ msgctxt "Next post link" +#~ msgid "%title " +#~ msgstr "%title " + #~ msgctxt "[noun] [translation string] (explanation)" #~ msgid "%1$s Username %2$s" #~ msgstr "%1$s Benutzername %2$s" diff --git a/languages/en_GB.mo b/languages/en_GB.mo index 180a144bda8a02532035831926de0dd177de70bc..6079f97050c9e873b17a2d7ac0e27abb693ff451 100644 GIT binary patch delta 52 ycmX@Xe}aEQGc&KLu7Q!Rfr)~Vp_Pfr\n" "Language-Team: Scott Smith \n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.9\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" @@ -41,72 +41,7 @@ msgstr "" msgid "Most Used Categories" msgstr "" -#: archive.php:27 -#, php-format -msgid "Day: %s" -msgstr "" - -#: archive.php:30 -#, php-format -msgid "Month: %s" -msgstr "" - -#: archive.php:30 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "" - -#: archive.php:33 -#, php-format -msgid "Year: %s" -msgstr "" - -#: archive.php:33 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "" - -#: archive.php:36 -msgid "Asides" -msgstr "" - -#: archive.php:39 -msgid "Galleries" -msgstr "" - -#: archive.php:42 -msgid "Images" -msgstr "" - -#: archive.php:45 -msgid "Videos" -msgstr "" - -#: archive.php:48 -msgid "Quotes" -msgstr "" - -#: archive.php:51 -msgid "Links" -msgstr "" - -#: archive.php:54 -msgid "Statuses" -msgstr "" - -#: archive.php:57 -msgid "Audios" -msgstr "" - -#: archive.php:60 -msgid "Chats" -msgstr "" - -#: archive.php:63 inc/extras.php:113 page-explore.php:37 sidebar.php:41 -msgid "Archives" -msgstr "" - -#: author.php:26 +#: author.php:26 inc/template-tags.php:218 #, php-format msgid "Author: %s" msgstr "" @@ -261,20 +196,24 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: functions.php:140 +#: functions.php:148 msgid "Sidebar" msgstr "" -#: functions.php:142 +#: functions.php:150 msgctxt "sidebar description" msgid "Only displayed if sidebar remains enabled in the Customize menu." msgstr "Only displayed if sidebar remains enabled in the Customise menu." -#: header.php:34 +#: functions.php:239 +msgid "Google Profile URL" +msgstr "" + +#: header.php:33 msgid "Skip to content" msgstr "" -#: header.php:38 +#: header.php:37 msgid "Show sidebar" msgstr "" @@ -287,269 +226,273 @@ msgid "" msgstr "" #: image.php:34 -msgid " Previous" +msgid "Previous" msgstr "" #: image.php:35 -msgid "Next " +msgid "Next" msgstr "" -#: inc/customizer.php:145 +#: inc/customizer.php:153 msgid "Header Options" msgstr "" -#: inc/customizer.php:180 +#: inc/customizer.php:188 msgid "Favicon Image (must be a PNG)" msgstr "" -#: inc/customizer.php:187 +#: inc/customizer.php:195 msgid "Show Site Title" msgstr "" -#: inc/customizer.php:194 +#: inc/customizer.php:202 msgid "Show Site Description" msgstr "" -#: inc/customizer.php:201 +#: inc/customizer.php:209 msgid "Show Header Menu" msgstr "" -#: inc/customizer.php:208 +#: inc/customizer.php:216 msgid "" "HTML for description, if you wish to replace your blog description with HTML " "markup" msgstr "" -#: inc/customizer.php:222 +#: inc/customizer.php:230 msgid "Sidebar Options" msgstr "" -#: inc/customizer.php:250 +#: inc/customizer.php:258 msgid "Enable Sidebar" msgstr "" -#: inc/customizer.php:257 +#: inc/customizer.php:265 msgid "Sidebar Position" msgstr "" -#: inc/customizer.php:262 inc/customizer.php:274 +#: inc/customizer.php:270 inc/customizer.php:282 msgid "Left" msgstr "" -#: inc/customizer.php:263 inc/customizer.php:275 +#: inc/customizer.php:271 inc/customizer.php:283 msgid "Right" msgstr "" -#: inc/customizer.php:269 +#: inc/customizer.php:277 msgid "Sidebar Button Position" msgstr "" -#: inc/customizer.php:281 +#: inc/customizer.php:289 msgid "Always Visible Sidebar" msgstr "" -#: inc/customizer.php:286 +#: inc/customizer.php:294 msgctxt "Sidebar option" msgid "Always open" msgstr "" -#: inc/customizer.php:287 +#: inc/customizer.php:295 msgctxt "Sidebar option" msgid "Closed by default" msgstr "" -#: inc/customizer.php:299 +#: inc/customizer.php:307 msgid "Discussion Options" msgstr "" -#: inc/customizer.php:316 +#: inc/customizer.php:324 msgid "Enable Comments" msgstr "" -#: inc/customizer.php:323 +#: inc/customizer.php:331 msgid "Show allowed HTML tags on comment form" msgstr "" -#: inc/customizer.php:336 +#: inc/customizer.php:344 msgid "Social Options" msgstr "" -#: inc/customizer.php:637 inc/customizer.php:644 +#: inc/customizer.php:650 inc/customizer.php:657 msgid "Show Social Icons" msgstr "" -#: inc/customizer.php:637 +#: inc/customizer.php:650 msgid "in Header" msgstr "" -#: inc/customizer.php:644 +#: inc/customizer.php:657 msgid "in Footer" msgstr "" -#: inc/customizer.php:651 +#: inc/customizer.php:664 msgid "Open Links in New Tab/Window" msgstr "" -#: inc/customizer.php:659 inc/customizer.php:667 inc/customizer.php:675 -#: inc/customizer.php:684 inc/customizer.php:692 inc/customizer.php:700 -#: inc/customizer.php:709 inc/customizer.php:717 inc/customizer.php:725 -#: inc/customizer.php:733 inc/customizer.php:741 inc/customizer.php:758 -#: inc/customizer.php:766 inc/customizer.php:774 inc/customizer.php:782 -#: inc/customizer.php:790 inc/customizer.php:798 inc/customizer.php:806 -#: inc/customizer.php:814 inc/customizer.php:822 inc/customizer.php:839 -#: inc/customizer.php:856 inc/customizer.php:864 inc/customizer.php:872 -#: inc/customizer.php:880 inc/customizer.php:888 inc/customizer.php:896 -#: inc/customizer.php:913 inc/customizer.php:921 inc/customizer.php:938 -#: inc/customizer.php:972 inc/customizer.php:980 inc/customizer.php:988 -#: inc/customizer.php:996 inc/customizer.php:1012 inc/customizer.php:1029 -#: inc/customizer.php:1037 inc/customizer.php:1045 inc/customizer.php:1053 -#: inc/customizer.php:1061 inc/customizer.php:1069 inc/customizer.php:1085 +#: inc/customizer.php:672 inc/customizer.php:680 inc/customizer.php:688 +#: inc/customizer.php:697 inc/customizer.php:705 inc/customizer.php:713 +#: inc/customizer.php:722 inc/customizer.php:730 inc/customizer.php:738 +#: inc/customizer.php:746 inc/customizer.php:754 inc/customizer.php:771 +#: inc/customizer.php:779 inc/customizer.php:787 inc/customizer.php:795 +#: inc/customizer.php:803 inc/customizer.php:811 inc/customizer.php:819 +#: inc/customizer.php:827 inc/customizer.php:835 inc/customizer.php:843 +#: inc/customizer.php:860 inc/customizer.php:877 inc/customizer.php:885 +#: inc/customizer.php:893 inc/customizer.php:901 inc/customizer.php:909 +#: inc/customizer.php:917 inc/customizer.php:934 inc/customizer.php:942 +#: inc/customizer.php:959 inc/customizer.php:993 inc/customizer.php:1001 +#: inc/customizer.php:1009 inc/customizer.php:1017 inc/customizer.php:1033 +#: inc/customizer.php:1050 inc/customizer.php:1058 inc/customizer.php:1066 +#: inc/customizer.php:1074 inc/customizer.php:1082 inc/customizer.php:1106 #, php-format msgid "%s Username" msgstr "" -#: inc/customizer.php:676 inc/customizer.php:701 +#: inc/customizer.php:689 inc/customizer.php:714 msgid " (or the long number in your profile URL)" msgstr "" -#: inc/customizer.php:749 inc/customizer.php:1020 +#: inc/customizer.php:762 inc/customizer.php:1041 inc/customizer.php:1090 +#: inc/customizer.php:1098 #, php-format msgid "%s Profile URL" msgstr "" -#: inc/customizer.php:830 inc/customizer.php:904 inc/customizer.php:929 -#: inc/customizer.php:946 inc/customizer.php:955 +#: inc/customizer.php:851 inc/customizer.php:925 inc/customizer.php:950 +#: inc/customizer.php:967 inc/customizer.php:976 #, php-format msgid "%s Site URL" msgstr "" -#: inc/customizer.php:847 inc/customizer.php:1102 +#: inc/customizer.php:868 inc/customizer.php:1123 #, php-format msgid "%s Link" msgstr "" -#: inc/customizer.php:964 inc/customizer.php:1004 +#: inc/customizer.php:985 inc/customizer.php:1025 #, php-format msgid "%s User ID" msgstr "" -#: inc/customizer.php:1077 -#, php-format -msgid "%s Group Name" -msgstr "" - -#: inc/customizer.php:1093 +#: inc/customizer.php:1114 msgid "Email Address" msgstr "" -#: inc/customizer.php:1111 +#: inc/customizer.php:1132 msgid "RSS Feed" msgstr "" -#: inc/customizer.php:1125 +#: inc/customizer.php:1146 msgid "Content Options" msgstr "" -#: inc/customizer.php:1127 +#: inc/customizer.php:1148 #, php-format msgctxt "(blog name)'s content." msgid "These options change the display of %s's content" msgstr "" -#: inc/customizer.php:1204 +#: inc/customizer.php:1225 msgid "Load Latin Extended character set. This will increase page load times." msgstr "" -#: inc/customizer.php:1211 +#: inc/customizer.php:1232 msgid "" "Use entry excerpts instead of full text on site home. Excludes sticky posts." msgstr "" -#: inc/customizer.php:1218 +#: inc/customizer.php:1239 msgid "Use entry excerpts on archive, category, and author pages." msgstr "" -#: inc/customizer.php:1225 +#: inc/customizer.php:1246 msgid "Display posts' featured images when excerpts are shown." msgstr "" -#: inc/customizer.php:1232 +#: inc/customizer.php:1253 msgid "Display a post's featured image on its individual page." msgstr "" -#: inc/customizer.php:1239 +#: inc/customizer.php:1260 msgid "Show tags on front page (tags will be shown on post's individual page)" msgstr "" -#: inc/customizer.php:1246 +#: inc/customizer.php:1267 msgid "" "Show categories on front page (categories will be shown on post's individual " "page)" msgstr "" -#: inc/customizer.php:1253 +#: inc/customizer.php:1274 msgid "Show author's name, profile image, and bio after posts" msgstr "" -#: inc/customizer.php:1260 +#: inc/customizer.php:1281 msgid "Entry Date Position" msgstr "" -#: inc/customizer.php:1264 +#: inc/customizer.php:1285 msgid "Above Header" msgstr "" -#: inc/customizer.php:1265 +#: inc/customizer.php:1286 msgid "Below Header" msgstr "" -#: inc/customizer.php:1271 +#: inc/customizer.php:1292 msgid "Show Page Headers" msgstr "" -#: inc/customizer.php:1278 +#: inc/customizer.php:1299 msgid "Show entry date for post excepts on the main page" msgstr "" -#: inc/customizer.php:1285 +#: inc/customizer.php:1306 msgid "Add an arrow before the title of a link post" msgstr "" -#: inc/customizer.php:1292 +#: inc/customizer.php:1313 msgid "" "Show Theme Info (display a line of text about the theme and its creator at " "the bottom of pages)" msgstr "" -#: inc/customizer.php:1301 +#: inc/customizer.php:1322 msgid "Text (colophon, copyright, credits, etc.) for the footer of the site" msgstr "" -#: inc/customizer.php:1315 +#: inc/customizer.php:1336 msgid "Other Options" msgstr "" -#: inc/customizer.php:1334 +#: inc/customizer.php:1337 +msgid "" +"Custom CSS is longer recommended. This feature is no longer allowed in " +"Decode. To continue using these tweaks, copy and paste your CSS into a " +"custom CSS plugin such as Jetpack. Get help here." +msgstr "" + +#: inc/customizer.php:1357 msgid "Custom CSS" msgstr "" -#: inc/customizer.php:1345 +#: inc/customizer.php:1368 msgid "Show the following post types on home blog page. (Separate with commas)" msgstr "" -#: inc/customizer.php:1384 +#: inc/customizer.php:1407 msgid "Accent Color" msgstr "Accent Colour" -#: inc/customizer.php:1385 +#: inc/customizer.php:1408 msgid "The main color used for links, borders, buttons, and more." msgstr "The main colour used for links, borders, buttons, and more." -#: inc/customizer.php:1392 +#: inc/customizer.php:1415 msgid "Active Link Color" msgstr "Active Link Colour" -#: inc/customizer.php:1393 +#: inc/customizer.php:1416 msgid "" "The color for currently clicked links.
(Try using a darker color than the " "Accent Color.)" @@ -557,19 +500,19 @@ msgstr "" "The colour for currently clicked links.
(Try using a darker colour than " "the Accent Colour.)" -#: inc/customizer.php:1400 +#: inc/customizer.php:1423 msgid "Text Color" msgstr "Text Colour" -#: inc/customizer.php:1401 +#: inc/customizer.php:1424 msgid "The main text color." msgstr "The main text colour." -#: inc/customizer.php:1408 +#: inc/customizer.php:1431 msgid "Secondary Text Color" msgstr "Secondary Text Colour" -#: inc/customizer.php:1409 +#: inc/customizer.php:1432 msgid "" "Text color used for text of secondary importance.
(Try using a lighter " "color than the main Text Color.)" @@ -577,66 +520,147 @@ msgstr "" "Text colour used for text of secondary importance.
(Try using a lighter " "colour than the main Text Colour.)" -#: inc/customizer.php:1416 +#: inc/customizer.php:1439 msgid "Use accent color instead of text color for icons" msgstr "Use accent colour instead of text colour for icons" -#: inc/extras.php:104 -msgid "Category" +#: inc/extras.php:95 +#, php-format +msgid "Page %s" msgstr "" -#: inc/extras.php:107 -msgid "Tag" +#: inc/template-tags.php:42 +msgid "Website" msgstr "" -#: inc/extras.php:110 -msgid "Author" +#: inc/template-tags.php:131 +#, php-format +msgctxt "post date" +msgid "Posted on %s" msgstr "" -#: inc/extras.php:120 inc/extras.php:124 -msgid "Page " +#: inc/template-tags.php:136 +#, php-format +msgctxt "post author" +msgid "by %s" msgstr "" -#: inc/template-tags.php:40 +#: inc/template-tags.php:158 msgid "Posts navigation" msgstr "" -#: inc/template-tags.php:44 -msgid " Older posts" +#: inc/template-tags.php:162 +msgid "Older posts" msgstr "" -#: inc/template-tags.php:48 -msgid "Newer posts " +#: inc/template-tags.php:166 +msgid "Newer posts" msgstr "" -#: inc/template-tags.php:73 +#: inc/template-tags.php:189 msgid "Post navigation" msgstr "" -#: inc/template-tags.php:76 -msgctxt "Previous post link" -msgid " %title" +#: inc/template-tags.php:214 +#, php-format +msgid "Category: %s" msgstr "" -#: inc/template-tags.php:77 -msgctxt "Next post link" -msgid "%title " +#: inc/template-tags.php:216 +#, php-format +msgid "Tag: %s" msgstr "" -#: inc/template-tags.php:101 -msgid "Website" +#: inc/template-tags.php:220 +#, php-format +msgid "Year: %s" msgstr "" -#: inc/template-tags.php:190 +#: inc/template-tags.php:220 +msgctxt "yearly archives date format" +msgid "Y" +msgstr "" + +#: inc/template-tags.php:222 #, php-format -msgctxt "post date" -msgid "Posted on %s" +msgid "Month: %s" +msgstr "" + +#: inc/template-tags.php:222 +msgctxt "monthly archives date format" +msgid "F Y" msgstr "" -#: inc/template-tags.php:195 +#: inc/template-tags.php:224 #, php-format -msgctxt "post author" -msgid "by %s" +msgid "Day: %s" +msgstr "" + +#: inc/template-tags.php:224 +msgctxt "daily archives date format" +msgid "F j, Y" +msgstr "" + +#: inc/template-tags.php:227 +msgctxt "post format archive title" +msgid "Asides" +msgstr "" + +#: inc/template-tags.php:229 +msgctxt "post format archive title" +msgid "Galleries" +msgstr "" + +#: inc/template-tags.php:231 +msgctxt "post format archive title" +msgid "Images" +msgstr "" + +#: inc/template-tags.php:233 +msgctxt "post format archive title" +msgid "Videos" +msgstr "" + +#: inc/template-tags.php:235 +msgctxt "post format archive title" +msgid "Quotes" +msgstr "" + +#: inc/template-tags.php:237 +#, fuzzy +msgctxt "post format archive title" +msgid "Links" +msgstr "" +"The colour for currently clicked links.
(Try using a darker colour than " +"the Accent Colour.)" + +#: inc/template-tags.php:239 +msgctxt "post format archive title" +msgid "Statuses" +msgstr "" + +#: inc/template-tags.php:241 +msgctxt "post format archive title" +msgid "Audio" +msgstr "" + +#: inc/template-tags.php:243 +msgctxt "post format archive title" +msgid "Chats" +msgstr "" + +#: inc/template-tags.php:246 +#, php-format +msgid "Archives: %s" +msgstr "" + +#: inc/template-tags.php:250 +#, php-format +msgid "%1$s: %2$s" +msgstr "" + +#: inc/template-tags.php:252 page-explore.php:37 sidebar.php:41 +msgid "Archives" msgstr "" #: page-explore.php:11 diff --git a/languages/es_ES.mo b/languages/es_ES.mo index 64ee4264d490f9162cc81df0249118c0809e04d3..c4caa1a80e002bf45eb1a39288cf78b4b93abb8d 100644 GIT binary patch delta 2376 zcmYk-3rv+|9LMqJaDbAV2jnIQ94^VlAT9@wP?#Vh7@z_P21+SO%r;HeMMgVxvzRrV zkH*xp3zl1xt?gLaDz{oIq^;Ikx>ai}m$PAO6r!XGh!?`$(n%UPl4}U@p;2+Gw7^bTk7jfxCpL72V zs@?(Y#|i94HfjuNL6zfHKF6^!BeP}ox*^Y{tGfqcmY+RgyBb_A2onFRK*U|^P5ovc@Wj` z9;f^WYQ~ee7~}b|0~@gd$5H*9MQw%0!}_O@NvCynT#o!^>QEiFamm1q=*3;A-wz{w zm^ZKw-$7Q{q%yij%tNi%AQs>bEXQ$d#VOPPQj%DIEkzb5VgoM38hjFq@eFq1CDfMG zv2k)GdT}jk;5$%fB7idy#=M9X+>ddRSyc0`<5|?e&Ld+mKLp4ycr)u5#d2uLQ!x)0 zp*m;nO)E*|z4gXzRg}N!{exdoI!rU@!@p1iEz1pe*ns)m_n`(fiu!$@ z<1y5hp2nRxjR76Lr3`Z&u12lI>$ni#!WH-}uE9K7=ih_biF)o~+={z#8UBWvSryY& zy-s9K<`8P&r_qfcquzq)0@mL}<|_(h2eE-r=SqEq-dm-jFrhEx9prB%$_RGv|D^Nd zCv?CVi&;--tGWm#8yYl({?BOQ^R@p?)BFwmB^7ASoPb{*`tTD8*BQfP}JmI_5}Ym2b*l1qD;j!x&cbMF-F z?m8%%h#IqcG2qzM^rLC9A|3QR6G5(P(zRznR;m3E7kR z&*$8k+w=JU&zYa*VKF|4 zy7eGlfQPUUk0CEJ5nP|ZGOpjl0{k57jY*sD=`7=e#r%~9-V`{9^SBu(&xJBliKTcc@|9`FDqM$!%x`wlQA(27kH66u_%>>Qlc=43 zfw$pzxC#6ClCF6MHNnfMiQhym=p<@mAESkzq2}r0CS{->)7se(9o5D~?RY<`=C9x? z{2Vn=-CSd8a5?I%Y(srMj+*Fx)IuLd?esC^Pt9TEWnSd11COKb%bQ33Rm%$~v}#?! z+x1w78ejx9@NZEo-iI3K56H_r&6^hfSJXuB1fPG5%GCGRg8kI14 zAK@1>jG07bB7OS8Tn)?Eo@!Z*Y{E36R@#YV(e$D+u`|#`)@<&@OYk6Sq6w_WH&AD1 z5;flPMY#;$fXrb+-FVFp9sx`>_e1M4dnLPdcjMSIEo!#G4Msg{(>o*nuR;L{SsmjXEm_@G5*B zwWCw03C^N2vw#bop*kGJR@6ApqV9i9-!s2CNoPNPi8=#g7w2|*9JR2wP-oy|@cE~x zOnr@eaWc5x6X8dO>%GX!JjI(Pd;?qXG-|;M7w67g7pBRk8K-kO{vI#GzoRBTgE|vG zpmvf+p_Tdy)WBCDo4>$YxC@OQcH9WHDq82`h%{Z$zx9~R9eBHE_UJ%*o&)3s}}S-oQZ!#-G4Yu z=MFkA;I&v)m)r4n)BtxO$HKgd8sIc)fNxQc=UEJ)>X((S79J+_yP(FmXFW^@M&VR};Gkk5KwK&}Id(nOH+;A?paWZG=*~g|LWgh%1SDLTw4rPTWb{ zOsM7MFu&6Cuk>C|EG4>#O~hhigivcD^tj~fg4Rap(8dX6NROJ%!VQGl6~qp8f_4*L zOKc^gL=mB;bJVQoU+KS^P@U9f5slfNF?#~LQNInh2G`Rm;G&vPS#}3s=#;B%CzfY> z=iVym>da&t^PAzIF9wOV#O=gwgxWGp8AqQ^=najMyL^kcyjmHl1kTxEYWZo!>|9Lhf-}Wp%d>AV?>HD z{=xj4=B!ORsgX#xHEjEz zS}Pv6lQG-%n+iw6!&cPx4;6kFjwSAJ{YQ$9%(ZtG%JFPBbE3FsW>LRqc`27I zZLp$Gl+6px-pB?WH?v@VXvVVU`o@O(#-_;9#V zAB(19Hd|2Tiq0!l=AwuE#;VQ#=Y$1C>4\n" "Language-Team: Scott Smith \n" "Language: es_ES\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.6.9\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" @@ -44,72 +44,7 @@ msgstr "Prueba a buscar en el archivo mensual." msgid "Most Used Categories" msgstr "Categorías más utilizadas" -#: archive.php:27 -#, php-format -msgid "Day: %s" -msgstr "Día: %s" - -#: archive.php:30 -#, php-format -msgid "Month: %s" -msgstr "Mes: %s" - -#: archive.php:30 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "A F" - -#: archive.php:33 -#, php-format -msgid "Year: %s" -msgstr "Año: %s" - -#: archive.php:33 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "A" - -#: archive.php:36 -msgid "Asides" -msgstr "Apartes" - -#: archive.php:39 -msgid "Galleries" -msgstr "Galerías" - -#: archive.php:42 -msgid "Images" -msgstr "Imágenes" - -#: archive.php:45 -msgid "Videos" -msgstr "Vídeos" - -#: archive.php:48 -msgid "Quotes" -msgstr "Citas" - -#: archive.php:51 -msgid "Links" -msgstr "Enlaces" - -#: archive.php:54 -msgid "Statuses" -msgstr "Estados" - -#: archive.php:57 -msgid "Audios" -msgstr "Audios" - -#: archive.php:60 -msgid "Chats" -msgstr "Chats" - -#: archive.php:63 inc/extras.php:113 page-explore.php:37 sidebar.php:41 -msgid "Archives" -msgstr "Archivo" - -#: author.php:26 +#: author.php:26 inc/template-tags.php:218 #, php-format msgid "Author: %s" msgstr "Autor: %s" @@ -271,20 +206,25 @@ msgstr "Menú lateral" msgid "Footer Menu" msgstr "Menú inferior" -#: functions.php:140 +#: functions.php:148 msgid "Sidebar" msgstr "Barra lateral" -#: functions.php:142 +#: functions.php:150 msgctxt "sidebar description" msgid "Only displayed if sidebar remains enabled in the Customize menu." msgstr "" -#: header.php:34 +#: functions.php:239 +#, fuzzy +msgid "Google Profile URL" +msgstr "%s URL del perfil" + +#: header.php:33 msgid "Skip to content" msgstr "Saltar al contenido" -#: header.php:38 +#: header.php:37 #, fuzzy msgid "Show sidebar" msgstr "Barra lateral" @@ -302,34 +242,34 @@ msgstr "" "rel=\"gallery\">%8$s" #: image.php:34 -msgid " Previous" -msgstr " Anterior" +msgid "Previous" +msgstr "" #: image.php:35 -msgid "Next " -msgstr "Siguiente " +msgid "Next" +msgstr "" -#: inc/customizer.php:145 +#: inc/customizer.php:153 msgid "Header Options" msgstr "Opciones de encabezado" -#: inc/customizer.php:180 +#: inc/customizer.php:188 msgid "Favicon Image (must be a PNG)" msgstr "Favicon (tiene que ser un PNG)" -#: inc/customizer.php:187 +#: inc/customizer.php:195 msgid "Show Site Title" msgstr "Mostrar título del sitio" -#: inc/customizer.php:194 +#: inc/customizer.php:202 msgid "Show Site Description" msgstr "Mostrar descripción del sitio" -#: inc/customizer.php:201 +#: inc/customizer.php:209 msgid "Show Header Menu" msgstr "Mostrar menús de encabezado" -#: inc/customizer.php:208 +#: inc/customizer.php:216 msgid "" "HTML for description, if you wish to replace your blog description with HTML " "markup" @@ -337,176 +277,172 @@ msgstr "" "HTML para la descripción, en caso de que quieras reemplazar la " "descripción del blog con Markup HTML" -#: inc/customizer.php:222 +#: inc/customizer.php:230 msgid "Sidebar Options" msgstr "Opciones de barra lateral" -#: inc/customizer.php:250 +#: inc/customizer.php:258 msgid "Enable Sidebar" msgstr "Habilitar barra lateral" -#: inc/customizer.php:257 +#: inc/customizer.php:265 msgid "Sidebar Position" msgstr "Posición de la barra lateral" -#: inc/customizer.php:262 inc/customizer.php:274 +#: inc/customizer.php:270 inc/customizer.php:282 msgid "Left" msgstr "Izquierda" -#: inc/customizer.php:263 inc/customizer.php:275 +#: inc/customizer.php:271 inc/customizer.php:283 msgid "Right" msgstr "Derecha" -#: inc/customizer.php:269 +#: inc/customizer.php:277 msgid "Sidebar Button Position" msgstr "Posición del botón de la barra lateral" -#: inc/customizer.php:281 +#: inc/customizer.php:289 msgid "Always Visible Sidebar" msgstr "Barra lateral siempre visible" -#: inc/customizer.php:286 +#: inc/customizer.php:294 msgctxt "Sidebar option" msgid "Always open" msgstr "Siempre visible" -#: inc/customizer.php:287 +#: inc/customizer.php:295 msgctxt "Sidebar option" msgid "Closed by default" msgstr "Cerrado por defecto" -#: inc/customizer.php:299 +#: inc/customizer.php:307 msgid "Discussion Options" msgstr "Opciones de discusión" -#: inc/customizer.php:316 +#: inc/customizer.php:324 msgid "Enable Comments" msgstr "Habilitar comentarios" -#: inc/customizer.php:323 +#: inc/customizer.php:331 msgid "Show allowed HTML tags on comment form" msgstr "" -#: inc/customizer.php:336 +#: inc/customizer.php:344 msgid "Social Options" msgstr "Opciones sociales" -#: inc/customizer.php:637 inc/customizer.php:644 +#: inc/customizer.php:650 inc/customizer.php:657 msgid "Show Social Icons" msgstr "Mostrar iconos sociales" -#: inc/customizer.php:637 +#: inc/customizer.php:650 msgid "in Header" msgstr "en encabezado" -#: inc/customizer.php:644 +#: inc/customizer.php:657 msgid "in Footer" msgstr "en pié de página" -#: inc/customizer.php:651 +#: inc/customizer.php:664 msgid "Open Links in New Tab/Window" msgstr "Abrir enlaces en Nuevas pestaña/Ventana" -#: inc/customizer.php:659 inc/customizer.php:667 inc/customizer.php:675 -#: inc/customizer.php:684 inc/customizer.php:692 inc/customizer.php:700 -#: inc/customizer.php:709 inc/customizer.php:717 inc/customizer.php:725 -#: inc/customizer.php:733 inc/customizer.php:741 inc/customizer.php:758 -#: inc/customizer.php:766 inc/customizer.php:774 inc/customizer.php:782 -#: inc/customizer.php:790 inc/customizer.php:798 inc/customizer.php:806 -#: inc/customizer.php:814 inc/customizer.php:822 inc/customizer.php:839 -#: inc/customizer.php:856 inc/customizer.php:864 inc/customizer.php:872 -#: inc/customizer.php:880 inc/customizer.php:888 inc/customizer.php:896 -#: inc/customizer.php:913 inc/customizer.php:921 inc/customizer.php:938 -#: inc/customizer.php:972 inc/customizer.php:980 inc/customizer.php:988 -#: inc/customizer.php:996 inc/customizer.php:1012 inc/customizer.php:1029 -#: inc/customizer.php:1037 inc/customizer.php:1045 inc/customizer.php:1053 -#: inc/customizer.php:1061 inc/customizer.php:1069 inc/customizer.php:1085 +#: inc/customizer.php:672 inc/customizer.php:680 inc/customizer.php:688 +#: inc/customizer.php:697 inc/customizer.php:705 inc/customizer.php:713 +#: inc/customizer.php:722 inc/customizer.php:730 inc/customizer.php:738 +#: inc/customizer.php:746 inc/customizer.php:754 inc/customizer.php:771 +#: inc/customizer.php:779 inc/customizer.php:787 inc/customizer.php:795 +#: inc/customizer.php:803 inc/customizer.php:811 inc/customizer.php:819 +#: inc/customizer.php:827 inc/customizer.php:835 inc/customizer.php:843 +#: inc/customizer.php:860 inc/customizer.php:877 inc/customizer.php:885 +#: inc/customizer.php:893 inc/customizer.php:901 inc/customizer.php:909 +#: inc/customizer.php:917 inc/customizer.php:934 inc/customizer.php:942 +#: inc/customizer.php:959 inc/customizer.php:993 inc/customizer.php:1001 +#: inc/customizer.php:1009 inc/customizer.php:1017 inc/customizer.php:1033 +#: inc/customizer.php:1050 inc/customizer.php:1058 inc/customizer.php:1066 +#: inc/customizer.php:1074 inc/customizer.php:1082 inc/customizer.php:1106 #, php-format msgid "%s Username" msgstr "%s Nombre de usuario" -#: inc/customizer.php:676 inc/customizer.php:701 +#: inc/customizer.php:689 inc/customizer.php:714 msgid " (or the long number in your profile URL)" msgstr "(o el número largo en la URL de tu perfil)" -#: inc/customizer.php:749 inc/customizer.php:1020 +#: inc/customizer.php:762 inc/customizer.php:1041 inc/customizer.php:1090 +#: inc/customizer.php:1098 #, php-format msgid "%s Profile URL" msgstr "%s URL del perfil" -#: inc/customizer.php:830 inc/customizer.php:904 inc/customizer.php:929 -#: inc/customizer.php:946 inc/customizer.php:955 +#: inc/customizer.php:851 inc/customizer.php:925 inc/customizer.php:950 +#: inc/customizer.php:967 inc/customizer.php:976 #, php-format msgid "%s Site URL" msgstr "%s URL del sitio" -#: inc/customizer.php:847 inc/customizer.php:1102 +#: inc/customizer.php:868 inc/customizer.php:1123 #, php-format msgid "%s Link" msgstr "%s Enlaces" -#: inc/customizer.php:964 inc/customizer.php:1004 +#: inc/customizer.php:985 inc/customizer.php:1025 #, php-format msgid "%s User ID" msgstr "%s ID de usuario" -#: inc/customizer.php:1077 -#, php-format -msgid "%s Group Name" -msgstr "%s Nombre del grupo" - -#: inc/customizer.php:1093 +#: inc/customizer.php:1114 msgid "Email Address" msgstr "Dirección de email" -#: inc/customizer.php:1111 +#: inc/customizer.php:1132 msgid "RSS Feed" msgstr "Feed RSS" -#: inc/customizer.php:1125 +#: inc/customizer.php:1146 #, fuzzy msgid "Content Options" -msgstr "Otras opciones" +msgstr "Saltar al contenido" -#: inc/customizer.php:1127 +#: inc/customizer.php:1148 #, php-format msgctxt "(blog name)'s content." msgid "These options change the display of %s's content" msgstr "" -#: inc/customizer.php:1204 +#: inc/customizer.php:1225 msgid "Load Latin Extended character set. This will increase page load times." msgstr "" -#: inc/customizer.php:1211 +#: inc/customizer.php:1232 msgid "" "Use entry excerpts instead of full text on site home. Excludes sticky posts." msgstr "" "Usar fragmentos en vez de el texto completo en el home. Excluye los sticky " "posts" -#: inc/customizer.php:1218 +#: inc/customizer.php:1239 msgid "Use entry excerpts on archive, category, and author pages." msgstr "" -#: inc/customizer.php:1225 +#: inc/customizer.php:1246 #, fuzzy msgid "Display posts' featured images when excerpts are shown." msgstr "" "Mostrar las imagenes destacadas cuando se muestren extractos en la pá" "gina principal." -#: inc/customizer.php:1232 +#: inc/customizer.php:1253 msgid "Display a post's featured image on its individual page." msgstr "Mostrar la imagen destacada de un post en su página individual." -#: inc/customizer.php:1239 +#: inc/customizer.php:1260 msgid "Show tags on front page (tags will be shown on post's individual page)" msgstr "" "Mostrar etiquetas en la página principal (las etiquetas se " "mostrarán en las páginas individuales de los posts)" -#: inc/customizer.php:1246 +#: inc/customizer.php:1267 msgid "" "Show categories on front page (categories will be shown on post's individual " "page)" @@ -514,36 +450,36 @@ msgstr "" "Mostrar categorías en la página principal (las categorí" "as se mostrarán en las páginas individuales de los posts)" -#: inc/customizer.php:1253 +#: inc/customizer.php:1274 msgid "Show author's name, profile image, and bio after posts" msgstr "Mostrar el nombre, imagen de perfil y bio del autor tras los posts" -#: inc/customizer.php:1260 +#: inc/customizer.php:1281 msgid "Entry Date Position" msgstr "Posición de fecha de publicación" -#: inc/customizer.php:1264 +#: inc/customizer.php:1285 msgid "Above Header" msgstr "Encabezado superior" -#: inc/customizer.php:1265 +#: inc/customizer.php:1286 msgid "Below Header" msgstr "Encabezado inferior" -#: inc/customizer.php:1271 +#: inc/customizer.php:1292 msgid "Show Page Headers" msgstr "Mostrar encabezados de página" -#: inc/customizer.php:1278 +#: inc/customizer.php:1299 msgid "Show entry date for post excepts on the main page" msgstr "" "Mostrar fecha de publicación para posts en la página principal" -#: inc/customizer.php:1285 +#: inc/customizer.php:1306 msgid "Add an arrow before the title of a link post" msgstr "Añadir una flecha antes del título de un enlace a un post" -#: inc/customizer.php:1292 +#: inc/customizer.php:1313 msgid "" "Show Theme Info (display a line of text about the theme and its creator at " "the bottom of pages)" @@ -551,123 +487,219 @@ msgstr "" "Mostrar información del tema (muestra una linea de texto sobre el " "tema y su creador al final de las páginas)" -#: inc/customizer.php:1301 +#: inc/customizer.php:1322 msgid "Text (colophon, copyright, credits, etc.) for the footer of the site" msgstr "" "Texto (colofón, copyright, créditos, etc.) en la zona inferior " "de la web" -#: inc/customizer.php:1315 +#: inc/customizer.php:1336 msgid "Other Options" msgstr "Otras opciones" -#: inc/customizer.php:1334 +#: inc/customizer.php:1337 +msgid "" +"Custom CSS is longer recommended. This feature is no longer allowed in " +"Decode. To continue using these tweaks, copy and paste your CSS into a " +"custom CSS plugin such as Jetpack. Get help here." +msgstr "" + +#: inc/customizer.php:1357 msgid "Custom CSS" msgstr "CSS personalizado" -#: inc/customizer.php:1345 +#: inc/customizer.php:1368 msgid "Show the following post types on home blog page. (Separate with commas)" msgstr "" -#: inc/customizer.php:1384 +#: inc/customizer.php:1407 msgid "Accent Color" msgstr "Color de énfasis" -#: inc/customizer.php:1385 +#: inc/customizer.php:1408 msgid "The main color used for links, borders, buttons, and more." msgstr "" -#: inc/customizer.php:1392 +#: inc/customizer.php:1415 msgid "Active Link Color" msgstr "Color de enlace activo" -#: inc/customizer.php:1393 +#: inc/customizer.php:1416 msgid "" "The color for currently clicked links.
(Try using a darker color than the " "Accent Color.)" msgstr "" -#: inc/customizer.php:1400 +#: inc/customizer.php:1423 msgid "Text Color" msgstr "Color de texto" -#: inc/customizer.php:1401 +#: inc/customizer.php:1424 #, fuzzy msgid "The main text color." msgstr "Color de texto" -#: inc/customizer.php:1408 +#: inc/customizer.php:1431 msgid "Secondary Text Color" msgstr "Color de texto secundario" -#: inc/customizer.php:1409 +#: inc/customizer.php:1432 msgid "" "Text color used for text of secondary importance.
(Try using a lighter " "color than the main Text Color.)" msgstr "" -#: inc/customizer.php:1416 +#: inc/customizer.php:1439 msgid "Use accent color instead of text color for icons" msgstr "Utilizar color de énfasis en vez de color de texto para iconos" -#: inc/extras.php:104 -msgid "Category" -msgstr "Categoría" +#: inc/extras.php:95 +#, fuzzy, php-format +msgid "Page %s" +msgstr "Página" -#: inc/extras.php:107 -msgid "Tag" -msgstr "Etiqueta" +#: inc/template-tags.php:42 +msgid "Website" +msgstr "Web" -#: inc/extras.php:110 -msgid "Author" -msgstr "Autor" +#: inc/template-tags.php:131 +#, php-format +msgctxt "post date" +msgid "Posted on %s" +msgstr "" -#: inc/extras.php:120 inc/extras.php:124 -msgid "Page " -msgstr "Página" +#: inc/template-tags.php:136 +#, fuzzy, php-format +msgctxt "post author" +msgid "by %s" +msgstr "Día: %s" -#: inc/template-tags.php:40 +#: inc/template-tags.php:158 msgid "Posts navigation" msgstr "Navegación de posts" -#: inc/template-tags.php:44 -msgid " Older posts" -msgstr " Posts antíguos" +#: inc/template-tags.php:162 +msgid "Older posts" +msgstr "" -#: inc/template-tags.php:48 -msgid "Newer posts " -msgstr "Posts nuevos " +#: inc/template-tags.php:166 +#, fuzzy +msgid "Newer posts" +msgstr "Posts recientes" -#: inc/template-tags.php:73 +#: inc/template-tags.php:189 msgid "Post navigation" msgstr "Navegación de post" -#: inc/template-tags.php:76 -msgctxt "Previous post link" -msgid " %title" -msgstr " %title" +#: inc/template-tags.php:214 +#, fuzzy, php-format +msgid "Category: %s" +msgstr "Categoría" -#: inc/template-tags.php:77 -msgctxt "Next post link" -msgid "%title " -msgstr "%title " +#: inc/template-tags.php:216 +#, fuzzy, php-format +msgid "Tag: %s" +msgstr "Día: %s" -#: inc/template-tags.php:101 -msgid "Website" -msgstr "Web" +#: inc/template-tags.php:220 +#, php-format +msgid "Year: %s" +msgstr "Año: %s" -#: inc/template-tags.php:190 +#: inc/template-tags.php:220 +msgctxt "yearly archives date format" +msgid "Y" +msgstr "A" + +#: inc/template-tags.php:222 #, php-format -msgctxt "post date" -msgid "Posted on %s" -msgstr "" +msgid "Month: %s" +msgstr "Mes: %s" -#: inc/template-tags.php:195 +#: inc/template-tags.php:222 +msgctxt "monthly archives date format" +msgid "F Y" +msgstr "A F" + +#: inc/template-tags.php:224 #, php-format -msgctxt "post author" -msgid "by %s" +msgid "Day: %s" +msgstr "Día: %s" + +#: inc/template-tags.php:224 +msgctxt "daily archives date format" +msgid "F j, Y" msgstr "" +#: inc/template-tags.php:227 +#, fuzzy +msgctxt "post format archive title" +msgid "Asides" +msgstr "Apartes" + +#: inc/template-tags.php:229 +#, fuzzy +msgctxt "post format archive title" +msgid "Galleries" +msgstr "Galerías" + +#: inc/template-tags.php:231 +#, fuzzy +msgctxt "post format archive title" +msgid "Images" +msgstr "Imágenes" + +#: inc/template-tags.php:233 +#, fuzzy +msgctxt "post format archive title" +msgid "Videos" +msgstr "Vídeos" + +#: inc/template-tags.php:235 +#, fuzzy +msgctxt "post format archive title" +msgid "Quotes" +msgstr "Citas" + +#: inc/template-tags.php:237 +#, fuzzy +msgctxt "post format archive title" +msgid "Links" +msgstr "Enlaces" + +#: inc/template-tags.php:239 +#, fuzzy +msgctxt "post format archive title" +msgid "Statuses" +msgstr "Estados" + +#: inc/template-tags.php:241 +#, fuzzy +msgctxt "post format archive title" +msgid "Audio" +msgstr "Audios" + +#: inc/template-tags.php:243 +#, fuzzy +msgctxt "post format archive title" +msgid "Chats" +msgstr "Chats" + +#: inc/template-tags.php:246 +#, fuzzy, php-format +msgid "Archives: %s" +msgstr "Archivo" + +#: inc/template-tags.php:250 +#, fuzzy, php-format +msgid "%1$s: %2$s" +msgstr "%1$s por %2$s" + +#: inc/template-tags.php:252 page-explore.php:37 sidebar.php:41 +msgid "Archives" +msgstr "Archivo" + #: page-explore.php:11 msgid "Explore Page" msgstr "Explorar página" @@ -689,6 +721,35 @@ msgstr "Barra lateral" msgid "Navigation" msgstr "Menú de navegación" +#~ msgid " Previous" +#~ msgstr " Anterior" + +#~ msgid "Next " +#~ msgstr "Siguiente " + +#~ msgid "%s Group Name" +#~ msgstr "%s Nombre del grupo" + +#~ msgid "Tag" +#~ msgstr "Etiqueta" + +#~ msgid "Author" +#~ msgstr "Autor" + +#~ msgid " Older posts" +#~ msgstr " Posts antíguos" + +#~ msgid "Newer posts " +#~ msgstr "Posts nuevos " + +#~ msgctxt "Previous post link" +#~ msgid " %title" +#~ msgstr " %title" + +#~ msgctxt "Next post link" +#~ msgid "%title " +#~ msgstr "%title " + #~ msgctxt "[noun] [translation string] (explanation)" #~ msgid "%1$s Username %2$s" #~ msgstr "%1$s Nombre de usuario %2$s" diff --git a/languages/fa_IR.mo b/languages/fa_IR.mo index 6005a0c10b49188e665192e7634b9b50255584dc..471681d7e7c4fa45f31a40c56baf37080328ae9c 100644 GIT binary patch delta 2228 zcmZA1eN5F=9LMp4AjK8Ict*H#E%RQGOBcEXUX?&mQF&0H2c53n7~wU9;-PG9x^I8A-1j%2uL~n3-ct6es6$p&Y%#7#B`pDjrAv%ruuYJcaY{d&e2frhW}m zF!|2-dke6Xx*KzFBk~tDVXhir7ixe($Nf(GE0{(5TbO~zocc*jr+xt|@d~ORH={DP z@u8j%U=^;xBzzv{<6cbHQeWmqD;dE|d>=KDY1GQjU>pA6)XNw}&xi0a+<@wE0`>mK zsEM6M4R{fG)%=87$W`Re{KF+%sdh1nI`H7VScck)cBlPmOr{=1P3$0!phXsKDrme5 zSKvBqLOpkgi*|7oHSjntz)w-ne}hr&)n#rp<3F8$%w;xOSuQTcXYm0X!B+eZ%h5*~ zG~hN=%11F5Cy=hpG^*b-sDUrxLi`;)=u-ZheITm9vcA!%IlH+02L`E?q(U=cV<4vQS?ao1-*zpi-P# z5FfYz_foG!t?(n%o_~d!@Hyla^D7o%63f3Em!RtFF^FCG9uDIQY;co3d=Zc9`~Q}k z4Ky4iUz2ziHQ)>M62RAxcg;yuN-sP0zfqYg@Wg-F{76@38!D4~@IEYJKh%E<>a4wq zt8rZQC^uKRQA%#$PE2GORoIPs;T_ah@gXYJpJ4*(OSo0EH7bt~%ZOS+@91mL0c;~k zlvz(KC)m~4Z%veKiLDl5gEi=e(nN#^?eRt;nNTSsw5odurSTy`+j6Vu2S;hHBlsv{ zpYfxp1$u~0go?friq;?BckN|6p+lmgl-*u9%>R{Q=WZoxTYOI4i_OkG35{jUsm8ME zr&3Pnt83NxI!s%L7J}c1*e{*-TV*YwA0Cy}#8#q26^ag*&d2Sglm?DQtmqR{sg7eR za1K%9)ZOYtWpf;JKdvGwow^R#!^DFG+a4?H?5dO^yDO#9zUta;Z@TKIn&y=x*nO!_ z*&C^E*hBN{Y#{A%dnE1HRC9V~qWwH$pWTr;Xw$QXBbEL@g+CDVRFsE;L4Tk+5O8g7 z@waw96X}oi_W0|=1DzpHMWFnD&s7HE&ozeo2mI}Q;hz5P@IY^0$kW!*J22pB+Z`F$ z=~=lu9O*l62-P%89-5-lv&&9p8%bKN4(`mY7&6ceDeD6Ipl5|V< z$rVJFpELaAWf%PyKZiW2JqdfS;9EHljNw^F4c>BMFnb^Ml@t$6;JC zltWKJd@;|#7vQkB--I_x?KYSL_rfhO2zCAyC_R^;9Qy^#hA!0k_n{p8m-5ft$S3BX@Gh7^JuO%QiN!R{ zBma*u*~5k+nt)sY^E0U0U4f18EvVGyP>*GBAykGMpdx$#%8^zmJpp(R3_+!S7;b>S zfht)RABhFsOyu!WScv6vD9@S+2b*S}#}HKQdY~eC5^~gxK;4#~!&UHiP~Ruz8?y;! z!wR?yejWBhekQj7r(ySMCi1ikD#9^Hw#-E+MQ=ela>LvI2r9MmLWZ-UdT0gIxkgBk zW-sKZISN(Ees4Vr*Rg&RQkrh_DH9paE=+t-2`Ud=)N&*P$H# z*yAh?$-xEiZMXue2R?;ry6mEa-V*qd?tc{%DVT!t_(Mn*O)A=T-4;P9TngoA72FK# zp&aamrSM63FZ?m|!A~HunUckc_YJUt^${rjqcE+T$uF5m@ip&-3x`?XgmUOvD^ZFG zsP*gcark?v%(RjYHQjNj2p@wod>*30ybO!sRd4+ftY)3bX7|fXHZxfd{|1|3*-~RB z;VJka^wIL8@FbMMW&HIhhwC6&H9<(QX24rtfXe9Wa5cORNvcVr5nh6eq4d02LjD!` z6dP;cdr$`RRwTN8KitH+6RHHSKzuM)y!Y=xeg82$4F3(+!glH*gD*nenoCgE`6^V& z-iArAR`oAqqQkcjrLPj%hunkgMs!~ZB>ulb4YdQ=h-f4y5O?MQZ(a}gAon54)&@j% z*HEw;E!a0(kcdvLBKC&xV@feuVyr-~9@xyQdPSN7M8Kb|Q7&`YTZBZ}rwk zpvvr*eKinei(ei3E&h+=5qJpMj;N6|RwDWXqoM1iF&p_J63~KiAc6Rk5*z*`#Q)`L zqY>GJsPP(*FC+QVu$W1k^Uc)Unr3Di2a&yqE?X6{4VfNaVxkt>;%#&|7iKR`Z;FJw zj#=CModM^{>=x%%UVcG`KN4BLVU2yvAF8*uceDi}*0Hc1wT<3(&v@Gs37iOqyKJ*T zr>%n>e%szytkZ!uUpVB822Mqb>s#V$D;%;st^eh8n?D*Tu3uiU%>KM{2TpecLxG&) zdh5VxYkB2ohn%dm){M4b*ftGa(Zk`06HIHm6HV>m$Z50rus>=~{2*<0(wruLM@JwM z4A@R=&heB^e|x}bN`H1%b1-z&cK(#UDLrs{!~SNkfe zt%};Znkrv;ZFzZm%XZ&RDqy3_*GSBDR%Lkw=hpcuE3Jx}y6W1p@~W!x^k%;u_3icy zlcEbbwa&M4s+@Ono=dK|d#!V3-mSUK{!n`tS*f!Q`JGVi>C6FlDAsRHjk)8o!Pr^n z&$;K-0A({8Aa>cEa7V1zS$F8hIV;xdj@>vH>u2hYxZ|JGFz&EBuQ0Z-rnP?$8$Q_9d;`nPb`sn!lVNAsaZk)p$&v;ZOHV_+R zX990d~`zwW*3 zS^=*1#`>rN>iQB{8%Vg4QJ9xnG^A3I{&?((;LtQaHNgI`vuMe$D`iE_BwnJfUuAVC nl`p1r!_0awx1INw{In?EuLKZpm+xU=TzZLEx77Jgap`{m6FRoz diff --git a/languages/fa_IR.po b/languages/fa_IR.po index 62ec478..904e8ce 100644 --- a/languages/fa_IR.po +++ b/languages/fa_IR.po @@ -6,30 +6,30 @@ msgid "" msgstr "" "Project-Id-Version: fa-Decode v2.9.1\n" "Report-Msgid-Bugs-To: http://wordpress.org/support/theme/decode\n" -"POT-Creation-Date: 2014-04-14 16:53-0600\n" -"PO-Revision-Date: 2014-08-22 15:46+0330\n" -"Last-Translator: BenYamin Salimi \n" +"POT-Creation-Date: 2015-02-04 21:44-0800\n" +"PO-Revision-Date: 2015-02-04 21:50-0800\n" +"Last-Translator: Scott Smith \n" "Language-Team: BenYamin Salimi \n" +"Language: fa\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: Poedit 1.5.7\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" "Description:\n" "X-Poedit-Basepath: .\n" -"Language: fa\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPath-1: ..\n" -#: ../404.php:15 +#: 404.php:15 msgid "Oops! That page can’t be found." msgstr "اپس ! این صفحه پیدا نشد" -#: ../404.php:19 +#: 404.php:19 msgid "" "It looks like nothing was found at this location. Maybe try one of the links " "below or a search?" @@ -37,91 +37,20 @@ msgstr "" "به نظر میرسه هچی اینجا پیدا نمیشه. شاید باید یکی از لینک های زیر یا گزینه " "سرچ رو امتحان کنید؟" -#: ../404.php:26 +#: 404.php:26 msgid "Try looking in the monthly archives." msgstr "سعی کنید در آرشیو ماهانه جس و جو کنید" -#: ../404.php:32 +#: 404.php:32 msgid "Most Used Categories" msgstr "دسته هایی که بیشتر از همه استفاده شده" -#: ../archive.php:27 -#, php-format -msgid "Day: %s" -msgstr "روز: %s" - -#: ../archive.php:30 -#, php-format -msgid "Month: %s" -msgstr "ماه: %s" - -#: ../archive.php:30 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "" - -#: ../archive.php:33 -#, php-format -msgid "Year: %s" -msgstr "سال: %s" - -#: ../archive.php:33 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "" - -#: ../archive.php:36 -msgid "Asides" -msgstr "" - -#: ../archive.php:39 -msgid "Galleries" -msgstr "گالری ها" - -#: ../archive.php:42 -msgid "Images" -msgstr "تصاویر" - -#: ../archive.php:45 -msgid "Videos" -msgstr "ویدیو ها" - -#: ../archive.php:48 -msgid "Quotes" -msgstr "نقل قول شدن ها" - -#: ../archive.php:51 -msgid "Links" -msgstr "پیوند ها" - -#: ../archive.php:54 -msgid "Statuses" -msgstr "استاتوس ها" - -#: ../archive.php:57 -msgid "Audios" -msgstr "شنیدنی ها" - -#: ../archive.php:60 -msgid "Chats" -msgstr "گفت و گو ها" - -#: ../archive.php:63 ../inc/extras.php:113 ../page-explore.php:37 -#: ../sidebar.php:30 -msgid "Archives" -msgstr "آرشیو" - -#: ../author.php:25 ../content-single.php:21 ../content-single.php:63 -#: ../content-single.php:108 -msgid "Website" -msgstr "وب سایت" - -#: ../author.php:34 +#: author.php:26 inc/template-tags.php:218 #, php-format msgid "Author: %s" msgstr "نویسنده: %s" -#: ../comments.php:28 +#: comments.php:28 #, php-format msgctxt "comments title" msgid "One thought on “%2$s”" @@ -129,116 +58,114 @@ msgid_plural "%1$s thoughts on “%2$s”" msgstr[0] "" msgstr[1] "" -#: ../comments.php:35 ../comments.php:59 +#: comments.php:35 comments.php:55 msgid "Comment navigation" msgstr "ناوبری دیدگاه" -#: ../comments.php:36 ../comments.php:60 +#: comments.php:36 comments.php:56 msgid "← Older Comments" msgstr "← دیدگاه های قدیمی تر" -#: ../comments.php:37 ../comments.php:61 +#: comments.php:37 comments.php:57 msgid "Newer Comments →" msgstr "دیدگاه های جدید تر →" -#: ../comments.php:71 +#: comments.php:67 msgid "Comments are closed." msgstr "دیدگاه ها بسته شد اند" -#: ../comments.php:77 ../comments.php:87 +#: comments.php:72 msgid "Leave a Reply" msgstr "پاسخ دادن" -#: ../comments.php:78 ../comments.php:88 +#: comments.php:73 #, php-format msgid "Leave a Reply to %s" msgstr "پاسخ دادن به %s" -#: ../comments.php:79 ../comments.php:89 +#: comments.php:74 msgid "Cancel reply" msgstr "لغو پاسخ" -#: ../comments.php:80 ../comments.php:90 +#: comments.php:75 msgid "Post Comment" msgstr "ارسال دیدگاه" -#: ../comments.php:98 +#: comments.php:94 msgctxt "noun" msgid "Comment" msgstr "دیدگاه" -#: ../comments.php:99 +#: comments.php:95 #, php-format msgid "You must be logged in to post a comment." msgstr "شما باید وارد شوید تا قادر به ارسال دیدگاه باشید" -#: ../comments.php:100 +#: comments.php:96 #, php-format msgid "" "Logged in as %2$s. Log out?" msgstr "" -#: ../comments.php:101 +#: comments.php:97 msgid "Your email address will not be published." msgstr "آدرس ایمیل شما منتشر نخواهد شد" -#: ../comments.php:102 +#: comments.php:98 #, php-format msgid "" "You may use these HTML tags " "and attributes: %s" msgstr "" -#: ../content-excerpt.php:30 +#: content-excerpt.php:33 msgid "Read More…" msgstr "ادامه متن…" -#: ../content-excerpt.php:31 ../content-link.php:35 ../content-page.php:26 -#: ../content-quote.php:21 ../content-search.php:19 ../content-single.php:27 -#: ../content-single.php:69 ../content-single.php:114 ../content.php:35 -#: ../image.php:30 +#: content-excerpt.php:35 content-link.php:38 content-page.php:32 +#: content-quote.php:25 content-search.php:20 content-single.php:22 +#: content-single.php:62 content-single.php:106 content.php:41 image.php:30 msgid "Edit" msgstr "ویرایش" -#: ../content-link.php:26 ../content-quote.php:12 ../content-single.php:13 -#: ../content-single.php:56 ../content-single.php:100 ../content.php:26 +#: content-link.php:29 content-quote.php:15 content-single.php:14 +#: content-single.php:56 content-single.php:98 content.php:29 msgid "Continue reading " msgstr "ادامه مطلب " -#: ../content-link.php:29 ../content-page.php:22 ../content-quote.php:15 -#: ../content-single.php:14 ../content-single.php:101 ../content.php:29 -#: ../image.php:91 +#: content-link.php:31 content-page.php:28 content-quote.php:18 +#: content-single.php:17 content-single.php:101 content.php:32 image.php:91 msgid "Pages:" msgstr "صفحات" -#: ../content-link.php:33 ../content-quote.php:19 ../content.php:33 +#: content-link.php:35 content-quote.php:22 content.php:37 msgid "Leave a comment" msgstr "ارسال دیدگاه" -#: ../content-link.php:33 ../content-quote.php:19 ../content.php:33 +#: content-link.php:35 content-quote.php:22 content.php:37 msgid "1 Comment" msgstr "1 دیدگاه" -#: ../content-link.php:33 ../content-quote.php:19 ../content.php:33 +#: content-link.php:35 content-quote.php:22 content.php:37 msgid "% Comments" msgstr "% دیدگاه" -#: ../content-link.php:37 ../content-quote.php:23 ../content-single.php:28 -#: ../content-single.php:70 ../content-single.php:115 ../content.php:37 +#: content-link.php:42 content-quote.php:29 content-single.php:25 +#: content-single.php:65 content-single.php:109 content.php:45 msgid "Tagged as: " msgstr "برچسب گذاشته شده به عنوان:" -#: ../content-link.php:40 ../content-quote.php:26 ../content-single.php:29 -#: ../content-single.php:71 ../content-single.php:116 ../content.php:40 +#: content-link.php:45 content-quote.php:32 content-single.php:26 +#: content-single.php:66 content-single.php:110 content.php:48 msgid "Categorized in: " msgstr "طبقه بندی در: " -#: ../content-none.php:13 +#: content-none.php:13 msgid "Nothing Found" msgstr "هیچی پیدا نشد!!" -#: ../content-none.php:19 +#: content-none.php:19 #, php-format msgid "" "Ready to publish your first post? Get started here." @@ -246,7 +173,7 @@ msgstr "" "آماده اید تا اولین پست خود را منتشر کنید؟ از اینجا شورع " "کنید." -#: ../content-none.php:23 +#: content-none.php:23 msgid "" "Sorry, but nothing matched your search terms. Please try again with some " "different keywords." @@ -254,43 +181,53 @@ msgstr "" "متاسفم، ولی هیچ نتیجه ای برای جست و جوی شما پیدا نشد. لطفا با واژه های کلیدی " "دیگر امتحان کنید" -#: ../content-none.php:28 +#: content-none.php:28 msgid "" "It seems we can’t find what you’re looking for. Perhaps " "searching can help." msgstr "" -#: ../footer.php:44 +#: footer.php:44 #, php-format msgid "%1$s by %2$s" msgstr "%1$s توسط %2$s" -#: ../functions.php:82 +#: functions.php:33 msgid "Header Menu" msgstr "منوی هدر " -#: ../functions.php:83 +#: functions.php:34 msgid "Sidebar Menu" msgstr "منوی نوار کناری" -#: ../functions.php:84 +#: functions.php:35 msgid "Footer Menu" msgstr "منوی فوتر" -#: ../functions.php:130 +#: functions.php:148 msgid "Sidebar" msgstr "نوار کناری" -#: ../functions.php:132 +#: functions.php:150 msgctxt "sidebar description" msgid "Only displayed if sidebar remains enabled in the Customize menu." msgstr "" -#: ../header.php:38 +#: functions.php:239 +#, fuzzy +msgid "Google Profile URL" +msgstr "%s آدرس پروفایل" + +#: header.php:33 msgid "Skip to content" msgstr "" -#: ../image.php:22 +#: header.php:37 +#, fuzzy +msgid "Show sidebar" +msgstr "نوار کناری" + +#: image.php:22 #, php-format msgid "" "Published در %5$s" -#: ../image.php:34 -msgid " Previous" -msgstr " بازگشت" +#: image.php:34 +msgid "Previous" +msgstr "" -#: ../image.php:35 -msgid "Next " -msgstr "بعدی " +#: image.php:35 +msgid "Next" +msgstr "" -#: ../inc/customizer.php:57 +#: inc/customizer.php:153 msgid "Header Options" msgstr "تنظیمات هدر" -#: ../inc/customizer.php:90 +#: inc/customizer.php:188 msgid "Favicon Image (must be a PNG)" msgstr "" -#: ../inc/customizer.php:97 +#: inc/customizer.php:195 msgid "Show Site Title" msgstr "نمایش عنوان سایت" -#: ../inc/customizer.php:104 +#: inc/customizer.php:202 msgid "Show Site Description" msgstr "نمایش توضیحات سایت" -#: ../inc/customizer.php:111 +#: inc/customizer.php:209 msgid "Show Header Menu" msgstr "نمایش منوی هدر" -#: ../inc/customizer.php:118 +#: inc/customizer.php:216 msgid "" "HTML for description, if you wish to replace your blog description with HTML " "markup" @@ -337,172 +274,166 @@ msgstr "" "توضیحات وبسایت به زبان HTML . اگر دوست دارید به جای توضیحات تگ اچ تی ام ال " "وارد کنید کد مورد نظر خود را در کادر زیر بنویسید." -#: ../inc/customizer.php:131 +#: inc/customizer.php:230 msgid "Sidebar Options" msgstr "تنظیمات ساید بار" -#: ../inc/customizer.php:155 +#: inc/customizer.php:258 msgid "Enable Sidebar" msgstr "فعال سازی ساید بار" -#: ../inc/customizer.php:162 +#: inc/customizer.php:265 msgid "Sidebar Position" msgstr "حالت نوار کناری" -#: ../inc/customizer.php:166 ../inc/customizer.php:177 +#: inc/customizer.php:270 inc/customizer.php:282 msgid "Left" msgstr "چپ" -#: ../inc/customizer.php:167 ../inc/customizer.php:178 +#: inc/customizer.php:271 inc/customizer.php:283 msgid "Right" msgstr "راست" -#: ../inc/customizer.php:173 +#: inc/customizer.php:277 msgid "Sidebar Button Position" msgstr "تنظیم حالت دکمه نوار کناری" -#: ../inc/customizer.php:184 +#: inc/customizer.php:289 msgid "Always Visible Sidebar" msgstr "نوار کناری همیشه نمایش داده شود" -#: ../inc/customizer.php:188 +#: inc/customizer.php:294 msgctxt "Sidebar option" msgid "Always open" msgstr "همیشه باز" -#: ../inc/customizer.php:189 +#: inc/customizer.php:295 msgctxt "Sidebar option" msgid "Closed by default" msgstr "به صورت پیشفرض بسته باشد" -#: ../inc/customizer.php:202 +#: inc/customizer.php:307 msgid "Discussion Options" msgstr "تنظیمات گفتگو" -#: ../inc/customizer.php:219 +#: inc/customizer.php:324 msgid "Enable Comments" msgstr "فعال کردن نظرات" -#: ../inc/customizer.php:226 +#: inc/customizer.php:331 msgid "Show allowed HTML tags on comment form" msgstr "نمایش تگهای مجاز HTML در فرم نظرات" -#: ../inc/customizer.php:239 +#: inc/customizer.php:344 msgid "Social Options" msgstr "تنظیمات اجتماعی" -#: ../inc/customizer.php:467 ../inc/customizer.php:474 +#: inc/customizer.php:650 inc/customizer.php:657 msgid "Show Social Icons" msgstr "نمیاش ایکون شکبه های اجتماعی" -#: ../inc/customizer.php:467 +#: inc/customizer.php:650 msgid "in Header" msgstr "در هدر" -#: ../inc/customizer.php:474 +#: inc/customizer.php:657 msgid "in Footer" msgstr "در فوتر" -#: ../inc/customizer.php:481 +#: inc/customizer.php:664 msgid "Open Links in New Tab/Window" msgstr "باز کردن پیوند ها در زبانه/پنجه جدید" -#: ../inc/customizer.php:488 ../inc/customizer.php:495 -#: ../inc/customizer.php:502 ../inc/customizer.php:516 -#: ../inc/customizer.php:523 ../inc/customizer.php:530 -#: ../inc/customizer.php:537 ../inc/customizer.php:544 -#: ../inc/customizer.php:558 ../inc/customizer.php:565 -#: ../inc/customizer.php:572 ../inc/customizer.php:579 -#: ../inc/customizer.php:586 ../inc/customizer.php:593 -#: ../inc/customizer.php:600 ../inc/customizer.php:607 -#: ../inc/customizer.php:614 ../inc/customizer.php:621 -#: ../inc/customizer.php:628 ../inc/customizer.php:635 -#: ../inc/customizer.php:642 ../inc/customizer.php:649 -#: ../inc/customizer.php:656 ../inc/customizer.php:663 -#: ../inc/customizer.php:677 ../inc/customizer.php:684 -#: ../inc/customizer.php:698 ../inc/customizer.php:726 -#: ../inc/customizer.php:733 ../inc/customizer.php:740 -#: ../inc/customizer.php:747 ../inc/customizer.php:761 -#: ../inc/customizer.php:775 ../inc/customizer.php:782 -#: ../inc/customizer.php:789 ../inc/customizer.php:796 -#: ../inc/customizer.php:803 ../inc/customizer.php:810 -#: ../inc/customizer.php:824 +#: inc/customizer.php:672 inc/customizer.php:680 inc/customizer.php:688 +#: inc/customizer.php:697 inc/customizer.php:705 inc/customizer.php:713 +#: inc/customizer.php:722 inc/customizer.php:730 inc/customizer.php:738 +#: inc/customizer.php:746 inc/customizer.php:754 inc/customizer.php:771 +#: inc/customizer.php:779 inc/customizer.php:787 inc/customizer.php:795 +#: inc/customizer.php:803 inc/customizer.php:811 inc/customizer.php:819 +#: inc/customizer.php:827 inc/customizer.php:835 inc/customizer.php:843 +#: inc/customizer.php:860 inc/customizer.php:877 inc/customizer.php:885 +#: inc/customizer.php:893 inc/customizer.php:901 inc/customizer.php:909 +#: inc/customizer.php:917 inc/customizer.php:934 inc/customizer.php:942 +#: inc/customizer.php:959 inc/customizer.php:993 inc/customizer.php:1001 +#: inc/customizer.php:1009 inc/customizer.php:1017 inc/customizer.php:1033 +#: inc/customizer.php:1050 inc/customizer.php:1058 inc/customizer.php:1066 +#: inc/customizer.php:1074 inc/customizer.php:1082 inc/customizer.php:1106 #, php-format msgid "%s Username" msgstr "%s نام کاربری" -#: ../inc/customizer.php:509 -#, php-format -msgctxt "[noun] [translation string] (explanation)" -msgid "%1$s Username %2$s" -msgstr "%1$s نام کاربری %2$s" - -#: ../inc/customizer.php:509 +#: inc/customizer.php:689 inc/customizer.php:714 msgid " (or the long number in your profile URL)" msgstr "" -#: ../inc/customizer.php:551 ../inc/customizer.php:768 +#: inc/customizer.php:762 inc/customizer.php:1041 inc/customizer.php:1090 +#: inc/customizer.php:1098 #, php-format msgid "%s Profile URL" msgstr "%s آدرس پروفایل" -#: ../inc/customizer.php:670 ../inc/customizer.php:691 -#: ../inc/customizer.php:705 ../inc/customizer.php:712 +#: inc/customizer.php:851 inc/customizer.php:925 inc/customizer.php:950 +#: inc/customizer.php:967 inc/customizer.php:976 #, php-format msgid "%s Site URL" msgstr "%s آدرس سایت" -#: ../inc/customizer.php:719 ../inc/customizer.php:754 +#: inc/customizer.php:868 inc/customizer.php:1123 #, php-format -msgid "%s User ID" -msgstr "" +msgid "%s Link" +msgstr "%s پیوند" -#: ../inc/customizer.php:817 +#: inc/customizer.php:985 inc/customizer.php:1025 #, php-format -msgid "%s Group Name" -msgstr "%s نام گروه" +msgid "%s User ID" +msgstr "" -#: ../inc/customizer.php:831 +#: inc/customizer.php:1114 msgid "Email Address" msgstr "ادرس ایمیل" -#: ../inc/customizer.php:838 -#, php-format -msgid "%s Link" -msgstr "%s پیوند" - -#: ../inc/customizer.php:845 +#: inc/customizer.php:1132 msgid "RSS Feed" msgstr "خوراک RSS" -#: ../inc/customizer.php:858 +#: inc/customizer.php:1146 msgid "Content Options" msgstr "تنظیمات محتوا" -#: ../inc/customizer.php:930 +#: inc/customizer.php:1148 +#, php-format +msgctxt "(blog name)'s content." +msgid "These options change the display of %s's content" +msgstr "" + +#: inc/customizer.php:1225 +msgid "Load Latin Extended character set. This will increase page load times." +msgstr "" + +#: inc/customizer.php:1232 msgid "" "Use entry excerpts instead of full text on site home. Excludes sticky posts." msgstr "" -#: ../inc/customizer.php:937 +#: inc/customizer.php:1239 msgid "Use entry excerpts on archive, category, and author pages." msgstr "" -#: ../inc/customizer.php:944 +#: inc/customizer.php:1246 msgid "Display posts' featured images when excerpts are shown." msgstr "" -#: ../inc/customizer.php:951 +#: inc/customizer.php:1253 msgid "Display a post's featured image on its individual page." msgstr "نمایش تصویر شاخص پست در صفحات فردی" -#: ../inc/customizer.php:958 +#: inc/customizer.php:1260 msgid "Show tags on front page (tags will be shown on post's individual page)" msgstr "" "نمای برچسب ها در پایین صفحه ( در صورت غیر فعال بودن نیز برچسب ها در صفحات " "فردی نمایش داده میشوند)" -#: ../inc/customizer.php:965 +#: inc/customizer.php:1267 msgid "" "Show categories on front page (categories will be shown on post's individual " "page)" @@ -510,35 +441,35 @@ msgstr "" "نمایش ظبقه بندی در پایین صفحه ( در صورت غیر فعال بودن نیز طبقه بندی در " "صفحات فردی نمایش داده میشود) " -#: ../inc/customizer.php:972 +#: inc/customizer.php:1274 msgid "Show author's name, profile image, and bio after posts" msgstr "نمایش نام،عکس پروفایل،و بیو بعد از پست ها " -#: ../inc/customizer.php:979 +#: inc/customizer.php:1281 msgid "Entry Date Position" msgstr "حالت ورودی تاریخ" -#: ../inc/customizer.php:983 +#: inc/customizer.php:1285 msgid "Above Header" msgstr "بالاتر از هدر" -#: ../inc/customizer.php:984 +#: inc/customizer.php:1286 msgid "Below Header" msgstr "پایین هدر" -#: ../inc/customizer.php:990 +#: inc/customizer.php:1292 msgid "Show Page Headers" msgstr "نمایش عنوان صفحه " -#: ../inc/customizer.php:997 +#: inc/customizer.php:1299 msgid "Show entry date for post excepts on the main page" msgstr "نمایش تاریخ ارسال پست به جز در صفحه اصلی " -#: ../inc/customizer.php:1004 +#: inc/customizer.php:1306 msgid "Add an arrow before the title of a link post" msgstr "اضافه کردن کمان قبل از عنوان لینک نوشته" -#: ../inc/customizer.php:1011 +#: inc/customizer.php:1313 msgid "" "Show Theme Info (display a line of text about the theme and its creator at " "the bottom of pages)" @@ -546,110 +477,268 @@ msgstr "" "نمایش اطلاعات قالب(نمایش نام سازنده قالب ته صفحه) \"متعرجم : بی فرهنگی در " "نیاز این تیک رو ور ندار\"" -#: ../inc/customizer.php:1020 +#: inc/customizer.php:1322 msgid "Text (colophon, copyright, credits, etc.) for the footer of the site" msgstr "متن (شرایط کپی رایت،نام پیدید آورنده و...)" -#: ../inc/customizer.php:1033 +#: inc/customizer.php:1336 msgid "Other Options" msgstr "دیگر تنظیمات" -#: ../inc/customizer.php:1052 +#: inc/customizer.php:1337 +msgid "" +"Custom CSS is longer recommended. This feature is no longer allowed in " +"Decode. To continue using these tweaks, copy and paste your CSS into a " +"custom CSS plugin such as Jetpack. Get help here." +msgstr "" + +#: inc/customizer.php:1357 msgid "Custom CSS" msgstr "CSS کاستوم" -#: ../inc/customizer.php:1059 +#: inc/customizer.php:1368 msgid "Show the following post types on home blog page. (Separate with commas)" msgstr "" -#: ../inc/customizer.php:1098 +#: inc/customizer.php:1407 msgid "Accent Color" msgstr "" -#: ../inc/customizer.php:1105 +#: inc/customizer.php:1408 +msgid "The main color used for links, borders, buttons, and more." +msgstr "" + +#: inc/customizer.php:1415 msgid "Active Link Color" msgstr "" -#: ../inc/customizer.php:1112 +#: inc/customizer.php:1416 +msgid "" +"The color for currently clicked links.
(Try using a darker color than the " +"Accent Color.)" +msgstr "" + +#: inc/customizer.php:1423 msgid "Text Color" msgstr "رنگ متن" -#: ../inc/customizer.php:1119 +#: inc/customizer.php:1424 +#, fuzzy +msgid "The main text color." +msgstr "رنگ متن" + +#: inc/customizer.php:1431 msgid "Secondary Text Color" msgstr "رنگ دوم متن " -#: ../inc/customizer.php:1126 +#: inc/customizer.php:1432 +msgid "" +"Text color used for text of secondary importance.
(Try using a lighter " +"color than the main Text Color.)" +msgstr "" + +#: inc/customizer.php:1439 msgid "Use accent color instead of text color for icons" msgstr "" -#: ../inc/extras.php:104 -msgid "Category" -msgstr "طبقه بندی " +#: inc/extras.php:95 +#, fuzzy, php-format +msgid "Page %s" +msgstr "صفحه" -#: ../inc/extras.php:107 -msgid "Tag" -msgstr "برچسب" +#: inc/template-tags.php:42 +msgid "Website" +msgstr "وب سایت" -#: ../inc/extras.php:110 -msgid "Author" -msgstr "نویسنده" +#: inc/template-tags.php:131 +#, php-format +msgctxt "post date" +msgid "Posted on %s" +msgstr "" -#: ../inc/extras.php:120 ../inc/extras.php:124 -msgid "Page " -msgstr "صفحه" +#: inc/template-tags.php:136 +#, php-format +msgctxt "post author" +msgid "by %s" +msgstr "" -#: ../inc/template-tags.php:23 +#: inc/template-tags.php:158 msgid "Posts navigation" msgstr "" -#: ../inc/template-tags.php:27 -msgid " Older posts" -msgstr " پست های قدیمی تر" +#: inc/template-tags.php:162 +msgid "Older posts" +msgstr "" -#: ../inc/template-tags.php:31 -msgid "Newer posts " -msgstr "پست های جدیدتر " +#: inc/template-tags.php:166 +#, fuzzy +msgid "Newer posts" +msgstr "مطالب اخیر" -#: ../inc/template-tags.php:56 +#: inc/template-tags.php:189 msgid "Post navigation" msgstr "" -#: ../inc/template-tags.php:59 -msgctxt "Previous post link" -msgid " %title" -msgstr "" +#: inc/template-tags.php:214 +#, fuzzy, php-format +msgid "Category: %s" +msgstr "طبقه بندی " + +#: inc/template-tags.php:216 +#, fuzzy, php-format +msgid "Tag: %s" +msgstr "روز: %s" + +#: inc/template-tags.php:220 +#, php-format +msgid "Year: %s" +msgstr "سال: %s" -#: ../inc/template-tags.php:60 -msgctxt "Next post link" -msgid "%title " +#: inc/template-tags.php:220 +msgctxt "yearly archives date format" +msgid "Y" msgstr "" -#: ../inc/template-tags.php:138 +#: inc/template-tags.php:222 #, php-format -msgid "" -"Posted on %1$s by %2$s" +msgid "Month: %s" +msgstr "ماه: %s" + +#: inc/template-tags.php:222 +msgctxt "monthly archives date format" +msgid "F Y" msgstr "" -"منتشر شده در %1$s توسط %2$s" -#: ../inc/template-tags.php:146 +#: inc/template-tags.php:224 #, php-format -msgid "View all posts by %s" -msgstr "نمایش تمام پست های %s" +msgid "Day: %s" +msgstr "روز: %s" + +#: inc/template-tags.php:224 +msgctxt "daily archives date format" +msgid "F j, Y" +msgstr "" -#: ../page-explore.php:11 +#: inc/template-tags.php:227 +msgctxt "post format archive title" +msgid "Asides" +msgstr "" + +#: inc/template-tags.php:229 +#, fuzzy +msgctxt "post format archive title" +msgid "Galleries" +msgstr "گالری ها" + +#: inc/template-tags.php:231 +#, fuzzy +msgctxt "post format archive title" +msgid "Images" +msgstr "تصاویر" + +#: inc/template-tags.php:233 +#, fuzzy +msgctxt "post format archive title" +msgid "Videos" +msgstr "ویدیو ها" + +#: inc/template-tags.php:235 +#, fuzzy +msgctxt "post format archive title" +msgid "Quotes" +msgstr "نقل قول شدن ها" + +#: inc/template-tags.php:237 +#, fuzzy +msgctxt "post format archive title" +msgid "Links" +msgstr "پیوند ها" + +#: inc/template-tags.php:239 +#, fuzzy +msgctxt "post format archive title" +msgid "Statuses" +msgstr "استاتوس ها" + +#: inc/template-tags.php:241 +#, fuzzy +msgctxt "post format archive title" +msgid "Audio" +msgstr "شنیدنی ها" + +#: inc/template-tags.php:243 +#, fuzzy +msgctxt "post format archive title" +msgid "Chats" +msgstr "گفت و گو ها" + +#: inc/template-tags.php:246 +#, fuzzy, php-format +msgid "Archives: %s" +msgstr "آرشیو" + +#: inc/template-tags.php:250 +#, fuzzy, php-format +msgid "%1$s: %2$s" +msgstr "%1$s توسط %2$s" + +#: inc/template-tags.php:252 page-explore.php:37 sidebar.php:41 +msgid "Archives" +msgstr "آرشیو" + +#: page-explore.php:11 msgid "Explore Page" msgstr "کاوش صفحه" -#: ../page-explore.php:26 +#: page-explore.php:26 msgid "Recent Posts" msgstr "مطالب اخیر" -#: ../page-explore.php:44 +#: page-explore.php:44 msgid "Categories" msgstr "دسته بندی ها" -#: ../sidebar.php:15 +#: sidebar.php:11 +#, fuzzy +msgid "Hide sidebar" +msgstr "نوار کناری" + +#: sidebar.php:26 msgid "Navigation" msgstr "ناوبری" + +#~ msgid " Previous" +#~ msgstr " بازگشت" + +#~ msgid "Next " +#~ msgstr "بعدی " + +#~ msgctxt "[noun] [translation string] (explanation)" +#~ msgid "%1$s Username %2$s" +#~ msgstr "%1$s نام کاربری %2$s" + +#~ msgid "%s Group Name" +#~ msgstr "%s نام گروه" + +#~ msgid "Tag" +#~ msgstr "برچسب" + +#~ msgid "Author" +#~ msgstr "نویسنده" + +#~ msgid " Older posts" +#~ msgstr " پست های قدیمی تر" + +#~ msgid "Newer posts " +#~ msgstr "پست های جدیدتر " + +#~ msgid "" +#~ "Posted on %1$s by %2$s" +#~ msgstr "" +#~ "منتشر شده در %1$s توسط %2$s" + +#~ msgid "View all posts by %s" +#~ msgstr "نمایش تمام پست های %s" diff --git a/languages/fr_FR.mo b/languages/fr_FR.mo index f2740a7508104a111177a09dbcf7a3c4768cd5eb..76d83d95ea6f43bf03724f1ce4179be74398f54c 100644 GIT binary patch delta 1931 zcmYk+Z%kEn9LMqRfm?#tt0;64uIV-6Uw~fVUJyh{Q8cj<%^1_xbZR~TF|$9@jYI2! z8?Ba|i0O1{^+c+VaE2wJo$wH}Q$Oj2gMs`*ZGL^EbZd_4}QB&hO9n z_dEQv#&2`S=S4=0(oHNNzREG{$J!^jP;NeHR*iq)OpMMjn}u=Y&&s&W#u|)bYiK7v zMSC;m<6hKz2XHRBSPOQPN}L-%U>;sU4K$8=VIpi#Vi9eJhvs1%)vm@2u0*|e5P8&G z)N@BLg2yq2r*IB_i?bQuE>O`xzu*?U9{gZd$FyIk-G)7Q0@cAoEW{i}Q%7;s02R0c zYmi6mBh&;(QJMG#_5P1oj+fMCe4C^~b}d5wG?6H(!!cq;ro%04MGrI^5_$Q-Q;wb0%|@~@P=$qgN%BlrwnKy`Q% zwW0~+&mMBoiu34|F{}vHaV0Lq4s5`k$e)dHQ9om0+ec;KB5ER+Tq^UajH5okzfmhF zVphAb95umVF1>gfmHH{vA?xAO(R({kU(p~Jouv_c3s0aXP{48*VF~K_79^?WzDh-V zwFi~b4^bT)M-6-i^}_e4jxLAyf5$G`f1(aqJFC!P>_#o9hl>W>k0tmCR^b@Fhrc3c z!nKY3x}O`zP@m7t(rkx)_#Ev)R7Ynqi9exceixPcDSQ{>G_-(^aUGsSW%4%G<0STA z6{{J*A<zzfVPb{1@&_HvIbNC`&N9}zj8||P5<5p1gyRxM%=_ZsB6;1SI zqE!vb+AP7fl53Rlt%7)-SWc+uU<98LW{4$36QP5tOiY(@D#6}jb9l1@IYPFYXbJC4 zlcGWrg6(cc9blL33%*?l(k8Wf6{St5l`~`;h+0B>PNHlnQAdz{%Oy4uDr{@;PfA}y z4N*p@M6%dQ)H%_a;GAjw*`mXt{pL^vpPKIK+nz3MRFZ@~uQZ{OL#!ZPAeIp-FJ-Y+ zp<*%7s7kVG;6U==-rdQ*fqicz_r2ZkwdM_Z3-kNEWBJSc-|{OQZ$|W<_b58*HOAI@ zgR!JP5%Y7r(*=+GFXw*k#4>fMhPqTb*-+n_PJ7!56OZ4?q`VIb@8>ozN&D{CO2*Z=?k delta 2674 zcmZY9ZERCj9LMp~t=nJ^Fxc3@u~C7IF&MCo4cLY-HV|PlU@$-#P}pTwMq7J3z{iTl z7m^6d72^akhVWuyl%zxwCdN49L-2*+g`g2*&=^d7AOs_d2EV_ylO~+(e?O=9;oSfE zpK}*&ywMW*ZnXQ5p=}|?D^iVlR;F{Hl@Bv!Do({rY{zWegc-O4N1%;a_)Nn6IELS^ z;cz^Om3Rhg@d`3d#FTJ#6ep(PbexX`_%L#h*^A0$U&5DAiM)zR0P49f zaWsCNIR6Xk#V#J!^K&?4@P4z1j&59rZtTPy+=?SHh??Qks23iRh zlwloiM~(9V=HVBp@xDjB=PIW0e)9(%FWy9wG@ZOfGwDW^@Cj7r2XQKXh70f->IKyt zN^v3T_jV3x7)B-b7;>xGi%MWWHseu@=!VO5RI;B@OK}aCpqpvy!R4p{*P{~Kgi6dt z4fs6jxjs|{PGB8oad9;+LXCF_wP(J?Li}+g^`~$C;gE~j9Q3;w8N*cKMr=g(rRhV8 zWM0P>>_@6@e#6Q57tX>GvT4OO)C7;9UVIES(G%E-r$$l#d2~jz0aV&nT!Xt%Ge3tf zrx}(}iidw>s2pyH;733cC z4%XtwI1&Fwy`Y$zWEpBkGf^|ILv5}mRAts8xf*ZcdKi^J1WWKRR^u5|f{|b8XyBBw z@e^67Qh87rmm`0sj)VR`w4r9&gI)L}D)Gyx#BSgQyoFl24dddQ`aRV1A0l%ymyr7- z<~kj1uA6A1>#lf0y*Pp2PoW+>iVZk`)A3JKDJL^M?U}WxJz$}hXdk+<50%(aRHDaG z;|*YizW-B^IjaXPYJ%pO#t`;f_*7f}iJBe|Q;u^fNEJ(yh_--OR$ zkl*J~pLsLupz)4l1@AYf>1d$K=)n|zXhxHe+)NGb#x~Sf@F{AB=kQ+q2DKy;J;qdF z4X#5A19%p-q?LEaD^iQvJM|c`=q#qQ6i=YOg6nucmaqf0sd~_bYMTj_U-zpzY8`}T zu9v9PYQqR79NT1ba3-O~(6J;J;Rdb$PN^Og~6s?N$-FMgN@`g}b}?~i?U^Euf_v=Md03St$pmKbVF5*_W4rbJ)MGL2B# zS^n5324;p1Gzu77GF4UWzBoqze`0IgjQT9p782UIY=_tm--7z4wPte(t+~GWDa2wz zZ8b58&_A!CHi6E1LVKx_Xdx;HE$K2sOI@p-+)3yQP}>;C@O8y@bt!Hl^xv|SA#0Z}&}$oADo(ys=HF@u8`^rhtdJ)du*0_VNQOV# z_H|jdY3dC>6bLz&GU_wDVXHe3dNev_Sh>r+)7x!1^~0~Zef}M`Q<2%1YwaF-JU$+; zDRr-~_Jo~4ep!(^vB5n(JmD@4`@%ie?HiqsGMBhKPHI+Z-cX)NcPrxwcV-+P#H{KK zge^NdCF@kmu?sn_^bQga*wL>>yzR=FU0F4&vZ}^YT~%K**Ex_|lze7(wR1Z6YHHn# zdC|8x=nnlr_d75Tl*c\n" "Language-Team: \n" "Language: fr_FR\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -"X-Generator: Poedit 1.6.9\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" @@ -48,83 +48,7 @@ msgid "Most Used Categories" msgstr "Catégories les plus utilisées" # @ decode -#: archive.php:27 -#, php-format -msgid "Day: %s" -msgstr "Jour: %s" - -# @ decode -#: archive.php:30 -#, php-format -msgid "Month: %s" -msgstr "Mois: %s" - -#: archive.php:30 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "" - -# @ decode -#: archive.php:33 -#, php-format -msgid "Year: %s" -msgstr "Année: %s" - -#: archive.php:33 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "" - -# @ decode -#: archive.php:36 -msgid "Asides" -msgstr "Apartés" - -# @ decode -#: archive.php:39 -#, fuzzy -msgid "Galleries" -msgstr "Catégories" - -# @ decode -#: archive.php:42 -msgid "Images" -msgstr "Images" - -# @ decode -#: archive.php:45 -msgid "Videos" -msgstr "Vidéos" - -# @ decode -#: archive.php:48 -msgid "Quotes" -msgstr "Citations" - -# @ decode -#: archive.php:51 -msgid "Links" -msgstr "Liens" - -#: archive.php:54 -msgid "Statuses" -msgstr "" - -#: archive.php:57 -msgid "Audios" -msgstr "" - -#: archive.php:60 -msgid "Chats" -msgstr "" - -# @ decode -#: archive.php:63 inc/extras.php:113 page-explore.php:37 sidebar.php:41 -msgid "Archives" -msgstr "Archives" - -# @ decode -#: author.php:26 +#: author.php:26 inc/template-tags.php:218 #, php-format msgid "Author: %s" msgstr "Auteur: %s" @@ -307,7 +231,7 @@ msgstr "Image de l'en-tête" #: functions.php:34 #, fuzzy msgid "Sidebar Menu" -msgstr "Colonne latérale" +msgstr "Menu de navigation" #: functions.php:35 #, fuzzy @@ -315,22 +239,27 @@ msgid "Footer Menu" msgstr "Image de l'en-tête" # @ decode -#: functions.php:140 +#: functions.php:148 msgid "Sidebar" msgstr "Colonne latérale" -#: functions.php:142 +#: functions.php:150 msgctxt "sidebar description" msgid "Only displayed if sidebar remains enabled in the Customize menu." msgstr "" +#: functions.php:239 +#, fuzzy +msgid "Google Profile URL" +msgstr "%s URL du profil" + # @ decode -#: header.php:34 +#: header.php:33 msgid "Skip to content" msgstr "Voir le contenu" # @ decode -#: header.php:38 +#: header.php:37 #, fuzzy msgid "Show sidebar" msgstr "Colonne latérale" @@ -348,39 +277,37 @@ msgstr "" "image\">%4$s × %5$s dans %8$s" -# @ decode #: image.php:34 -msgid " Previous" -msgstr " Précédent" +msgid "Previous" +msgstr "" -# @ decode #: image.php:35 -msgid "Next " -msgstr "Suivant " +msgid "Next" +msgstr "" -#: inc/customizer.php:145 +#: inc/customizer.php:153 msgid "Header Options" msgstr "Options de l'en-tête" -#: inc/customizer.php:180 +#: inc/customizer.php:188 #, fuzzy msgid "Favicon Image (must be a PNG)" msgstr "Favicon (format PNG recommandé)" -#: inc/customizer.php:187 +#: inc/customizer.php:195 msgid "Show Site Title" msgstr "Afficher le titre du site" -#: inc/customizer.php:194 +#: inc/customizer.php:202 msgid "Show Site Description" msgstr "Afficher la description du site" -#: inc/customizer.php:201 +#: inc/customizer.php:209 #, fuzzy msgid "Show Header Menu" msgstr "Image de l'en-tête" -#: inc/customizer.php:208 +#: inc/customizer.php:216 msgid "" "HTML for description, if you wish to replace your blog description with HTML " "markup" @@ -389,179 +316,175 @@ msgstr "" "blog par une balise HTML." # @ decode -#: inc/customizer.php:222 +#: inc/customizer.php:230 msgid "Sidebar Options" msgstr "Options de la colonne latérale" # @ decode -#: inc/customizer.php:250 +#: inc/customizer.php:258 msgid "Enable Sidebar" msgstr "Activer la colonne latérale" # @ decode -#: inc/customizer.php:257 +#: inc/customizer.php:265 msgid "Sidebar Position" msgstr "Position de la colonne latérale" -#: inc/customizer.php:262 inc/customizer.php:274 +#: inc/customizer.php:270 inc/customizer.php:282 msgid "Left" msgstr "Gauche" -#: inc/customizer.php:263 inc/customizer.php:275 +#: inc/customizer.php:271 inc/customizer.php:283 msgid "Right" msgstr "Droit" -#: inc/customizer.php:269 +#: inc/customizer.php:277 msgid "Sidebar Button Position" msgstr "Position du bouton de la colonne latérale" -#: inc/customizer.php:281 +#: inc/customizer.php:289 msgid "Always Visible Sidebar" msgstr "Colonne latérale toujours visible" -#: inc/customizer.php:286 +#: inc/customizer.php:294 msgctxt "Sidebar option" msgid "Always open" msgstr "" -#: inc/customizer.php:287 +#: inc/customizer.php:295 msgctxt "Sidebar option" msgid "Closed by default" msgstr "" -#: inc/customizer.php:299 +#: inc/customizer.php:307 msgid "Discussion Options" msgstr "Option de discussion" # @ decode -#: inc/customizer.php:316 +#: inc/customizer.php:324 msgid "Enable Comments" msgstr "Activer les commentaires" -#: inc/customizer.php:323 +#: inc/customizer.php:331 msgid "Show allowed HTML tags on comment form" msgstr "" -#: inc/customizer.php:336 +#: inc/customizer.php:344 msgid "Social Options" msgstr "Options de réseaux sociaux" -#: inc/customizer.php:637 inc/customizer.php:644 +#: inc/customizer.php:650 inc/customizer.php:657 msgid "Show Social Icons" msgstr "Afficher les icônes de réseaux sociaux" -#: inc/customizer.php:637 +#: inc/customizer.php:650 #, fuzzy msgid "in Header" -msgstr "Image de l'en-tête" +msgstr "Options de l’en-tête" -#: inc/customizer.php:644 +#: inc/customizer.php:657 #, fuzzy msgid "in Footer" msgstr "Image de l'en-tête" -#: inc/customizer.php:651 +#: inc/customizer.php:664 msgid "Open Links in New Tab/Window" msgstr "" -#: inc/customizer.php:659 inc/customizer.php:667 inc/customizer.php:675 -#: inc/customizer.php:684 inc/customizer.php:692 inc/customizer.php:700 -#: inc/customizer.php:709 inc/customizer.php:717 inc/customizer.php:725 -#: inc/customizer.php:733 inc/customizer.php:741 inc/customizer.php:758 -#: inc/customizer.php:766 inc/customizer.php:774 inc/customizer.php:782 -#: inc/customizer.php:790 inc/customizer.php:798 inc/customizer.php:806 -#: inc/customizer.php:814 inc/customizer.php:822 inc/customizer.php:839 -#: inc/customizer.php:856 inc/customizer.php:864 inc/customizer.php:872 -#: inc/customizer.php:880 inc/customizer.php:888 inc/customizer.php:896 -#: inc/customizer.php:913 inc/customizer.php:921 inc/customizer.php:938 -#: inc/customizer.php:972 inc/customizer.php:980 inc/customizer.php:988 -#: inc/customizer.php:996 inc/customizer.php:1012 inc/customizer.php:1029 -#: inc/customizer.php:1037 inc/customizer.php:1045 inc/customizer.php:1053 -#: inc/customizer.php:1061 inc/customizer.php:1069 inc/customizer.php:1085 +#: inc/customizer.php:672 inc/customizer.php:680 inc/customizer.php:688 +#: inc/customizer.php:697 inc/customizer.php:705 inc/customizer.php:713 +#: inc/customizer.php:722 inc/customizer.php:730 inc/customizer.php:738 +#: inc/customizer.php:746 inc/customizer.php:754 inc/customizer.php:771 +#: inc/customizer.php:779 inc/customizer.php:787 inc/customizer.php:795 +#: inc/customizer.php:803 inc/customizer.php:811 inc/customizer.php:819 +#: inc/customizer.php:827 inc/customizer.php:835 inc/customizer.php:843 +#: inc/customizer.php:860 inc/customizer.php:877 inc/customizer.php:885 +#: inc/customizer.php:893 inc/customizer.php:901 inc/customizer.php:909 +#: inc/customizer.php:917 inc/customizer.php:934 inc/customizer.php:942 +#: inc/customizer.php:959 inc/customizer.php:993 inc/customizer.php:1001 +#: inc/customizer.php:1009 inc/customizer.php:1017 inc/customizer.php:1033 +#: inc/customizer.php:1050 inc/customizer.php:1058 inc/customizer.php:1066 +#: inc/customizer.php:1074 inc/customizer.php:1082 inc/customizer.php:1106 #, php-format msgid "%s Username" msgstr "%s Nom d'utilisateur" -#: inc/customizer.php:676 inc/customizer.php:701 +#: inc/customizer.php:689 inc/customizer.php:714 msgid " (or the long number in your profile URL)" msgstr "(ou la suite de chiffre dans l'URL de votre profil)" -#: inc/customizer.php:749 inc/customizer.php:1020 +#: inc/customizer.php:762 inc/customizer.php:1041 inc/customizer.php:1090 +#: inc/customizer.php:1098 #, php-format msgid "%s Profile URL" msgstr "%s URL du profil" -#: inc/customizer.php:830 inc/customizer.php:904 inc/customizer.php:929 -#: inc/customizer.php:946 inc/customizer.php:955 +#: inc/customizer.php:851 inc/customizer.php:925 inc/customizer.php:950 +#: inc/customizer.php:967 inc/customizer.php:976 #, php-format msgid "%s Site URL" msgstr "%s URL du site" # @ decode -#: inc/customizer.php:847 inc/customizer.php:1102 +#: inc/customizer.php:868 inc/customizer.php:1123 #, php-format msgid "%s Link" msgstr "%s Liens" -#: inc/customizer.php:964 inc/customizer.php:1004 -#, php-format +#: inc/customizer.php:985 inc/customizer.php:1025 +#, fuzzy, php-format msgid "%s User ID" -msgstr "" - -#: inc/customizer.php:1077 -#, php-format -msgid "%s Group Name" -msgstr "" +msgstr "Jour: %s" -#: inc/customizer.php:1093 +#: inc/customizer.php:1114 msgid "Email Address" msgstr "Adresse email" -#: inc/customizer.php:1111 +#: inc/customizer.php:1132 msgid "RSS Feed" msgstr "Flux RSS" -#: inc/customizer.php:1125 +#: inc/customizer.php:1146 #, fuzzy msgid "Content Options" -msgstr "Autres options" +msgstr "Voir le contenu" -#: inc/customizer.php:1127 +#: inc/customizer.php:1148 #, php-format msgctxt "(blog name)'s content." msgid "These options change the display of %s's content" msgstr "" -#: inc/customizer.php:1204 +#: inc/customizer.php:1225 msgid "Load Latin Extended character set. This will increase page load times." msgstr "" -#: inc/customizer.php:1211 +#: inc/customizer.php:1232 msgid "" "Use entry excerpts instead of full text on site home. Excludes sticky posts." msgstr "" "Utiliser l'extrait à la place du texte entier sur la page d'accueil, à " "l'exception des articles mis en avant." -#: inc/customizer.php:1218 +#: inc/customizer.php:1239 msgid "Use entry excerpts on archive, category, and author pages." msgstr "" -#: inc/customizer.php:1225 +#: inc/customizer.php:1246 msgid "Display posts' featured images when excerpts are shown." msgstr "" -#: inc/customizer.php:1232 +#: inc/customizer.php:1253 msgid "Display a post's featured image on its individual page." msgstr "" -#: inc/customizer.php:1239 +#: inc/customizer.php:1260 msgid "Show tags on front page (tags will be shown on post's individual page)" msgstr "" "Afficher les tags sur la page d'accueil (les tags seront affichés sur la " "page de chaque article)" -#: inc/customizer.php:1246 +#: inc/customizer.php:1267 msgid "" "Show categories on front page (categories will be shown on post's individual " "page)" @@ -569,36 +492,44 @@ msgstr "" "Afficher les catégories sur la page d'accueil (les catégories seront " "affichées sur la page de chaque article)" -#: inc/customizer.php:1253 +#: inc/customizer.php:1274 msgid "Show author's name, profile image, and bio after posts" msgstr "" "Afficher le nom de l'auteur, l'image du profil et la bio après les articles" -#: inc/customizer.php:1260 +#: inc/customizer.php:1281 msgid "Entry Date Position" msgstr "" -#: inc/customizer.php:1264 +#: inc/customizer.php:1285 +#, fuzzy msgid "Above Header" -msgstr "" +msgstr "Options de l’en-tête" -#: inc/customizer.php:1265 +#: inc/customizer.php:1286 +#, fuzzy msgid "Below Header" -msgstr "" +msgstr "Options de l’en-tête" -#: inc/customizer.php:1271 +#: inc/customizer.php:1292 +#, fuzzy msgid "Show Page Headers" msgstr "" +"Afficher les tags sur la page d’accueil (les tags seront affichés sur la " +"page de chaque article)" -#: inc/customizer.php:1278 +#: inc/customizer.php:1299 +#, fuzzy msgid "Show entry date for post excepts on the main page" msgstr "" +"Afficher les tags sur la page d’accueil (les tags seront affichés sur la " +"page de chaque article)" -#: inc/customizer.php:1285 +#: inc/customizer.php:1306 msgid "Add an arrow before the title of a link post" msgstr "Ajouter une ombre devant le titre d'un lien d'article" -#: inc/customizer.php:1292 +#: inc/customizer.php:1313 msgid "" "Show Theme Info (display a line of text about the theme and its creator at " "the bottom of pages)" @@ -606,139 +537,240 @@ msgstr "" "Montrer les informations sur le thème (intègre une ligne sur le nom du thème " "et de son créateur à la fin des pages)" -#: inc/customizer.php:1301 +#: inc/customizer.php:1322 msgid "Text (colophon, copyright, credits, etc.) for the footer of the site" msgstr "" "Texte (colophon, copyright, credits, etc.) pour le rooter de votre site" -#: inc/customizer.php:1315 +#: inc/customizer.php:1336 msgid "Other Options" msgstr "Autres options" -#: inc/customizer.php:1334 +#: inc/customizer.php:1337 +msgid "" +"Custom CSS is longer recommended. This feature is no longer allowed in " +"Decode. To continue using these tweaks, copy and paste your CSS into a " +"custom CSS plugin such as Jetpack. Get help here." +msgstr "" + +#: inc/customizer.php:1357 msgid "Custom CSS" msgstr "Personnaliser le CSS" -#: inc/customizer.php:1345 +#: inc/customizer.php:1368 msgid "Show the following post types on home blog page. (Separate with commas)" msgstr "" # @ decode -#: inc/customizer.php:1384 +#: inc/customizer.php:1407 msgid "Accent Color" msgstr "Couleur du soulignement" -#: inc/customizer.php:1385 +#: inc/customizer.php:1408 msgid "The main color used for links, borders, buttons, and more." msgstr "" # @ decode -#: inc/customizer.php:1392 +#: inc/customizer.php:1415 msgid "Active Link Color" msgstr "Couleur du lien actif" -#: inc/customizer.php:1393 +#: inc/customizer.php:1416 msgid "" "The color for currently clicked links.
(Try using a darker color than the " "Accent Color.)" msgstr "" # @ decode -#: inc/customizer.php:1400 +#: inc/customizer.php:1423 msgid "Text Color" msgstr "Couleur du texte" # @ decode -#: inc/customizer.php:1401 +#: inc/customizer.php:1424 #, fuzzy msgid "The main text color." msgstr "Couleur du texte" # @ decode -#: inc/customizer.php:1408 +#: inc/customizer.php:1431 msgid "Secondary Text Color" msgstr "Seconde couleur du texte" -#: inc/customizer.php:1409 +#: inc/customizer.php:1432 msgid "" "Text color used for text of secondary importance.
(Try using a lighter " "color than the main Text Color.)" msgstr "" -#: inc/customizer.php:1416 +#: inc/customizer.php:1439 msgid "Use accent color instead of text color for icons" msgstr "" "Utiliser la couleur de soulignement à la place de la couleur du texte pour " "les icônes" # @ decode -#: inc/extras.php:104 -msgid "Category" -msgstr "Catégorie" +#: inc/extras.php:95 +#, fuzzy, php-format +msgid "Page %s" +msgstr "Page" -# @ decode -#: inc/extras.php:107 -msgid "Tag" -msgstr "Tag" +#: inc/template-tags.php:42 +msgid "Website" +msgstr "Site" -# @ decode -#: inc/extras.php:110 -msgid "Author" -msgstr "Auteur" +#: inc/template-tags.php:131 +#, php-format +msgctxt "post date" +msgid "Posted on %s" +msgstr "" -# @ decode -#: inc/extras.php:120 inc/extras.php:124 -msgid "Page " -msgstr "Page" +#: inc/template-tags.php:136 +#, fuzzy, php-format +msgctxt "post author" +msgid "by %s" +msgstr "Jour: %s" # @ decode -#: inc/template-tags.php:40 +#: inc/template-tags.php:158 msgid "Posts navigation" msgstr "" -# @ decode -#: inc/template-tags.php:44 -msgid " Older posts" -msgstr " Articles précédents" +#: inc/template-tags.php:162 +msgid "Older posts" +msgstr "" # @ decode -#: inc/template-tags.php:48 -msgid "Newer posts " -msgstr "Articles suivants " +#: inc/template-tags.php:166 +#, fuzzy +msgid "Newer posts" +msgstr "Articles récents" # @ decode -#: inc/template-tags.php:73 +#: inc/template-tags.php:189 msgid "Post navigation" msgstr "Navigation dans les articles" # @ decode -#: inc/template-tags.php:76 -msgctxt "Previous post link" -msgid " %title" -msgstr " " +#: inc/template-tags.php:214 +#, fuzzy, php-format +msgid "Category: %s" +msgstr "Catégorie" # @ decode -#: inc/template-tags.php:77 -msgctxt "Next post link" -msgid "%title " -msgstr "%title " +#: inc/template-tags.php:216 +#, fuzzy, php-format +msgid "Tag: %s" +msgstr "Jour: %s" -#: inc/template-tags.php:101 -msgid "Website" -msgstr "Site" +# @ decode +#: inc/template-tags.php:220 +#, php-format +msgid "Year: %s" +msgstr "Année: %s" -#: inc/template-tags.php:190 +#: inc/template-tags.php:220 +msgctxt "yearly archives date format" +msgid "Y" +msgstr "" + +# @ decode +#: inc/template-tags.php:222 #, php-format -msgctxt "post date" -msgid "Posted on %s" +msgid "Month: %s" +msgstr "Mois: %s" + +#: inc/template-tags.php:222 +msgctxt "monthly archives date format" +msgid "F Y" msgstr "" -#: inc/template-tags.php:195 +# @ decode +#: inc/template-tags.php:224 #, php-format -msgctxt "post author" -msgid "by %s" +msgid "Day: %s" +msgstr "Jour: %s" + +#: inc/template-tags.php:224 +msgctxt "daily archives date format" +msgid "F j, Y" +msgstr "" + +# @ decode +#: inc/template-tags.php:227 +#, fuzzy +msgctxt "post format archive title" +msgid "Asides" +msgstr "Apartés" + +# @ decode +#: inc/template-tags.php:229 +#, fuzzy +msgctxt "post format archive title" +msgid "Galleries" +msgstr "Catégories" + +# @ decode +#: inc/template-tags.php:231 +#, fuzzy +msgctxt "post format archive title" +msgid "Images" +msgstr "Images" + +# @ decode +#: inc/template-tags.php:233 +#, fuzzy +msgctxt "post format archive title" +msgid "Videos" +msgstr "Vidéos" + +# @ decode +#: inc/template-tags.php:235 +#, fuzzy +msgctxt "post format archive title" +msgid "Quotes" +msgstr "Citations" + +# @ decode +#: inc/template-tags.php:237 +#, fuzzy +msgctxt "post format archive title" +msgid "Links" +msgstr "Liens" + +#: inc/template-tags.php:239 +msgctxt "post format archive title" +msgid "Statuses" +msgstr "" + +#: inc/template-tags.php:241 +msgctxt "post format archive title" +msgid "Audio" +msgstr "" + +#: inc/template-tags.php:243 +msgctxt "post format archive title" +msgid "Chats" msgstr "" +# @ decode +#: inc/template-tags.php:246 +#, fuzzy, php-format +msgid "Archives: %s" +msgstr "Archives" + +# @ decode +#: inc/template-tags.php:250 +#, fuzzy, php-format +msgid "%1$s: %2$s" +msgstr "%1$s à %2$s" + +# @ decode +#: inc/template-tags.php:252 page-explore.php:37 sidebar.php:41 +msgid "Archives" +msgstr "Archives" + #: page-explore.php:11 msgid "Explore Page" msgstr "Explorer la page" @@ -765,6 +797,40 @@ msgstr "Colonne latérale" msgid "Navigation" msgstr "Afficher le navigation" +# @ decode +#~ msgid " Previous" +#~ msgstr " Précédent" + +# @ decode +#~ msgid "Next " +#~ msgstr "Suivant " + +# @ decode +#~ msgid "Tag" +#~ msgstr "Tag" + +# @ decode +#~ msgid "Author" +#~ msgstr "Auteur" + +# @ decode +#~ msgid " Older posts" +#~ msgstr " Articles précédents" + +# @ decode +#~ msgid "Newer posts " +#~ msgstr "Articles suivants " + +# @ decode +#~ msgctxt "Previous post link" +#~ msgid " %title" +#~ msgstr " " + +# @ decode +#~ msgctxt "Next post link" +#~ msgid "%title " +#~ msgstr "%title " + # @ decode #, fuzzy #~ msgctxt "[noun] [translation string] (explanation)" diff --git a/languages/nl_NL.mo b/languages/nl_NL.mo index 82d1b8e2c40ac07a0320442de802f670bee297e6..cd764398b3794364d23cbfd3062c998c8300b046 100644 GIT binary patch delta 2527 zcmYk-eN5F=9LMo<0h1?rG*AM$2q_fUy*w%<4}lVip@3ov@({?QmYHmYbeXl~Y>T#^ zxwSO}TU+76&Fdf5CWTb1h%Mc$vXOyx{m|J6J|^ndNCY#VI=Os#drXta1bN#DC)Z7PJJBj zr~V=GGcz1?|6D+yxynf_4L2|w?_vV3;whoH9`(SD9CYJW$K6hQA1`Pq&2 zfin^~KTW}B?@kd<3`%NBi(F4m-FWQFcKqt0gFOn4V4Qiy{p+<5OmD)SV&qVT; z2QdjXm1U^*X4Gu`GPNF(;7Iptu zsOztyI&=&9nIQhC_BhnYGjJ8YiiLP8hWyuYa-9Y*7I3v**o9R%iJGfBn27gK9Z6uK z^@4QdR+EQGScz_IasEDxjLE!-O?Uz|CI4b2hQ^bBrE)X*&%hn%!6B@{Ni4>HP#q~` z*ve1|He(g8!}l-?uc4+Yj5Nr2bYlvt<0aUDn^0?J%*V;iAY-O*H4PKX0v)=9>iN&8 z7vFN~w^1VqULF{EG?EnKM(vth)QhW8FRXWLMFws5q8EpeM;YH4PISX8DifDcH_oF{ z`7fI zsleAz51K{o*DI)0&!aN(7qSjbs5{V}jM@cxs18aHWz?ei6qTYcu>&t+B^L5|TZ4nBR8Kgb#bD}FsQWKq6@HB_ zjN_{#^N37>wd@pMK=o27Yb5FkbxON|ftXxE>8~L)s%#>JP|>I=h#q1qp^sNFkwX*_ z>}tDcy{IVLb%X}>43XB)K_gu#WX9|wG&&Zpo&GG;dQf5Q*dwh)t!|ah0QOPyx{YAK z_P=zy(K)nO7y00oQA;5-!OCR;!Jf1~$Y4+O77QXZsoJy)<#FdkUyxoxbE2YsxPjP7 zv=R%YofECh45z`(g0ugF=nJrec#_bjSJBE~FWW_578OkL|1#{Oy==8Y`iR}c9zsjfLsTnIVOo!EM7K2;UTtMWG+Ngp zUb6N@Zt!1-9CleXQO{X3QNLT~qEA|X$Fy7RvANa{v7`Q>xbwmOs)SupjDdgwZ_v=_^UGh2=-TG McDVefvl?9g0rq_V!TNES zKltQ+@9R0wJv_g@&pG8geP18S{%L99%Z75CSgj~D<}F#m7vq#@3VoVqPy@Vx8u)vBX+m$J7Wy{Y_%3EO(29HfEvZ4R zunm=~C~D_kxQkDvxRfSTx2$mSUb8PlYYe`-!FVgI94 zJQ~j8A5i~bj(t^*pGBI?H*go8Ms;)zHNbULE^nYZEN0odzY4X02T%ic1?>Z<9UH-V z{IHV!Z=v!j4SUg|w_ON!0J{Q)4=t=R{0aFCE;4pMpVu_Q4{D3 z+6Pe!8b$3)5|x_c$lT3K$l1%9i&VZyLk?T;8fqfT7+uyN={1e0)I^avnGEXiej9Zb zP6wVv?a1q>9sD7xpLb9b`9*Mj6<6!||1%YJ^lwy0CDr~6EARoX>rg8lK&9YNaD583 z;#W}}zk!?ar`U#nM@^*uet#z-s2$jfy8lsJo~3e-incI~+Ts(at@{CL1@GVxeh{=* zS^oXCsFgM2S8+Q&fj>jiZI-PuhB=rGsO!g23v>dfFgr!VEEVm*C&(t4zXsO}*ZNz% z7`38x7(pAg6EC86<}xaUS8yHPMlGne#@~TvRR3F1_eTTw*0BF-uxU_-Gk6xyqqeS# zqp#E4i`u#YjN%AtfD5Smeu6qwmrz^#d*q2We+k-eq8`(VI)6dcIKg#mU6vC}AE=ynkSAUVCW=bI0n|bq)IjOr`gzph^-%X;Kuzotj^mXq zm0~Kb>{|hDN3AT1591!xS@2eC1)`IhGR$bx#mS?W(k!&geI$E6T1mEIRE0& zs#UZL^MwVB$6kI8j092~jyl=qXTIRjR!u zrIlGFS4GEI%TqZ@?8?`Sc^VstLgJ~QEfzS1hlquQa-(A9zx}@=O1MMx6MBQqm#
    yBH@5!LngdEg-+0XY^2p#`sLPd{C zhA1OQ8-?))AxY?XA0}#u1H^pM8${(l(^8})0aHIQ=VV#$na?&j|L#E3i7(H|dkQr1k;O}pN2OOI8$u`$Or z-I=jiQlux6DQ{<4?;<<=!GjrLzXvL z(b^L%>W-W5etCYk-m4YoiuPoZX~)fVE`Gltyf1C1GcF4qw8wL|mv)4ThFEvf&270i zv|!8TNK<2^X_M95)V`@L(%9D6ST@if*~{L#v1B5$gS}|Cnj4$$xNmb)Zfe=`P(jOv zt+|uSCqqh~Gvg*~d)oV~Y9f0#Gq#43so1#l|0FL%@*F>VrYAY)B&-R?rpt5V_a!y}Fp zAB!c%okXr{btL4C-*rB%}w3^&w_G4gAMrv4%axL;(P)d+}zJ=_lN!iZ6F2x diff --git a/languages/nl_NL.po b/languages/nl_NL.po index 8da8d00..d91b518 100644 --- a/languages/nl_NL.po +++ b/languages/nl_NL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Decode v2.9.1\n" "Report-Msgid-Bugs-To: http://wordpress.org/support/theme/decode\n" -"POT-Creation-Date: 2014-10-13 21:38-0800\n" -"PO-Revision-Date: 2014-10-13 21:41-0800\n" +"POT-Creation-Date: 2015-02-04 21:44-0800\n" +"PO-Revision-Date: 2015-02-04 21:50-0800\n" "Last-Translator: Scott Smith \n" "Language-Team: Scott Smith \n" "Language: nl_NL\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.6.9\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" @@ -44,72 +44,7 @@ msgstr "Kijk eens in de maandelijkse archieven." msgid "Most Used Categories" msgstr "Meest gebruikte categorieën." -#: archive.php:27 -#, php-format -msgid "Day: %s" -msgstr "Dag: %s" - -#: archive.php:30 -#, php-format -msgid "Month: %s" -msgstr "Maand: %s" - -#: archive.php:30 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "F Y" - -#: archive.php:33 -#, php-format -msgid "Year: %s" -msgstr "Jaar: %s" - -#: archive.php:33 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "Y" - -#: archive.php:36 -msgid "Asides" -msgstr "Erbij" - -#: archive.php:39 -msgid "Galleries" -msgstr "Gallerijen" - -#: archive.php:42 -msgid "Images" -msgstr "Afbeeldingen" - -#: archive.php:45 -msgid "Videos" -msgstr "Video's" - -#: archive.php:48 -msgid "Quotes" -msgstr "Qoutes" - -#: archive.php:51 -msgid "Links" -msgstr "Links" - -#: archive.php:54 -msgid "Statuses" -msgstr "Status'" - -#: archive.php:57 -msgid "Audios" -msgstr "Audio" - -#: archive.php:60 -msgid "Chats" -msgstr "Chats" - -#: archive.php:63 inc/extras.php:113 page-explore.php:37 sidebar.php:41 -msgid "Archives" -msgstr "Archieven" - -#: author.php:26 +#: author.php:26 inc/template-tags.php:218 #, php-format msgid "Author: %s" msgstr "Auteur: %s" @@ -272,21 +207,26 @@ msgstr "Sidebar menu" msgid "Footer Menu" msgstr "Footer menu" -#: functions.php:140 +#: functions.php:148 msgid "Sidebar" msgstr "Sidebar" -#: functions.php:142 +#: functions.php:150 msgctxt "sidebar description" msgid "Only displayed if sidebar remains enabled in the Customize menu." msgstr "" "Wordt alleen getoond wanneer de sidebar aanstaat in het Customize menu." -#: header.php:34 +#: functions.php:239 +#, fuzzy +msgid "Google Profile URL" +msgstr "%s Profiel-URL" + +#: header.php:33 msgid "Skip to content" msgstr "Ga door naar content" -#: header.php:38 +#: header.php:37 #, fuzzy msgid "Show sidebar" msgstr "Sidebar" @@ -303,34 +243,34 @@ msgstr "" "\"gallery\">%5$s" #: image.php:34 -msgid " Previous" -msgstr " Vorige" +msgid "Previous" +msgstr "" #: image.php:35 -msgid "Next " -msgstr "Volgende " +msgid "Next" +msgstr "" -#: inc/customizer.php:145 +#: inc/customizer.php:153 msgid "Header Options" msgstr "Header opties" -#: inc/customizer.php:180 +#: inc/customizer.php:188 msgid "Favicon Image (must be a PNG)" msgstr "Favicon afbeelding (moet een .PNG zijn)" -#: inc/customizer.php:187 +#: inc/customizer.php:195 msgid "Show Site Title" msgstr "Toon site titel" -#: inc/customizer.php:194 +#: inc/customizer.php:202 msgid "Show Site Description" msgstr "Toon site beschrijving" -#: inc/customizer.php:201 +#: inc/customizer.php:209 msgid "Show Header Menu" msgstr "Toon header menu" -#: inc/customizer.php:208 +#: inc/customizer.php:216 msgid "" "HTML for description, if you wish to replace your blog description with HTML " "markup" @@ -338,171 +278,167 @@ msgstr "" "HTML voor omschrijving, als je je blog omschrijving wilt vervangen door HTML " "markering" -#: inc/customizer.php:222 +#: inc/customizer.php:230 msgid "Sidebar Options" msgstr "Sidebar opties" -#: inc/customizer.php:250 +#: inc/customizer.php:258 msgid "Enable Sidebar" msgstr "Activeer sidebar" -#: inc/customizer.php:257 +#: inc/customizer.php:265 msgid "Sidebar Position" msgstr "Sidebar positie" -#: inc/customizer.php:262 inc/customizer.php:274 +#: inc/customizer.php:270 inc/customizer.php:282 msgid "Left" msgstr "Links" -#: inc/customizer.php:263 inc/customizer.php:275 +#: inc/customizer.php:271 inc/customizer.php:283 msgid "Right" msgstr "Rechts" -#: inc/customizer.php:269 +#: inc/customizer.php:277 msgid "Sidebar Button Position" msgstr "Sidebar knop positie" -#: inc/customizer.php:281 +#: inc/customizer.php:289 msgid "Always Visible Sidebar" msgstr "Sidebar altijd zichtbaar" -#: inc/customizer.php:286 +#: inc/customizer.php:294 msgctxt "Sidebar option" msgid "Always open" msgstr "Altijd geopend" -#: inc/customizer.php:287 +#: inc/customizer.php:295 msgctxt "Sidebar option" msgid "Closed by default" msgstr "Standaard gesloten" -#: inc/customizer.php:299 +#: inc/customizer.php:307 msgid "Discussion Options" msgstr "Discussie opties" -#: inc/customizer.php:316 +#: inc/customizer.php:324 msgid "Enable Comments" msgstr "Activeer reacties" -#: inc/customizer.php:323 +#: inc/customizer.php:331 msgid "Show allowed HTML tags on comment form" msgstr "Toon toegestane HTML tags op reacties formulier" -#: inc/customizer.php:336 +#: inc/customizer.php:344 msgid "Social Options" msgstr "Social media opties" -#: inc/customizer.php:637 inc/customizer.php:644 +#: inc/customizer.php:650 inc/customizer.php:657 msgid "Show Social Icons" msgstr "Toon social media iconen" -#: inc/customizer.php:637 +#: inc/customizer.php:650 msgid "in Header" msgstr "in header" -#: inc/customizer.php:644 +#: inc/customizer.php:657 msgid "in Footer" msgstr "in footer" -#: inc/customizer.php:651 +#: inc/customizer.php:664 msgid "Open Links in New Tab/Window" msgstr "Open links in een nieuw tabblad / scherm" -#: inc/customizer.php:659 inc/customizer.php:667 inc/customizer.php:675 -#: inc/customizer.php:684 inc/customizer.php:692 inc/customizer.php:700 -#: inc/customizer.php:709 inc/customizer.php:717 inc/customizer.php:725 -#: inc/customizer.php:733 inc/customizer.php:741 inc/customizer.php:758 -#: inc/customizer.php:766 inc/customizer.php:774 inc/customizer.php:782 -#: inc/customizer.php:790 inc/customizer.php:798 inc/customizer.php:806 -#: inc/customizer.php:814 inc/customizer.php:822 inc/customizer.php:839 -#: inc/customizer.php:856 inc/customizer.php:864 inc/customizer.php:872 -#: inc/customizer.php:880 inc/customizer.php:888 inc/customizer.php:896 -#: inc/customizer.php:913 inc/customizer.php:921 inc/customizer.php:938 -#: inc/customizer.php:972 inc/customizer.php:980 inc/customizer.php:988 -#: inc/customizer.php:996 inc/customizer.php:1012 inc/customizer.php:1029 -#: inc/customizer.php:1037 inc/customizer.php:1045 inc/customizer.php:1053 -#: inc/customizer.php:1061 inc/customizer.php:1069 inc/customizer.php:1085 +#: inc/customizer.php:672 inc/customizer.php:680 inc/customizer.php:688 +#: inc/customizer.php:697 inc/customizer.php:705 inc/customizer.php:713 +#: inc/customizer.php:722 inc/customizer.php:730 inc/customizer.php:738 +#: inc/customizer.php:746 inc/customizer.php:754 inc/customizer.php:771 +#: inc/customizer.php:779 inc/customizer.php:787 inc/customizer.php:795 +#: inc/customizer.php:803 inc/customizer.php:811 inc/customizer.php:819 +#: inc/customizer.php:827 inc/customizer.php:835 inc/customizer.php:843 +#: inc/customizer.php:860 inc/customizer.php:877 inc/customizer.php:885 +#: inc/customizer.php:893 inc/customizer.php:901 inc/customizer.php:909 +#: inc/customizer.php:917 inc/customizer.php:934 inc/customizer.php:942 +#: inc/customizer.php:959 inc/customizer.php:993 inc/customizer.php:1001 +#: inc/customizer.php:1009 inc/customizer.php:1017 inc/customizer.php:1033 +#: inc/customizer.php:1050 inc/customizer.php:1058 inc/customizer.php:1066 +#: inc/customizer.php:1074 inc/customizer.php:1082 inc/customizer.php:1106 #, php-format msgid "%s Username" msgstr "%s Gebruikersnaam" -#: inc/customizer.php:676 inc/customizer.php:701 +#: inc/customizer.php:689 inc/customizer.php:714 msgid " (or the long number in your profile URL)" msgstr "(of het lange nummer in je profiel-URL)" -#: inc/customizer.php:749 inc/customizer.php:1020 +#: inc/customizer.php:762 inc/customizer.php:1041 inc/customizer.php:1090 +#: inc/customizer.php:1098 #, php-format msgid "%s Profile URL" msgstr "%s Profiel-URL" -#: inc/customizer.php:830 inc/customizer.php:904 inc/customizer.php:929 -#: inc/customizer.php:946 inc/customizer.php:955 +#: inc/customizer.php:851 inc/customizer.php:925 inc/customizer.php:950 +#: inc/customizer.php:967 inc/customizer.php:976 #, php-format msgid "%s Site URL" msgstr "%s Site-URL" -#: inc/customizer.php:847 inc/customizer.php:1102 +#: inc/customizer.php:868 inc/customizer.php:1123 #, php-format msgid "%s Link" msgstr "%s Link" -#: inc/customizer.php:964 inc/customizer.php:1004 +#: inc/customizer.php:985 inc/customizer.php:1025 #, php-format msgid "%s User ID" msgstr "%s Gebruikers-ID" -#: inc/customizer.php:1077 -#, php-format -msgid "%s Group Name" -msgstr "%s Groepsnaam" - -#: inc/customizer.php:1093 +#: inc/customizer.php:1114 msgid "Email Address" msgstr "Email adres" -#: inc/customizer.php:1111 +#: inc/customizer.php:1132 msgid "RSS Feed" msgstr "RSS feed" -#: inc/customizer.php:1125 +#: inc/customizer.php:1146 msgid "Content Options" msgstr "Content opties" -#: inc/customizer.php:1127 +#: inc/customizer.php:1148 #, php-format msgctxt "(blog name)'s content." msgid "These options change the display of %s's content" msgstr "" -#: inc/customizer.php:1204 +#: inc/customizer.php:1225 msgid "Load Latin Extended character set. This will increase page load times." msgstr "" -#: inc/customizer.php:1211 +#: inc/customizer.php:1232 msgid "" "Use entry excerpts instead of full text on site home. Excludes sticky posts." msgstr "" "Gebruik entry excerpten inplaats van volledige tekst op thuispagina. " "Exclusief sticky posts." -#: inc/customizer.php:1218 +#: inc/customizer.php:1239 msgid "Use entry excerpts on archive, category, and author pages." msgstr "Gebruik entry excerpten in archief, categorie en auteur pagina's." -#: inc/customizer.php:1225 +#: inc/customizer.php:1246 msgid "Display posts' featured images when excerpts are shown." msgstr "Toon post afbeeldingen wanneer excerpten getoond worden." -#: inc/customizer.php:1232 +#: inc/customizer.php:1253 msgid "Display a post's featured image on its individual page." msgstr "Toon een post afbeelding op zijn individuele pagina." -#: inc/customizer.php:1239 +#: inc/customizer.php:1260 msgid "Show tags on front page (tags will be shown on post's individual page)" msgstr "" "Toon tags op frontpagina (tags worden getoond op de individuele post pagina)." -#: inc/customizer.php:1246 +#: inc/customizer.php:1267 msgid "" "Show categories on front page (categories will be shown on post's individual " "page)" @@ -510,35 +446,35 @@ msgstr "" "Toon categorieën op frontpagina (categorieën worden getoond op de " "individuele post pagina)." -#: inc/customizer.php:1253 +#: inc/customizer.php:1274 msgid "Show author's name, profile image, and bio after posts" msgstr "Toon auteurs naam, profiel afbeelding en biografie na posts" -#: inc/customizer.php:1260 +#: inc/customizer.php:1281 msgid "Entry Date Position" msgstr "Plaatsingsdatum positie" -#: inc/customizer.php:1264 +#: inc/customizer.php:1285 msgid "Above Header" msgstr "Boven header" -#: inc/customizer.php:1265 +#: inc/customizer.php:1286 msgid "Below Header" msgstr "Onder header" -#: inc/customizer.php:1271 +#: inc/customizer.php:1292 msgid "Show Page Headers" msgstr "Toon pagina headers" -#: inc/customizer.php:1278 +#: inc/customizer.php:1299 msgid "Show entry date for post excepts on the main page" msgstr "Toon plaatsingsdatum van post excerpten op hoofdpagina" -#: inc/customizer.php:1285 +#: inc/customizer.php:1306 msgid "Add an arrow before the title of a link post" msgstr "Voeg een pijl toe voor de titel van een link-post" -#: inc/customizer.php:1292 +#: inc/customizer.php:1313 msgid "" "Show Theme Info (display a line of text about the theme and its creator at " "the bottom of pages)" @@ -546,122 +482,221 @@ msgstr "" "Toon thema info (voegt een regel tekst over het thema en de ontwerper toe " "aan de footer van de pagina's)" -#: inc/customizer.php:1301 +#: inc/customizer.php:1322 msgid "Text (colophon, copyright, credits, etc.) for the footer of the site" msgstr "" "Text (kolofoon, copyright, credits, etcetera) voor de folter van de site" -#: inc/customizer.php:1315 +#: inc/customizer.php:1336 msgid "Other Options" msgstr "Andere opties" -#: inc/customizer.php:1334 +#: inc/customizer.php:1337 +msgid "" +"Custom CSS is longer recommended. This feature is no longer allowed in " +"Decode. To continue using these tweaks, copy and paste your CSS into a " +"custom CSS plugin such as Jetpack. Get help here." +msgstr "" + +#: inc/customizer.php:1357 msgid "Custom CSS" msgstr "Aangepaste CSS" -#: inc/customizer.php:1345 +#: inc/customizer.php:1368 msgid "Show the following post types on home blog page. (Separate with commas)" msgstr "" "Toon de volgende post types op de thuis-blog pagina. (Scheiden met komma's)" -#: inc/customizer.php:1384 +#: inc/customizer.php:1407 msgid "Accent Color" msgstr "Accent kleur" -#: inc/customizer.php:1385 +#: inc/customizer.php:1408 msgid "The main color used for links, borders, buttons, and more." msgstr "" -#: inc/customizer.php:1392 +#: inc/customizer.php:1415 msgid "Active Link Color" msgstr "Actieve link kleur" -#: inc/customizer.php:1393 +#: inc/customizer.php:1416 msgid "" "The color for currently clicked links.
    (Try using a darker color than the " "Accent Color.)" msgstr "" -#: inc/customizer.php:1400 +#: inc/customizer.php:1423 msgid "Text Color" msgstr "Tekst kleur" -#: inc/customizer.php:1401 +#: inc/customizer.php:1424 #, fuzzy msgid "The main text color." msgstr "Tekst kleur" -#: inc/customizer.php:1408 +#: inc/customizer.php:1431 msgid "Secondary Text Color" msgstr "Secundaire tekst kleur" -#: inc/customizer.php:1409 +#: inc/customizer.php:1432 msgid "" "Text color used for text of secondary importance.
    (Try using a lighter " "color than the main Text Color.)" msgstr "" -#: inc/customizer.php:1416 +#: inc/customizer.php:1439 msgid "Use accent color instead of text color for icons" msgstr "Gebruik accentkleur in plaats van tekst kleur voor iconen" -#: inc/extras.php:104 -msgid "Category" -msgstr "Categorie" +#: inc/extras.php:95 +#, fuzzy, php-format +msgid "Page %s" +msgstr "Pagina" -#: inc/extras.php:107 -msgid "Tag" -msgstr "Tag" +#: inc/template-tags.php:42 +msgid "Website" +msgstr "Website" -#: inc/extras.php:110 -msgid "Author" -msgstr "Auteur" +#: inc/template-tags.php:131 +#, php-format +msgctxt "post date" +msgid "Posted on %s" +msgstr "" -#: inc/extras.php:120 inc/extras.php:124 -msgid "Page " -msgstr "Pagina" +#: inc/template-tags.php:136 +#, fuzzy, php-format +msgctxt "post author" +msgid "by %s" +msgstr "Dag: %s" -#: inc/template-tags.php:40 +#: inc/template-tags.php:158 msgid "Posts navigation" msgstr "Post navigatie" -#: inc/template-tags.php:44 -msgid " Older posts" -msgstr " Oudere posts" +#: inc/template-tags.php:162 +msgid "Older posts" +msgstr "" -#: inc/template-tags.php:48 -msgid "Newer posts " -msgstr "Nieuwere posts " +#: inc/template-tags.php:166 +#, fuzzy +msgid "Newer posts" +msgstr "Recente posts" -#: inc/template-tags.php:73 +#: inc/template-tags.php:189 msgid "Post navigation" msgstr "Post navigatie" -#: inc/template-tags.php:76 -msgctxt "Previous post link" -msgid " %title" -msgstr " %title" +#: inc/template-tags.php:214 +#, fuzzy, php-format +msgid "Category: %s" +msgstr "Categorie" -#: inc/template-tags.php:77 -msgctxt "Next post link" -msgid "%title " -msgstr "%title " +#: inc/template-tags.php:216 +#, fuzzy, php-format +msgid "Tag: %s" +msgstr "Dag: %s" -#: inc/template-tags.php:101 -msgid "Website" -msgstr "Website" +#: inc/template-tags.php:220 +#, php-format +msgid "Year: %s" +msgstr "Jaar: %s" -#: inc/template-tags.php:190 +#: inc/template-tags.php:220 +msgctxt "yearly archives date format" +msgid "Y" +msgstr "Y" + +#: inc/template-tags.php:222 #, php-format -msgctxt "post date" -msgid "Posted on %s" -msgstr "" +msgid "Month: %s" +msgstr "Maand: %s" + +#: inc/template-tags.php:222 +msgctxt "monthly archives date format" +msgid "F Y" +msgstr "F Y" -#: inc/template-tags.php:195 +#: inc/template-tags.php:224 #, php-format -msgctxt "post author" -msgid "by %s" +msgid "Day: %s" +msgstr "Dag: %s" + +#: inc/template-tags.php:224 +msgctxt "daily archives date format" +msgid "F j, Y" +msgstr "" + +#: inc/template-tags.php:227 +#, fuzzy +msgctxt "post format archive title" +msgid "Asides" +msgstr "Erbij" + +#: inc/template-tags.php:229 +#, fuzzy +msgctxt "post format archive title" +msgid "Galleries" +msgstr "Gallerijen" + +#: inc/template-tags.php:231 +#, fuzzy +msgctxt "post format archive title" +msgid "Images" +msgstr "Afbeeldingen" + +#: inc/template-tags.php:233 +#, fuzzy +msgctxt "post format archive title" +msgid "Videos" +msgstr "Video's" + +#: inc/template-tags.php:235 +#, fuzzy +msgctxt "post format archive title" +msgid "Quotes" +msgstr "Qoutes" + +#: inc/template-tags.php:237 +#, fuzzy +msgctxt "post format archive title" +msgid "Links" +msgstr "Links" + +#: inc/template-tags.php:239 +#, fuzzy +msgctxt "post format archive title" +msgid "Statuses" +msgstr "Status'" + +#: inc/template-tags.php:241 +#, fuzzy +msgctxt "post format archive title" +msgid "Audio" +msgstr "Audio" + +#: inc/template-tags.php:243 +#, fuzzy +msgctxt "post format archive title" +msgid "Chats" +msgstr "Chats" + +#: inc/template-tags.php:246 +#, fuzzy, php-format +msgid "Archives: %s" +msgstr "Archieven" + +#: inc/template-tags.php:250 +#, fuzzy, php-format +msgid "%1$s: %2$s" msgstr "" +"Geplaatst in %5$s" + +#: inc/template-tags.php:252 page-explore.php:37 sidebar.php:41 +msgid "Archives" +msgstr "Archieven" #: page-explore.php:11 msgid "Explore Page" @@ -684,6 +719,35 @@ msgstr "Sidebar" msgid "Navigation" msgstr "Navigatie" +#~ msgid " Previous" +#~ msgstr " Vorige" + +#~ msgid "Next " +#~ msgstr "Volgende " + +#~ msgid "%s Group Name" +#~ msgstr "%s Groepsnaam" + +#~ msgid "Tag" +#~ msgstr "Tag" + +#~ msgid "Author" +#~ msgstr "Auteur" + +#~ msgid " Older posts" +#~ msgstr " Oudere posts" + +#~ msgid "Newer posts " +#~ msgstr "Nieuwere posts " + +#~ msgctxt "Previous post link" +#~ msgid " %title" +#~ msgstr " %title" + +#~ msgctxt "Next post link" +#~ msgid "%title " +#~ msgstr "%title " + #~ msgctxt "[noun] [translation string] (explanation)" #~ msgid "%1$s Username %2$s" #~ msgstr "%1$s Gebruikersnaam %2$s" diff --git a/languages/pl_PL.mo b/languages/pl_PL.mo index 6647f3fc2c394bd42ca1b73cc9b2e6b220b042c5..18c5057c1ac96c19b4e5cbead39c0d462a2b7f32 100644 GIT binary patch delta 2761 zcmZA2S!`5Q9LMo9(}mJ9(uJke0yAA1%D~W0TME^(wFTKrTV!jcRZs+4)+z)BUMxn? z#v3q-)+h-j!Kh@2igkIQK_!F-#6&{U1VIg{5wvLZ!RYrlb4(ge?*D$yy>pjy{^y)K zS6hEv9qvz$KV~Q$L^g3P&X|*UWEeY2X0kDU9EWUX9=j2^6m`j3d#C`VsO$;Y;;w}}n=uc!bajC|znGAN_n1>pI3#cKwjA}?f z>b`tVCSWnDAv2Jl%o1cXP3+X5cGUAp{Kf9I7FGn1$b=7w_5M(?*ehvS@rXdmRQ*V|Nti^H4K32>G}e8&TJtL^ZS@mC2uQJ>Csdsi3li=4+XCVm+Qk zjcsCP%vAJpoQ3M)EF@`W0rCj526f+d)Fix!%UQ~|aT3R+47}z-6Y9P#sE&sZP*IAG zqEgn4>e2hClwQDbcmwC)AE@ifd5aoSiyGT{cB^+On!x$Gp>nb4@*!Dor!vGEs_+o z4##Ny@3uc2LG|<<)C+sD62C#EEYTZ#Q6@6~j32cOE3pB)Q4P6|dQO5b=0wz(SKvCF zi`(&S91*6HmJ=J>38)lRp<1{QHMT9N)IN{u*>P0Qzec6@Tk8!}W^SPxJcy?-AvbpY zd#DV2j7#t`hIK<0Q&%mVjOtklssS~q8=8?7V|Jm&`Y@7Z(~XPpb1cT;d}VZ8iJR~+ zYWCkl-Cx8SUyoJTh;J2;e~rz3P86bxonGL#R^h`OH=t(gc6`skTOIe2}n;SWIXLHxnw#l8UlO2}eH`n&le_EjLZT3StvcM-&i4 z%UpY~(mKMr3pM5&2z@82i7cX)U^Jpd8CID`Xx=Q-`hT!!+#Vq`UjG-5t!UOxw{=Fy zJVR(^FCsKw9xPh#vxz5&RfOiuG$Mged0Ow+glHyMMbV;}T5szUk!2iR70LFTJ}zm* zd}5A0Cp3>*h8(NvC4z*OtG*$uM6;B5j8M^W^dGGRpCvRaeZ&@`ooFNWIA>FSaa^9g zPM4=Ta@%vz(;>?;g7*9&_hos&A^Bgui++>xGXMehFqx5Ew7 delta 3872 zcmb8xdu)@}8OQOH;3VWiE9iwcbYD*_AT06077j;ZXw7Zotb*xjhR^7fozb`G) z{$WQv`JDIo_&w)5=NyZ-?>;|}{KIU|6Nd5?;!{M}W6W9n$xQxGeq3nGQap_XcnOQ} z3g+PlSd24hq-tiP`Ym*ym*P!4uflfhzrOe6nH)-1VQB&~O1~<0ZGlzp#YoLYAiq zR-j(oi(2_^RQ~|3#tGLSAW1ZTLSA7mqu%pxQ=_@npjNA>?YY5`B9#`}@m z{_0%vuhjjPh8kQ$uO{rnZTKYC<6lq%Rd50|a4qUIM^R_t6yA(yQT={{8t5(5ME;58 zm_sKEE!5|&Nh;dYUfhlMp;r1+oPn>R&cx4g6aE^tB^9?Ab3fMLE_@uD@o&glOznJQ z7UO#KVLxug6sq4vRA!SEOiL@MLJhnOKaY*L79U6L^)&9l_fTi#_6o-xXz_e6YUN2( z$`2!pHpfukdmeSj3pg0PtgIGmb^j+9Ifv&s>Wj~zGV(Gib>~s3x`bNURU`>!ro|OP z3tO=n)$akU!^5~5&!8rD71>2&DxJeQ4_7k2X>=QgP?i9L(gpQ*Q*Yl{ApFy4W zbMEKAa@*fVZPnl1=MPZd%c*iEUWf~Mwou>Sh^rajbW+jG525z<3DnA;Ms2}!s6+S; zYR?u_J1bg@%1Ax3?PfD7<$Z4ZI4VP5MGg2})B@AE4$ojxD}0}d1}xyja05*Rs$(7c zu?ctL5mdh`s2Bgob^a3P>@=blunu*Y+i?$m2ek$BxMCJoqcXXvhWu;hT{JY|AZqW9 zp$~t7TG2~d-y+kEIx_>PJx*W;9>E5D%YD9i8H-duY{uy% z6}=$$R_EH4;~hNjMWyU@WU}V>r~y379m|m$WqhdHvej+hg_`&t)GaxP0X&L%_z}*) zT(6UXWC0bWybO!*HjH5>?!^~z3$CS;Rz8I+#yo`^@Eq#*!n4A8?#CRSzm0`>5;brd z$M6hp#(MUHS0~M0Dmo-5P^rG9-kC@xYNmCVj}2Ii>#!6%(8k@Eg}-#wcB<&RyNEC8 zfx^d`3CD30p-F0d^BD*c%qCNMT~}f^p&Rf3(L?CEmJuo(jm)7{R_;^-MZa(=T|^^s z520-8x@o_a0hJnJt15b-_Gv&5lu=?RQ*+YfRx{V>T3u>u?spr8UAbkMt=fq##43WM zeq1<0nOmd-sM1Cx`}xC`Wd8rR9rqL0N(q&|YY)iT$y`S@eVNE6bY_CY7l>;mLS>xL z$yZrJ=*;NnSX-=eJ29p8KS<>Op|YOPY5g3by}rJTxDOj~$8{gvMLkUDHmK-K%pr6Q z?pWE?n;t}GD#9AUsSVRX=PUv^y5TR0+ zDl51=u+AR!N34Oc-?rCRjRfOj_1M?bM0lcS?g3*Iw<6l^S2T#M2er8&8cbtf^2X zGq4rr8=fWcP&^#`q+{x_l7TEMb){tWR(Dm`b-wZSIj=Q6WBuWfJroS2%Bs6k`%1Uu z_Krp4K|B3Y>GX`E?Qws6%x2v?{DbMkbGK#Z-a#6ocKX7+1KF!qdh31OhBa1wV{>D} zt-gAnub`*fyNy)ap=iXriPSV(4ZeE%)q8zSnSM>_$L9BCd7A3#ed&Lc@61l#$c$Ow zXlybVh=l%+4P@>ydopNEjE3xl>4^rccp^S_ZYnrpI-=od%$i8VUQVa_7EF1&qO5Z` zWJUbeh(9(MiUjRY(DZ~uv<1$+FcEs?=x}r*sBLH0FD_^;>2S6^yvHGkNEBQD@R8o z2_1r>|Jn8as_`s;>U>qB??y7_yw`b2%2WMJZd-ySCeq)l-s>rJb~TaN)T-Je**Tj- N;gLl8^s?pI{{<)REQtUB diff --git a/languages/pl_PL.po b/languages/pl_PL.po index 58f8946..8e385f3 100644 --- a/languages/pl_PL.po +++ b/languages/pl_PL.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Decode 3.0.4\n" "Report-Msgid-Bugs-To: http://wordpress.org/support/theme/decode\n" -"POT-Creation-Date: 2014-10-28 13:32+0100\n" -"PO-Revision-Date: 2014-11-06 13:36-0800\n" +"POT-Creation-Date: 2015-02-04 21:44-0800\n" +"PO-Revision-Date: 2015-02-04 21:49-0800\n" "Last-Translator: Scott Smith \n" "Language-Team: Michał Maciejewski \n" "Language: pl_PL\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "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: Poedit 1.6.10\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" @@ -26,11 +26,11 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPath-1: ..\n" -#: ../404.php:15 +#: 404.php:15 msgid "Oops! That page can’t be found." msgstr "Oj! Takiej strony tu nie ma." -#: ../404.php:19 +#: 404.php:19 msgid "" "It looks like nothing was found at this location. Maybe try one of the links " "below or a search?" @@ -38,86 +38,20 @@ msgstr "" "Pod tym adresem niczego nie ma. Spróbuj skorzystać z wyszukiwarki lub " "poniższych odnośników." -#: ../404.php:26 +#: 404.php:26 msgid "Try looking in the monthly archives." msgstr "Spróbuj przeszukać archwia miesięczne." -#: ../404.php:32 +#: 404.php:32 msgid "Most Used Categories" msgstr "Najczęściej używane kategorie" -#: ../archive.php:27 -#, php-format -msgid "Day: %s" -msgstr "Dzień: %s" - -#: ../archive.php:30 -#, php-format -msgid "Month: %s" -msgstr "Miesiąc: %s" - -#: ../archive.php:30 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "F Y" - -#: ../archive.php:33 -#, php-format -msgid "Year: %s" -msgstr "Rok: %s" - -#: ../archive.php:33 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "Y" - -#: ../archive.php:36 -msgid "Asides" -msgstr "Notatki na marginesie" - -#: ../archive.php:39 -msgid "Galleries" -msgstr "Galerie" - -#: ../archive.php:42 -msgid "Images" -msgstr "Obrazki" - -#: ../archive.php:45 -msgid "Videos" -msgstr "Filmy" - -#: ../archive.php:48 -msgid "Quotes" -msgstr "Cytaty" - -#: ../archive.php:51 -msgid "Links" -msgstr "Odnośniki" - -#: ../archive.php:54 -msgid "Statuses" -msgstr "Statusy" - -#: ../archive.php:57 -msgid "Audios" -msgstr "Pliki dźwiękowe" - -#: ../archive.php:60 -msgid "Chats" -msgstr "Czaty" - -#: ../archive.php:63 ../inc/extras.php:113 ../page-explore.php:37 -#: ../sidebar.php:41 -msgid "Archives" -msgstr "Archiwa" - -#: ../author.php:26 +#: author.php:26 inc/template-tags.php:218 #, php-format msgid "Author: %s" msgstr "Autor: %s" -#: ../comments.php:28 +#: comments.php:28 #, php-format msgctxt "comments title" msgid "One thought on “%2$s”" @@ -126,50 +60,50 @@ msgstr[0] "Jeden komentarz do “%2$s”" msgstr[1] "%1$s komentarze do “%2$s”" msgstr[2] "%1$s komentarzy do “%2$s”" -#: ../comments.php:35 ../comments.php:55 +#: comments.php:35 comments.php:55 msgid "Comment navigation" msgstr "Nawigacja komentarzy" -#: ../comments.php:36 ../comments.php:56 +#: comments.php:36 comments.php:56 msgid "← Older Comments" msgstr "← starsze komentarze" -#: ../comments.php:37 ../comments.php:57 +#: comments.php:37 comments.php:57 msgid "Newer Comments →" msgstr "nowsze komentarze →" -#: ../comments.php:67 +#: comments.php:67 msgid "Comments are closed." msgstr "Komentowanie jest wyłączone." -#: ../comments.php:72 +#: comments.php:72 msgid "Leave a Reply" msgstr "Napisz komentarz" -#: ../comments.php:73 +#: comments.php:73 #, php-format msgid "Leave a Reply to %s" msgstr "Zostaw odpowiedź dla: %s" -#: ../comments.php:74 +#: comments.php:74 msgid "Cancel reply" msgstr "anuluj odpowiedź" -#: ../comments.php:75 +#: comments.php:75 msgid "Post Comment" msgstr "wyślij" -#: ../comments.php:94 +#: comments.php:94 msgctxt "noun" msgid "Comment" msgstr "Komentarz" -#: ../comments.php:95 +#: comments.php:95 #, php-format msgid "You must be logged in to post a comment." msgstr "Musisz zalogować się, żeby opublikować komentarz." -#: ../comments.php:96 +#: comments.php:96 #, php-format msgid "" "Logged in as %2$s. %2$s. Wylogować się?" -#: ../comments.php:97 +#: comments.php:97 msgid "Your email address will not be published." msgstr "Twój adres e-mail nie zostanie opublikowany." -#: ../comments.php:98 +#: comments.php:98 #, php-format msgid "" "You may use these HTML tags " @@ -191,62 +125,60 @@ msgstr "" "Możesz użyć następujących tagów oraz atrybutów języka HTML: %s" -#: ../content-excerpt.php:33 +#: content-excerpt.php:33 msgid "Read More…" msgstr "czytaj dalej…" -#: ../content-excerpt.php:35 ../content-link.php:38 ../content-page.php:32 -#: ../content-quote.php:25 ../content-search.php:20 ../content-single.php:22 -#: ../content-single.php:62 ../content-single.php:106 ../content.php:41 -#: ../image.php:30 +#: content-excerpt.php:35 content-link.php:38 content-page.php:32 +#: content-quote.php:25 content-search.php:20 content-single.php:22 +#: content-single.php:62 content-single.php:106 content.php:41 image.php:30 msgid "Edit" msgstr "edytuj" -#: ../content-link.php:29 ../content-quote.php:15 ../content-single.php:14 -#: ../content-single.php:56 ../content-single.php:98 ../content.php:29 +#: content-link.php:29 content-quote.php:15 content-single.php:14 +#: content-single.php:56 content-single.php:98 content.php:29 msgid "Continue reading " msgstr "Kontynuuj czytanie " -#: ../content-link.php:31 ../content-page.php:28 ../content-quote.php:18 -#: ../content-single.php:17 ../content-single.php:101 ../content.php:32 -#: ../image.php:91 +#: content-link.php:31 content-page.php:28 content-quote.php:18 +#: content-single.php:17 content-single.php:101 content.php:32 image.php:91 msgid "Pages:" msgstr "Strony:" -#: ../content-link.php:35 ../content-quote.php:22 ../content.php:37 +#: content-link.php:35 content-quote.php:22 content.php:37 msgid "Leave a comment" msgstr "Napisz pierwszy komentarz" -#: ../content-link.php:35 ../content-quote.php:22 ../content.php:37 +#: content-link.php:35 content-quote.php:22 content.php:37 msgid "1 Comment" msgstr "Jeden komentarz" -#: ../content-link.php:35 ../content-quote.php:22 ../content.php:37 +#: content-link.php:35 content-quote.php:22 content.php:37 msgid "% Comments" msgstr "Komentarzy: %" -#: ../content-link.php:42 ../content-quote.php:29 ../content-single.php:25 -#: ../content-single.php:65 ../content-single.php:109 ../content.php:45 +#: content-link.php:42 content-quote.php:29 content-single.php:25 +#: content-single.php:65 content-single.php:109 content.php:45 msgid "Tagged as: " msgstr "tagi: " -#: ../content-link.php:45 ../content-quote.php:32 ../content-single.php:26 -#: ../content-single.php:66 ../content-single.php:110 ../content.php:48 +#: content-link.php:45 content-quote.php:32 content-single.php:26 +#: content-single.php:66 content-single.php:110 content.php:48 msgid "Categorized in: " msgstr "kategorie: " -#: ../content-none.php:13 +#: content-none.php:13 msgid "Nothing Found" msgstr "Niczego nie znaleziono" -#: ../content-none.php:19 +#: content-none.php:19 #, php-format msgid "" "Ready to publish your first post? Get started here." msgstr "" "Chcesz opublikować swój pierwszy wpis? Rozpocznij tutaj." -#: ../content-none.php:23 +#: content-none.php:23 msgid "" "Sorry, but nothing matched your search terms. Please try again with some " "different keywords." @@ -254,7 +186,7 @@ msgstr "" "Niestety nie udało się znaleźć podanej przez Ciebie frazy. Spróbuj jeszcze " "raz, z inną frazą." -#: ../content-none.php:28 +#: content-none.php:28 msgid "" "It seems we can’t find what you’re looking for. Perhaps " "searching can help." @@ -262,43 +194,48 @@ msgstr "" "Wydaje się, że tego, czego szukasz, po prostu nie ma. Spróbuj użyć " "wyszukiwarki." -#: ../footer.php:44 +#: footer.php:44 #, php-format msgid "%1$s by %2$s" msgstr "%1$s — %2$s" -#: ../functions.php:33 +#: functions.php:33 msgid "Header Menu" msgstr "Menu w nagłówku" -#: ../functions.php:34 +#: functions.php:34 msgid "Sidebar Menu" msgstr "Menu w panelu bocznym" -#: ../functions.php:35 +#: functions.php:35 msgid "Footer Menu" msgstr "Menu w stopce" -#: ../functions.php:140 +#: functions.php:148 msgid "Sidebar" msgstr "Panel boczny" -#: ../functions.php:142 +#: functions.php:150 msgctxt "sidebar description" msgid "Only displayed if sidebar remains enabled in the Customize menu." msgstr "" "Poniższa zawartość wyświetlana jest tylko wtedy, gdy panel boczny jest " "udostępniony w Opcjach panelu bocznego." -#: ../header.php:34 +#: functions.php:239 +#, fuzzy +msgid "Google Profile URL" +msgstr "%s - URL profilu" + +#: header.php:33 msgid "Skip to content" msgstr "idź do treści" -#: ../header.php:38 +#: header.php:37 msgid "Show sidebar" msgstr "Pokaż panel boczny" -#: ../image.php:22 +#: image.php:22 #, php-format msgid "" "Published r. jako %5$s" -#: ../image.php:34 -msgid " Previous" -msgstr " poprzedni" +#: image.php:34 +msgid "Previous" +msgstr "" -#: ../image.php:35 -msgid "Next " -msgstr "następny " +#: image.php:35 +msgid "Next" +msgstr "" -#: ../inc/customizer.php:146 +#: inc/customizer.php:153 msgid "Header Options" msgstr "Opcje nagłówka" -#: ../inc/customizer.php:181 +#: inc/customizer.php:188 msgid "Favicon Image (must be a PNG)" msgstr "Favicona (w formacie PNG)" -#: ../inc/customizer.php:188 +#: inc/customizer.php:195 msgid "Show Site Title" msgstr "Pokaż tytuł witryny" -#: ../inc/customizer.php:195 +#: inc/customizer.php:202 msgid "Show Site Description" msgstr "Pokaż opis witryny" -#: ../inc/customizer.php:202 +#: inc/customizer.php:209 msgid "Show Header Menu" msgstr "Pokaż menu w nagłówku" -#: ../inc/customizer.php:209 +#: inc/customizer.php:216 msgid "" "HTML for description, if you wish to replace your blog description with HTML " "markup" msgstr "Opcjonalny kod HTML, zastępujący standardowy opis witryny:" -#: ../inc/customizer.php:223 +#: inc/customizer.php:230 msgid "Sidebar Options" msgstr "Opcje panelu bocznego" -#: ../inc/customizer.php:251 +#: inc/customizer.php:258 msgid "Enable Sidebar" msgstr "Udostępnij panel boczny" -#: ../inc/customizer.php:258 +#: inc/customizer.php:265 msgid "Sidebar Position" msgstr "Położenie panelu bocznego" -#: ../inc/customizer.php:263 ../inc/customizer.php:275 +#: inc/customizer.php:270 inc/customizer.php:282 msgid "Left" msgstr "z lewej " -#: ../inc/customizer.php:264 ../inc/customizer.php:276 +#: inc/customizer.php:271 inc/customizer.php:283 msgid "Right" msgstr "z prawej" -#: ../inc/customizer.php:270 +#: inc/customizer.php:277 msgid "Sidebar Button Position" msgstr "Położenie włącznika panelu bocznego" -#: ../inc/customizer.php:282 +#: inc/customizer.php:289 msgid "Always Visible Sidebar" msgstr "Widoczność panelu bocznego" -#: ../inc/customizer.php:287 +#: inc/customizer.php:294 msgctxt "Sidebar option" msgid "Always open" msgstr "Zawsze otwarty" -#: ../inc/customizer.php:288 +#: inc/customizer.php:295 msgctxt "Sidebar option" msgid "Closed by default" msgstr "Domyślnie zamknięty" -#: ../inc/customizer.php:300 +#: inc/customizer.php:307 msgid "Discussion Options" msgstr "Opcje komentarzy" -#: ../inc/customizer.php:317 +#: inc/customizer.php:324 msgid "Enable Comments" msgstr "Włącz komentowanie" -#: ../inc/customizer.php:324 +#: inc/customizer.php:331 msgid "Show allowed HTML tags on comment form" msgstr "Pokaż dozwolone tagi HTML w formularzu komentarza" -#: ../inc/customizer.php:337 +#: inc/customizer.php:344 msgid "Social Options" msgstr "Opcje społecznościowe" -#: ../inc/customizer.php:633 ../inc/customizer.php:640 +#: inc/customizer.php:650 inc/customizer.php:657 msgid "Show Social Icons" msgstr "Pokaż ikony społecznościowe" -#: ../inc/customizer.php:633 +#: inc/customizer.php:650 msgid "in Header" msgstr "w nagłówku" -#: ../inc/customizer.php:640 +#: inc/customizer.php:657 msgid "in Footer" msgstr "w stopce" -#: ../inc/customizer.php:647 +#: inc/customizer.php:664 msgid "Open Links in New Tab/Window" msgstr "Otwieraj odnośniki w nowej zakładce/nowym oknie" -#: ../inc/customizer.php:655 ../inc/customizer.php:663 -#: ../inc/customizer.php:671 ../inc/customizer.php:680 -#: ../inc/customizer.php:688 ../inc/customizer.php:696 -#: ../inc/customizer.php:705 ../inc/customizer.php:713 -#: ../inc/customizer.php:721 ../inc/customizer.php:729 -#: ../inc/customizer.php:737 ../inc/customizer.php:754 -#: ../inc/customizer.php:762 ../inc/customizer.php:770 -#: ../inc/customizer.php:778 ../inc/customizer.php:786 -#: ../inc/customizer.php:794 ../inc/customizer.php:802 -#: ../inc/customizer.php:810 ../inc/customizer.php:818 -#: ../inc/customizer.php:835 ../inc/customizer.php:852 -#: ../inc/customizer.php:860 ../inc/customizer.php:868 -#: ../inc/customizer.php:876 ../inc/customizer.php:884 -#: ../inc/customizer.php:892 ../inc/customizer.php:909 -#: ../inc/customizer.php:917 ../inc/customizer.php:934 -#: ../inc/customizer.php:968 ../inc/customizer.php:976 -#: ../inc/customizer.php:984 ../inc/customizer.php:992 -#: ../inc/customizer.php:1008 ../inc/customizer.php:1025 -#: ../inc/customizer.php:1033 ../inc/customizer.php:1041 -#: ../inc/customizer.php:1049 ../inc/customizer.php:1057 -#: ../inc/customizer.php:1073 +#: inc/customizer.php:672 inc/customizer.php:680 inc/customizer.php:688 +#: inc/customizer.php:697 inc/customizer.php:705 inc/customizer.php:713 +#: inc/customizer.php:722 inc/customizer.php:730 inc/customizer.php:738 +#: inc/customizer.php:746 inc/customizer.php:754 inc/customizer.php:771 +#: inc/customizer.php:779 inc/customizer.php:787 inc/customizer.php:795 +#: inc/customizer.php:803 inc/customizer.php:811 inc/customizer.php:819 +#: inc/customizer.php:827 inc/customizer.php:835 inc/customizer.php:843 +#: inc/customizer.php:860 inc/customizer.php:877 inc/customizer.php:885 +#: inc/customizer.php:893 inc/customizer.php:901 inc/customizer.php:909 +#: inc/customizer.php:917 inc/customizer.php:934 inc/customizer.php:942 +#: inc/customizer.php:959 inc/customizer.php:993 inc/customizer.php:1001 +#: inc/customizer.php:1009 inc/customizer.php:1017 inc/customizer.php:1033 +#: inc/customizer.php:1050 inc/customizer.php:1058 inc/customizer.php:1066 +#: inc/customizer.php:1074 inc/customizer.php:1082 inc/customizer.php:1106 #, php-format msgid "%s Username" msgstr "%s - nazwa użytkownika" -#: ../inc/customizer.php:672 ../inc/customizer.php:697 +#: inc/customizer.php:689 inc/customizer.php:714 msgid " (or the long number in your profile URL)" msgstr "(lub długi numer w adresie URL profilu)" -#: ../inc/customizer.php:745 ../inc/customizer.php:1016 -#: ../inc/customizer.php:1065 +#: inc/customizer.php:762 inc/customizer.php:1041 inc/customizer.php:1090 +#: inc/customizer.php:1098 #, php-format msgid "%s Profile URL" msgstr "%s - URL profilu" -#: ../inc/customizer.php:826 ../inc/customizer.php:900 -#: ../inc/customizer.php:925 ../inc/customizer.php:942 -#: ../inc/customizer.php:951 +#: inc/customizer.php:851 inc/customizer.php:925 inc/customizer.php:950 +#: inc/customizer.php:967 inc/customizer.php:976 #, php-format msgid "%s Site URL" msgstr "%s - URL strony" -#: ../inc/customizer.php:843 ../inc/customizer.php:1090 +#: inc/customizer.php:868 inc/customizer.php:1123 #, php-format msgid "%s Link" msgstr "%s - odnośnik" -#: ../inc/customizer.php:960 ../inc/customizer.php:1000 +#: inc/customizer.php:985 inc/customizer.php:1025 #, php-format msgid "%s User ID" msgstr "%s - ID użytkownika" -#: ../inc/customizer.php:1081 +#: inc/customizer.php:1114 msgid "Email Address" msgstr "Adres e-mail" -#: ../inc/customizer.php:1099 +#: inc/customizer.php:1132 msgid "RSS Feed" msgstr "Kanał RSS" -#: ../inc/customizer.php:1113 +#: inc/customizer.php:1146 msgid "Content Options" msgstr "Opcje treści" -#: ../inc/customizer.php:1115 +#: inc/customizer.php:1148 #, php-format msgctxt "(blog name)'s content." msgid "These options change the display of %s's content" msgstr "Te opcje wpływają na sposób prezentacji treści w witrynie %s." -#: ../inc/customizer.php:1192 +#: inc/customizer.php:1225 msgid "Load Latin Extended character set. This will increase page load times." msgstr "" "Użyj zestawu znaków Latin Extended. Włączenie tej opcji wydłuża czas " "ładowania stron." -#: ../inc/customizer.php:1199 +#: inc/customizer.php:1232 msgid "" "Use entry excerpts instead of full text on site home. Excludes sticky posts." msgstr "" "Pokazuj zajawki zamiast pełnych wpisów na stronie bloga. Nie dotyczy wpisów " "przyklejonych." -#: ../inc/customizer.php:1206 +#: inc/customizer.php:1239 msgid "Use entry excerpts on archive, category, and author pages." msgstr "Pokazuj zajawki w archiwach, kategoriach i archiwach autorów." -#: ../inc/customizer.php:1213 +#: inc/customizer.php:1246 msgid "Display posts' featured images when excerpts are shown." msgstr "Wyświetlaj ikony wpisu kiedy pokazujesz zajawki." -#: ../inc/customizer.php:1220 +#: inc/customizer.php:1253 msgid "Display a post's featured image on its individual page." msgstr "Wyświetlaj ikony wpisu na stronach pojedynczych wpisów." -#: ../inc/customizer.php:1227 +#: inc/customizer.php:1260 msgid "Show tags on front page (tags will be shown on post's individual page)" msgstr "" "Pokazuj tagi na stronie bloga. (Tagi są zawsze pokazywane na stronach " "pojedynczych wpisów.)" -#: ../inc/customizer.php:1234 +#: inc/customizer.php:1267 msgid "" "Show categories on front page (categories will be shown on post's individual " "page)" @@ -522,73 +451,81 @@ msgstr "" "Pokazuj kategorie na stronie bloga. (Kategorie są zawsze pokazywane na " "stronach pojedynczych wpisów.)" -#: ../inc/customizer.php:1241 +#: inc/customizer.php:1274 msgid "Show author's name, profile image, and bio after posts" msgstr "" "Pokazuj podpis autora, obrazek profilowy i notkę biograficzną pod wpisem." -#: ../inc/customizer.php:1248 +#: inc/customizer.php:1281 msgid "Entry Date Position" msgstr "Położenie daty wpisu" -#: ../inc/customizer.php:1252 +#: inc/customizer.php:1285 msgid "Above Header" msgstr "Pod tytułem" -#: ../inc/customizer.php:1253 +#: inc/customizer.php:1286 msgid "Below Header" msgstr "Pod treścią" -#: ../inc/customizer.php:1259 +#: inc/customizer.php:1292 msgid "Show Page Headers" msgstr "Pokaż tytuły stron" -#: ../inc/customizer.php:1266 +#: inc/customizer.php:1299 msgid "Show entry date for post excepts on the main page" msgstr "Pokaż dane wpisu pod zajawkami na głównej stronie bloga" -#: ../inc/customizer.php:1273 +#: inc/customizer.php:1306 msgid "Add an arrow before the title of a link post" msgstr "Dodaj strzałkę przed tytułem - odnośnikiem wpisu" -#: ../inc/customizer.php:1280 +#: inc/customizer.php:1313 msgid "" "Show Theme Info (display a line of text about the theme and its creator at " "the bottom of pages)" msgstr "" "Pokaż info motywu (linijka tekstu o motywie i jego twócy w stopce strony)" -#: ../inc/customizer.php:1289 +#: inc/customizer.php:1322 msgid "Text (colophon, copyright, credits, etc.) for the footer of the site" msgstr "Tekst w stopce (kolofon, prawa autorskie itp.)" -#: ../inc/customizer.php:1303 +#: inc/customizer.php:1336 msgid "Other Options" msgstr "Inne opcje" -#: ../inc/customizer.php:1322 +#: inc/customizer.php:1337 +msgid "" +"Custom CSS is longer recommended. This feature is no longer allowed in " +"Decode. To continue using these tweaks, copy and paste your CSS into a " +"custom CSS plugin such as Jetpack. Get help here." +msgstr "" + +#: inc/customizer.php:1357 msgid "Custom CSS" msgstr "Własny kod CSS" -#: ../inc/customizer.php:1333 +#: inc/customizer.php:1368 msgid "Show the following post types on home blog page. (Separate with commas)" msgstr "" "Na głównej stronie bloga pokaż następujące typy wpisów (oddziel je " "przecinkami):" -#: ../inc/customizer.php:1372 +#: inc/customizer.php:1407 msgid "Accent Color" msgstr "Kolor wyróżniający" -#: ../inc/customizer.php:1373 +#: inc/customizer.php:1408 msgid "The main color used for links, borders, buttons, and more." msgstr "Podstawowy kolor, używany do odnośników, obramowań, przycisków itp." -#: ../inc/customizer.php:1380 +#: inc/customizer.php:1415 msgid "Active Link Color" msgstr "Kolor aktywnych odnośników" -#: ../inc/customizer.php:1381 +#: inc/customizer.php:1416 msgid "" "The color for currently clicked links.
    (Try using a darker color than the " "Accent Color.)" @@ -596,19 +533,19 @@ msgstr "" "Kolor aktualnie klikniętego odnośnika.
    (spróbuj użyć ciemniejszego " "koloru od podstawowego wyróżniającego.)" -#: ../inc/customizer.php:1388 +#: inc/customizer.php:1423 msgid "Text Color" msgstr "Kolor tekstu" -#: ../inc/customizer.php:1389 +#: inc/customizer.php:1424 msgid "The main text color." msgstr "Podstawowy kolor tekstu." -#: ../inc/customizer.php:1396 +#: inc/customizer.php:1431 msgid "Secondary Text Color" msgstr "Drugi kolor tekstu" -#: ../inc/customizer.php:1397 +#: inc/customizer.php:1432 msgid "" "Text color used for text of secondary importance.
    (Try using a lighter " "color than the main Text Color.)" @@ -616,88 +553,205 @@ msgstr "" "Kolor używany w tekstach o drugorzędnym znaczeniu.
    (Spróbuj użyć " "jaśniejszego koloru od podstawowego.)" -#: ../inc/customizer.php:1404 +#: inc/customizer.php:1439 msgid "Use accent color instead of text color for icons" msgstr "Dla ikon zastosuj kolor wyróżniający zamiast koloru tekstu." -#: ../inc/extras.php:104 -msgid "Category" -msgstr "Kategoria" +#: inc/extras.php:95 +#, fuzzy, php-format +msgid "Page %s" +msgstr "Strona" -#: ../inc/extras.php:107 -msgid "Tag" -msgstr "Tag" +#: inc/template-tags.php:42 +msgid "Website" +msgstr "witryna www" -#: ../inc/extras.php:110 -msgid "Author" -msgstr "Autor" +#: inc/template-tags.php:131 +#, php-format +msgctxt "post date" +msgid "Posted on %s" +msgstr "Opublikowano: %s" -#: ../inc/extras.php:120 ../inc/extras.php:124 -msgid "Page " -msgstr "Strona" +#: inc/template-tags.php:136 +#, php-format +msgctxt "post author" +msgid "by %s" +msgstr "r., autor: %s." -#: ../inc/template-tags.php:40 +#: inc/template-tags.php:158 msgid "Posts navigation" msgstr "Nawigacja wpisów" -#: ../inc/template-tags.php:44 -msgid " Older posts" -msgstr " Starsze wpisy" +#: inc/template-tags.php:162 +msgid "Older posts" +msgstr "" -#: ../inc/template-tags.php:48 -msgid "Newer posts " -msgstr "Nowsze wpisy " +#: inc/template-tags.php:166 +#, fuzzy +msgid "Newer posts" +msgstr "Najnowsze wpisy" -#: ../inc/template-tags.php:73 +#: inc/template-tags.php:189 msgid "Post navigation" msgstr "Nawigacja wpisu" -#: ../inc/template-tags.php:76 -msgctxt "Previous post link" -msgid " %title" -msgstr " %title" +#: inc/template-tags.php:214 +#, fuzzy, php-format +msgid "Category: %s" +msgstr "Kategoria" -#: ../inc/template-tags.php:77 -msgctxt "Next post link" -msgid "%title " -msgstr "%title " +#: inc/template-tags.php:216 +#, fuzzy, php-format +msgid "Tag: %s" +msgstr "Dzień: %s" -#: ../inc/template-tags.php:101 -msgid "Website" -msgstr "witryna www" +#: inc/template-tags.php:220 +#, php-format +msgid "Year: %s" +msgstr "Rok: %s" -#: ../inc/template-tags.php:190 +#: inc/template-tags.php:220 +msgctxt "yearly archives date format" +msgid "Y" +msgstr "Y" + +#: inc/template-tags.php:222 #, php-format -msgctxt "post date" -msgid "Posted on %s" -msgstr "Opublikowano: %s" +msgid "Month: %s" +msgstr "Miesiąc: %s" + +#: inc/template-tags.php:222 +msgctxt "monthly archives date format" +msgid "F Y" +msgstr "F Y" -#: ../inc/template-tags.php:195 +#: inc/template-tags.php:224 #, php-format -msgctxt "post author" -msgid "by %s" -msgstr "r., autor: %s." +msgid "Day: %s" +msgstr "Dzień: %s" + +#: inc/template-tags.php:224 +msgctxt "daily archives date format" +msgid "F j, Y" +msgstr "" + +#: inc/template-tags.php:227 +#, fuzzy +msgctxt "post format archive title" +msgid "Asides" +msgstr "Notki (asides)" + +#: inc/template-tags.php:229 +#, fuzzy +msgctxt "post format archive title" +msgid "Galleries" +msgstr "Galerie" + +#: inc/template-tags.php:231 +#, fuzzy +msgctxt "post format archive title" +msgid "Images" +msgstr "Zdjęcia" -#: ../page-explore.php:11 +#: inc/template-tags.php:233 +#, fuzzy +msgctxt "post format archive title" +msgid "Videos" +msgstr "Filmy" + +#: inc/template-tags.php:235 +#, fuzzy +msgctxt "post format archive title" +msgid "Quotes" +msgstr "Cytaty" + +#: inc/template-tags.php:237 +#, fuzzy +msgctxt "post format archive title" +msgid "Links" +msgstr "Links" + +#: inc/template-tags.php:239 +#, fuzzy +msgctxt "post format archive title" +msgid "Statuses" +msgstr "Statusy" + +#: inc/template-tags.php:241 +#, fuzzy +msgctxt "post format archive title" +msgid "Audio" +msgstr "Pliki dźwiękowe" + +#: inc/template-tags.php:243 +#, fuzzy +msgctxt "post format archive title" +msgid "Chats" +msgstr "Chat" + +#: inc/template-tags.php:246 +#, fuzzy, php-format +msgid "Archives: %s" +msgstr "Archiwa" + +#: inc/template-tags.php:250 +#, fuzzy, php-format +msgid "%1$s: %2$s" +msgstr "" +"Opublikowano r. jako %5$s" + +#: inc/template-tags.php:252 page-explore.php:37 sidebar.php:41 +msgid "Archives" +msgstr "Archiwa" + +#: page-explore.php:11 msgid "Explore Page" msgstr "Strona eksploracyjna" -#: ../page-explore.php:26 +#: page-explore.php:26 msgid "Recent Posts" msgstr "Najnowsze wpisy" -#: ../page-explore.php:44 +#: page-explore.php:44 msgid "Categories" msgstr "Kategorie" -#: ../sidebar.php:11 +#: sidebar.php:11 msgid "Hide sidebar" msgstr "Ukryj panel boczny" -#: ../sidebar.php:26 +#: sidebar.php:26 msgid "Navigation" msgstr "Nawigacja" +#~ msgid " Previous" +#~ msgstr " poprzedni" + +#~ msgid "Next " +#~ msgstr "następny " + +#~ msgid "Tag" +#~ msgstr "Tag" + +#~ msgid "Author" +#~ msgstr "Autor" + +#~ msgid " Older posts" +#~ msgstr " Starsze wpisy" + +#~ msgid "Newer posts " +#~ msgstr "Nowsze wpisy " + +#~ msgctxt "Previous post link" +#~ msgid " %title" +#~ msgstr " %title" + +#~ msgctxt "Next post link" +#~ msgid "%title " +#~ msgstr "%title " + #~ msgid "%s Group Name" #~ msgstr "%s - nazwa grupy" diff --git a/languages/ru_RU.mo b/languages/ru_RU.mo index 7274b120fd09da411cdc237ab7ecc2eb832c634d..af8dce4387dd7354f4d057e79f2cb06fc6da849d 100644 GIT binary patch delta 2075 zcmYk+ZERCj9LMp~t{u>^b&s&Y#>$+|N{iiWc^I2h=!VnbMrAW91|iNk=Oid04vYn1 z1cQj-YS8El!lJ$)L*q?M6n&w|-Uxz=i4hWT%M3=NkccM4sPX%|oSL2Ve?RBk+w*+x zo$R~5E_SA;^XF{48UlIE*12MSkWamm>Ta3vk>zffbZ5;vBq& zbMYT*XtpsWl;>kiT}8>v<3=CyGeca|(GFC_J=Rz4{kO54`|n{Xp0ee$n4&z5s$WI# z^l9o*|BGP&+prMR7}iuXWHgg4SccnB9gpAxc*H)xjGHL`i4S5gy{MrvRJ~Ie#&f8S ze!$K6BT~h5uuK|w4{C+_u~19Bi_FdVGHMGx&;vY!`FH^}pea-bSFjlWMJ8*)Jk*j_ zVh7%a`u{dA+Qk=99q&W^?=92-PGGAV{K7t%K+SL(m*E;lk-?p)hQCHFX*tU^AFCao zzbva3dby)D?B}u(w$o)_ZJB1&$h)n>*g|;})zGB%H*BE%7cRg$ z7C45jsQXW$CUyk*nUAwuj*Ti||%_0wZ`BwPGKlR(cvWplp;gtEKHk&GZq}3XItDo2Whg5~*WO2 z#wXd2P53ivD>^w*Y_FL@AI>6jDUi$H5~7XZb@RR)THPK(tCuG3AlOxJQVZzc8zp!r zUMk%~G!tux4kDjWiW6GSnMvD|OF=Ss+kyt0OFAnNTeu%}xRunu_c==8dP1*LC(%x5 zKW8S+=>JKFOKBCsR(gk0WfsSK=atttM29k$wEsF2dKFnzv(EPKeMIi%hW1H&&e`(P zYOdOArMtW<-$$zs>+Lq*YZZM&tu5;y>-}Fr=&fiZ@`zSKsm9w3GWQV~La#^*QAQ}~ zKy4uIBsgEjPt-eyW*=~d=j?QRp?0@B)a-L!E4b>6%suLSR=CBfFKTp;6^;9yfs()7 zr%O-xQmJ^NDV|71ni`vv$#`N#A`$B8j%WIJ3_Lfm^_h5j^Y;GcNK>M5=Kof@UF9vl zyyZ)i?!k(H-^r`I;uKbGbq`lP?so&#=Y8%kH9?>AdhNI~7#VcS7yl7-%NpkS-DEW8 F{|`>R(P;nx delta 2992 zcmb8weN5DK9KiAK9ft=TftVnH4?jup0S`eCMG!OaSy3<_DxVHKjd^m$9TZU=GN(4T zd^mfc)uwB>_t1C#RU8e9eC07Iwo^| z8)MPI!HLN@1IsWTn<56(9x6#(2;x*cjwyH^X+vE{8OtrxKTrlD2WiM*nu>Bglfy{N zMR|Tcj=&1@x(j6>jTol_O0`pw8J$A8u^(-C9`C`gF%hq#%=k9mi#Db$14zYHn2GXz z6Uu=1;U+wQYw-q3dkc9;o?nfL^sj2ENQX@rjnASBcO#Qk*HC736D76Lv?4P|$H`cU zbFmrus9p}4_%X_o-Y~DnGdgKM4P}5D253`Fq#`pcz~NYqWw;vU#x|5x9z|KI6Sx3- zQJ%N*ur!>AGSFm{`=+1_xCHsAD)V|ZN@o0tUUg^(e%pxRnrf!suJt#Bw z;|6>Ni|_(U%9B~Zhj1=R29Drmt5U~sKIg6M;Boj7%D{g@$;2I`Z}CW(%}h|nT1gX^c}Y1b(Fo}8Otk%%{U3)$9ecO z=3x$_l8kLeP2T@QRAdP{QP%D%@=@7ZWUZE(Za~S57bSIV=6O3xgI}Qx$j&rn?~Fv5 zz!-c4i;yv@BPjQEVnKjPKb1oK4JC!y?2H^-hcj_6zKZ?WjO*`L>I{B^C-FtLv@~2! zKBb*%gEBSl}>rkGX zL^{NL(^A~S`C@EA9XDa+l*p34g}eZ2aW)$hDFL;aBmEntoTIFfi=a=V@J1OseXe;f zGa4vtay6TfMwy&?lwhB!)r4d~_QPUAvMPIwEoBt;vQehU`VXU;Pdq@#Y)grOBI`Vh zm_d{gWZHOJmY}S;6pfH~T#964AtB2#xVQ(MR8p6X8BHY9zwyhp3^x(7VX6sP_Zngj z!OyoUAgYMLWeq1}*!X*u>m|fesSGOfsV^XGgzSyw#9Bg@dl4c18$~u8%VHF}sRLt) zb%eYjQYs=SD{de*67z^6LdwGt6mOfc>Bgh{pv4dm67uUeiZIJq<7c#(GkHa%Y#~+> zQF0P&urUsw7dN7ZQlB((CL^Gi*1K% zn>+Yx>@8bu-F9E_N?hA;_Y(t;N7@VarexYG+)w(0r&F@hrD8O$d3eH>>96&B-2dGe zYA87>?kmU(btIKoq6%}0LN`X(tbw5n zNYh`_JM>dT*Z)`r{aCnF?+CYq_v_u7@pQl56W*owD5JS9<67{qkyp|V>%DrP{\n" "Language-Team: \n" "Language: ru\n" @@ -16,7 +16,7 @@ msgstr "" "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: Poedit 1.6.9\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" @@ -49,83 +49,7 @@ msgid "Most Used Categories" msgstr "Наиболее часто используемые категории" # @ decode -#: archive.php:27 -#, php-format -msgid "Day: %s" -msgstr "День: %s" - -# @ decode -#: archive.php:30 -#, php-format -msgid "Month: %s" -msgstr "Месяц: %s" - -#: archive.php:30 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "" - -# @ decode -#: archive.php:33 -#, php-format -msgid "Year: %s" -msgstr "Год: %s" - -#: archive.php:33 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "" - -# @ decode -#: archive.php:36 -msgid "Asides" -msgstr "Вложения" - -# @ decode -#: archive.php:39 -#, fuzzy -msgid "Galleries" -msgstr "Категории" - -# @ decode -#: archive.php:42 -msgid "Images" -msgstr "Картинки" - -# @ decode -#: archive.php:45 -msgid "Videos" -msgstr "Видео" - -# @ decode -#: archive.php:48 -msgid "Quotes" -msgstr "Цитаты" - -# @ decode -#: archive.php:51 -msgid "Links" -msgstr "Ссылки" - -#: archive.php:54 -msgid "Statuses" -msgstr "" - -#: archive.php:57 -msgid "Audios" -msgstr "" - -#: archive.php:60 -msgid "Chats" -msgstr "" - -# @ decode -#: archive.php:63 inc/extras.php:113 page-explore.php:37 sidebar.php:41 -msgid "Archives" -msgstr "Архивы" - -# @ decode -#: author.php:26 +#: author.php:26 inc/template-tags.php:218 #, php-format msgid "Author: %s" msgstr "Автор: %s" @@ -318,7 +242,7 @@ msgstr "Изображение в заголовке" #: functions.php:34 #, fuzzy msgid "Sidebar Menu" -msgstr "Боковая колонка" +msgstr "Меню навигации" # @ decode #: functions.php:35 @@ -327,22 +251,28 @@ msgid "Footer Menu" msgstr "Изображение в заголовке" # @ decode -#: functions.php:140 +#: functions.php:148 msgid "Sidebar" msgstr "Боковая колонка" -#: functions.php:142 +#: functions.php:150 msgctxt "sidebar description" msgid "Only displayed if sidebar remains enabled in the Customize menu." msgstr "" # @ decode -#: header.php:34 +#: functions.php:239 +#, fuzzy +msgid "Google Profile URL" +msgstr "%s URL профиля" + +# @ decode +#: header.php:33 msgid "Skip to content" msgstr "Перейти к контенту" # @ decode -#: header.php:38 +#: header.php:37 #, fuzzy msgid "Show sidebar" msgstr "Боковая колонка" @@ -360,45 +290,43 @@ msgstr "" "image\">%4$s × %5$s в %8$s" -# @ decode #: image.php:34 -msgid " Previous" -msgstr " Назад" +msgid "Previous" +msgstr "" -# @ decode #: image.php:35 -msgid "Next " -msgstr "Вперед " +msgid "Next" +msgstr "" # @ decode -#: inc/customizer.php:145 +#: inc/customizer.php:153 msgid "Header Options" msgstr "Параметры заголовка" # @ decode -#: inc/customizer.php:180 +#: inc/customizer.php:188 #, fuzzy msgid "Favicon Image (must be a PNG)" msgstr "Изображение в заголовке" # @ decode -#: inc/customizer.php:187 +#: inc/customizer.php:195 msgid "Show Site Title" msgstr "Показать заголовок сайта" # @ decode -#: inc/customizer.php:194 +#: inc/customizer.php:202 msgid "Show Site Description" msgstr "Короткое описание сайта" # @ decode -#: inc/customizer.php:201 +#: inc/customizer.php:209 #, fuzzy msgid "Show Header Menu" msgstr "Изображение в заголовке" # @ decode -#: inc/customizer.php:208 +#: inc/customizer.php:216 msgid "" "HTML for description, if you wish to replace your blog description with HTML " "markup" @@ -407,199 +335,195 @@ msgstr "" "помощью HTML разметки" # @ decode -#: inc/customizer.php:222 +#: inc/customizer.php:230 msgid "Sidebar Options" msgstr "Параметры сайдбара" # @ decode -#: inc/customizer.php:250 +#: inc/customizer.php:258 msgid "Enable Sidebar" msgstr "Включить сайдбар" # @ decode -#: inc/customizer.php:257 +#: inc/customizer.php:265 msgid "Sidebar Position" msgstr "Позиция сайдбара" # @ decode -#: inc/customizer.php:262 inc/customizer.php:274 +#: inc/customizer.php:270 inc/customizer.php:282 msgid "Left" msgstr "Слева" # @ decode -#: inc/customizer.php:263 inc/customizer.php:275 +#: inc/customizer.php:271 inc/customizer.php:283 msgid "Right" msgstr "Справа" # @ decode -#: inc/customizer.php:269 +#: inc/customizer.php:277 msgid "Sidebar Button Position" msgstr "Расположение кнопки сайдбара" # @ decode -#: inc/customizer.php:281 +#: inc/customizer.php:289 msgid "Always Visible Sidebar" msgstr "Всегда показывать сайдбар" -#: inc/customizer.php:286 +#: inc/customizer.php:294 msgctxt "Sidebar option" msgid "Always open" msgstr "" -#: inc/customizer.php:287 +#: inc/customizer.php:295 msgctxt "Sidebar option" msgid "Closed by default" msgstr "" # @ decode -#: inc/customizer.php:299 +#: inc/customizer.php:307 msgid "Discussion Options" msgstr "Параметры обсуждения" # @ decode -#: inc/customizer.php:316 +#: inc/customizer.php:324 msgid "Enable Comments" msgstr "Включить комментарии" -#: inc/customizer.php:323 +#: inc/customizer.php:331 msgid "Show allowed HTML tags on comment form" msgstr "" # @ decode -#: inc/customizer.php:336 +#: inc/customizer.php:344 msgid "Social Options" msgstr "Социальные опции" # @ decode -#: inc/customizer.php:637 inc/customizer.php:644 +#: inc/customizer.php:650 inc/customizer.php:657 msgid "Show Social Icons" msgstr "Показывать социальные иконки " # @ decode -#: inc/customizer.php:637 +#: inc/customizer.php:650 #, fuzzy msgid "in Header" -msgstr "Над заголовком" +msgstr "Изображение в заголовке" # @ decode -#: inc/customizer.php:644 +#: inc/customizer.php:657 #, fuzzy msgid "in Footer" msgstr "Изображение в заголовке" # @ decode -#: inc/customizer.php:651 +#: inc/customizer.php:664 msgid "Open Links in New Tab/Window" msgstr "Открывать ссылки в новом окне/вкладке" # @ decode -#: inc/customizer.php:659 inc/customizer.php:667 inc/customizer.php:675 -#: inc/customizer.php:684 inc/customizer.php:692 inc/customizer.php:700 -#: inc/customizer.php:709 inc/customizer.php:717 inc/customizer.php:725 -#: inc/customizer.php:733 inc/customizer.php:741 inc/customizer.php:758 -#: inc/customizer.php:766 inc/customizer.php:774 inc/customizer.php:782 -#: inc/customizer.php:790 inc/customizer.php:798 inc/customizer.php:806 -#: inc/customizer.php:814 inc/customizer.php:822 inc/customizer.php:839 -#: inc/customizer.php:856 inc/customizer.php:864 inc/customizer.php:872 -#: inc/customizer.php:880 inc/customizer.php:888 inc/customizer.php:896 -#: inc/customizer.php:913 inc/customizer.php:921 inc/customizer.php:938 -#: inc/customizer.php:972 inc/customizer.php:980 inc/customizer.php:988 -#: inc/customizer.php:996 inc/customizer.php:1012 inc/customizer.php:1029 -#: inc/customizer.php:1037 inc/customizer.php:1045 inc/customizer.php:1053 -#: inc/customizer.php:1061 inc/customizer.php:1069 inc/customizer.php:1085 +#: inc/customizer.php:672 inc/customizer.php:680 inc/customizer.php:688 +#: inc/customizer.php:697 inc/customizer.php:705 inc/customizer.php:713 +#: inc/customizer.php:722 inc/customizer.php:730 inc/customizer.php:738 +#: inc/customizer.php:746 inc/customizer.php:754 inc/customizer.php:771 +#: inc/customizer.php:779 inc/customizer.php:787 inc/customizer.php:795 +#: inc/customizer.php:803 inc/customizer.php:811 inc/customizer.php:819 +#: inc/customizer.php:827 inc/customizer.php:835 inc/customizer.php:843 +#: inc/customizer.php:860 inc/customizer.php:877 inc/customizer.php:885 +#: inc/customizer.php:893 inc/customizer.php:901 inc/customizer.php:909 +#: inc/customizer.php:917 inc/customizer.php:934 inc/customizer.php:942 +#: inc/customizer.php:959 inc/customizer.php:993 inc/customizer.php:1001 +#: inc/customizer.php:1009 inc/customizer.php:1017 inc/customizer.php:1033 +#: inc/customizer.php:1050 inc/customizer.php:1058 inc/customizer.php:1066 +#: inc/customizer.php:1074 inc/customizer.php:1082 inc/customizer.php:1106 #, php-format msgid "%s Username" msgstr "%s Имя пользователя" # @ decode -#: inc/customizer.php:676 inc/customizer.php:701 +#: inc/customizer.php:689 inc/customizer.php:714 msgid " (or the long number in your profile URL)" msgstr "(или длинный номер в URL вашего профиля)" # @ decode -#: inc/customizer.php:749 inc/customizer.php:1020 +#: inc/customizer.php:762 inc/customizer.php:1041 inc/customizer.php:1090 +#: inc/customizer.php:1098 #, php-format msgid "%s Profile URL" msgstr "%s URL профиля" # @ decode -#: inc/customizer.php:830 inc/customizer.php:904 inc/customizer.php:929 -#: inc/customizer.php:946 inc/customizer.php:955 +#: inc/customizer.php:851 inc/customizer.php:925 inc/customizer.php:950 +#: inc/customizer.php:967 inc/customizer.php:976 #, php-format msgid "%s Site URL" msgstr "%s URL сайта" # @ decode -#: inc/customizer.php:847 inc/customizer.php:1102 +#: inc/customizer.php:868 inc/customizer.php:1123 #, php-format msgid "%s Link" msgstr "%s Ссылки" -#: inc/customizer.php:964 inc/customizer.php:1004 -#, php-format +#: inc/customizer.php:985 inc/customizer.php:1025 +#, fuzzy, php-format msgid "%s User ID" -msgstr "" - -#: inc/customizer.php:1077 -#, php-format -msgid "%s Group Name" -msgstr "" +msgstr "День: %s" # @ decode -#: inc/customizer.php:1093 +#: inc/customizer.php:1114 msgid "Email Address" msgstr "Адрес электронной почты" # @ decode -#: inc/customizer.php:1111 +#: inc/customizer.php:1132 msgid "RSS Feed" msgstr "RSS Feed" # @ decode -#: inc/customizer.php:1125 +#: inc/customizer.php:1146 #, fuzzy msgid "Content Options" -msgstr "Прочие параметры" +msgstr "Перейти к контенту" -#: inc/customizer.php:1127 +#: inc/customizer.php:1148 #, php-format msgctxt "(blog name)'s content." msgid "These options change the display of %s's content" msgstr "" -#: inc/customizer.php:1204 +#: inc/customizer.php:1225 msgid "Load Latin Extended character set. This will increase page load times." msgstr "" # @ decode -#: inc/customizer.php:1211 +#: inc/customizer.php:1232 msgid "" "Use entry excerpts instead of full text on site home. Excludes sticky posts." msgstr "" "Использовать цитаты вместо текста на главной странице сайта. За исключением " "прилепленных сообщений." -#: inc/customizer.php:1218 +#: inc/customizer.php:1239 msgid "Use entry excerpts on archive, category, and author pages." msgstr "" -#: inc/customizer.php:1225 +#: inc/customizer.php:1246 msgid "Display posts' featured images when excerpts are shown." msgstr "" -#: inc/customizer.php:1232 +#: inc/customizer.php:1253 msgid "Display a post's featured image on its individual page." msgstr "" # @ decode -#: inc/customizer.php:1239 +#: inc/customizer.php:1260 msgid "Show tags on front page (tags will be shown on post's individual page)" msgstr "" "Показывать метки на главной странице (метки всегда показываются на отдельной " "странице записи)" # @ decode -#: inc/customizer.php:1246 +#: inc/customizer.php:1267 msgid "" "Show categories on front page (categories will be shown on post's individual " "page)" @@ -608,41 +532,41 @@ msgstr "" "отдельной странице записи)" # @ decode -#: inc/customizer.php:1253 +#: inc/customizer.php:1274 msgid "Show author's name, profile image, and bio after posts" msgstr "Показывать имя автора, изображение профиля и описание в публикации" # @ decode -#: inc/customizer.php:1260 +#: inc/customizer.php:1281 msgid "Entry Date Position" msgstr "Позиция даты" # @ decode -#: inc/customizer.php:1264 +#: inc/customizer.php:1285 msgid "Above Header" msgstr "Над заголовком" # @ decode -#: inc/customizer.php:1265 +#: inc/customizer.php:1286 msgid "Below Header" msgstr "Ниже заголовка" # @ decode -#: inc/customizer.php:1271 +#: inc/customizer.php:1292 msgid "Show Page Headers" msgstr "Показывать заголовки страниц" -#: inc/customizer.php:1278 +#: inc/customizer.php:1299 msgid "Show entry date for post excepts on the main page" msgstr "" # @ decode -#: inc/customizer.php:1285 +#: inc/customizer.php:1306 msgid "Add an arrow before the title of a link post" msgstr "Добавить стрелочку перед ссылкой на запись" # @ decode -#: inc/customizer.php:1292 +#: inc/customizer.php:1313 msgid "" "Show Theme Info (display a line of text about the theme and its creator at " "the bottom of pages)" @@ -651,141 +575,242 @@ msgstr "" "страниц)" # @ decode -#: inc/customizer.php:1301 +#: inc/customizer.php:1322 msgid "Text (colophon, copyright, credits, etc.) for the footer of the site" msgstr "" "Текст (выходные данные, копирайты, благодарности и т.д) в подвале сайта" # @ decode -#: inc/customizer.php:1315 +#: inc/customizer.php:1336 msgid "Other Options" msgstr "Прочие параметры" +#: inc/customizer.php:1337 +msgid "" +"Custom CSS is longer recommended. This feature is no longer allowed in " +"Decode. To continue using these tweaks, copy and paste your CSS into a " +"custom CSS plugin such as Jetpack. Get help here." +msgstr "" + # @ decode -#: inc/customizer.php:1334 +#: inc/customizer.php:1357 msgid "Custom CSS" msgstr "Свой CSS" -#: inc/customizer.php:1345 +#: inc/customizer.php:1368 msgid "Show the following post types on home blog page. (Separate with commas)" msgstr "" # @ decode -#: inc/customizer.php:1384 +#: inc/customizer.php:1407 msgid "Accent Color" msgstr "Цвет выделения" -#: inc/customizer.php:1385 +#: inc/customizer.php:1408 msgid "The main color used for links, borders, buttons, and more." msgstr "" # @ decode -#: inc/customizer.php:1392 +#: inc/customizer.php:1415 msgid "Active Link Color" msgstr "Цвет активной ссылки" -#: inc/customizer.php:1393 +#: inc/customizer.php:1416 msgid "" "The color for currently clicked links.
    (Try using a darker color than the " "Accent Color.)" msgstr "" # @ decode -#: inc/customizer.php:1400 +#: inc/customizer.php:1423 msgid "Text Color" msgstr "Цвет текста" # @ decode -#: inc/customizer.php:1401 +#: inc/customizer.php:1424 #, fuzzy msgid "The main text color." msgstr "Цвет текста" # @ decode -#: inc/customizer.php:1408 +#: inc/customizer.php:1431 msgid "Secondary Text Color" msgstr "Цвет второстепенного текста" -#: inc/customizer.php:1409 +#: inc/customizer.php:1432 msgid "" "Text color used for text of secondary importance.
    (Try using a lighter " "color than the main Text Color.)" msgstr "" # @ decode -#: inc/customizer.php:1416 +#: inc/customizer.php:1439 msgid "Use accent color instead of text color for icons" msgstr "Использовать цвет выделения вместо цвет текста для иконок" # @ decode -#: inc/extras.php:104 -msgid "Category" -msgstr "Категория" +#: inc/extras.php:95 +#, fuzzy, php-format +msgid "Page %s" +msgstr "Страница " # @ decode -#: inc/extras.php:107 -msgid "Tag" -msgstr "Метка" +#: inc/template-tags.php:42 +msgid "Website" +msgstr "Сайты" -# @ decode -#: inc/extras.php:110 -msgid "Author" -msgstr "Автор" +#: inc/template-tags.php:131 +#, php-format +msgctxt "post date" +msgid "Posted on %s" +msgstr "" -# @ decode -#: inc/extras.php:120 inc/extras.php:124 -msgid "Page " -msgstr "Страница " +#: inc/template-tags.php:136 +#, fuzzy, php-format +msgctxt "post author" +msgid "by %s" +msgstr "День: %s" # @ decode -#: inc/template-tags.php:40 +#: inc/template-tags.php:158 msgid "Posts navigation" msgstr "Навигация комментария" -# @ decode -#: inc/template-tags.php:44 -msgid " Older posts" -msgstr " Старые записи" +#: inc/template-tags.php:162 +msgid "Older posts" +msgstr "" # @ decode -#: inc/template-tags.php:48 -msgid "Newer posts " -msgstr "Новые записи " +#: inc/template-tags.php:166 +#, fuzzy +msgid "Newer posts" +msgstr "Недавние записи" # @ decode -#: inc/template-tags.php:73 +#: inc/template-tags.php:189 msgid "Post navigation" msgstr "Навигация" # @ decode -#: inc/template-tags.php:76 -msgctxt "Previous post link" -msgid " %title" -msgstr " %title" +#: inc/template-tags.php:214 +#, fuzzy, php-format +msgid "Category: %s" +msgstr "Категория" # @ decode -#: inc/template-tags.php:77 -msgctxt "Next post link" -msgid "%title " -msgstr "%title " +#: inc/template-tags.php:216 +#, fuzzy, php-format +msgid "Tag: %s" +msgstr "День: %s" # @ decode -#: inc/template-tags.php:101 -msgid "Website" -msgstr "Сайты" +#: inc/template-tags.php:220 +#, php-format +msgid "Year: %s" +msgstr "Год: %s" -#: inc/template-tags.php:190 +#: inc/template-tags.php:220 +msgctxt "yearly archives date format" +msgid "Y" +msgstr "" + +# @ decode +#: inc/template-tags.php:222 #, php-format -msgctxt "post date" -msgid "Posted on %s" +msgid "Month: %s" +msgstr "Месяц: %s" + +#: inc/template-tags.php:222 +msgctxt "monthly archives date format" +msgid "F Y" msgstr "" -#: inc/template-tags.php:195 +# @ decode +#: inc/template-tags.php:224 #, php-format -msgctxt "post author" -msgid "by %s" +msgid "Day: %s" +msgstr "День: %s" + +#: inc/template-tags.php:224 +msgctxt "daily archives date format" +msgid "F j, Y" +msgstr "" + +# @ decode +#: inc/template-tags.php:227 +#, fuzzy +msgctxt "post format archive title" +msgid "Asides" +msgstr "Вложения" + +# @ decode +#: inc/template-tags.php:229 +#, fuzzy +msgctxt "post format archive title" +msgid "Galleries" +msgstr "Категории" + +# @ decode +#: inc/template-tags.php:231 +#, fuzzy +msgctxt "post format archive title" +msgid "Images" +msgstr "Картинки" + +# @ decode +#: inc/template-tags.php:233 +#, fuzzy +msgctxt "post format archive title" +msgid "Videos" +msgstr "Видео" + +# @ decode +#: inc/template-tags.php:235 +#, fuzzy +msgctxt "post format archive title" +msgid "Quotes" +msgstr "Цитаты" + +# @ decode +#: inc/template-tags.php:237 +#, fuzzy +msgctxt "post format archive title" +msgid "Links" +msgstr "Ссылки" + +#: inc/template-tags.php:239 +msgctxt "post format archive title" +msgid "Statuses" +msgstr "" + +#: inc/template-tags.php:241 +msgctxt "post format archive title" +msgid "Audio" +msgstr "" + +#: inc/template-tags.php:243 +msgctxt "post format archive title" +msgid "Chats" msgstr "" +# @ decode +#: inc/template-tags.php:246 +#, fuzzy, php-format +msgid "Archives: %s" +msgstr "Архивы" + +# @ decode +#: inc/template-tags.php:250 +#, fuzzy, php-format +msgid "%1$s: %2$s" +msgstr "%1$s Имя пользователя %2$s" + +# @ decode +#: inc/template-tags.php:252 page-explore.php:37 sidebar.php:41 +msgid "Archives" +msgstr "Архивы" + # @ decode #: page-explore.php:11 msgid "Explore Page" @@ -814,9 +839,38 @@ msgid "Navigation" msgstr "Показать навигацию" # @ decode -#~ msgctxt "[noun] [translation string] (explanation)" -#~ msgid "%1$s Username %2$s" -#~ msgstr "%1$s Имя пользователя %2$s" +#~ msgid " Previous" +#~ msgstr " Назад" + +# @ decode +#~ msgid "Next " +#~ msgstr "Вперед " + +# @ decode +#~ msgid "Tag" +#~ msgstr "Метка" + +# @ decode +#~ msgid "Author" +#~ msgstr "Автор" + +# @ decode +#~ msgid " Older posts" +#~ msgstr " Старые записи" + +# @ decode +#~ msgid "Newer posts " +#~ msgstr "Новые записи " + +# @ decode +#~ msgctxt "Previous post link" +#~ msgid " %title" +#~ msgstr " %title" + +# @ decode +#~ msgctxt "Next post link" +#~ msgid "%title " +#~ msgstr "%title " # @ decode #, fuzzy diff --git a/languages/zh_CN.mo b/languages/zh_CN.mo index 1cbbe35ac5f0468175b9c15fdaeb267f4eadc180..d6baed29b9c431f2672a4181e9e795ba21c3496e 100644 GIT binary patch delta 2749 zcmY+_e@vBC9LMo2A89{)Ztj%grl(q`IvTFehnX? zd=Sg952Nrla-D#A7|xhze(j|p5vO4mj>j4th1-y>rWG}Tz1B`!e;5;}{{Z9gb6frq z$59@{0=$j7P8Ju5WPFoPMn5RVLaelQ;0VfJVGQ=8E_4BP$G>Ad{*8Q01f3qmIAjcy zi`7_c%llEkJA&%phwB;Nd`4z9CecdPG@~xujvDYy)I{FHC3p-s;9sbvtfG_dycTt5 z+fhs2hPvK<^kWxli~DW;Zx|R!#Sj_I=pOPho>*h}n0UUrFaxy(XHi@918O1zsNeai zjKDn9L}nvRrULnxb$n?;&8X|YYU>YqS^xD^d`Lwmj$$8X;S5}f4LB1|qXxQx8u%a7 zVJcynbO<{z5#K=dJBAwQ6VycdF&TfxG`wZoy$P&8t7v>oyB>2mA$7KZ|4=8&mi`g+Vda20-x+S`#y zVPi3kax&@;i;zV#OOZ>MTGa1$pbp_V^zbPEfj-JtCx&k7UR>nfdH8uWc0%} zRL2fm?nF)OFlrCqN4C*?gX%wsYQJU653G@NR(k>-K_6=A&!7(Lcc=*uU_c#xlfwh& zpk`iRU5aY2v*pd!m#v-n1noUI1uvskBr2Vk8O}p(MGa~z_uBdcSU~xBI_s}HxJ-ox zzK$C3p*5OkO65e(pMS zLIdb6q#38+EG)z6*p4Id1nSTQu^zubwNK#Wv6`j~^%ypxCUVC5EqW+lKwamOt^XxJ zMt67xHKRM|!YQn$RMOIoAf6N6BRm2WLX&vz*p>5#- zF?obipeSr;AD<`xG@(PHle&hOO)#g>{z7P3wRd_)EKvnXccfH7YzyUh%&>$gC$zF# z2qmqSQe>Eb$tR;XSOcLw)H%=_v5{CwWD@^P3vHp=s?}54MdT10h(cm9p~tz5$R?C_ zhB1qf7p$oawc5&Iw7>HR?bmRMv6&jwOGs%Np+gloX6{HD-mnbC`5W`7-Z5xLR#yl0urtz)6Al_D? ze|t{0Sx$so$&l&@owgT<(BB_!C7OxtM62`l=n5xgOt+I7)8>2>vpDD;yT|418~2J6 z8$0Agc&|B~aT}d`ae23)Z&D97 delta 3702 zcmaLZdvKK19mesqNeGY-ay4>WvVkN*0fivJkQBkt1mzAkSVE<%Y?GCcjk_BJK{i|j zf&GGpMmqb3!O4@Bm+lgUBILVl|@V$O~kbawL%xJuTDfllOfHyD=Qz`Vt!8j1} zkxOPg>i%+DuEN_WFTyJHV}D~JriIKnD$e30>_Pra9<9rS$JSrM9Qrp`$*7@Eu@8QUS?FRqIhcd#I2tv;QdGkM)Xbkm-MTo9(;(pYb`jxH!7}ei3)PO(DV*NFP&#BPJk{KprF}YZQci;hB zfqEc?(P*nOk-p6k)WFB0+6kdLXh#0b7CzM8e$@SMpeE3U>hE$6>#qy#RA}iw!y>Ha zt`d9-7vj%w0`}$PsiRU<$Caqlyc2a6uHfx>6?NZ#P#q;usexqS5FCjfoEjmc8W<}gQsx{rVfs;KqVGXuEFuxjI*%?bzkHL z87*xo!_o|~Ulf%sJF^AD|BT zC=NzqBKu!SCZCE2^5QeB$8S(xjXH#{T2G=5*BR?Os1^AD)#0CzV`8qMwo0SX^d%m_(=c6XD*p|K4 zI@J9EOs9Xd&Q|O|jeMUiUqo%ihqn9|)BvxeRw#Ewd|=b9Gf@rCvo1wV#E%-tI%N0E z7JL0LMl`ciWXka8_QEID8>qvXIx^nTP@G741m1_$s1Em`Iy!30zeKhB8|(Wxlk#QM znR0U?HLXg&x?2YH%-Vua2Ph?jzLcP32ofGbu+F!BisW$<(2q+l;YxQ1|V% z^{-e@ThF1|yHLpbzeMH>D)iu7?+zgho_T9KsD zaXqN}%B}ZfIpu29L?VvOyomj&IE?(66MX2wE9l3+;$oc5C^hoeP;bqLs1C0qe& z!q}3ci?W+WWh$YhXX(&9tpcf-xR?G-6Pa%jYE-F$c#P1&Q(71&whi;iKSDf3EFhW* zZHE#I6#M<>3)MWN3exa6W***6)DR)!n?xD0O7FiC$H2^q<>LFk+~yxgEx%G#oY<#c zquyx^g%!4<-dcqB6V-(FTyIqDn-P^*C=+q>QKu4V2JtANS7SS&ZCFp-Oc`Xpce8-n zHhzalpZqL#Rs0%V>bv^`4tJ<(aYNBgfmR+>d@A~p~=S4FRkk9dI4ThTi; z*upgYcCQQHA-|FsX6wS3L*x<52rr>;!MQ}HdfG}xX)Tc*%f)}&7m@c6tBC=`NFs&k zLnIMO566jpM@+YQv5p851%%!b-byoqP#QxFjOF;(P6wrsc*a&dY0X8wCVg#rCN3eK zB{maNh(;oxm`&&v)a$v0P`b;>Oqr8X6$~^rdggjp`kW;xuR1O6LAmwbV6d$Gu27@5 zVX9|-(6`DTXbKr!a`(Pe)bL2Cv20%ba$nHX7zl+!&Q~dGvqS#nzL1&TwA>#M;krQ3 zX-ch1^M-x3f#4cbQRfYZqHm^dboHwULwbe>Ot)a7xmr%%qZQ|NWG zCNt>klZm(CjLbNcyr3x%_JyLq&bXL3U{Tl`ZVEB22fek?9XSgVlB=0zAQZit8%apJ zd)$Qa<0ee>6i=8k@gB!Nc<8N~;wcj*Mt2R)bS0MDSsFbu+I%^=XW~OhW$`u zxV`rnJngO9+FP63TaU*UdwB0_@p*N(ZR*_fdglvUyG|T(em^Xf)469u*S_pt~nbd7tOE4gETTgRs7oYvvB%62`w)ft}m zMsknS*7<`Y&V{^7S+w5$)~zP8N!JvGihJ;ncjMLqckk~_}r t?)uTO==uE564JW1{i3sZgXui9wd-VC^rr=1xRSeH-@+WCCyFAj{{ga%5*`2m diff --git a/languages/zh_CN.po b/languages/zh_CN.po index ddc911e..06c4344 100644 --- a/languages/zh_CN.po +++ b/languages/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Decode v2.9.1\n" "Report-Msgid-Bugs-To: http://wordpress.org/support/theme/decode\n" -"POT-Creation-Date: 2014-10-13 21:38-0800\n" -"PO-Revision-Date: 2014-10-13 22:13-0800\n" +"POT-Creation-Date: 2015-02-04 21:44-0800\n" +"PO-Revision-Date: 2015-02-04 21:49-0800\n" "Last-Translator: Scott Smith \n" "Language-Team: MO \n" "Language: zh_CN\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.6.9\n" +"X-Generator: Poedit 1.7.4\n" "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" "esc_attr__;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;" @@ -43,72 +43,7 @@ msgstr "试试访问每月归档。" msgid "Most Used Categories" msgstr "常用分类" -#: archive.php:27 -#, php-format -msgid "Day: %s" -msgstr "日:%s" - -#: archive.php:30 -#, php-format -msgid "Month: %s" -msgstr "月:%s" - -#: archive.php:30 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "F Y" - -#: archive.php:33 -#, php-format -msgid "Year: %s" -msgstr "年:%s" - -#: archive.php:33 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "Y" - -#: archive.php:36 -msgid "Asides" -msgstr "旁白" - -#: archive.php:39 -msgid "Galleries" -msgstr "图像" - -#: archive.php:42 -msgid "Images" -msgstr "图片" - -#: archive.php:45 -msgid "Videos" -msgstr "视频" - -#: archive.php:48 -msgid "Quotes" -msgstr "引用" - -#: archive.php:51 -msgid "Links" -msgstr "链接" - -#: archive.php:54 -msgid "Statuses" -msgstr "状态" - -#: archive.php:57 -msgid "Audios" -msgstr "音频" - -#: archive.php:60 -msgid "Chats" -msgstr "讨论" - -#: archive.php:63 inc/extras.php:113 page-explore.php:37 sidebar.php:41 -msgid "Archives" -msgstr "归档" - -#: author.php:26 +#: author.php:26 inc/template-tags.php:218 #, php-format msgid "Author: %s" msgstr "作者: %s" @@ -267,20 +202,25 @@ msgstr "侧边菜单" msgid "Footer Menu" msgstr "页脚菜单" -#: functions.php:140 +#: functions.php:148 msgid "Sidebar" msgstr "侧边栏" -#: functions.php:142 +#: functions.php:150 msgctxt "sidebar description" msgid "Only displayed if sidebar remains enabled in the Customize menu." msgstr "仅当侧边栏在自定义菜单中开启时显示" -#: header.php:34 +#: functions.php:239 +#, fuzzy +msgid "Google Profile URL" +msgstr "%s 资料 URL" + +#: header.php:33 msgid "Skip to content" msgstr "跳到内容" -#: header.php:38 +#: header.php:37 msgid "Show sidebar" msgstr "显示侧边栏" @@ -296,354 +236,452 @@ msgstr "" "\">%5$s" #: image.php:34 -msgid " Previous" +#, fuzzy +msgid "Previous" msgstr " 上一个" #: image.php:35 -msgid "Next " +#, fuzzy +msgid "Next" msgstr "下一个 " -#: inc/customizer.php:145 +#: inc/customizer.php:153 msgid "Header Options" msgstr "页首设置" -#: inc/customizer.php:180 +#: inc/customizer.php:188 msgid "Favicon Image (must be a PNG)" msgstr "网站图标(必须是PNG)" -#: inc/customizer.php:187 +#: inc/customizer.php:195 msgid "Show Site Title" msgstr "显示站点标题" -#: inc/customizer.php:194 +#: inc/customizer.php:202 msgid "Show Site Description" msgstr "显示站点描述" -#: inc/customizer.php:201 +#: inc/customizer.php:209 msgid "Show Header Menu" msgstr "首先头部菜单" -#: inc/customizer.php:208 +#: inc/customizer.php:216 msgid "" "HTML for description, if you wish to replace your blog description with HTML " "markup" msgstr "介绍的HTML,如果你想用HTML替换你的博客介绍" -#: inc/customizer.php:222 +#: inc/customizer.php:230 msgid "Sidebar Options" msgstr "边栏设置" -#: inc/customizer.php:250 +#: inc/customizer.php:258 msgid "Enable Sidebar" msgstr "使用边栏" -#: inc/customizer.php:257 +#: inc/customizer.php:265 msgid "Sidebar Position" msgstr "边栏位置" -#: inc/customizer.php:262 inc/customizer.php:274 +#: inc/customizer.php:270 inc/customizer.php:282 msgid "Left" msgstr "靠左" -#: inc/customizer.php:263 inc/customizer.php:275 +#: inc/customizer.php:271 inc/customizer.php:283 msgid "Right" msgstr "靠右" -#: inc/customizer.php:269 +#: inc/customizer.php:277 msgid "Sidebar Button Position" msgstr "边栏按钮位置" -#: inc/customizer.php:281 +#: inc/customizer.php:289 msgid "Always Visible Sidebar" msgstr "边栏始终可见" -#: inc/customizer.php:286 +#: inc/customizer.php:294 msgctxt "Sidebar option" msgid "Always open" msgstr "总是打开 [边栏选项]" -#: inc/customizer.php:287 +#: inc/customizer.php:295 msgctxt "Sidebar option" msgid "Closed by default" msgstr "默认关闭 [边栏选项]" -#: inc/customizer.php:299 +#: inc/customizer.php:307 msgid "Discussion Options" msgstr "评论设置" -#: inc/customizer.php:316 +#: inc/customizer.php:324 msgid "Enable Comments" msgstr "开启评论" -#: inc/customizer.php:323 +#: inc/customizer.php:331 msgid "Show allowed HTML tags on comment form" msgstr "显示允许评论中允许的html标签" -#: inc/customizer.php:336 +#: inc/customizer.php:344 msgid "Social Options" msgstr "社交设置" -#: inc/customizer.php:637 inc/customizer.php:644 +#: inc/customizer.php:650 inc/customizer.php:657 msgid "Show Social Icons" msgstr "显示社交图标" -#: inc/customizer.php:637 +#: inc/customizer.php:650 msgid "in Header" msgstr "在页首" -#: inc/customizer.php:644 +#: inc/customizer.php:657 msgid "in Footer" msgstr "在页脚" -#: inc/customizer.php:651 +#: inc/customizer.php:664 msgid "Open Links in New Tab/Window" msgstr "在新标签中打开链接" -#: inc/customizer.php:659 inc/customizer.php:667 inc/customizer.php:675 -#: inc/customizer.php:684 inc/customizer.php:692 inc/customizer.php:700 -#: inc/customizer.php:709 inc/customizer.php:717 inc/customizer.php:725 -#: inc/customizer.php:733 inc/customizer.php:741 inc/customizer.php:758 -#: inc/customizer.php:766 inc/customizer.php:774 inc/customizer.php:782 -#: inc/customizer.php:790 inc/customizer.php:798 inc/customizer.php:806 -#: inc/customizer.php:814 inc/customizer.php:822 inc/customizer.php:839 -#: inc/customizer.php:856 inc/customizer.php:864 inc/customizer.php:872 -#: inc/customizer.php:880 inc/customizer.php:888 inc/customizer.php:896 -#: inc/customizer.php:913 inc/customizer.php:921 inc/customizer.php:938 -#: inc/customizer.php:972 inc/customizer.php:980 inc/customizer.php:988 -#: inc/customizer.php:996 inc/customizer.php:1012 inc/customizer.php:1029 -#: inc/customizer.php:1037 inc/customizer.php:1045 inc/customizer.php:1053 -#: inc/customizer.php:1061 inc/customizer.php:1069 inc/customizer.php:1085 +#: inc/customizer.php:672 inc/customizer.php:680 inc/customizer.php:688 +#: inc/customizer.php:697 inc/customizer.php:705 inc/customizer.php:713 +#: inc/customizer.php:722 inc/customizer.php:730 inc/customizer.php:738 +#: inc/customizer.php:746 inc/customizer.php:754 inc/customizer.php:771 +#: inc/customizer.php:779 inc/customizer.php:787 inc/customizer.php:795 +#: inc/customizer.php:803 inc/customizer.php:811 inc/customizer.php:819 +#: inc/customizer.php:827 inc/customizer.php:835 inc/customizer.php:843 +#: inc/customizer.php:860 inc/customizer.php:877 inc/customizer.php:885 +#: inc/customizer.php:893 inc/customizer.php:901 inc/customizer.php:909 +#: inc/customizer.php:917 inc/customizer.php:934 inc/customizer.php:942 +#: inc/customizer.php:959 inc/customizer.php:993 inc/customizer.php:1001 +#: inc/customizer.php:1009 inc/customizer.php:1017 inc/customizer.php:1033 +#: inc/customizer.php:1050 inc/customizer.php:1058 inc/customizer.php:1066 +#: inc/customizer.php:1074 inc/customizer.php:1082 inc/customizer.php:1106 #, php-format msgid "%s Username" msgstr "%s 用户名" -#: inc/customizer.php:676 inc/customizer.php:701 +#: inc/customizer.php:689 inc/customizer.php:714 msgid " (or the long number in your profile URL)" msgstr "或你个人资料页的长号码" -#: inc/customizer.php:749 inc/customizer.php:1020 +#: inc/customizer.php:762 inc/customizer.php:1041 inc/customizer.php:1090 +#: inc/customizer.php:1098 #, php-format msgid "%s Profile URL" msgstr "%s 资料 URL" -#: inc/customizer.php:830 inc/customizer.php:904 inc/customizer.php:929 -#: inc/customizer.php:946 inc/customizer.php:955 +#: inc/customizer.php:851 inc/customizer.php:925 inc/customizer.php:950 +#: inc/customizer.php:967 inc/customizer.php:976 #, php-format msgid "%s Site URL" msgstr "%s 站点 URL" -#: inc/customizer.php:847 inc/customizer.php:1102 +#: inc/customizer.php:868 inc/customizer.php:1123 #, php-format msgid "%s Link" msgstr "%s 链接" -#: inc/customizer.php:964 inc/customizer.php:1004 +#: inc/customizer.php:985 inc/customizer.php:1025 #, php-format msgid "%s User ID" msgstr "%s 用户ID" -#: inc/customizer.php:1077 -#, php-format -msgid "%s Group Name" -msgstr "%s 组名" - -#: inc/customizer.php:1093 +#: inc/customizer.php:1114 msgid "Email Address" msgstr "邮箱" -#: inc/customizer.php:1111 +#: inc/customizer.php:1132 msgid "RSS Feed" msgstr "RSS 订阅" -#: inc/customizer.php:1125 +#: inc/customizer.php:1146 msgid "Content Options" msgstr "内容设置" -#: inc/customizer.php:1127 +#: inc/customizer.php:1148 #, php-format msgctxt "(blog name)'s content." msgid "These options change the display of %s's content" msgstr "这些选择会改变 %s 的内容显示方式。" -#: inc/customizer.php:1204 +#: inc/customizer.php:1225 msgid "Load Latin Extended character set. This will increase page load times." msgstr "加载拉丁语扩展字符集,该设置会增加页面加载时间。" -#: inc/customizer.php:1211 +#: inc/customizer.php:1232 msgid "" "Use entry excerpts instead of full text on site home. Excludes sticky posts." msgstr "首页显示摘要而不是全文,除了置顶文章" -#: inc/customizer.php:1218 +#: inc/customizer.php:1239 msgid "Use entry excerpts on archive, category, and author pages." msgstr "在归档、分类和个人页上显示摘要" -#: inc/customizer.php:1225 +#: inc/customizer.php:1246 msgid "Display posts' featured images when excerpts are shown." msgstr "显示摘要时也展示文章特色图片" -#: inc/customizer.php:1232 +#: inc/customizer.php:1253 msgid "Display a post's featured image on its individual page." msgstr "在个人页展示文章的特色图片" -#: inc/customizer.php:1239 +#: inc/customizer.php:1260 msgid "Show tags on front page (tags will be shown on post's individual page)" msgstr "在个人页显示标签" -#: inc/customizer.php:1246 +#: inc/customizer.php:1267 msgid "" "Show categories on front page (categories will be shown on post's individual " "page)" msgstr "在个人页显示分类" -#: inc/customizer.php:1253 +#: inc/customizer.php:1274 msgid "Show author's name, profile image, and bio after posts" msgstr "在文章后显示作者名字,个人资料图片" -#: inc/customizer.php:1260 +#: inc/customizer.php:1281 msgid "Entry Date Position" msgstr "发表时间位置" -#: inc/customizer.php:1264 +#: inc/customizer.php:1285 msgid "Above Header" msgstr "在页头上" -#: inc/customizer.php:1265 +#: inc/customizer.php:1286 msgid "Below Header" msgstr "在页头下" -#: inc/customizer.php:1271 +#: inc/customizer.php:1292 msgid "Show Page Headers" msgstr "显示页头" -#: inc/customizer.php:1278 +#: inc/customizer.php:1299 msgid "Show entry date for post excepts on the main page" msgstr "除了首页,显示文章的发表日期" -#: inc/customizer.php:1285 +#: inc/customizer.php:1306 msgid "Add an arrow before the title of a link post" msgstr "在文章标题链接前加一个箭头" -#: inc/customizer.php:1292 +#: inc/customizer.php:1313 msgid "" "Show Theme Info (display a line of text about the theme and its creator at " "the bottom of pages)" msgstr "显示主题信息(在页面底部显示主题和他的作者)" -#: inc/customizer.php:1301 +#: inc/customizer.php:1322 msgid "Text (colophon, copyright, credits, etc.) for the footer of the site" msgstr "页脚文本(可以是版权、捐献等)" -#: inc/customizer.php:1315 +#: inc/customizer.php:1336 msgid "Other Options" msgstr "其他选项" -#: inc/customizer.php:1334 +#: inc/customizer.php:1337 +msgid "" +"Custom CSS is longer recommended. This feature is no longer allowed in " +"Decode. To continue using these tweaks, copy and paste your CSS into a " +"custom CSS plugin such as Jetpack. Get help here." +msgstr "" + +#: inc/customizer.php:1357 msgid "Custom CSS" msgstr "自定义CSS" -#: inc/customizer.php:1345 +#: inc/customizer.php:1368 msgid "Show the following post types on home blog page. (Separate with commas)" msgstr "在首页显示以下类型的文章(用逗号分隔)" -#: inc/customizer.php:1384 +#: inc/customizer.php:1407 msgid "Accent Color" msgstr "特殊颜色" -#: inc/customizer.php:1385 +#: inc/customizer.php:1408 msgid "The main color used for links, borders, buttons, and more." msgstr "用于链接、边框、按钮等位置的颜色。" -#: inc/customizer.php:1392 +#: inc/customizer.php:1415 msgid "Active Link Color" msgstr "已访问链接颜色" -#: inc/customizer.php:1393 +#: inc/customizer.php:1416 msgid "" "The color for currently clicked links.
    (Try using a darker color than the " "Accent Color.)" msgstr "用于当前已点击过的链接
    (建议使用比特殊颜色深一些的颜色。)" -#: inc/customizer.php:1400 +#: inc/customizer.php:1423 msgid "Text Color" msgstr "文本颜色" -#: inc/customizer.php:1401 +#: inc/customizer.php:1424 msgid "The main text color." msgstr "主要文本颜色。" -#: inc/customizer.php:1408 +#: inc/customizer.php:1431 msgid "Secondary Text Color" msgstr "二级文字颜色" -#: inc/customizer.php:1409 +#: inc/customizer.php:1432 msgid "" "Text color used for text of secondary importance.
    (Try using a lighter " "color than the main Text Color.)" msgstr "" "用于二级文本的颜色,比如引用文字。
    (建议使用比文本颜色深一些的颜色。)" -#: inc/customizer.php:1416 +#: inc/customizer.php:1439 msgid "Use accent color instead of text color for icons" msgstr "使用最近颜色取代标签文本颜色" -#: inc/extras.php:104 -msgid "Category" -msgstr "分类" +#: inc/extras.php:95 +#, fuzzy, php-format +msgid "Page %s" +msgstr "页面" -#: inc/extras.php:107 -msgid "Tag" -msgstr "标签" +#: inc/template-tags.php:42 +msgid "Website" +msgstr "网站" -#: inc/extras.php:110 -msgid "Author" -msgstr "作者" +#: inc/template-tags.php:131 +#, php-format +msgctxt "post date" +msgid "Posted on %s" +msgstr "发布于 %s" -#: inc/extras.php:120 inc/extras.php:124 -msgid "Page " -msgstr "页面" +#: inc/template-tags.php:136 +#, php-format +msgctxt "post author" +msgid "by %s" +msgstr "作者 %s" -#: inc/template-tags.php:40 +#: inc/template-tags.php:158 msgid "Posts navigation" msgstr "文章导航" -#: inc/template-tags.php:44 -msgid " Older posts" -msgstr " 较旧文章" +#: inc/template-tags.php:162 +#, fuzzy +msgid "Older posts" +msgstr " 前面的文章" -#: inc/template-tags.php:48 -msgid "Newer posts " -msgstr "较近文章 " +#: inc/template-tags.php:166 +#, fuzzy +msgid "Newer posts" +msgstr "最近文章" -#: inc/template-tags.php:73 +#: inc/template-tags.php:189 msgid "Post navigation" msgstr "文章导航" -#: inc/template-tags.php:76 -msgctxt "Previous post link" -msgid " %title" -msgstr " %title" +#: inc/template-tags.php:214 +#, fuzzy, php-format +msgid "Category: %s" +msgstr "分类" + +#: inc/template-tags.php:216 +#, fuzzy, php-format +msgid "Tag: %s" +msgstr "日:%s" -#: inc/template-tags.php:77 -msgctxt "Next post link" -msgid "%title " -msgstr "%title " +#: inc/template-tags.php:220 +#, php-format +msgid "Year: %s" +msgstr "年:%s" -#: inc/template-tags.php:101 -msgid "Website" -msgstr "网站" +#: inc/template-tags.php:220 +msgctxt "yearly archives date format" +msgid "Y" +msgstr "Y" -#: inc/template-tags.php:190 +#: inc/template-tags.php:222 #, php-format -msgctxt "post date" -msgid "Posted on %s" -msgstr "发布于 %s" +msgid "Month: %s" +msgstr "月:%s" -#: inc/template-tags.php:195 +#: inc/template-tags.php:222 +msgctxt "monthly archives date format" +msgid "F Y" +msgstr "F Y" + +#: inc/template-tags.php:224 #, php-format -msgctxt "post author" -msgid "by %s" -msgstr "作者 %s" +msgid "Day: %s" +msgstr "日:%s" + +#: inc/template-tags.php:224 +msgctxt "daily archives date format" +msgid "F j, Y" +msgstr "" + +#: inc/template-tags.php:227 +#, fuzzy +msgctxt "post format archive title" +msgid "Asides" +msgstr "旁白" + +#: inc/template-tags.php:229 +#, fuzzy +msgctxt "post format archive title" +msgid "Galleries" +msgstr "图像" + +#: inc/template-tags.php:231 +#, fuzzy +msgctxt "post format archive title" +msgid "Images" +msgstr "图片" + +#: inc/template-tags.php:233 +#, fuzzy +msgctxt "post format archive title" +msgid "Videos" +msgstr "视频" + +#: inc/template-tags.php:235 +#, fuzzy +msgctxt "post format archive title" +msgid "Quotes" +msgstr "引用" + +#: inc/template-tags.php:237 +#, fuzzy +msgctxt "post format archive title" +msgid "Links" +msgstr "链接" + +#: inc/template-tags.php:239 +#, fuzzy +msgctxt "post format archive title" +msgid "Statuses" +msgstr "状态" + +#: inc/template-tags.php:241 +#, fuzzy +msgctxt "post format archive title" +msgid "Audio" +msgstr "音频" + +#: inc/template-tags.php:243 +#, fuzzy +msgctxt "post format archive title" +msgid "Chats" +msgstr "讨论" + +#: inc/template-tags.php:246 +#, fuzzy, php-format +msgid "Archives: %s" +msgstr "归档" + +#: inc/template-tags.php:250 +#, fuzzy, php-format +msgid "%1$s: %2$s" +msgstr "" +"发布 in %5$s" + +#: inc/template-tags.php:252 page-explore.php:37 sidebar.php:41 +msgid "Archives" +msgstr "归档" #: page-explore.php:11 msgid "Explore Page" @@ -665,6 +703,35 @@ msgstr "隐藏侧边栏" msgid "Navigation" msgstr "导航" +#~ msgid " Previous" +#~ msgstr " 上一个" + +#~ msgid "Next " +#~ msgstr "下一个 " + +#~ msgid "%s Group Name" +#~ msgstr "%s 组名" + +#~ msgid "Tag" +#~ msgstr "标签" + +#~ msgid "Author" +#~ msgstr "作者" + +#~ msgid " Older posts" +#~ msgstr " 较旧文章" + +#~ msgid "Newer posts " +#~ msgstr "较近文章 " + +#~ msgctxt "Previous post link" +#~ msgid " %title" +#~ msgstr " %title" + +#~ msgctxt "Next post link" +#~ msgid "%title " +#~ msgstr "%title " + #~ msgctxt "[noun] [translation string] (explanation)" #~ msgid "%1$s Username %2$s" #~ msgstr "%1$s 用户名 %2$s" From 46ded5a073f7f01f3a0500153e2cdbfeeecb104b Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Wed, 4 Feb 2015 21:51:27 -0800 Subject: [PATCH 30/31] Bump version number to 3.0.6 from 3.0.5 --- functions.php | 4 ++-- package.json | 2 +- styles/src/style.scss | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/functions.php b/functions.php index c56480c..aca2db1 100644 --- a/functions.php +++ b/functions.php @@ -113,7 +113,7 @@ function decode_setup() { function decode_scripts() { - wp_enqueue_style( 'decode-style', get_stylesheet_uri(), array(), '3.0.1' ); + wp_enqueue_style( 'decode-style', get_stylesheet_uri(), array(), '3.0.6' ); if ( get_theme_mod( 'latin_extended_font', false ) == true ) { wp_enqueue_style( 'decode-font-stylesheet', '//fonts.googleapis.com/css?family=Oxygen&subset=latin-ext' ); @@ -122,7 +122,7 @@ function decode_scripts() { wp_enqueue_style( 'decode-font-stylesheet', '//fonts.googleapis.com/css?family=Oxygen' ); } - wp_enqueue_script( 'decode-scripts', get_template_directory_uri() . '/scripts/decode.js', array(), '3.0.0', true ); + wp_enqueue_script( 'decode-scripts', get_template_directory_uri() . '/scripts/decode.js', array(), '3.0.6', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) && get_theme_mod( 'enable_comments', true ) == true ) { wp_enqueue_script( 'comment-reply' ); diff --git a/package.json b/package.json index 84bc14d..e985dd7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Decode", - "version": "3.0.5", + "version": "3.0.6", "author": "Scott Smith (http://ScottHSmith.com)", "license": "GPLv3", "repository": { diff --git a/styles/src/style.scss b/styles/src/style.scss index 266d2e0..bb69da7 100644 --- a/styles/src/style.scss +++ b/styles/src/style.scss @@ -1,7 +1,7 @@ /*! Theme Name: Decode Theme URI: http://ScottHSmith.com/projects/decode/ -Version: 3.0.5 +Version: 3.0.6 Author: Scott Smith Author URI: http://ScottHSmith.com/ Description: A minimal, modern theme, designed to be mobile first and fully responsive, Decode features the ability to change all the colors in the theme and an elegant sidebar conveniently accessed by tapping on the menu icon. The sidebar can fit all of your widgets and its position can be customized. You can also choose to keep the sidebar always visible on larger screens for an elegent two-column experience. You can even disable the sidebar and comment links if you choose. Decode supports link posts, where the title can be hyperlinked. Decode includes custom social icons in the header that you can easily link to your choice of 55 different social profiles from Twitter, and App.net, to Pinterest and LinkedIn, you will be sure to find support for the network you want alongside a bevy of customizations to make your site unique. Decode has been translated into Chinese, Dutch, French, German, Polish, Russian, and Spanish. More info here From 13ac1d284350bf007725c63ed5228d4a69b04c52 Mon Sep 17 00:00:00 2001 From: Scott Smith Date: Wed, 4 Feb 2015 21:57:39 -0800 Subject: [PATCH 31/31] Switched out App.net mention for Instagram --- styles/src/style.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/src/style.scss b/styles/src/style.scss index bb69da7..f4f1810 100644 --- a/styles/src/style.scss +++ b/styles/src/style.scss @@ -4,7 +4,7 @@ Theme URI: http://ScottHSmith.com/projects/decode/ Version: 3.0.6 Author: Scott Smith Author URI: http://ScottHSmith.com/ -Description: A minimal, modern theme, designed to be mobile first and fully responsive, Decode features the ability to change all the colors in the theme and an elegant sidebar conveniently accessed by tapping on the menu icon. The sidebar can fit all of your widgets and its position can be customized. You can also choose to keep the sidebar always visible on larger screens for an elegent two-column experience. You can even disable the sidebar and comment links if you choose. Decode supports link posts, where the title can be hyperlinked. Decode includes custom social icons in the header that you can easily link to your choice of 55 different social profiles from Twitter, and App.net, to Pinterest and LinkedIn, you will be sure to find support for the network you want alongside a bevy of customizations to make your site unique. Decode has been translated into Chinese, Dutch, French, German, Polish, Russian, and Spanish. More info here +Description: A minimal, modern theme, designed to be mobile first and fully responsive, Decode features the ability to change all the colors in the theme and an elegant sidebar conveniently accessed by tapping on the menu icon. The sidebar can fit all of your widgets and its position can be customized. You can also choose to keep the sidebar always visible on larger screens for an elegent two-column experience. You can even disable the sidebar and comment links if you choose. Decode supports link posts, where the title can be hyperlinked. Decode includes custom social icons in the header that you can easily link to your choice of 55 different social profiles from Twitter, and Instagram, to Pinterest and LinkedIn, you will be sure to find support for the network you want alongside a bevy of customizations to make your site unique. Decode has been translated into Chinese, Dutch, French, German, Polish, Russian, and Spanish. More info here Tags: responsive-layout, one-column, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, black, blue, brown, gray, green, orange, pink, purple, red, silver, tan, white, yellow, dark, light License: GNU General Public License v3.0 License URI: http://www.gnu.org/licenses/gpl-3.0-standalone.html